diff options
author | Aaron Bauman <bman@gentoo.org> | 2018-06-02 20:12:52 -0400 |
---|---|---|
committer | Aaron Bauman <bman@gentoo.org> | 2018-06-02 22:58:42 -0400 |
commit | a018483bf87f579cb709ecfdbfd11aa59d71e7c7 (patch) | |
tree | d27894bacd6d0d710dd72cd2387c42358617153e /net-misc/jwhois | |
parent | net-proxy/3proxy: drop old EAPI (diff) | |
download | gentoo-a018483bf87f579cb709ecfdbfd11aa59d71e7c7.tar.gz gentoo-a018483bf87f579cb709ecfdbfd11aa59d71e7c7.tar.bz2 gentoo-a018483bf87f579cb709ecfdbfd11aa59d71e7c7.zip |
net-misc/jwhois: drop old EAPI
Package-Manager: Portage-2.3.40, Repoman-2.3.9
Diffstat (limited to 'net-misc/jwhois')
-rw-r--r-- | net-misc/jwhois/Manifest | 1 | ||||
-rw-r--r-- | net-misc/jwhois/jwhois-3.2.3-r1.ebuild | 37 | ||||
-rw-r--r-- | net-misc/jwhois/jwhois-4.0.ebuild | 30 |
3 files changed, 0 insertions, 68 deletions
diff --git a/net-misc/jwhois/Manifest b/net-misc/jwhois/Manifest index 967a02798f7c..436a8c411d49 100644 --- a/net-misc/jwhois/Manifest +++ b/net-misc/jwhois/Manifest @@ -1,2 +1 @@ -DIST jwhois-3.2.3.tar.gz 430792 BLAKE2B 9708af6ee3a63c283cbcf581cfe78c22a7b9dad01a4133c3db85c019730e937dfc95a369fd8264c19f99193f8ae842365050e7a4fa9934da76945ae3ca05673f SHA512 92ffeef5d9134800d54326c2281eb38c030acf812d2420031438e1f9171875403384ac847bb6d9670aae3e3efa8cdfe2079c822f82550dc8b0450dcb05baf60d DIST jwhois-4.0.tar.gz 493007 BLAKE2B f578f2a57a95ce78829b859c3135c5ace8431b539bb3447e54633a262996a2d1d3c9802706171437acd325d99cc62773901d7473067307a322b4805d529b0292 SHA512 5d625c3f1031a8eb8ef766ef5d47a8c1a4396d1ad3344fc9449f80dd71ad84aadf21ba67f5c2f99348f732a4df998eefe699fcec4efcadf87f579b70302a44ae diff --git a/net-misc/jwhois/jwhois-3.2.3-r1.ebuild b/net-misc/jwhois/jwhois-3.2.3-r1.ebuild deleted file mode 100644 index 6c78a893b720..000000000000 --- a/net-misc/jwhois/jwhois-3.2.3-r1.ebuild +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=0 - -inherit eutils - -DESCRIPTION="Advanced Internet Whois client capable of recursive queries" -HOMEPAGE="https://www.gnu.org/software/jwhois/" -SRC_URI="mirror://gnu/${PN}/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86" -IUSE="nls" - -DEPEND="" - -src_unpack() { - unpack ${A} - cd "${S}" - epatch "${FILESDIR}"/${P}-whois-de.patch #159776 -} - -src_compile() { - econf \ - --localstatedir=/var/cache \ - --without-cache \ - $(use_enable nls) \ - || die "econf failed" - emake || die -} - -src_install() { - make DESTDIR="${D}" install || die - dodoc AUTHORS ChangeLog NEWS README TODO -} diff --git a/net-misc/jwhois/jwhois-4.0.ebuild b/net-misc/jwhois/jwhois-4.0.ebuild deleted file mode 100644 index f0d604d77d71..000000000000 --- a/net-misc/jwhois/jwhois-4.0.ebuild +++ /dev/null @@ -1,30 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=0 - -DESCRIPTION="Advanced Internet Whois client capable of recursive queries" -HOMEPAGE="https://www.gnu.org/software/jwhois/" -SRC_URI="mirror://gnu/${PN}/${P}.tar.gz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ~ppc ppc64 s390 sh sparc x86" -IUSE="idn nls" - -DEPEND="idn? ( net-dns/libidn )" - -src_compile() { - econf \ - --localstatedir=/var/cache \ - --without-cache \ - $(use_enable nls) \ - $(use_with idn libidn) \ - || die "econf failed" - emake || die -} - -src_install() { - emake DESTDIR="${D}" install || die - dodoc AUTHORS ChangeLog NEWS README TODO -} |