diff options
author | marino <marino@FreeBSD.org> | 2015-05-19 17:03:46 +0800 |
---|---|---|
committer | marino <marino@FreeBSD.org> | 2015-05-19 17:03:46 +0800 |
commit | 40fa95a417ba0eca88262fa83b4f2242c453e5b6 (patch) | |
tree | ccd6092ef146130b35c37780a9a755af1c1c33f2 | |
parent | 67ed2f277fe953e201fbbc082253bfcaed9f86e7 (diff) | |
download | freebsd-ports-graphics-40fa95a417ba0eca88262fa83b4f2242c453e5b6.tar.gz freebsd-ports-graphics-40fa95a417ba0eca88262fa83b4f2242c453e5b6.tar.zst freebsd-ports-graphics-40fa95a417ba0eca88262fa83b4f2242c453e5b6.zip |
benchmarks/pathload: Unbreak by setting new MASTER_SITES
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: 200294
Submitted by: Ports Fury
-rw-r--r-- | benchmarks/pathload/Makefile | 11 | ||||
-rw-r--r-- | benchmarks/pathload/pkg-descr | 5 |
2 files changed, 9 insertions, 7 deletions
diff --git a/benchmarks/pathload/Makefile b/benchmarks/pathload/Makefile index b75eba896d5..3673bb4593b 100644 --- a/benchmarks/pathload/Makefile +++ b/benchmarks/pathload/Makefile @@ -4,13 +4,15 @@ PORTNAME= pathload PORTVERSION= 1.3.2 CATEGORIES= benchmarks -MASTER_SITES= http://www.cc.gatech.edu/fac/Constantinos.Dovrolis/ +MASTER_SITES= http://www.cc.gatech.edu/~dovrolis/bw-est/ DISTNAME= ${PORTNAME} MAINTAINER= ports@FreeBSD.org COMMENT= Measurement tool for network path available bandwidth estimation -BROKEN= Unfetchable +LICENSE= GPLv2 +LICENSE_FILE= ${WRKSRC}/COPYING + GNU_CONFIGURE= yes USES= gmake @@ -25,8 +27,7 @@ post-patch: ${WRKSRC}/pathload_rcv.c do-install: -.for f in pathload_rcv pathload_snd - ${INSTALL_PROGRAM} ${WRKSRC}/${f} ${STAGEDIR}${PREFIX}/bin -.endfor + (cd ${WRKSRC} && ${INSTALL_PROGRAM} pathload_rcv pathload_snd \ + ${STAGEDIR}${PREFIX}/bin) .include <bsd.port.mk> diff --git a/benchmarks/pathload/pkg-descr b/benchmarks/pathload/pkg-descr index cca4f90487a..6fb7dabd0de 100644 --- a/benchmarks/pathload/pkg-descr +++ b/benchmarks/pathload/pkg-descr @@ -1,3 +1,4 @@ -Pathload is a tool that can estimate the available bandwidth of network paths. +Pathload is a tool that can estimate the available bandwidth of network +paths. -WWW: http://www.pathrate.org +WWW: http://www.cc.gatech.edu/~dovrolis/bw-est/pathload.html |