net-misc/whois: Removed old.
authorLars Wendler <polynomial-c@gentoo.org>
Fri, 19 Jul 2019 21:45:44 +0000 (23:45 +0200)
committerLars Wendler <polynomial-c@gentoo.org>
Fri, 19 Jul 2019 21:45:44 +0000 (23:45 +0200)
Package-Manager: Portage-2.3.69, Repoman-2.3.16
Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
net-misc/whois/Manifest
net-misc/whois/whois-5.4.2.ebuild [deleted file]

index edcb625b7aa8bdbc4e2634290eca36a3c99c6b67..5a576acf2f2cc53a70edbdf1ca6c229ac6509501 100644 (file)
@@ -1,4 +1,3 @@
 DIST whois_5.3.2.tar.xz 82984 BLAKE2B 2e2d9ebf2e93831a1fa3e98a2f8922e531592b95175c9280358a37160a9033ee805baa6519304350399c112e619e293a2746df527ef5c580afbdde1542cbef06 SHA512 27d9576ee7b701778cac0dd7d4df2c4ae2d152fa5dfb3f84d7d5d592314e45872b2f3d6eca0754923ec3a0741e5365bf2238b2c0b366403c35e8a5b046e59434
-DIST whois_5.4.2.tar.xz 83832 BLAKE2B ea217d44c87fd92b6e005f344b31424a3a9481f6a892b911dcbe7794ab6e28229bb74bdea02be05ece9b18a5bd4802a4c7ab0433eaa3edcd18bb5bdd06cfe3d6 SHA512 09b10529a4cc1305802a4dcaa5090e05a4abb20863a622dcad3d1f0759d56c0604280fea703a1522af1e2ddf42e5dc34710c411f306debb420cda9e1956b3cde
 DIST whois_5.4.3.tar.xz 83904 BLAKE2B 19b78ca984c86ad711c317ca6090003ae354eee2b39f353081e99f44396e254b3cb75d38c8f6df9fe88283c5036e9e02f38c74401de8245dbd4f5dae3a6e1a0a SHA512 762feec983d29696796bea87fb47c5bd7357ca96d701b2e30cccb186c248225c45b451289ab45936d7e3eed5c0ff4e8fa249255ceb061a4e1ba1f6cd8fcdf084
 DIST whois_5.5.0.tar.xz 85600 BLAKE2B 37c90324e1b7c773793e1eaff70816f90a6429ab91bafcff36dfa02ea09b4eb5e83b8cd36e1ca0bc5eb3a043f1973f4479037de38cf41a7b7ac646845697636f SHA512 a26730613b8019385e48c7432bcc9871984a7035e53e56188a876e70e255a1adf23d546dfeb1706879af5c4a8f2231976fe89d2571b3d2cb6d615a7834a2d876
diff --git a/net-misc/whois/whois-5.4.2.ebuild b/net-misc/whois/whois-5.4.2.ebuild
deleted file mode 100644 (file)
index 05fc6a7..0000000
+++ /dev/null
@@ -1,65 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit toolchain-funcs
-
-MY_P="${P/-/_}"
-DESCRIPTION="improved Whois Client"
-HOMEPAGE="https://www.linux.it/~md/software/"
-SRC_URI="mirror://debian/pool/main/w/whois/${MY_P}.tar.xz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux"
-IUSE="iconv idn nls"
-RESTRICT="test" #59327
-
-RDEPEND="iconv? ( virtual/libiconv )
-       idn? ( net-dns/libidn2:= )
-       nls? ( virtual/libintl )"
-DEPEND="${RDEPEND}
-       app-arch/xz-utils
-       >=dev-lang/perl-5
-       virtual/pkgconfig
-       nls? ( sys-devel/gettext )"
-
-PATCHES=(
-       "${FILESDIR}"/${PN}-4.7.2-config-file.patch
-       "${FILESDIR}"/${PN}-5.3.0-libidn_automagic.patch
-)
-
-src_prepare() {
-       default
-       if use nls ; then
-               sed -i -e 's:#\(.*pos\):\1:' Makefile || die
-       else
-               sed -i -e '/ENABLE_NLS/s:define:undef:' config.h || die
-
-               # don't generate po files when nls is disabled (bug #419889)
-               sed -i -e '/^all:/s/ pos//' \
-                       -e '/^install:/s/ install-pos//' Makefile || die
-       fi
-}
-
-src_configure() { :; } # expected no-op
-
-src_compile() {
-       unset HAVE_ICONV HAVE_LIBIDN
-       use iconv && export HAVE_ICONV=1
-       use idn && export HAVE_LIBIDN=1
-       tc-export CC
-       emake CFLAGS="${CFLAGS} ${CPPFLAGS}"
-}
-
-src_install() {
-       emake BASEDIR="${ED}" prefix=/usr install
-       insinto /etc
-       doins whois.conf
-       dodoc README debian/changelog
-
-       if [[ ${USERLAND} != "GNU" ]]; then
-               mv "${ED%/}"/usr/share/man/man1/{whois,mdwhois}.1 || die
-               mv "${ED%/}"/usr/bin/{whois,mdwhois} || die
-       fi
-}