freebsd-ports/www/webstone-ssl/Makefile
Ade Lovett 3f651573ad Whoa there, boy, that's a mighty big commit y'all have there...
Begin autotools sanitization sequence by requiring ports to explicitly
specify which version of {libtool,autoconf,automake} they need, erasing
the concept of a "system default".

For ports-in-waiting:

	USE_LIBTOOL=YES		->	USE_LIBTOOL_VER=13
	USE_AUTOCONF=YES	->	USE_AUTOCONF_VER=213
	USE_AUTOMAKE=YES	->	USE_AUTOMAKE_VER=14

Ports attempting to use the old style system after June 1st 2004 will be
sorely disappointed.
2004-03-14 06:17:56 +00:00

49 lines
1.4 KiB
Makefile

# New ports collection makefile for: webstone-ssl
# Date created: 2 Nov 2000
# Whom: Kazumasa Nishizawa <k_nishizawa@anet.ne.jp>
#
# $FreeBSD$
#
PORTNAME= webstone
PORTVERSION= 2.5
CATEGORIES= www benchmarks
MASTER_SITES= http://crypto.stanford.edu/~nagendra/projects/WebStone/download/
PKGNAMESUFFIX= -ssl
DISTNAME= WebStone-SSL-${PORTVERSION}
EXTRACT_SUFX= .tgz
MAINTAINER= k_nishizawa@anet.ne.jp
COMMENT= World wide web server benchmarking with SSL support
USE_OPENSSL= yes
USE_AUTOCONF_VER= 213
GNU_CONFIGURE= yes
WRKSRC= ${WRKDIR}/WebStone${PORTVERSION}/src
ALL_TARGET= install
NO_INSTALL_MANPAGES= yes
CONFIGURE_ENV= "CFLAGS=${CFLAGS} -I${OPENSSLINC}" \
LIBS=-L${OPENSSLLIB}
do-install:
@${RMDIR} ${WRKSRC}/../bin/runs
@${MKDIR} ${PREFIX}/webstone-ssl/bin
@${MKDIR} ${PREFIX}/webstone-ssl/conf
@${MKDIR} ${PREFIX}/webstone-ssl/lgm
${INSTALL_SCRIPT} ${WRKSRC}/../bin/* ${PREFIX}/webstone-ssl/bin
${INSTALL_SCRIPT} ${WRKSRC}/../lgm/* ${PREFIX}/webstone-ssl/lgm
${INSTALL_DATA} ${WRKSRC}/../conf/* ${PREFIX}/webstone-ssl/conf
${INSTALL_SCRIPT} ${WRKSRC}/../webstone ${PREFIX}/webstone-ssl
@${MKDIR} ${WRKSRC}/../bin/runs
.for file in webclient webmaster genrand
${STRIP_CMD} ${PREFIX}/webstone-ssl/bin/${file}
.endfor
.for file in ws20_cgi ws25_cgi
${STRIP_CMD} ${PREFIX}/webstone-ssl/lgm/${file}
.endfor
post-install:
@${CAT} ${PKGMESSAGE}
.include <bsd.port.mk>