head	1.16;
access;
symbols
	RELEASE_8_3_0:1.14
	RELEASE_9_0_0:1.14
	RELEASE_7_4_0:1.12
	RELEASE_8_2_0:1.12
	RELEASE_6_EOL:1.12
	RELEASE_8_1_0:1.12
	RELEASE_7_3_0:1.7
	RELEASE_8_0_0:1.7
	RELEASE_7_2_0:1.6;
locks; strict;
comment	@# @;


1.16
date	2012.11.17.06.02.40;	author svnexp;	state Exp;
branches;
next	1.15;

1.15
date	2012.09.24.20.55.01;	author ohauer;	state Exp;
branches;
next	1.14;

1.14
date	2011.09.23.22.26.03;	author amdmi3;	state Exp;
branches;
next	1.13;

1.13
date	2011.08.20.17.27.41;	author ohauer;	state Exp;
branches;
next	1.12;

1.12
date	2010.05.30.17.43.22;	author pav;	state Exp;
branches;
next	1.11;

1.11
date	2010.05.27.21.43.49;	author pgollucci;	state Exp;
branches;
next	1.10;

1.10
date	2010.05.25.20.17.30;	author pgollucci;	state Exp;
branches;
next	1.9;

1.9
date	2010.05.18.04.07.51;	author pgollucci;	state Exp;
branches;
next	1.8;

1.8
date	2010.05.05.21.54.06;	author pgollucci;	state Exp;
branches;
next	1.7;

1.7
date	2009.05.21.20.45.27;	author pgollucci;	state Exp;
branches;
next	1.6;

1.6
date	2009.03.21.17.36.19;	author marcus;	state Exp;
branches;
next	1.5;

1.5
date	2009.03.01.19.04.16;	author marcus;	state Exp;
branches;
next	1.4;

1.4
date	2009.02.28.01.07.08;	author marcus;	state Exp;
branches;
next	1.3;

1.3
date	2009.02.28.00.38.11;	author marcus;	state Exp;
branches;
next	1.2;

1.2
date	2009.02.27.22.28.32;	author marcus;	state Exp;
branches;
next	1.1;

1.1
date	2009.02.27.22.21.26;	author marcus;	state Exp;
branches;
next	;


desc
@@


1.16
log
@Switch exporter over
@
text
@# New ports collection makefile for:	mod_dnssd
# Date created:		27 February 2009
# Whom:			Joe Marcus Clarke <marcus@@FreeBSD.org>
#
# $FreeBSD: head/www/mod_dnssd/Makefile 304797 2012-09-24 20:55:01Z ohauer $
#

PORTNAME=	mod_dnssd
PORTVERSION=	0.6
PORTREVISION=	8
CATEGORIES=	www
MASTER_SITES=	http://0pointer.de/lennart/projects/mod_dnssd/
PKGNAMEPREFIX=	${APACHE_PKGNAMEPREFIX}

MAINTAINER=	gnome@@FreeBSD.org
COMMENT=	An Apache module that provides DNS-SD capabilities

LIB_DEPENDS=	avahi-client.3:${PORTSDIR}/net/avahi-app

MAKE_JOBS_SAFE=	yes

USE_GMAKE=	yes
USE_APACHE=	22
GNU_CONFIGURE=	yes
CONFIGURE_ENV=	APR_CFLAGS="`${LOCALBASE}/bin/apr-1-config --cflags --cppflags --includes`" \
		APR_LIBS="`${LOCALBASE}/bin/apr-1-config --ldflags`"
CPPFLAGS+=	-I${LOCALBASE}/include
LDFLAGS+=	-L${LOCALBASE}/lib
CONFIGURE_ARGS=	--disable-lynx

post-install:
.if !defined(NOPORTDOCS)
	${MKDIR} ${DOCSDIR}/
	${INSTALL_DATA} ${WRKSRC}/doc/README ${DOCSDIR}/README
.endif

.include <bsd.port.mk>
@


1.15
log
@SVN rev 304797 on 2012-09-24 20:55:01Z by ohauer

- USE_APACHE s/22+/22/

some additional cleanups/fixes
- adopt new Makefile header
- convert to optionsNG
- use BROKEN instead IGNORE in bsd.apache.mk

with hat apache@@
@
text
@d5 1
a5 1
# $FreeBSD$
@


1.14
log
@- Add LDFLAGS to CONFIGURE_ENV and MAKE_ENV (as it was done with LDFLAGS)
- Fix all ports that add {CPP,LD}FLAGS to *_ENV to modify flags instead

PR:		157936
Submitted by:	myself
Exp-runs by:	pav
Approved by:	pav
@
text
@d23 1
a23 1
USE_APACHE=	22+
@


1.13
log
@ - bump PORTREVISION from ports if USE_APACHE=13+ or 20+ is defined
@
text
@d25 1
a25 3
CONFIGURE_ENV=	CPPFLAGS="-I${LOCALBASE}/include" \
		LDFLAGS="-L${LOCALBASE}/lib" \
		APR_CFLAGS="`${LOCALBASE}/bin/apr-1-config --cflags --cppflags --includes`" \
d27 2
@


1.12
log
@- Fix plists: cannot use %F one line above the handled file

Reported by:	pointyhat
@
text
@d23 1
a23 1
USE_APACHE=	2.2+
@


1.11
log
@- pet portlint
- use apxs not sed in pkg-plist
- use PLIST_SUB vars in pkg-plist

PR:             ports/147146
Submitted by:   pgollucci@@ (myself)
Approved by:    gnome (kwm)
@
text
@d10 1
a10 1
PORTREVISION=	7
@


1.10
log
@Mk/bsd.apache.mk can not sufficiently alter things before Mk/bsd.options.mk
in Mk/bsd.ports.mk due to ordering in Mk/bsd.port.mk.  This causes OPTIONSFILE
to be incorrectly set during some make phases as a result of the recent
PKGNAMEPREFIX for apache ports.

'Revert' some of the PKGNAMEPREFIX changes for apXX-.
   - Must be manually requested in tbe port Makefile either by
     a) AP_FAST_BUILD=yes
     b) PKGNAMEPREFIX=${APACHE_PKGNAMEPREFIX}
   - Going forward, we will only do this for ports where WITH_APACHE
       is NOT optional, but required.  mod_* ports are a good fit.

141 ports are mod_ ports
  80 of those use AP_FAST_BUILD and thus are auto hooked by this patch [a].
  61 remaining are then patched to mirror the other $lang frameworks [b].

PR:             ports/146956
Reported by:    Hans F. Nordhaug <Hans.F.Nordhaug@@hiMolde.no>, several
Discussed with: pav, itectu on #bsdports
Tested by:      P6 TB run
Approved by:    portmgr (pav)
@
text
@d10 1
a10 1
PORTREVISION=	6
d20 1
a20 1
MAKE_JOBS_SAFE=  yes
d33 1
a33 1
	${MKDIR} ${DOCSDIR}
@


1.9
log
@- Chase devel/apr -> devel/apr1 shuffling

PR:             ports/146553
Submitted by:   myself (pgollucci@@)
With Hat:       apache@@
@
text
@d13 1
@


1.8
log
@5/5: Chase www/apache22 (bundled apr shlib bump)

PR:             ports/146130
Approved by:    portmgr (pav)
Tested by:      -exp run (pav)
With Hat:       apache@@
@
text
@d10 1
a10 1
PORTREVISION=	5
@


1.7
log
@- Mark remaining mod_* ports MAKE_JOBS_SAFE=yes

PR:             ports/134611
Approved by:    pav (#bsdports)
@
text
@d10 1
a10 1
PORTREVISION=	4
@


1.6
log
@Bump PORTREVISION for latest plist fix.
@
text
@d19 2
@


1.5
log
@Apr and apache22 conflict by default, so override the pkg-config lookup
for apr-1, and use apr-1-config instead.
@
text
@d10 1
a10 1
PORTREVISION=	3
@


1.4
log
@Explicitly disable lynx.

Reported by:	QAT
@
text
@d10 1
a10 1
PORTREVISION=	2
d17 1
a17 2
LIB_DEPENDS=	avahi-client.3:${PORTSDIR}/net/avahi-app \
    		apr-1.3:${PORTSDIR}/devel/apr
d23 3
a25 1
		LDFLAGS="-L${LOCALBASE}/lib"
@


1.3
log
@Add a missing dependency on apr.

Reported by:	QAT
@
text
@d25 1
@


1.2
log
@While mod_dnssd 0.6 builds with Apache 2.0, it really needs Apache 2.2
to work properly.
@
text
@d10 1
a10 1
PORTREVISION=	1
d17 2
a18 1
LIB_DEPENDS=	avahi-client.3:${PORTSDIR}/net/avahi-app
@


1.1
log
@Add mod_dnssd, an Apache HTTPD module which adds Zeroconf support via DNS-SD
using Avahi.

WWW: http://0pointer.de/lennart/projects/mod_dnssd/
@
text
@d10 1
d20 1
a20 1
USE_APACHE=	2.0+
@

