freebsd-ports/sysutils/apachetop/Makefile
Ade Lovett 54a0b86543 Mass-conversion to the USE_AUTOTOOLS New World Order. The code present
in bsd.autotools.mk essentially makes this a no-op given that all the
old variables set a USE_AUTOTOOLS_COMPAT variable, which is parsed in
exactly the same way as USE_AUTOTOOLS itself.

Moreover, USE_AUTOTOOLS has already been extensively tested by the GNOME
team -- all GNOME 2.12.x ports use it.

Preliminary documentation can be found at:
	http://people.FreeBSD.org/~ade/autotools.txt

which is in the process of being SGMLized before introduction into the
Porters Handbook.

Light blue touch-paper.  Run.
2005-11-15 06:52:12 +00:00

53 lines
1.3 KiB
Makefile

# New ports collection makefile for: apachetop
# Date created: 30 Sep 2003
# Whom: Sebastian Yepes F. <esn@x123.info>
#
# $FreeBSD$
#
PORTNAME= apachetop
PORTVERSION= 0.12.5
CATEGORIES= sysutils
MASTER_SITES= http://spork.qfe3.net/apachetop/files/
DISTNAME= ${PORTNAME}-${PORTVERSION}
MAINTAINER= esn@x123.info
COMMENT= Apache RealTime log stats
USE_AUTOTOOLS= autoconf:259:env
GNU_CONFIGURE= yes
USE_REINPLACE= yes
MAN1= apachetop.1
PLIST_FILES= bin/apachetop
OPTIONS= ADNS "Asynchronous-capable DNS support" off \
FAM "File Alteration Monitor support" off \
PCRE "Perl Compatible Regular Expressions support" off
.include <bsd.port.pre.mk>
.if defined(WITH_ADNS)
LIB_DEPENDS+= adns.1:${PORTSDIR}/dns/adns
CONFIGURE_ARGS+=--with-adns=${LOCALBASE}
.endif
.if defined(WITH_FAM)
LIB_DEPENDS+= fam.0:${PORTSDIR}/devel/fam
CONFIGURE_ARGS+=--with-fam=${LOCALBASE}
.endif
.if defined(WITH_PCRE)
LIB_DEPENDS+= pcre.0:${PORTSDIR}/devel/pcre
CONFIGURE_ARGS+=--with-pcre=${LOCALBASE}
.endif
post-patch:
@${REINPLACE_CMD} -E -e 's,struct (circle_struct),\1,g' \
${WRKSRC}/src/hits_circle.*
@${REINPLACE_CMD} -E -e 's,enum (adns_queryflags),\1,g' \
${WRKSRC}/src/log.*
@${REINPLACE_CMD} -e 's,@AUTOCONF@,${AUTOCONF},' \
-e 's,@AUTOHEADER@,${AUTOHEADER},' ${WRKSRC}/Makefile.in
.include <bsd.port.post.mk>