freebsd-ports/benchmarks/polygraph/Makefile

73 lines
1.8 KiB
Makefile
Raw Normal View History

# New ports collection makefile for: polygraph
# Date created: 3 March 1999
# Whom: Dima Sivachenko <dima@chg.ru>
#
1999-08-25 06:58:03 +02:00
# $FreeBSD$
#
PORTNAME= polygraph
PORTVERSION= 4.3.2
CATEGORIES= benchmarks www
MASTER_SITES= http://www.web-polygraph.org/downloads/srcs/ \
http://people.bsdgroup.de/~as/freebsd/distfiles/
DISTNAME= ${PORTNAME}-${PORTVERSION}-src
2002-08-03 12:41:53 +02:00
EXTRACT_SUFX= .tgz
MAINTAINER= as@bsdgroup.de
COMMENT= A benchmarking tool for Web proxies
LICENSE= AL2
LICENSE_FILE= ${WRKSRC}/LICENSE
USE_GCC= 4.2+
GNU_CONFIGURE= yes
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}
CONFLICTS= ltrace-0*
OPTIONS_DEFINE= GNUPLOT OPENSSL PERL ZLIB
GNUPLOT_DESC= GNUPlot for full reporting functionality
OPENSSL_DESC= Enable SSL/HTTPS support
PERL_DESC= Install Perl for PolyGraph tools
ZLIB_DESC= Enable HTTP compression support
OPTIONS_DEFAULT= OPENSSL ZLIB
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MGNUPLOT}
RUN_DEPENDS+= gnuplot:${PORTSDIR}/math/gnuplot
2010-04-18 20:58:20 +02:00
.endif
.if ${PORT_OPTIONS:MOPENSSL}
USE_OPENSSL= yes
CONFIGURE_ARGS+= --with-ssl=${OPENSSLBASE}
.else
CONFIGURE_ARGS+= --without-ssl
.endif
.if ${PORT_OPTIONS:MPERL}
USE_PERL5_RUN= yes
.endif
.if ${PORT_OPTIONS:MZLIB}
CONFIGURE_ARGS+= --with-zlib=/usr
.else
CONFIGURE_ARGS+= --without-zlib
.endif
MAN1= polygraph-aka.1 polygraph-beepmon.1 polygraph-cdb.1 \
polygraph-client.1 polygraph-cmp-lx.1 polygraph-distr-test.1 \
polygraph-dns-cfg.1 polygraph-lr.1 polygraph-ltrace.1 \
polygraph-lx.1 polygraph-pgl-test.1 polygraph-pgl2acl.1 \
polygraph-pgl2eng.1 polygraph-pgl2ips.1 polygraph-pgl2ldif.1 \
polygraph-pmix2-ips.1 polygraph-pmix3-ips.1 polygraph-polymon.1 \
polygraph-polyprobe.1 polygraph-polyrrd.1 polygraph-pop-test.1 \
polygraph-reporter.1 polygraph-rng-test.1 polygraph-server.1 \
polygraph-udp2tcpd.1 polygraph-webaxe4-ips.1
MAN7= polygraph.7
.include <bsd.port.mk>