blob: 79ed9acbfebc00a524b99e9349489ebe59bb4de6 (
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
|
# Created by: Mark Pulford <mark@kyne.com.au>
# $FreeBSD$
PORTNAME= siege
PORTVERSION= 3.0.8
CATEGORIES= benchmarks www
MASTER_SITES= http://www.joedog.org/pub/siege/ \
http://fossies.org/linux/www/
MAINTAINER= bofh@FreeBSD.org
COMMENT= HTTP regression testing and benchmarking utility
LICENSE= GPLv2
USES= autoreconf libtool perl5
USE_OPENSSL= yes
GNU_CONFIGURE= yes
CONFIGURE_ENV= PERL="${PERL}"
CONFIGURE_ARGS= --with-ssl=${OPENSSLBASE} --disable-shared \
--sysconfdir=${ETCDIR}
post-patch:
@${REINPLACE_CMD} -e \
's|^\(AC_PROG_SHELL\)|dnl \1|' ${WRKSRC}/configure.ac
pre-configure:
@${RM} -f ${WRKSRC}/acinclude.m4
@${RM} -f ${WRKSRC}/utils/missing
.include <bsd.port.mk>
|