diff options
author | Wolfram Schlich <wschlich@gentoo.org> | 2006-10-09 15:34:42 +0000 |
---|---|---|
committer | Wolfram Schlich <wschlich@gentoo.org> | 2006-10-09 15:34:42 +0000 |
commit | dc5a2893531e94996b181700a143fc347c83907a (patch) | |
tree | 9fbb0db3e60addec2aa1f9e9c275c143b3f498a0 /net-misc | |
parent | Cleaning up stale ebuilds (diff) | |
download | gentoo-2-dc5a2893531e94996b181700a143fc347c83907a.tar.gz gentoo-2-dc5a2893531e94996b181700a143fc347c83907a.tar.bz2 gentoo-2-dc5a2893531e94996b181700a143fc347c83907a.zip |
version bump
(Portage version: 2.1.1_pre4-r3)
Diffstat (limited to 'net-misc')
-rw-r--r-- | net-misc/gwhois/ChangeLog | 8 | ||||
-rw-r--r-- | net-misc/gwhois/files/digest-gwhois-20061002 | 3 | ||||
-rw-r--r-- | net-misc/gwhois/gwhois-20061002.ebuild | 44 |
3 files changed, 54 insertions, 1 deletions
diff --git a/net-misc/gwhois/ChangeLog b/net-misc/gwhois/ChangeLog index 9af1c235d1d0..9d58583bf9c0 100644 --- a/net-misc/gwhois/ChangeLog +++ b/net-misc/gwhois/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for net-misc/gwhois # Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/gwhois/ChangeLog,v 1.11 2006/08/05 23:09:50 chriswhite Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/gwhois/ChangeLog,v 1.12 2006/10/09 15:34:42 wschlich Exp $ + +*gwhois-20061002 (09 Oct 2006) + + 09 Oct 2006; Wolfram Schlich <wschlich@gentoo.org> + +gwhois-20061002.ebuild: + version bump 05 Aug 2006; Chris White <chriswhite@gentoo.org> metadata.xml: metadata.xml translation by Yoshino-san in bug #135906 diff --git a/net-misc/gwhois/files/digest-gwhois-20061002 b/net-misc/gwhois/files/digest-gwhois-20061002 new file mode 100644 index 000000000000..dc7ccb7d7d5c --- /dev/null +++ b/net-misc/gwhois/files/digest-gwhois-20061002 @@ -0,0 +1,3 @@ +MD5 c2bc47dd047e7ce73c4bfbede7883f79 gwhois_20061002.tar.gz 30412 +RMD160 6f72fb267494b63419a60ceea314515a987cc06b gwhois_20061002.tar.gz 30412 +SHA256 bf0d24c6776d5c73e0cc702dc95266a7b524ca76d110bddd800c986db43cf408 gwhois_20061002.tar.gz 30412 diff --git a/net-misc/gwhois/gwhois-20061002.ebuild b/net-misc/gwhois/gwhois-20061002.ebuild new file mode 100644 index 000000000000..c534d2b2702d --- /dev/null +++ b/net-misc/gwhois/gwhois-20061002.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/gwhois/gwhois-20061002.ebuild,v 1.1 2006/10/09 15:34:42 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 +} |