forked from Lainports/freebsd-ports
TCP, SCTP and DCCP transport protocols over IPv4 and IPv6. It simultaneously transmits bidirectional flows to an endpoint and measures the resulting flow bandwidths and QoS. The results are written as vector and scalar files. The vector files can e.g. be used to create plots of the results. WWW: http://www.iem.uni-due.de/~dreibh/netperfmeter/ PR: ports/148994 Approved by: tabthorpe (mentor)
36 lines
817 B
Makefile
36 lines
817 B
Makefile
# New ports collection makefile for: netperfmeter
|
|
# Date created: 27 July 2010
|
|
# Whom: Thomas Dreibholz <dreibh@iem.uni-due.de>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= netperfmeter
|
|
PORTVERSION= 1.0.4
|
|
CATEGORIES= benchmarks
|
|
MASTER_SITES= http://www.iem.uni-due.de/~dreibh/netperfmeter/download/ http://www.exp-math.uni-essen.de/~dreibh/netperfmeter/download/
|
|
DISTNAME= ${PORTNAME}-${PORTVERSION}
|
|
|
|
MAINTAINER= dreibh@iem.uni-due.de
|
|
COMMENT= Network Performance Meter
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_GMAKE= yes
|
|
|
|
PLIST_FILES= bin/netperfmeter
|
|
|
|
MAN8= netperfmeter.8
|
|
|
|
LICENSE= GPLv3
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${OSVERSION} < 700000
|
|
IGNORE= not supported on systems earlier than 7.x
|
|
.endif
|
|
|
|
post-install:
|
|
@${RMDIR} ${DATADIR}
|
|
|
|
.include <bsd.port.post.mk>
|