1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-14 03:10:47 +00:00
freebsd-ports/www/flood/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

57 lines
1.5 KiB
Makefile

# New ports collection makefile for: flood
# Date created: 8 Jan 2003
# Whom: Jun Kuriyama <kuriyama@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= flood
PORTVERSION= 0.20041105
CATEGORIES= www
MASTER_SITES= http://dist.bsdlab.org/
DISTNAME= httpd-test_20041105052051
MAINTAINER= kuriyama@FreeBSD.org
COMMENT= Profile-driven HTTP load tester
LIB_DEPENDS= expat.5:${PORTSDIR}/textproc/expat2 \
apr-1:${PORTSDIR}/devel/apr
WRKSRC= ${WRKDIR}/httpd-test/flood
USE_AUTOTOOLS= autoconf:253 libtool:15:env
CONFIGURE_ARGS= --disable-shared \
--with-apr=${LOCALBASE}/bin/apr-1-config \
--with-apr-util=${LOCALBASE}/bin/apu-1-config
CONFIGURE_ENV= LDFLAGS="-L${PREFIX}/lib"
USE_GMAKE= yes
USE_ICONV= yes
EX_SCRIPTS= analyze-relative analyze-relative-ramp
EX_DATA= flood.dtd relative-averages-time.awk round-robin-dynamic.xml \
round-robin-example.xml round-robin-keepalive.xml \
round-robin-relative-reports.xml round-robin-ssl.xml \
round-robin-timed.xml round-robin.xml
post-install:
@${MKDIR} ${EXAMPLESDIR}
.for f in ${EX_SCRIPTS}
@${INSTALL_SCRIPT} ${WRKSRC}/examples/$f ${EXAMPLESDIR}
.endfor
.for f in ${EX_DATA}
@${INSTALL_DATA} ${WRKSRC}/examples/$f ${EXAMPLESDIR}
.endfor
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}/docbook
@${INSTALL_DATA} ${WRKSRC}/docs/README ${DOCSDIR}
@${INSTALL_DATA} ${WRKSRC}/docs/docbook/[Mf]* ${DOCSDIR}/docbook
.endif
ANONCVS= cvs -d :pserver:anoncvs@cvs.apache.org:/home/cvspublic
maint-checkout:
${ANONCVS} co httpd-test/flood
# http://cvs.apache.org/snapshots/httpd-test/
.include <bsd.port.mk>