mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-05 06:27:37 +00:00
11227be737
Pathload is a tool that can estimate the available bandwidth of network paths. WWW: http://www.cc.gatech.edu/fac/Constantinos.Dovrolis/pathload.html PR: ports/81294 Submitted by: dikshie <dikshie@lapi.itb.ac.id>
31 lines
675 B
Makefile
31 lines
675 B
Makefile
# New ports collection makefile for: pathload
|
|
# Date created: 19 May 2005
|
|
# Whom: dikshie <dikshie@lapi.itb.ac.id>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= pathload
|
|
PORTVERSION= 1.2
|
|
CATEGORIES= benchmarks
|
|
MASTER_SITES= http://www.cc.gatech.edu/fac/Constantinos.Dovrolis/
|
|
DISTNAME= ${PORTNAME}
|
|
|
|
MAINTAINER= dikshie@lapi.itb.ac.id
|
|
COMMENT= A measurement tool for network path available bandwidth estimation
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_GMAKE= yes
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}_${PORTVERSION}
|
|
MAKEFILE= makefile
|
|
|
|
PLIST_FILES= bin/pathload_rcv bin/pathload_snd
|
|
|
|
do-install:
|
|
.for f in pathload_rcv pathload_snd
|
|
${INSTALL_PROGRAM} ${WRKSRC}/${f} ${PREFIX}/bin
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|