1 | # $Id: Portfile 146517 2016-03-10 17:49:28Z raimue@macports.org $ |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | |
---|
5 | name httperf |
---|
6 | version 0.9.0 |
---|
7 | revision 3 |
---|
8 | categories www benchmarks |
---|
9 | license {GPL-2+ OpenSSLException} |
---|
10 | maintainers nomaintainer |
---|
11 | description tool for measuring webserver performance |
---|
12 | long_description \ |
---|
13 | httperf is a tool for measuring web server performance. It \ |
---|
14 | provides a flexible facility for generating various HTTP \ |
---|
15 | workloads and for measuring server performance. The focus of \ |
---|
16 | httperf is not on implementing one particular benchmark but \ |
---|
17 | on providing a robust, high-performance tool that \ |
---|
18 | facilitates the construction of both micro- and macro-level \ |
---|
19 | benchmarks. The three distinguishing characteristics of \ |
---|
20 | httperf are its robustness, which includes the ability to \ |
---|
21 | generate and sustain server overload, support for the \ |
---|
22 | HTTP/1.1 protocol, and its extensibility to new workload \ |
---|
23 | generators and performance measurements. |
---|
24 | homepage http://www.hpl.hp.com/research/linux/httperf/ |
---|
25 | platforms darwin |
---|
26 | master_sites ftp://ftp.hpl.hp.com/pub/httperf/ |
---|
27 | checksums md5 2968c36b9ecf3d98fc1f2c1c9c0d9341 \ |
---|
28 | sha1 2aa885c0c143d809c0e50a6eca5063090bddee35 \ |
---|
29 | rmd160 59580cf5e876b18e69ffb69214c97fbc524be749 |
---|
30 | |
---|
31 | depends_lib path:lib/libssl.dylib:openssl |
---|
32 | |
---|
33 | configure.cppflags |
---|
34 | |
---|
35 | destroot.destdir prefix=${destroot}${prefix} \ |
---|
36 | exec_prefix=${destroot}${prefix} |
---|
37 | |
---|
38 | post-destroot { |
---|
39 | set docdir ${destroot}${prefix}/share/doc/${name}-${version} |
---|
40 | xinstall -d ${docdir} |
---|
41 | xinstall -m 644 -W ${worksrcpath} \ |
---|
42 | AUTHORS \ |
---|
43 | ChangeLog \ |
---|
44 | NEWS \ |
---|
45 | README \ |
---|
46 | TODO \ |
---|
47 | ${docdir} |
---|
48 | } |
---|