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: dev-libs/icu-le-hb/
Date: Thu, 21 May 2020 10:16:49
Message-Id: 1590056198.bbc9fb5e55563c8187146a1bd9edb0f8455fdadf.polynomial-c@gentoo
1 commit: bbc9fb5e55563c8187146a1bd9edb0f8455fdadf
2 Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
3 AuthorDate: Thu May 21 10:16:15 2020 +0000
4 Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
5 CommitDate: Thu May 21 10:16:38 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bbc9fb5e
7
8 dev-libs/icu-le-hb: Don't install archive files
9
10 Closes: https://bugs.gentoo.org/724432
11 Package-Manager: Portage-2.3.99, Repoman-2.3.22
12 Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>
13
14 .../{icu-le-hb-1.0.3.ebuild => icu-le-hb-1.0.3-r1.ebuild} | 12 ++++++++----
15 1 file changed, 8 insertions(+), 4 deletions(-)
16
17 diff --git a/dev-libs/icu-le-hb/icu-le-hb-1.0.3.ebuild b/dev-libs/icu-le-hb/icu-le-hb-1.0.3-r1.ebuild
18 similarity index 82%
19 rename from dev-libs/icu-le-hb/icu-le-hb-1.0.3.ebuild
20 rename to dev-libs/icu-le-hb/icu-le-hb-1.0.3-r1.ebuild
21 index 303b08a82b8..bc67bb2c0d3 100644
22 --- a/dev-libs/icu-le-hb/icu-le-hb-1.0.3.ebuild
23 +++ b/dev-libs/icu-le-hb/icu-le-hb-1.0.3-r1.ebuild
24 @@ -1,7 +1,7 @@
25 # Copyright 1999-2020 Gentoo Authors
26 # Distributed under the terms of the GNU General Public License v2
27
28 -EAPI=6
29 +EAPI=7
30
31 inherit autotools multilib-minimal
32
33 @@ -22,8 +22,8 @@ RDEPEND="
34 media-libs/harfbuzz:=[${MULTILIB_USEDEP}]
35 "
36
37 -DEPEND="
38 - ${RDEPEND}
39 +DEPEND="${RDEPEND}"
40 +BDEPEND="
41 virtual/pkgconfig[${MULTILIB_USEDEP}]
42 "
43
44 @@ -33,5 +33,9 @@ src_prepare() {
45 }
46
47 multilib_src_configure() {
48 - ECONF_SOURCE="${S}" econf
49 + ECONF_SOURCE="${S}" econf --disable-static
50 +}
51 +
52 +multilib_src_install_all() {
53 + find "${ED}" -type f -name "*.la" -delete || die
54 }