Gentoo Archives: gentoo-commits

From: Lars Wendler <polynomial-c@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/whois/
Date: Sat, 27 Oct 2018 15:29:21
Message-Id: 1540654148.4f2b07255cca3bb2a738cd05fc77a6e58a92d48d.polynomial-c@gentoo
1 commit: 4f2b07255cca3bb2a738cd05fc77a6e58a92d48d
2 Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
3 AuthorDate: Sat Oct 27 15:27:56 2018 +0000
4 Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
5 CommitDate: Sat Oct 27 15:29:08 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4f2b0725
7
8 net-misc/whois: Bump to version 5.4.0
9
10 Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>
11 Package-Manager: Portage-2.3.51, Repoman-2.3.11
12
13 net-misc/whois/Manifest | 1 +
14 net-misc/whois/whois-5.4.0.ebuild | 65 +++++++++++++++++++++++++++++++++++++++
15 2 files changed, 66 insertions(+)
16
17 diff --git a/net-misc/whois/Manifest b/net-misc/whois/Manifest
18 index 1d18692b1cc..c463757f5aa 100644
19 --- a/net-misc/whois/Manifest
20 +++ b/net-misc/whois/Manifest
21 @@ -1,3 +1,4 @@
22 DIST whois_5.2.20.tar.xz 82336 BLAKE2B b10d7e22f41bfb68cdd1264016bbfeeb93436a5c46b0ddcfc79834d0446ea8c21cd8ff95bc440bbe4fda0d5b08a16c50fe9504c98c3de3cf4ce18892203518e1 SHA512 3308d9f5562babe007e46b7764718f13c1e7cd8ef7f501161353e4b1b81efacec9742ec25dec3b1cc80940898c785c1920a1aa68af10081f952ebde320075808
23 DIST whois_5.3.1.tar.xz 82920 BLAKE2B b4e58ae3f58c8e5de8bca5be3c0e753e0de91651bea1aa4789d389bc65e5155cddb1e87a2adc39340f33360533ef2b86eb9b7b13116a2d64e8a68496529e65e5 SHA512 4840ceecaef1d47bda436f8de8b539ff2b1446dd99ec0867d0bb2b478c13fac190a4a265ab31abb30a779f1a221062f298cd01a1b19ce873221b39dbd3a4a3d7
24 DIST whois_5.3.2.tar.xz 82984 BLAKE2B 2e2d9ebf2e93831a1fa3e98a2f8922e531592b95175c9280358a37160a9033ee805baa6519304350399c112e619e293a2746df527ef5c580afbdde1542cbef06 SHA512 27d9576ee7b701778cac0dd7d4df2c4ae2d152fa5dfb3f84d7d5d592314e45872b2f3d6eca0754923ec3a0741e5365bf2238b2c0b366403c35e8a5b046e59434
25 +DIST whois_5.4.0.tar.xz 83576 BLAKE2B fb21094227bc254e7901d0af667206f742657093b2dc25dc066ccb727d07fbc9cef7443f29d0bd22e307d2127689f9fe33e55282e0311f968039bb0fbe48417f SHA512 d6b8f097eaaab216d862503c96aff32777caec3597b357fb2589b86e98c6ff52f35b18ea5f33d1ece23250c61f849daf9943a2895fe563b05fcbd26718b3b80e
26
27 diff --git a/net-misc/whois/whois-5.4.0.ebuild b/net-misc/whois/whois-5.4.0.ebuild
28 new file mode 100644
29 index 00000000000..ae4f333c28e
30 --- /dev/null
31 +++ b/net-misc/whois/whois-5.4.0.ebuild
32 @@ -0,0 +1,65 @@
33 +# Copyright 1999-2018 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=6
37 +inherit toolchain-funcs
38 +
39 +MY_P="${P/-/_}"
40 +DESCRIPTION="improved Whois Client"
41 +HOMEPAGE="https://www.linux.it/~md/software/"
42 +SRC_URI="mirror://debian/pool/main/w/whois/${MY_P}.tar.xz"
43 +
44 +LICENSE="GPL-2"
45 +SLOT="0"
46 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux"
47 +IUSE="iconv idn nls"
48 +RESTRICT="test" #59327
49 +
50 +RDEPEND="iconv? ( virtual/libiconv )
51 + idn? ( net-dns/libidn2:= )
52 + nls? ( virtual/libintl )"
53 +DEPEND="${RDEPEND}
54 + app-arch/xz-utils
55 + >=dev-lang/perl-5
56 + virtual/pkgconfig
57 + nls? ( sys-devel/gettext )"
58 +
59 +PATCHES=(
60 + "${FILESDIR}"/${PN}-4.7.2-config-file.patch
61 + "${FILESDIR}"/${PN}-5.3.0-libidn_automagic.patch
62 +)
63 +
64 +src_prepare() {
65 + default
66 + if use nls ; then
67 + sed -i -e 's:#\(.*pos\):\1:' Makefile || die
68 + else
69 + sed -i -e '/ENABLE_NLS/s:define:undef:' config.h || die
70 +
71 + # don't generate po files when nls is disabled (bug #419889)
72 + sed -i -e '/^all:/s/ pos//' \
73 + -e '/^install:/s/ install-pos//' Makefile || die
74 + fi
75 +}
76 +
77 +src_configure() { :; } # expected no-op
78 +
79 +src_compile() {
80 + unset HAVE_ICONV HAVE_LIBIDN
81 + use iconv && export HAVE_ICONV=1
82 + use idn && export HAVE_LIBIDN=1
83 + tc-export CC
84 + emake CFLAGS="${CFLAGS} ${CPPFLAGS}"
85 +}
86 +
87 +src_install() {
88 + emake BASEDIR="${ED}" prefix=/usr install
89 + insinto /etc
90 + doins whois.conf
91 + dodoc README debian/changelog
92 +
93 + if [[ ${USERLAND} != "GNU" ]]; then
94 + mv "${ED%/}"/usr/share/man/man1/{whois,mdwhois}.1 || die
95 + mv "${ED%/}"/usr/bin/{whois,mdwhois} || die
96 + fi
97 +}