diff options
author | Martin Holzer <mholzer@gentoo.org> | 2003-01-29 19:27:03 +0000 |
---|---|---|
committer | Martin Holzer <mholzer@gentoo.org> | 2003-01-29 19:27:03 +0000 |
commit | 917d22a47e58a27b5c79e96bdef5598ae83438d4 (patch) | |
tree | 30dbc7d504deb4be45dad2670430682c58da9c73 /net-misc | |
parent | version bump (diff) | |
download | historical-917d22a47e58a27b5c79e96bdef5598ae83438d4.tar.gz historical-917d22a47e58a27b5c79e96bdef5598ae83438d4.tar.bz2 historical-917d22a47e58a27b5c79e96bdef5598ae83438d4.zip |
Version bumped.
Diffstat (limited to 'net-misc')
-rw-r--r-- | net-misc/whois/ChangeLog | 13 | ||||
-rw-r--r-- | net-misc/whois/files/digest-whois-4.6.2 | 1 | ||||
-rw-r--r-- | net-misc/whois/whois-4.6.2.ebuild | 60 |
3 files changed, 71 insertions, 3 deletions
diff --git a/net-misc/whois/ChangeLog b/net-misc/whois/ChangeLog index c19f4b2680d4..efe8dc8ad318 100644 --- a/net-misc/whois/ChangeLog +++ b/net-misc/whois/ChangeLog @@ -1,11 +1,18 @@ # ChangeLog for net-misc/whois # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/net-misc/whois/ChangeLog,v 1.9 2002/12/25 18:27:20 mholzer Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/whois/ChangeLog,v 1.10 2003/01/29 19:27:03 mholzer Exp $ + +*whois-4.6.2 (29 Jan 2003) + + 29 Jan 2003; Martin Holzer <mholzer@gentoo.org> whois-4.6.2.ebuild + files/digest-whois-4.6.2 ChangeLog : + Version bumped. Closes #14695. *whois-4.6.1 (25 Dec 2002) - 25 Dec 2002; Martin Holzer <mholzer@gentoo.org> whois-4.6.1.ebuild files/digest-whois-4.6.1 ChangeLog : - Version pumped. Closes #12107. + 25 Dec 2002; Martin Holzer <mholzer@gentoo.org> whois-4.6.1.ebuild + files/digest-whois-4.6.1 ChangeLog : + Version bumped. Closes #12107. *whois-4.5.33 (21 Nov 2002) diff --git a/net-misc/whois/files/digest-whois-4.6.2 b/net-misc/whois/files/digest-whois-4.6.2 new file mode 100644 index 000000000000..e34627b054a4 --- /dev/null +++ b/net-misc/whois/files/digest-whois-4.6.2 @@ -0,0 +1 @@ +MD5 9040d3ec3eb295f5073ea43b39ccfe60 whois_4.6.2.tar.gz 34754 diff --git a/net-misc/whois/whois-4.6.2.ebuild b/net-misc/whois/whois-4.6.2.ebuild new file mode 100644 index 000000000000..0251d2fda7f1 --- /dev/null +++ b/net-misc/whois/whois-4.6.2.ebuild @@ -0,0 +1,60 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/whois/whois-4.6.2.ebuild,v 1.1 2003/01/29 19:27:03 mholzer Exp $ + +IUSE="nls" +MY_P=${P/-/_} +DESCRIPTION="improved Whois Client" +SRC_URI="http://www.linux.it/~md/software/${MY_P}.tar.gz" +HOMEPAGE="http://www.linux.it/~md/software/" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="x86 ~ppc ~sparc " + +DEPEND=">=sys-devel/perl-5" +RDEPEND="virtual/glibc" + +src_unpack() { + + unpack ${A} + cd ${S} + cp Makefile Makefile.orig + sed \ + -e "s/-O2/$CFLAGS/" \ + Makefile.orig > Makefile + + use nls && ( \ + cd po + cp Makefile Makefile.orig + sed -e "s:/usr/bin/install:/bin/install:" \ + Makefile.orig > Makefile + ) || ( \ + cp Makefile Makefile.orig + sed "s:cd po.*::" \ + Makefile.orig > Makefile + ) + +} + +src_compile() { + + make || die + make mkpasswd || die + +} + +src_install() { + dodir /usr/bin + dodir /usr/share/man/man1 + use nls && dodir /usr/share/locale + make BASEDIR=${D} prefix=/usr mandir=/usr/share/man install || die + + dobin mkpasswd + doman mkpasswd.1 + dodoc README whois.conf debian/changelog debian/copyright + + einfo "" + einfo "The example whois.conf is located in /usr/doc/${P}" + einfo "" + +} |