summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWolfram Schlich <wschlich@gentoo.org>2008-01-06 02:40:58 +0000
committerWolfram Schlich <wschlich@gentoo.org>2008-01-06 02:40:58 +0000
commit634d3693aa0ff1d91d0d6943cf107c75d633db80 (patch)
tree20db123dc6fe0bf8df01150984a0cadc0325c4c1 /net-misc/gwhois
parentPush out small pkg-config fix as pointed out by Thomas A. #202771. (diff)
downloadgentoo-2-634d3693aa0ff1d91d0d6943cf107c75d633db80.tar.gz
gentoo-2-634d3693aa0ff1d91d0d6943cf107c75d633db80.tar.bz2
gentoo-2-634d3693aa0ff1d91d0d6943cf107c75d633db80.zip
version bump
(Portage version: 2.1.4_rc14)
Diffstat (limited to 'net-misc/gwhois')
-rw-r--r--net-misc/gwhois/ChangeLog10
-rw-r--r--net-misc/gwhois/files/digest-gwhois-200710303
-rw-r--r--net-misc/gwhois/gwhois-20071030.ebuild44
3 files changed, 55 insertions, 2 deletions
diff --git a/net-misc/gwhois/ChangeLog b/net-misc/gwhois/ChangeLog
index 56d2ba616743..3749ea486262 100644
--- a/net-misc/gwhois/ChangeLog
+++ b/net-misc/gwhois/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for net-misc/gwhois
-# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/gwhois/ChangeLog,v 1.25 2007/12/05 01:08:30 wschlich Exp $
+# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-misc/gwhois/ChangeLog,v 1.26 2008/01/06 02:40:57 wschlich Exp $
+
+*gwhois-20071030 (06 Jan 2008)
+
+ 06 Jan 2008; Wolfram Schlich <wschlich@gentoo.org>
+ +gwhois-20071030.ebuild:
+ version bump
*gwhois-20070926 (05 Dec 2007)
diff --git a/net-misc/gwhois/files/digest-gwhois-20071030 b/net-misc/gwhois/files/digest-gwhois-20071030
new file mode 100644
index 000000000000..af52020b5049
--- /dev/null
+++ b/net-misc/gwhois/files/digest-gwhois-20071030
@@ -0,0 +1,3 @@
+MD5 05c8524669639108bbbff5d42ba99ca6 gwhois_20071030.tar.gz 31895
+RMD160 59b55a547be5619e5f399ecaec052085ba008c5c gwhois_20071030.tar.gz 31895
+SHA256 757a00d29204ddbdb3eec1b71bc2055b4cb2ee2a63791b96a2b4cee2b9bd99af gwhois_20071030.tar.gz 31895
diff --git a/net-misc/gwhois/gwhois-20071030.ebuild b/net-misc/gwhois/gwhois-20071030.ebuild
new file mode 100644
index 000000000000..2886a388a1d1
--- /dev/null
+++ b/net-misc/gwhois/gwhois-20071030.ebuild
@@ -0,0 +1,44 @@
+# Copyright 1999-2008 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/net-misc/gwhois/gwhois-20071030.ebuild,v 1.1 2008/01/06 02:40:57 wschlich Exp $
+
+inherit eutils
+
+DESCRIPTION="generic whois"
+HOMEPAGE="http://gwhois.de/"
+SRC_URI="http://gwhois.de/gwhois/${P/-/_}.tar.gz"
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~sparc ~x86"
+IUSE=""
+
+RDEPEND="www-client/lynx
+ net-misc/curl
+ dev-lang/perl
+ dev-perl/libwww-perl"
+
+src_install() {
+ dodir /etc/gwhois
+ insinto /etc/gwhois
+ doins pattern
+ dobin gwhois
+ doman gwhois.1
+ dodoc TODO "${FILESDIR}/gwhois.xinetd" README.RIPE README.upgrade
+ einfo ""
+ einfo "See included gwhois.xinetd for an example on how to"
+ einfo "use gwhois as a whois proxy using xinetd."
+ einfo "Just copy gwhois.xinetd to /etc/xinetd.d/gwhois"
+ einfo "and reload xinetd."
+ einfo ""
+}
+
+pkg_postinst() {
+ if [ -f /etc/gwhois/pattern.ripe ]; then
+ ewarn ""
+ ewarn "Will move old /etc/gwhois/pattern.ripe to removethis-pattern.ripe"
+ ewarn "as it causes malfunction with this version."
+ ewarn "If you did not modify the file, just remove it."
+ ewarn ""
+ mv /etc/gwhois/pattern.ripe /etc/gwhois/removethis-pattern.ripe
+ fi
+}