diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2013-09-12 09:39:19 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2013-09-12 09:39:19 +0000 |
commit | 1f9270b0bc803581e176fc526f72bd46d6f2cc14 (patch) | |
tree | 30c4f47c6d9506bd4b43001a86ace7628059cd87 /sysutils/apachetop | |
parent | c5b1367b7884b82ba340104e77268bf8f549c3c2 (diff) |
Reassign to the heap as maintainer no longer use FreeBSD
While here:
Use options helpers where possible
Submitted by: Michael Brune <admin@mjbrune.org> (former maintainer via pkg-fallout)
Notes
Notes:
svn path=/head/; revision=327046
Diffstat (limited to 'sysutils/apachetop')
-rw-r--r-- | sysutils/apachetop/Makefile | 23 |
1 files changed, 7 insertions, 16 deletions
diff --git a/sysutils/apachetop/Makefile b/sysutils/apachetop/Makefile index 2653f8ce99a7..6c4597585fde 100644 --- a/sysutils/apachetop/Makefile +++ b/sysutils/apachetop/Makefile @@ -7,10 +7,9 @@ PORTREVISION= 4 CATEGORIES= sysutils MASTER_SITES= http://www.webta.org/apachetop/ -MAINTAINER= admin@mjbrune.org +MAINTAINER= ports@FreeBSD.org COMMENT= Apache RealTime log stats - GNU_CONFIGURE= yes MAN1= apachetop.1 @@ -19,22 +18,14 @@ PLIST_FILES= bin/apachetop OPTIONS_DEFINE= ADNS FAM PCRE ADNS_DESC= Asynchronous-capable DNS support -.include <bsd.port.options.mk> - -.if ${PORT_OPTIONS:MADNS} -LIB_DEPENDS+= adns.1:${PORTSDIR}/dns/adns -CONFIGURE_ARGS+=--with-adns=${LOCALBASE} -.endif +ADNS_LIB_DEPENDS= libadns.so:${PORTSDIR}/dns/adns +ADNS_CONFIGURE_ON= --with-adns=${LOCALBASE} -.if ${PORT_OPTIONS:MFAM} -LIB_DEPENDS+= fam.0:${PORTSDIR}/devel/fam -CONFIGURE_ARGS+=--with-fam=${LOCALBASE} -.endif +FAM_LIB_DEPENDS= libfam.so:${PORTSDIR}/devel/fam +FAM_CONFIGURE_ON= --with-fam=${LOCALBASE} -.if ${PORT_OPTIONS:MPCRE} -LIB_DEPENDS+= pcre.3:${PORTSDIR}/devel/pcre -CONFIGURE_ARGS+=--with-pcre=${LOCALBASE} -.endif +PCRE_LIB_DEPENDS= libpcre.so:${PORTSDIR}/devel/pcre +PCRE_COFNIGURE_ON= --with-pcre=${LOCALBASE} post-patch: @${REINPLACE_CMD} -E -e 's,struct (circle_struct),\1,g' \ |