4a953f8994
Httperf is a tool for measuring web server performance. It provides a flexible facility for generating various HTTP workloads and for measuring server performance. The focus of httperf is not on implementing one particular benchmark but on providing a robust, high-performance tool that facilitates the construction of both micro- and macro-level benchmarks. The three distinguishing characteristics of httperf are its robustness, which includes the ability to generate and sustain server overload, support for the HTTP/1.1 and SSL protocols, and its extensibility to new workload generators and performance measurements. from Scott Vokes (vokes DOT s AT gmail DOT com), ok landry@ and sthen@
26 lines
539 B
Makefile
26 lines
539 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2010/05/05 14:08:08 stephan Exp $
|
|
|
|
COMMENT = web server performance testing tool
|
|
|
|
DISTNAME = httperf-0.9.0
|
|
CATEGORIES = benchmarks www
|
|
|
|
HOMEPAGE = http://www.hpl.hp.com/research/linux/httperf/
|
|
|
|
MAINTAINER = Scott Vokes <vokes.s@gmail.com>
|
|
|
|
# GPLv2
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
PERMIT_PACKAGE_FTP = Yes
|
|
PERMIT_DISTFILES_CDROM =Yes
|
|
PERMIT_DISTFILES_FTP = Yes
|
|
|
|
MASTER_SITES = http://httperf.googlecode.com/files/
|
|
|
|
USE_LIBTOOL = Yes
|
|
CONFIGURE_STYLE = gnu
|
|
|
|
WANTLIB += c crypto m ssl
|
|
|
|
.include <bsd.port.mk>
|