summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTimothy Redaelli <drizzt@gentoo.org>2006-10-27 19:35:10 +0000
committerTimothy Redaelli <drizzt@gentoo.org>2006-10-27 19:35:10 +0000
commitc05c6a04667abb78e54e3ce4f887e7f5d37bb205 (patch)
tree821930e1f653d8348adddd858e9667b7fc2649dd /net-misc/jwhois
parentBump to 2.16.1 (diff)
downloadgentoo-2-c05c6a04667abb78e54e3ce4f887e7f5d37bb205.tar.gz
gentoo-2-c05c6a04667abb78e54e3ce4f887e7f5d37bb205.tar.bz2
gentoo-2-c05c6a04667abb78e54e3ce4f887e7f5d37bb205.zip
Version bump, addition of support for eselect-whois.
Authorized by Roy Marples. (Portage version: 2.1.2_pre3-r7)
Diffstat (limited to 'net-misc/jwhois')
-rw-r--r--net-misc/jwhois/ChangeLog8
-rw-r--r--net-misc/jwhois/files/digest-jwhois-3.2.3-r13
-rw-r--r--net-misc/jwhois/jwhois-3.2.3-r1.ebuild39
3 files changed, 49 insertions, 1 deletions
diff --git a/net-misc/jwhois/ChangeLog b/net-misc/jwhois/ChangeLog
index 3a48e27edcf0..4694c61a32aa 100644
--- a/net-misc/jwhois/ChangeLog
+++ b/net-misc/jwhois/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for net-misc/jwhois
# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/jwhois/ChangeLog,v 1.25 2006/04/23 17:54:35 kumba Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/jwhois/ChangeLog,v 1.26 2006/10/27 19:35:10 drizzt Exp $
+
+*jwhois-3.2.3-r1 (27 Oct 2006)
+
+ 27 Oct 2006; Timothy Redaelli <drizzt@gentoo.org> +jwhois-3.2.3-r1.ebuild:
+ Version bump, addition of support for eselect-whois.
+ Authorized by Roy Marples.
29 Apr 2006; Joshua Kinard <kumba@gentoo.org> jwhois-3.2.3.ebuild:
Marked stable on mips.
diff --git a/net-misc/jwhois/files/digest-jwhois-3.2.3-r1 b/net-misc/jwhois/files/digest-jwhois-3.2.3-r1
new file mode 100644
index 000000000000..962c4cf1cc7b
--- /dev/null
+++ b/net-misc/jwhois/files/digest-jwhois-3.2.3-r1
@@ -0,0 +1,3 @@
+MD5 1232661cebd79a9772f416599d3f5929 jwhois-3.2.3.tar.gz 430792
+RMD160 32624b5472beb7cc383f2cf46cb3be7800ad41db jwhois-3.2.3.tar.gz 430792
+SHA256 ada17cb751ec09f91d4f22938bf9a83e7cc548f2cfce09fcc00101c142583f24 jwhois-3.2.3.tar.gz 430792
diff --git a/net-misc/jwhois/jwhois-3.2.3-r1.ebuild b/net-misc/jwhois/jwhois-3.2.3-r1.ebuild
new file mode 100644
index 000000000000..baaf1045cfd3
--- /dev/null
+++ b/net-misc/jwhois/jwhois-3.2.3-r1.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2006 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/net-misc/jwhois/jwhois-3.2.3-r1.ebuild,v 1.1 2006/10/27 19:35:10 drizzt Exp $
+
+DESCRIPTION="Advanced Internet Whois client capable of recursive queries"
+HOMEPAGE="http://www.gnu.org/software/jwhois/"
+SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="nls"
+
+RDEPEND="app-admin/eselect-whois"
+DEPEND=""
+
+src_compile() {
+ econf \
+ --localstatedir=/var/cache \
+ --without-cache \
+ $(use_enable nls) \
+ || die "econf failed"
+ emake || die
+}
+
+src_install() {
+ emake DESTDIR="${D}" install || die
+ dodoc AUTHORS ChangeLog NEWS README TODO
+}
+
+pkg_postinst() {
+ einfo "Setting /usr/bin/whois symlink"
+ eselect whois update --if-unset
+}
+
+pkg_postrm() {
+ einfo "Updating /usr/bin/whois symlink"
+ eselect whois update
+}