diff options
author | Wolfram Schlich <wschlich@gentoo.org> | 2007-12-05 01:08:30 +0000 |
---|---|---|
committer | Wolfram Schlich <wschlich@gentoo.org> | 2007-12-05 01:08:30 +0000 |
commit | 4fe3afc14b4466d626922657bd2281be38f20da7 (patch) | |
tree | f9c4c2bde65bdd1beb827eae24df0f9d50132c2c /net-misc/gwhois | |
parent | Stable for SPARC (bug #201249, thanks to Tiago Cunha). (diff) | |
download | gentoo-2-4fe3afc14b4466d626922657bd2281be38f20da7.tar.gz gentoo-2-4fe3afc14b4466d626922657bd2281be38f20da7.tar.bz2 gentoo-2-4fe3afc14b4466d626922657bd2281be38f20da7.zip |
version bump
(Portage version: 2.1.4_rc7)
Diffstat (limited to 'net-misc/gwhois')
-rw-r--r-- | net-misc/gwhois/ChangeLog | 8 | ||||
-rw-r--r-- | net-misc/gwhois/files/digest-gwhois-20070926 | 3 | ||||
-rw-r--r-- | net-misc/gwhois/gwhois-20070926.ebuild | 44 |
3 files changed, 54 insertions, 1 deletions
diff --git a/net-misc/gwhois/ChangeLog b/net-misc/gwhois/ChangeLog index aec3cefe71e9..56d2ba616743 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.24 2007/09/06 09:39:25 wschlich Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/gwhois/ChangeLog,v 1.25 2007/12/05 01:08:30 wschlich Exp $ + +*gwhois-20070926 (05 Dec 2007) + + 05 Dec 2007; Wolfram Schlich <wschlich@gentoo.org> + +gwhois-20070926.ebuild: + version bump *gwhois-20070905 (06 Sep 2007) diff --git a/net-misc/gwhois/files/digest-gwhois-20070926 b/net-misc/gwhois/files/digest-gwhois-20070926 new file mode 100644 index 000000000000..f5cc86c27529 --- /dev/null +++ b/net-misc/gwhois/files/digest-gwhois-20070926 @@ -0,0 +1,3 @@ +MD5 e2cecd2b0b969fb8f1da451dccbd53bf gwhois_20070926.tar.gz 31587 +RMD160 3145a873a5bc20b202e4188a73f6c9a188aed908 gwhois_20070926.tar.gz 31587 +SHA256 714230928805de3de00a016ec07a4b78a98af6bb58617cb856158c4a0fcfbc65 gwhois_20070926.tar.gz 31587 diff --git a/net-misc/gwhois/gwhois-20070926.ebuild b/net-misc/gwhois/gwhois-20070926.ebuild new file mode 100644 index 000000000000..ffb0dd9eb66b --- /dev/null +++ b/net-misc/gwhois/gwhois-20070926.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/gwhois/gwhois-20070926.ebuild,v 1.1 2007/12/05 01:08:30 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 +} |