mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-13 03:03:15 +00:00
bb20cc2507
While here, set the license (GPLv2). The other changes to the Makefile and the non-WWW part of pkg-descr are technically unnecessary, but in my opinion they are in improvement so I keep them. I did remove some of the suggested changes in the patch though. PR: 200295 Submitted by: Ports Fury
29 lines
623 B
Makefile
29 lines
623 B
Makefile
# Created by: dikshie <dikshie@lapi.itb.ac.id>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= pathrate
|
|
PORTVERSION= 2.4.1
|
|
CATEGORIES= benchmarks
|
|
MASTER_SITES= http://www.cc.gatech.edu/~dovrolis/bw-est/
|
|
DISTNAME= ${PORTNAME}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Measurement tool for capacity estimation of network paths
|
|
|
|
LICENSE= GPLv2
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
GNU_CONFIGURE= yes
|
|
USES= gmake
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}_${PORTVERSION}
|
|
MAKEFILE= makefile
|
|
|
|
PLIST_FILES= bin/pathrate_rcv bin/pathrate_snd
|
|
|
|
do-install:
|
|
(cd ${WRKSRC} && ${INSTALL_PROGRAM} pathrate_rcv pathrate_snd \
|
|
${STAGEDIR}${PREFIX}/bin)
|
|
|
|
.include <bsd.port.mk>
|