diff options
author | seb <seb@pkgsrc.org> | 2002-08-28 14:07:01 +0000 |
---|---|---|
committer | seb <seb@pkgsrc.org> | 2002-08-28 14:07:01 +0000 |
commit | 35cee5c2ca573b05c938a5667e0dcb8146b5ab9a (patch) | |
tree | 1b248a78e85510dbf715a5a7cc67087e46511d25 /net | |
parent | 51f599ac909845c966f69d73cecad602e893be43 (diff) | |
download | pkgsrc-35cee5c2ca573b05c938a5667e0dcb8146b5ab9a.tar.gz |
Update to version 3.1.
Changes in version 3.1:
2002-04-10
- 3.1 released
- Client now handles disconnect during "-k" better.
- Combine query into a single string before sending to (possibly)
reduce number of packets sent.
2001-10-26
- Help output and man page generated from text files.
- Fix broken query to non-RIPE servers.
2001-09-17
- Fixed bug where --port didn't allow service specified by name.
Diffstat (limited to 'net')
-rw-r--r-- | net/ripe-whois/Makefile | 8 | ||||
-rw-r--r-- | net/ripe-whois/distinfo | 7 | ||||
-rw-r--r-- | net/ripe-whois/patches/patch-aa | 22 |
3 files changed, 31 insertions, 6 deletions
diff --git a/net/ripe-whois/Makefile b/net/ripe-whois/Makefile index a1dbb2f78d5..326667644d9 100644 --- a/net/ripe-whois/Makefile +++ b/net/ripe-whois/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.1.1.1 2002/02/05 13:01:10 seb Exp $ +# $NetBSD: Makefile,v 1.2 2002/08/28 14:07:01 seb Exp $ # -DISTNAME= ripe-whois-3.0 +DISTNAME= ripe-whois-3.1 CATEGORIES= net MASTER_SITES= ftp://ftp.ripe.net/tools/ DISTFILES= ${DISTNAME}${EXTRACT_SUFX} ${ASCII_DOC} ${PS_DOC} @@ -10,8 +10,10 @@ MAINTAINER= seb@netbsd.org HOMEPAGE= http://www.ripe.net/ripencc/pub-services/db/ COMMENT= RIPE very simple and generic whois client -WRKSRC= ${WRKDIR}/whois-3.0 +WRKSRC= ${WRKDIR}/whois-3.1 GNU_CONFIGURE= YES +USE_PERL5= build +MAKE_ENV+= PERL5=${PERL5} ASCII_DOC= ripe-223.txt PS_DOC= ripe-223.ps diff --git a/net/ripe-whois/distinfo b/net/ripe-whois/distinfo index 0fa9eb17706..1d489c94b7e 100644 --- a/net/ripe-whois/distinfo +++ b/net/ripe-whois/distinfo @@ -1,8 +1,9 @@ -$NetBSD: distinfo,v 1.1.1.1 2002/02/05 13:01:10 seb Exp $ +$NetBSD: distinfo,v 1.2 2002/08/28 14:07:01 seb Exp $ -SHA1 (ripe-whois-3.0.tar.gz) = dc0aacdbff90959add659d20d1151001f1bbe70a -Size (ripe-whois-3.0.tar.gz) = 21248 bytes +SHA1 (ripe-whois-3.1.tar.gz) = 9651935183c6fe2fc3b1c3c001368480a6c7decc +Size (ripe-whois-3.1.tar.gz) = 26342 bytes SHA1 (ripe-223.txt) = 962bca7ddcb70863e2925d45f17b120a21bf605c Size (ripe-223.txt) = 112854 bytes SHA1 (ripe-223.ps) = 9c25f2b92151a05f26844f51695fd40ea57aa7f2 Size (ripe-223.ps) = 263983 bytes +SHA1 (patch-aa) = 4b1532bba7eb4b120c601933bdcb40419c493666 diff --git a/net/ripe-whois/patches/patch-aa b/net/ripe-whois/patches/patch-aa new file mode 100644 index 00000000000..54c5057d69c --- /dev/null +++ b/net/ripe-whois/patches/patch-aa @@ -0,0 +1,22 @@ +$NetBSD: patch-aa,v 1.1 2002/08/28 14:07:02 seb Exp $ + +--- Makefile.in.orig Wed Apr 17 16:45:02 2002 ++++ Makefile.in +@@ -65,7 +65,7 @@ $(TARGET): $(OBJS) + $(CC) $(CFLAGS) -o $(TARGET) $(OBJS) $(LIBS) + + flags.h: FLAGS.txt +- perl flags2hdr.pl flags.h < FLAGS.txt > flags.h ++ ${PERL5} flags2hdr.pl flags.h < FLAGS.txt > flags.h + + $(MAN): + +@@ -73,7 +73,7 @@ whois3.1: whois3.1.i whois3.1.ii whois3. + cat whois3.1.i whois3.1.ii whois3.1.iii > whois3.1 + + whois3.1.ii: HELP.txt +- perl help2nroff.pl < HELP.txt > whois3.1.ii ++ ${PERL5} help2nroff.pl < HELP.txt > whois3.1.ii + + $(OBJS): $(SOURCES) + |