Files
haikuports/net-analyzer/netperf/netperf-2.6.0.recipe
Humdinger 9ae34fe13c De-Lint recipes.
*	nasm
	Improved DESCRIPTION
	Re-ordering blocks

*	naspro
	Removed "." from SUMMARY
	Re-ordering blocks

*	netpbm
	Improved DESCRIPTION, COPYRIGHT
	Re-ordering blocks

*	netperf
	Removed "." from SUMMARY
	Re-ordering blocks

*	neverball
	Removed "." from SUMMARY
	Re-ordering blocks

*	nginx
	Improved DESCRIPTION
	Re-ordering blocks

*	nss
	Removed "." from SUMMARY
	Re-ordering blocks
2015-07-22 17:41:46 +02:00

54 lines
1.0 KiB
Bash

SUMMARY="Network performance benchmark including tests for TCP, UDP, and more"
DESCRIPTION="Netperf is a benchmark that can be used to measure the \
performance of many different types of networking. It provides tests for both \
unidirectional throughput, and end-to-end latency. The environments currently \
measureable by netperf include:
- TCP and UDP via BSD Sockets for both IPv4 and IPv6
- DLPI
- Unix Domain Sockets
- SCTP for both IPv4 and IPv6"
HOMEPAGE="http://netperf.org"
COPYRIGHT="1993 Hewlett-Packard Company"
LICENSE="netperf"
REVISION="1"
SOURCE_URI="ftp://ftp.netperf.org/${portName}/${portName}-${portVersion}.tar.bz2"
CHECKSUM_SHA256="cd8dac710d4273d29f70e8dbd09353a6362ac58a11926e0822233c0cb230323a"
PATCHES="netperf-2.6.0.patchset"
ARCHITECTURES="x86_gcc2"
PROVIDES="
netperf = $portVersion
cmd:netperf
cmd:netserver
"
REQUIRES="
haiku
"
BUILD_REQUIRES="
haiku_devel
"
BUILD_PREREQUIRES="
cmd:awk
cmd:gcc
cmd:make
"
BUILD()
{
runConfigure ./configure
make
}
INSTALL()
{
make install
}
TEST()
{
make check
}