net-misc/jwhois: drop old EAPI

Package-Manager: Portage-2.3.40, Repoman-2.3.9
This commit is contained in:
Aaron Bauman
2018-06-02 20:12:52 -04:00
parent 80f88b7017
commit a018483bf8
3 changed files with 0 additions and 68 deletions

View File

@@ -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

View File

@@ -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
}

View File

@@ -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
}