Gentoo Archives: gentoo-commits

From: Matt Turner <mattst88@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/9libs/
Date: Sat, 09 Jan 2021 03:59:32
Message-Id: 1610164758.9632a58f3b2dc17aaad34657ffcdc62e34f7f6f8.mattst88@gentoo
1 commit: 9632a58f3b2dc17aaad34657ffcdc62e34f7f6f8
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jan 9 03:42:30 2021 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Sat Jan 9 03:59:18 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9632a58f
7
8 dev-libs/9libs: Drop IUSE=static-libs
9
10 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
11
12 dev-libs/9libs/9libs-1.0-r4.ebuild | 13 +++++--------
13 1 file changed, 5 insertions(+), 8 deletions(-)
14
15 diff --git a/dev-libs/9libs/9libs-1.0-r4.ebuild b/dev-libs/9libs/9libs-1.0-r4.ebuild
16 index cc510097ffa..b8a794c0c29 100644
17 --- a/dev-libs/9libs/9libs-1.0-r4.ebuild
18 +++ b/dev-libs/9libs/9libs-1.0-r4.ebuild
19 @@ -1,4 +1,4 @@
20 -# Copyright 1999-2020 Gentoo Authors
21 +# Copyright 1999-2021 Gentoo Authors
22 # Distributed under the terms of the GNU General Public License v2
23
24 EAPI=7
25 @@ -11,11 +11,10 @@ SRC_URI="https://www.netlib.org/research/9libs/${P}.tar.bz2"
26 LICENSE="PLAN9"
27 SLOT="0"
28 KEYWORDS="amd64 x86"
29 -IUSE="static-libs"
30
31 DEPEND="
32 - >=x11-libs/libX11-1.0.0[static-libs?]
33 - >=x11-libs/libXt-1.0.0[static-libs?]
34 + >=x11-libs/libX11-1.0.0
35 + >=x11-libs/libXt-1.0.0
36 "
37 RDEPEND="
38 ${DEPEND}
39 @@ -36,8 +35,8 @@ src_configure() {
40 tc-export CC
41
42 econf \
43 - $(use_enable static-libs static) \
44 --enable-shared \
45 + --disable-static \
46 --includedir=/usr/include/9libs \
47 --with-x
48 }
49 @@ -51,7 +50,5 @@ src_install() {
50 mv "${D}"/usr/share/man/man3/${f}.{3,3g} || die
51 done
52
53 - if ! use static-libs; then
54 - find "${ED}" -name '*.la' -delete || die
55 - fi
56 + find "${ED}" -name '*.la' -delete || die
57 }