summaryrefslogtreecommitdiff
path: root/www/flood/Makefile
diff options
context:
space:
mode:
authorJun Kuriyama <kuriyama@FreeBSD.org>2003-10-04 23:56:55 +0000
committerJun Kuriyama <kuriyama@FreeBSD.org>2003-10-04 23:56:55 +0000
commit4d6092c4a2ca8733495c2172eed642681fb0edbb (patch)
tree26774d92f10469855630bf138113665f811c101e /www/flood/Makefile
parentOops, clean up examples directory. (diff)
Update to recent CVS snapshot.
Submitted by: max
Notes
Notes: svn path=/head/; revision=90270
Diffstat (limited to 'www/flood/Makefile')
-rw-r--r--www/flood/Makefile24
1 files changed, 20 insertions, 4 deletions
diff --git a/www/flood/Makefile b/www/flood/Makefile
index 22fa44dc9780..0c5e249a688c 100644
--- a/www/flood/Makefile
+++ b/www/flood/Makefile
@@ -6,11 +6,11 @@
#
PORTNAME= flood
-PORTVERSION= 0.20030108
+PORTVERSION= 0.20031002
CATEGORIES= www
MASTER_SITES= ${MASTER_SITE_LOCAL}
MASTER_SITE_SUBDIR= kuriyama
-DISTNAME= ${PORTNAME}-20030108
+DISTNAME= ${PORTNAME}-20031002
MAINTAINER= kuriyama@FreeBSD.org
COMMENT= Profile-driven HTTP load tester
@@ -20,13 +20,29 @@ LIB_DEPENDS= expat.4:${PORTSDIR}/textproc/expat2 \
apr-0.9:${PORTSDIR}/devel/apr
USE_AUTOCONF= yes
+WANT_AUTOCONF_VER= 253
CONFIGURE_ARGS= --disable-shared
CONFIGURE_ENV= LDFLAGS="-L${PREFIX}/lib"
USE_GMAKE= 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}
- @${INSTALL_SCRIPT} ${WRKSRC}/examples/analyze-* ${EXAMPLESDIR}
- @${INSTALL_DATA} ${WRKSRC}/examples/r* ${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/* ${DOCSDIR}/docbook
+.endif
.include <bsd.port.mk>