pkgsrc/net/netperf/Makefile
agc 7fed12e73a Rather than jumping through hoops during the configure stage trying to
calculate CFLAGS, and add to them using sed, do this properly with a
make(1) "+=" assignment in the patch stage.

Remove unnecessary script file.
2001-10-26 10:03:50 +00:00

38 lines
1.1 KiB
Makefile

# $NetBSD: Makefile,v 1.8 2001/10/26 10:03:50 agc Exp $
# KAME Id: Makefile,v 1.3 2000/01/21 12:34:29 itojun Exp
#
DISTNAME= netperf-2.1pl3
PKGNAME= netperf-2.1.3
CATEGORIES= benchmarks
MASTER_SITES= ftp://ftp.cup.hp.com/dist/networking/benchmarks/netperf/
PATCH_SITES= ftp://ftp.kame.net/pub/kame/misc/
PATCHFILES= netperf-21pl3-20000721.diff.gz
PATCH_DIST_STRIP= -p1
MAINTAINER= itojun@kame.net
HOMEPAGE= http://www.netperf.org/
COMMENT= Rick Jones' network performance benchmarking package
MAKEFILE= makefile
MAN1= netperf.1 netserver.1
BUILD_DEFS+= USE_INET6
.include "../../mk/bsd.prefs.mk"
.if defined(USE_INET6) && ${USE_INET6} == "YES"
CFLAGS+= -DDO_IPV6
.endif
post-install:
strip ${PREFIX}/netperf/netperf
strip ${PREFIX}/netperf/netserver
${INSTALL_MAN} ${WRKSRC}/netperf.man ${PREFIX}/man/man1/netperf.1
${INSTALL_MAN} ${WRKSRC}/netserver.man ${PREFIX}/man/man1/netserver.1
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/netperf
${INSTALL_MAN} ${WRKSRC}/netperf.ps ${PREFIX}/share/doc/netperf
${GZIP_CMD} -9nf ${PREFIX}/share/doc/netperf/netperf.ps
.include "../../mk/bsd.pkg.mk"