4ee92cd913
wbox aims to help you having fun while testing HTTP related stuff. You can use it to perform many tasks, including the following. * Benchmarking how much time it takes to generate content for your web application. * Web server and web application stressing. * Testing virtual domains configuration without the need to alter your local resolver. * Check if your redirects are working correctly emitting the right HTTP code. * Test if the HTTP compression is working and if it is actually serving pages faster. * Use it as a configuration-less HTTP server to share files! from Laurent Fanis <laurent at humppa.nl> (MAINTAINER)
30 lines
501 B
Makefile
Executable File
30 lines
501 B
Makefile
Executable File
# $OpenBSD: Makefile,v 1.1.1.1 2007/11/20 20:25:19 jasper Exp $
|
|
|
|
COMMENT= HTTP testing tool
|
|
|
|
DISTNAME= wbox-4
|
|
CATEGORIES= net
|
|
|
|
HOMEPAGE= http://www.hping.org/wbox/
|
|
|
|
MAINTAINER= Laurent Fanis <laurent@humppa.nl>
|
|
|
|
# GPLv2
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
WANTLIB= c
|
|
|
|
MASTER_SITES= ${HOMEPAGE}
|
|
|
|
WRKDIST= ${WRKDIR}/wbox
|
|
|
|
NO_REGRESS= Yes
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKDIST}/wbox ${PREFIX}/bin
|
|
|
|
.include <bsd.port.mk>
|