f40971bd1d
The Web Stress Tool is a non-browser HTTP/HTTPS client capable of sending valid HTTP or HTTPS (SSL) requests to an web server and recieveing responses back, parsing, them, and acting on that parsed data. It has several convenience features for stress or preformance testing and is designed mainly for putting large amounts of load an a web server.
34 lines
946 B
Makefile
34 lines
946 B
Makefile
# $NetBSD: Makefile,v 1.1.1.1 2004/08/03 17:15:09 poppnk Exp $
|
|
#
|
|
|
|
DISTNAME= west_0.9
|
|
PKGNAME= west-0.9
|
|
CATEGORIES= wip www
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=west/}
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
MAINTAINER= pancake@phreaker.net
|
|
HOMEPAGE= http://west.sourceforge.net/
|
|
COMMENT= Web scripting/stress tool
|
|
|
|
WRKSRC= ${WRKDIR}/west
|
|
USE_BUILDLINK3= yes
|
|
|
|
SUBST_CLASSES+=make
|
|
SUBST_STAGE.make=pre-build
|
|
SUBST_FILES.make=Makefile
|
|
SUBST_SED.make =-e 's|CFLAGS\ =|CFLAGS=${CFLAGS}\ -I${PREFIX}/include/openssl/\#|g' \
|
|
-e 's|LDFLAGS\ =|LIBS+=${LDFLAGS}|g'
|
|
|
|
DOC_FILES=background.html index.html command_ref.html scripting.html
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/west ${PREFIX}/bin/
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/west/
|
|
.for f in ${DOC_FILES}
|
|
${INSTALL_DATA} ${WRKSRC}/doc/$f ${PREFIX}/share/doc/west/
|
|
.endfor
|
|
|
|
.include "../../devel/pcre/buildlink3.mk"
|
|
.include "../../security/openssl/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|