diff options
author | krion <krion@FreeBSD.org> | 2003-12-04 19:21:05 +0000 |
---|---|---|
committer | krion <krion@FreeBSD.org> | 2003-12-04 19:21:05 +0000 |
commit | f5417d0d0c9d6f76dba459c464f2666128c56e99 (patch) | |
tree | c71122dddaf4540ab85827a359e40ea8e6416b67 | |
parent | 14209a4d03a2c291761022e12988982fcfa86cad (diff) | |
download | FreeBSD-ports-f5417d0d0c9d6f76dba459c464f2666128c56e99.zip FreeBSD-ports-f5417d0d0c9d6f76dba459c464f2666128c56e99.tar.gz |
- Update to version 1.0.5
PR: 59911
Submitted by: Kimura Fuyuki <fuyuki@nigredo.org>
-rw-r--r-- | net/bing/Makefile | 5 | ||||
-rw-r--r-- | net/bing/distinfo | 2 | ||||
-rw-r--r-- | net/bing/files/patch-aa | 19 | ||||
-rw-r--r-- | net/bing/pkg-descr | 2 | ||||
-rw-r--r-- | net/bing/pkg-plist | 4 |
5 files changed, 7 insertions, 25 deletions
diff --git a/net/bing/Makefile b/net/bing/Makefile index 7d71cdf..0d98b13 100644 --- a/net/bing/Makefile +++ b/net/bing/Makefile @@ -6,10 +6,9 @@ # PORTNAME= bing -PORTVERSION= 1.0.4 -PORTREVISION= 1 +PORTVERSION= 1.0.5 CATEGORIES= net -MASTER_SITES= ftp://netsw.org/net/ip/audit/load/bing/ +MASTER_SITES= http://www.freenix.org/reseau/ MAINTAINER= ports@FreeBSD.org COMMENT= A point-to-point bandwith measurement tool diff --git a/net/bing/distinfo b/net/bing/distinfo index 2c886ef..e46902f 100644 --- a/net/bing/distinfo +++ b/net/bing/distinfo @@ -1 +1 @@ -MD5 (bing-1.0.4.tar.gz) = 33533c137cbe31931ece57b1e5b9d552 +MD5 (bing-1.0.5.tar.gz) = 6ff7c1c2f3586935ed69cbe2deb4f95b diff --git a/net/bing/files/patch-aa b/net/bing/files/patch-aa deleted file mode 100644 index 71b0978..0000000 --- a/net/bing/files/patch-aa +++ /dev/null @@ -1,19 +0,0 @@ ---- bing.c.orig Thu Jul 20 16:45:32 1995 -+++ bing.c Sat Mar 4 16:13:05 2000 -@@ -718,13 +718,13 @@ - u_long l; - { - struct hostent *hp; -- static char buf[80]; -+ static char buf[MAXHOSTNAMELEN+19]; - - if ((options & F_NUMERIC) || - !(hp = gethostbyaddr((char *)&l, 4, AF_INET))) -- (void)sprintf(buf, "%s", inet_ntoa(*(struct in_addr *)&l)); -+ (void)snprintf(buf, sizeof(buf), "%s", inet_ntoa(*(struct in_addr *)&l)); - else -- (void)sprintf(buf, "%s (%s)", hp->h_name, -+ (void)snprintf(buf, sizeof(buf), "%s (%s)", hp->h_name, - inet_ntoa(*(struct in_addr *)&l)); - return(buf); - } diff --git a/net/bing/pkg-descr b/net/bing/pkg-descr index 15bb6b0..4a9575f 100644 --- a/net/bing/pkg-descr +++ b/net/bing/pkg-descr @@ -1,2 +1,4 @@ Bing is a point-to-point bandwidth measurement tool (hence the 'b'), based on ping. It is written by Pierre Beyssac <pb@fasterix.freenix.fr>. + +WWW: http://www.freenix.fr/freenix/logiciels/bing.html diff --git a/net/bing/pkg-plist b/net/bing/pkg-plist index 0e069c3..ade8a80 100644 --- a/net/bing/pkg-plist +++ b/net/bing/pkg-plist @@ -1,3 +1,3 @@ bin/bing -share/doc/bing/README -@dirrm share/doc/bing +%%DOCSDIR%%/README +@dirrm %%DOCSDIR%% |