freebsd-ports/benchmarks/iperf/Makefile
Scott Mace cdef4e6186 Update iperf to 1.7.0.
This version also builds under ia64

From the iperf changelog:

Added bidirectional testing both simultaneously and tradeoff
Added server side statistic reporting on the client for UDP
Limits on the number of connections and locations for servers

Changes:

Fixed the IPv6 Multicast implementation
Removed the SegFault on exit by Ctrl-C for the server
Thread bug resulting in "pthread create failed" after many clients
"connect failed" on server for UDP clients when IPv6 is enabled is fixed
2003-05-16 17:22:14 +00:00

32 lines
780 B
Makefile

# New ports collection makefile for: iperf
# Date Created: 20 May 2001
# Whom: Pete Fritchman <petef@databits.net>
#
# $FreeBSD$
#
PORTNAME= iperf
PORTVERSION= 1.7.0
CATEGORIES= net
MASTER_SITES= http://dast.nlanr.net/Projects/Iperf/
DISTNAME= iperf-1.7.0-source
MAINTAINER= smace@FreeBSD.org
COMMENT= A tool to measure maximum TCP and UDP bandwidth
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}
NO_CDROM= "can't charge a fee for the software"
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/iperf ${PREFIX}/bin
.if !defined(NOPORTDOCS)
@${MKDIR} ${PREFIX}/share/doc/iperf
.for file in README doc/index.html doc/jperf.gif doc/dast.gif \
doc/lib.html doc/ui_license.html
${INSTALL_DATA} ${WRKSRC}/${file} ${PREFIX}/share/doc/iperf
.endfor
.endif
.include <bsd.port.mk>