aboutsummaryrefslogtreecommitdiff
path: root/net/jwhois
diff options
context:
space:
mode:
authorMakoto Matsushita <matusita@FreeBSD.org>2003-11-10 15:00:10 +0000
committerMakoto Matsushita <matusita@FreeBSD.org>2003-11-10 15:00:10 +0000
commitb8a9afb08d7069149cffc269a1c013dd0a6cb03e (patch)
treea065242576aa830c779ca13f6a1866cd2caad472 /net/jwhois
parentab0d20a62ae2f7b2351f10e2e4743e2ffcdbeece (diff)
downloadports-b8a9afb08d7069149cffc269a1c013dd0a6cb03e.tar.gz
ports-b8a9afb08d7069149cffc269a1c013dd0a6cb03e.zip
Update to 3.2.2.
PR: 59090 Submitted by: Jason Harris <jharris@widomaker.com>
Notes
Notes: svn path=/head/; revision=93662
Diffstat (limited to 'net/jwhois')
-rw-r--r--net/jwhois/Makefile3
-rw-r--r--net/jwhois/distinfo2
-rw-r--r--net/jwhois/files/patch-ad10
-rw-r--r--net/jwhois/files/patch-ae20
4 files changed, 2 insertions, 33 deletions
diff --git a/net/jwhois/Makefile b/net/jwhois/Makefile
index 1e7de70995d0..0b489bea0cca 100644
--- a/net/jwhois/Makefile
+++ b/net/jwhois/Makefile
@@ -6,8 +6,7 @@
#
PORTNAME= jwhois
-PORTVERSION= 3.2.1
-PORTREVISION= 2
+PORTVERSION= 3.2.2
CATEGORIES= net
MASTER_SITES= ${MASTER_SITE_GNU}
MASTER_SITE_SUBDIR= jwhois
diff --git a/net/jwhois/distinfo b/net/jwhois/distinfo
index 752a1b793ea5..9ae5780722c8 100644
--- a/net/jwhois/distinfo
+++ b/net/jwhois/distinfo
@@ -1 +1 @@
-MD5 (jwhois-3.2.1.tar.gz) = 0d54fd61a7f2fe5d585279b88466d994
+MD5 (jwhois-3.2.2.tar.gz) = 3ad57a8cfc4f32fe41b1131711d34a78
diff --git a/net/jwhois/files/patch-ad b/net/jwhois/files/patch-ad
deleted file mode 100644
index cad849ba2e67..000000000000
--- a/net/jwhois/files/patch-ad
+++ /dev/null
@@ -1,10 +0,0 @@
---- example/jwhois.conf 2003/02/04 21:21:16 1.94
-+++ example/jwhois.conf 2003/02/12 20:01:16 1.95
-@@ -410,6 +410,7 @@
- "^COHO-[0-9]+$" = "whois.corenic.net";
-
- ".*-RIPE$" = "whois.ripe.net";
-+ ".*-MNT$" = "whois.ripe.net";
- ".*-ARIN$" = "whois.arin.net";
- ".*-AP$" = "whois.apnic.net";
- ".*-ORG$" = "whois.internic.net";
diff --git a/net/jwhois/files/patch-ae b/net/jwhois/files/patch-ae
deleted file mode 100644
index 8c6452e27103..000000000000
--- a/net/jwhois/files/patch-ae
+++ /dev/null
@@ -1,20 +0,0 @@
---- src/lookup.c 2002/08/02 22:17:41 1.33
-+++ src/lookup.c 2003/02/04 21:21:16 1.34
-@@ -391,7 +391,7 @@
- {
- memcpy(bptr, text, strlen(text)+1);
-
-- strptr = (char *)strtok(bptr, "\n");
-+ strptr = (char *)strtok(bptr, "\r\n");
- while (strptr)
- {
- rpb.allocated = 0;
-@@ -443,7 +443,7 @@
- }
- else if (ind == -2)
- return -1;
-- strptr = (char *)strtok(NULL, "\n");
-+ strptr = (char *)strtok(NULL, "\r\n");
- }
- }
- }