summaryrefslogtreecommitdiff
path: root/net/jwhois
diff options
context:
space:
mode:
authortv <tv>2001-10-31 15:08:29 +0000
committertv <tv>2001-10-31 15:08:29 +0000
commite480817c9da4824a96349c9589ed56e316f3e94d (patch)
tree6073d2b9402774ec6459627749389b8467ddd2b3 /net/jwhois
parent2b12da20bb6041379030a6841f4d4ceacee69a6b (diff)
downloadpkgsrc-e480817c9da4824a96349c9589ed56e316f3e94d.tar.gz
Clean out my pkgsrc diffs:
Update jwhois to 3.0.1. Changes: * Command line option to disable content redirection * Lots of information added to the example configuration file * IPv6 failover to IPv4 * Option to display redirections instead of hiding them * Case insensitive hostname matching * Introduced new host-specific configuration * Limited support for rwhois * Support for sending queries through a web interface via external browser * Ability to rewrite queries before sending to whois server * Support for whois-servers.net
Diffstat (limited to 'net/jwhois')
-rw-r--r--net/jwhois/Makefile8
-rw-r--r--net/jwhois/distinfo6
-rw-r--r--net/jwhois/pkg/DEINSTALL4
-rw-r--r--net/jwhois/pkg/INSTALL11
-rw-r--r--net/jwhois/pkg/PLIST3
5 files changed, 10 insertions, 22 deletions
diff --git a/net/jwhois/Makefile b/net/jwhois/Makefile
index 64baf610ead..dd068cdee5c 100644
--- a/net/jwhois/Makefile
+++ b/net/jwhois/Makefile
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.12 2001/08/01 16:39:30 wiz Exp $
+# $NetBSD: Makefile,v 1.13 2001/10/31 15:08:29 tv Exp $
#
-DISTNAME= jwhois-2.4.1
+DISTNAME= jwhois-3.0.1
CATEGORIES= net
MASTER_SITES= ${MASTER_SITE_GNU:=jwhois/}
@@ -9,11 +9,9 @@ MAINTAINER= packages@netbsd.org
HOMEPAGE= http://www.gnu.org/software/jwhois/
COMMENT= Configurable WHOIS client
-BUILD_USES_MSGFMT= # defined
-
USE_BUILDLINK_ONLY= # defined
GNU_CONFIGURE= # defined
-CONFIGURE_ARGS+= --sysconfdir=/etc
+CONFIGURE_ARGS+= --sysconfdir=/usr/pkg/etc
CONFIGURE_ARGS+= --localstatedir=/var/db
CONFIGURE_ARGS+= --with-cache
diff --git a/net/jwhois/distinfo b/net/jwhois/distinfo
index 508ad7cb11a..265bda057dc 100644
--- a/net/jwhois/distinfo
+++ b/net/jwhois/distinfo
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.3 2001/06/17 21:47:52 jlam Exp $
+$NetBSD: distinfo,v 1.4 2001/10/31 15:08:29 tv Exp $
-SHA1 (jwhois-2.4.1.tar.gz) = fafe2ec46cf5be9dd95d15a51172938acc845f3a
-Size (jwhois-2.4.1.tar.gz) = 245008 bytes
+SHA1 (jwhois-3.0.1.tar.gz) = e0c8e9ea42ab7a99606a0d04740a05232644fff2
+Size (jwhois-3.0.1.tar.gz) = 298506 bytes
SHA1 (patch-aa) = 649e4ff47b7ae8985573cd4bc53954d3cd4d5fe3
diff --git a/net/jwhois/pkg/DEINSTALL b/net/jwhois/pkg/DEINSTALL
index be36a165514..fb9fd3347c0 100644
--- a/net/jwhois/pkg/DEINSTALL
+++ b/net/jwhois/pkg/DEINSTALL
@@ -1,6 +1,6 @@
#!/bin/sh
#
-# $NetBSD: DEINSTALL,v 1.1 2000/08/12 06:29:18 jlam Exp $
+# $NetBSD: DEINSTALL,v 1.2 2001/10/31 15:08:29 tv Exp $
PKGNAME=$1
STAGE=$2
@@ -9,7 +9,6 @@ case ${STAGE} in
DEINSTALL)
;;
POST-DEINSTALL)
- CONF=/etc/jwhois.conf
DBCACHE=/var/db/jwhois.db
cat << EOF
@@ -17,7 +16,6 @@ POST-DEINSTALL)
If you won't be using ${PKGNAME} any longer, you may want to remove the
following files:
- ${CONF}
${DBCACHE}
===========================================================================
EOF
diff --git a/net/jwhois/pkg/INSTALL b/net/jwhois/pkg/INSTALL
index 52ae5f617f3..dd4986dd048 100644
--- a/net/jwhois/pkg/INSTALL
+++ b/net/jwhois/pkg/INSTALL
@@ -1,6 +1,6 @@
#!/bin/sh
#
-# $NetBSD: INSTALL,v 1.1 2000/08/12 06:29:18 jlam Exp $
+# $NetBSD: INSTALL,v 1.2 2001/10/31 15:08:29 tv Exp $
PKGNAME=$1
STAGE=$2
@@ -10,19 +10,10 @@ PRE-INSTALL)
;;
POST-INSTALL)
EXAMPLE_DIR=${PKG_PREFIX}/share/examples
- INSTALL_DATA="/usr/bin/install -c -o root -g wheel -m 0644"
- CONF=/etc/jwhois.conf
INSTALL_CACHE="/usr/bin/install -c -o root -g nogroup -m 0664 /dev/null"
DBCACHE=/var/db/jwhois.db
- conf=`basename ${CONF}`
- if [ ! -f ${CONF} ]
- then
- echo "Installing example ${conf} in /etc..."
- ${INSTALL_DATA} ${EXAMPLE_DIR}/${conf} ${CONF}
- fi
-
if [ ! -f ${DBCACHE} ]
then
echo "Creating empty cache file ${DBCACHE}..."
diff --git a/net/jwhois/pkg/PLIST b/net/jwhois/pkg/PLIST
index 4006b5cb96c..fcb9d573135 100644
--- a/net/jwhois/pkg/PLIST
+++ b/net/jwhois/pkg/PLIST
@@ -1,8 +1,9 @@
-@comment $NetBSD: PLIST,v 1.3 2001/06/17 21:47:53 jlam Exp $
+@comment $NetBSD: PLIST,v 1.4 2001/10/31 15:08:29 tv Exp $
bin/jwhois
@unexec install-info --delete %D/info/jwhois.info %D/info/dir
info/jwhois.info
@exec install-info %D/info/jwhois.info %D/info/dir
man/man1/jwhois.1
share/examples/jwhois.conf
+${PKGLOCALEDIR}/locale/ru/LC_MESSAGES/jwhois.mo
${PKGLOCALEDIR}/locale/sv/LC_MESSAGES/jwhois.mo