blob: 74f14669f7b416404b3dc4bdf6f78540adecb2a6 (
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
|
# Created by: Janos.Mohacsi@bsd.hu
# $FreeBSD$
PORTNAME= netstrain
PORTVERSION= 3.0
CATEGORIES= net ipv6
MASTER_SITES= SF
MAINTAINER= jmohacsi@bsd.hu
COMMENT= Tool to measure practical TCP throughput between two machines
PLIST_FILES= bin/netstrain bin/netstraind
PORTDOCS= README
OPTIONS_DEFINE= DOCS
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/netstrain ${STAGEDIR}${PREFIX}/bin
${INSTALL_PROGRAM} ${WRKSRC}/netstraind ${STAGEDIR}${PREFIX}/bin
${MKDIR} ${STAGEDIR}${DOCSDIR}
.for i in ${PORTDOCS}
${INSTALL_DATA} ${WRKSRC}/${i} ${STAGEDIR}${DOCSDIR}
.endfor
.include <bsd.port.mk>
|