blob: 28466bca0e2487d7f40c98d9a5ae494a78a868d8 (
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
|
# New ports collection makefile for: pathrate
# Date created: 19 May 2005
# Whom: dikshie <dikshie@lapi.itb.ac.id>
#
# $FreeBSD$
#
PORTNAME= pathrate
PORTVERSION= 2.4.1
CATEGORIES= benchmarks
MASTER_SITES= http://www-static.cc.gatech.edu/fac/Constantinos.Dovrolis/
DISTNAME= ${PORTNAME}
MAINTAINER= dikshie@lapi.itb.ac.id
COMMENT= A measurement tool for capacity estimation of network paths
GNU_CONFIGURE= yes
USE_GMAKE= yes
WRKSRC= ${WRKDIR}/${PORTNAME}_${PORTVERSION}
MAKEFILE= makefile
PLIST_FILES= bin/pathrate_rcv bin/pathrate_snd
do-install:
.for f in pathrate_rcv pathrate_snd
${INSTALL_PROGRAM} ${WRKSRC}/${f} ${PREFIX}/bin
.endfor
.include <bsd.port.mk>
|