blob: 44adb235b06cc2bc51ba0fb720f12f2f7d0bb11e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
# New ports collection makefile for: polygraph
# Date created: 3 March 1999
# Whom: Dima Sivachenko <dima@chg.ru>
#
# $FreeBSD$
#
PORTNAME= polygraph
PORTVERSION= 3.0.6
PORTREVISION= 3
CATEGORIES= benchmarks www
MASTER_SITES= http://www.web-polygraph.org/downloads/srcs/ \
http://people.bsdgroup.de/~as/freebsd/distfiles/
DISTNAME= ${PORTNAME}-${PORTVERSION}-src
EXTRACT_SUFX= .tgz
MAINTAINER= as@bsdgroup.de
COMMENT= A benchmarking tool for Web proxies
GNU_CONFIGURE= YES
CONFIGURE_ENV+= CPPFLAGS="${CPPFLAGS} -Wno-deprecated"
CONFIGURE_ARGS+=--datadir=${DATADIR}
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}
CONFLICTS= ltrace-0*
OPTIONS= GNUPLOT "gnuplot if you want full report functionality" ON \
PERL "install Perl for polygraph tools" OFF
.include <bsd.port.pre.mk>
.if ${OSVERSION} >= 900009 || (${OSVERSION} < 900000 && ${OSVERSION} >= 800503)
BROKEN= does not build
.endif
.if !defined(WITHOUT_GNUPLOT)
RUN_DEPENDS+= gnuplot:${PORTSDIR}/math/gnuplot
.endif
.if !defined(WITHOUT_PERL)
USE_PERL5_RUN= yes
.endif
.include <bsd.port.post.mk>
|