diff options
author | Matt Turner <mattst88@gentoo.org> | 2021-01-08 22:42:30 -0500 |
---|---|---|
committer | Matt Turner <mattst88@gentoo.org> | 2021-01-08 22:59:18 -0500 |
commit | 9632a58f3b2dc17aaad34657ffcdc62e34f7f6f8 (patch) | |
tree | e2df4efa12257e0750aa5e52168323c2a93d80dc /dev-libs/9libs/9libs-1.0-r4.ebuild | |
parent | dev-python/django-rq: bump to 2.4.0 (diff) | |
download | gentoo-9632a58f3b2dc17aaad34657ffcdc62e34f7f6f8.tar.gz gentoo-9632a58f3b2dc17aaad34657ffcdc62e34f7f6f8.tar.bz2 gentoo-9632a58f3b2dc17aaad34657ffcdc62e34f7f6f8.zip |
dev-libs/9libs: Drop IUSE=static-libs
Signed-off-by: Matt Turner <mattst88@gentoo.org>
Diffstat (limited to 'dev-libs/9libs/9libs-1.0-r4.ebuild')
-rw-r--r-- | dev-libs/9libs/9libs-1.0-r4.ebuild | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/dev-libs/9libs/9libs-1.0-r4.ebuild b/dev-libs/9libs/9libs-1.0-r4.ebuild index cc510097ffa9..b8a794c0c29b 100644 --- a/dev-libs/9libs/9libs-1.0-r4.ebuild +++ b/dev-libs/9libs/9libs-1.0-r4.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -11,11 +11,10 @@ SRC_URI="https://www.netlib.org/research/9libs/${P}.tar.bz2" LICENSE="PLAN9" SLOT="0" KEYWORDS="amd64 x86" -IUSE="static-libs" DEPEND=" - >=x11-libs/libX11-1.0.0[static-libs?] - >=x11-libs/libXt-1.0.0[static-libs?] + >=x11-libs/libX11-1.0.0 + >=x11-libs/libXt-1.0.0 " RDEPEND=" ${DEPEND} @@ -36,8 +35,8 @@ src_configure() { tc-export CC econf \ - $(use_enable static-libs static) \ --enable-shared \ + --disable-static \ --includedir=/usr/include/9libs \ --with-x } @@ -51,7 +50,5 @@ src_install() { mv "${D}"/usr/share/man/man3/${f}.{3,3g} || die done - if ! use static-libs; then - find "${ED}" -name '*.la' -delete || die - fi + find "${ED}" -name '*.la' -delete || die } |