pkgsrc/benchmarks/netperf/Makefile
rillig 2829e658f2 Mechanically replaced man/* with ${PKGMANDIR}/* in the definition of
INSTALLATION_DIRS, as well as all occurrences of ${PREFIX}/man with
${PREFIX}/${PKGMANDIR}.

Fixes PR 35265, although I did not use the patch provided therein.
2007-01-07 09:13:46 +00:00

36 lines
1.1 KiB
Makefile

# $NetBSD: Makefile,v 1.2 2007/01/07 09:13:48 rillig Exp $
# KAME Id: Makefile,v 1.3 2000/01/21 12:34:29 itojun Exp
#
DISTNAME= netperf-2.3pl1
PKGNAME= netperf-2.3.1
CATEGORIES= benchmarks
MASTER_SITES= ftp://ftp.cup.hp.com/dist/networking/benchmarks/netperf/
MAINTAINER= itojun@kame.net
HOMEPAGE= http://www.netperf.org/
COMMENT= Rick Jones' network performance benchmarking package
USE_TOOLS+= gzip
MAKE_FILE= makefile
CFLAGS.IRIX+= -DIRIX
post-install:
strip ${PREFIX}/netperf/netperf
strip ${PREFIX}/netperf/netserver
${INSTALL_MAN} ${WRKSRC}/netperf.man ${PREFIX}/${PKGMANDIR}/man1/netperf.1
${INSTALL_MAN} ${WRKSRC}/netserver.man ${PREFIX}/${PKGMANDIR}/man1/netserver.1
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/netperf
${INSTALL_MAN} ${WRKSRC}/netperf.ps ${PREFIX}/share/doc/netperf
${GZIP_CMD} ${PREFIX}/share/doc/netperf/netperf.ps
# The sources assume <malloc.h> exists. Create a fake one for platforms
# that don't have it.
post-wrapper:
if ${TEST} ! -f /usr/include/malloc.h; then \
${ECHO} "#include <stdlib.h>" \
> ${BUILDLINK_DIR}/include/malloc.h; \
fi
.include "../../mk/bsd.pkg.mk"