freebsd-ports/benchmarks/netperf/Makefile
Munechika SUMIKAWA db38baefd0 1) Add OPTIONS support for:
- SOCKETS - Unix domain socket support and tests
- SCTP - Stream Control Transmission Protocol support and tests
- EXS - ICSC async socket support
- HISTOGRAM - Optional histogram output
- OMNI - Enable OMNI tests

2) Patch to $WRKSRC/configure which fixes CPU measurement and ROUTE
lookup routines in netperf, which result in this output:
-------------
checking which CPU utilization measurement type to use... "none.
Consider teaching configure about your platform."
checking which route lookup type to use... "none. Consider teaching
configure about your platform."
--------------

3) Add to default configure_args

--enable-dirty
--enable-demo
--enable-burst
--enable-intervals

Note: these just add additional command arguments and options, and are
not globally enabled in netperf so wont affect existing users/tests.

Submitted by:	koobs (No email address by the request)
2012-05-15 06:47:10 +00:00

78 lines
1.8 KiB
Makefile

# New ports collection makefile for: netperf
# Date created: 19 July 1996
# Whom: koshy
#
# $FreeBSD$
#
PORTNAME= netperf
PORTVERSION= 2.5.0
PORTREVISION= 2
CATEGORIES= benchmarks ipv6
MASTER_SITES= ftp://ftp.netperf.org/netperf/ \
http://fossies.org/unix/misc/
MAINTAINER= sumikawa@FreeBSD.org
COMMENT= Network performance benchmarking package
OPTIONS= SOCKETS "Enable Unix Domain socket support" On \
SCTP "Enable SCTP support" On \
EXS "Enable ICSC async socket support" On \
HISTOGRAM "Enable optional histogram output" On \
OMNI "Enable OMNI tests" Off \
.include <bsd.port.options.mk>
GNU_CONFIGURE= yes
CONFIGURE_ENV= "transform="
CONFIGURE_ARGS= --program-prefix="" --program-suffix="" --enable-dirty \
--enable-demo --enable-burst --enable-intervals
.if !defined(WITHOUT_SOCKETS)
CONFIGURE_ARGS+= --enable-unixdomain
.else
CONFIGURE_ARGS+= --disable-unixdomain
.endif
.if !defined(WITHOUT_SCTP)
CONFIGURE_ARGS+= --enable-sctp
.else
CONFIGURE_ARGS+= --disable-sctp
.endif
.if !defined(WITHOUT_EXS)
CONFIGURE_ARGS+= --enable-exs
.else
CONFIGURE_ARGS+= --disable-exs
.endif
.if !defined(WITHOUT_HISTOGRAM)
CONFIGURE_ARGS+= --enable-histogram
.else
CONFIGURE_ARGS+= --disable-histogram
.endif
.if !defined(WITHOUT_OMNI)
CONFIGURE_ARGS+= --enable-omni
.else
CONFIGURE_ARGS+= --disable-omni
.endif
MAN1= netperf.1 netserver.1
INFO= netperf
SCRIPTS= arr_script packet_byte_script sctp_stream_script snapshot_script \
tcp_range_script tcp_rr_script tcp_stream_script udp_rr_script \
udp_stream_script
post-patch:
.for i in ${SCRIPTS}
@${REINPLACE_CMD} -e 's^%%PREFIX%%^${PREFIX}^' ${WRKSRC}/doc/examples/$i
.endfor
post-install:
${MKDIR} ${EXAMPLESDIR}
.for i in ${SCRIPTS}
${INSTALL_SCRIPT} ${WRKSRC}/doc/examples/$i ${EXAMPLESDIR}
.endfor
.include <bsd.port.mk>