mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
64f7597541
PR: 185720 Submitted by: Ports Fury
33 lines
786 B
Makefile
33 lines
786 B
Makefile
# Created by: Mark Pulford <mark@kyne.com.au>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= siege
|
|
PORTVERSION= 3.0.6
|
|
CATEGORIES= benchmarks www
|
|
MASTER_SITES= http://www.joedog.org/pub/siege/ \
|
|
http://fossies.org/linux/www/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= HTTP regression testing and benchmarking utility
|
|
|
|
LICENSE= GPLv2
|
|
|
|
USES= perl5
|
|
USE_OPENSSL= yes
|
|
USE_AUTOTOOLS= libtoolize aclocal autoheader automake autoconf
|
|
LIBTOOLIZE_ARGS=--copy --force
|
|
AUTOMAKE_ARGS= --add-missing --copy
|
|
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>
|