54a0b86543
in bsd.autotools.mk essentially makes this a no-op given that all the old variables set a USE_AUTOTOOLS_COMPAT variable, which is parsed in exactly the same way as USE_AUTOTOOLS itself. Moreover, USE_AUTOTOOLS has already been extensively tested by the GNOME team -- all GNOME 2.12.x ports use it. Preliminary documentation can be found at: http://people.FreeBSD.org/~ade/autotools.txt which is in the process of being SGMLized before introduction into the Porters Handbook. Light blue touch-paper. Run.
49 lines
1.4 KiB
Makefile
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= fortune@n.jpn.ph
|
|
COMMENT= World wide web server benchmarking with SSL support
|
|
|
|
USE_OPENSSL= yes
|
|
USE_AUTOTOOLS= autoconf: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>
|