blob: 133c061f68e923de9467456fd8e6d8d3422ff10d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
# New ports collection makefile for: netpipe
# Date created: 20 Feb 1998
# Whom: jkoshy
#
# $FreeBSD$
PORTNAME= NetPIPE
PORTVERSION= 3.2
CATEGORIES= benchmarks net
MASTER_SITES= http://www.scl.ameslab.gov/Projects/Netpipe/code/
DISTNAME= ${PORTNAME}_${PORTVERSION}
MAINTAINER= jkoshy@freebsd.org
COMMENT= A self-scaling network benchmark
WRKSRC= ${WRKDIR}/${PORTNAME}
MAKEFILE= makefile
# The default port builds and installs only the TCP version of
# netpipe(1). The sources support many other variants.
ALL_TARGET= tcp
DOCS= README netpipe_paper.ps
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/NPtcp ${PREFIX}/bin/NPtcp
.if !defined(NOPORTDOCS)
${MKDIR} ${PREFIX}/share/doc/netpipe
.for doc in ${DOCS}
${INSTALL_DATA} ${WRKSRC}/dox/${doc} ${PREFIX}/share/doc/netpipe/${doc}
.endfor
.endif
.include <bsd.port.mk>
|