diff options
author | Kirill Ponomarev <krion@FreeBSD.org> | 2003-12-04 19:21:05 +0000 |
---|---|---|
committer | Kirill Ponomarev <krion@FreeBSD.org> | 2003-12-04 19:21:05 +0000 |
commit | 7fe387f6292bbe9d220f40e67929baed80661858 (patch) | |
tree | bed9ce0fcae5a9a1c2659e6f31a33c02c57dd2c8 /net/bing | |
parent | 57213b778892d5caa151766dbec8d1e4126a3a65 (diff) |
- Update to version 1.0.5
PR: 59911
Submitted by: Kimura Fuyuki <fuyuki@nigredo.org>
Notes
Notes:
svn path=/head/; revision=95047
Diffstat (limited to 'net/bing')
-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 7d71cdfd2148..0d98b1316c94 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 2c886ef8cee7..e46902f853e9 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 71b0978cd1eb..000000000000 --- 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 15bb6b043930..4a9575fe2ac3 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 0e069c31fd48..ade8a804a78f 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%% |