Gentoo Archives: gentoo-commits

From: "Anthony G. Basile" <blueness@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libiconv/
Date: Sun, 02 Jul 2017 11:03:24
Message-Id: 1498993385.c0e3d86393da35f30d8f02d9b75c15055d3e1846.blueness@gentoo
1 commit: c0e3d86393da35f30d8f02d9b75c15055d3e1846
2 Author: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jul 2 11:03:05 2017 +0000
4 Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
5 CommitDate: Sun Jul 2 11:03:05 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c0e3d863
7
8 dev-libs/libiconv: remove older masked version
9
10 Package-Manager: Portage-2.3.6, Repoman-2.3.1
11
12 dev-libs/libiconv/Manifest | 1 -
13 dev-libs/libiconv/libiconv-1.13.1.ebuild | 57 --------------------------------
14 2 files changed, 58 deletions(-)
15
16 diff --git a/dev-libs/libiconv/Manifest b/dev-libs/libiconv/Manifest
17 index f6974165fad..1f26b8b7862 100644
18 --- a/dev-libs/libiconv/Manifest
19 +++ b/dev-libs/libiconv/Manifest
20 @@ -1,2 +1 @@
21 -DIST libiconv-1.13.1.tar.gz 4716070 SHA256 55a36168306089009d054ccdd9d013041bfc3ab26be7033d107821f1c4949a49 SHA512 8475b020769e66f56e476143b81da032e10b02b76b8b49468ce0d8c5658dca1a36940da5cde2fc7e82add2679fc9efe5cd2ea10ccd349682ff85a64d10101662 WHIRLPOOL 5f8b8f72176a3e80e416e3d0535e9ec77322f9a268567c7175f521d1cd3b15818779f28a0e50bac29048c26c14bb149450b81cc5af2d824ff4fc3c2559e0a97c
22 DIST libiconv-1.14.tar.gz 4984397 SHA256 72b24ded17d687193c3366d0ebe7cde1e6b18f0df8c55438ac95be39e8a30613 SHA512 b96774fefc4fa1d07948fcc667027701373c34ebf9c4101000428e048addd85a5bb5e05e59f80eb783a3054a3a8a3c0da909450053275bbbf3ffde511eb3f387 WHIRLPOOL e96337209a4f86eccb112e94c3cd6b668b2a8fc4b05ed7becaa2f6fbc9279f7b32ec1fa4b086e61520bfffea5d4f7a1cad58bdb266b5f0aa7d02b89aeed9759a
23
24 diff --git a/dev-libs/libiconv/libiconv-1.13.1.ebuild b/dev-libs/libiconv/libiconv-1.13.1.ebuild
25 deleted file mode 100644
26 index 5f07febde8a..00000000000
27 --- a/dev-libs/libiconv/libiconv-1.13.1.ebuild
28 +++ /dev/null
29 @@ -1,57 +0,0 @@
30 -# Copyright 1999-2009 Gentoo Foundation
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -inherit eutils multilib flag-o-matic libtool toolchain-funcs
34 -
35 -DESCRIPTION="GNU charset conversion library for libc which doesn't implement it"
36 -HOMEPAGE="https://www.gnu.org/software/libiconv/"
37 -SRC_URI="mirror://gnu/libiconv/${P}.tar.gz"
38 -
39 -LICENSE="GPL-3"
40 -SLOT="0"
41 -KEYWORDS="~sparc-fbsd ~x86-fbsd"
42 -IUSE=""
43 -
44 -DEPEND="!sys-libs/glibc
45 - !sys-apps/man-pages"
46 -RDEPEND="${DEPEND}"
47 -
48 -src_unpack() {
49 - unpack ${A}
50 - cd "${S}"
51 -
52 - # This patch is needed as libiconv 1.10 provides (and uses) new functions
53 - # and they are not present in the old libiconv.so, and this breaks the
54 - # ${DESTDIR} != ${prefix} that we use. It's a problem for Solaris, but we
55 - # don't have to deal with it for now.
56 - #epatch "${FILESDIR}"/${PN}-1.10-link.patch
57 -
58 - # Make sure that libtool support is updated to link "the linux way" on
59 - # FreeBSD.
60 - elibtoolize
61 -}
62 -
63 -src_compile() {
64 - # Install in /lib as utils installed in /lib like gnutar
65 - # can depend on this
66 -
67 - # Disable NLS support because that creates a circular dependency
68 - # between libiconv and gettext
69 -
70 - econf \
71 - --disable-nls \
72 - --enable-shared \
73 - --enable-static \
74 - || die "econf failed"
75 - emake || die "emake failed"
76 -}
77 -
78 -src_install() {
79 - emake DESTDIR="${D}" docdir="/usr/share/doc/${PF}/html" install || die "make install failed"
80 -
81 - # Move static libs and creates ldscripts into /usr/lib
82 - dodir /$(get_libdir)
83 - mv "${D}"/usr/$(get_libdir)/lib{iconv,charset}*$(get_libname)* "${D}/$(get_libdir)" || die
84 - gen_usr_ldscript libiconv$(get_libname)
85 - gen_usr_ldscript libcharset$(get_libname)
86 -}