diff options
author | Jakov Smolic <jakov.smolic@sartura.hr> | 2020-11-16 00:23:01 +0100 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2020-11-16 00:23:01 +0100 |
commit | 143d7e1ac1349286df61127b0d768d8e0ae963c0 (patch) | |
tree | 07d8b6a36105d88c46e0625dd615084533616420 /dev-libs/libpo6 | |
parent | dev-libs/hyperleveldb: disable static libs (diff) | |
download | gentoo-143d7e1ac1349286df61127b0d768d8e0ae963c0.tar.gz gentoo-143d7e1ac1349286df61127b0d768d8e0ae963c0.tar.bz2 gentoo-143d7e1ac1349286df61127b0d768d8e0ae963c0.zip |
dev-libs/libpo6: disable static libs
Closes: https://bugs.gentoo.org/723170
Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: Jakov Smolic <jakov.smolic@sartura.hr>
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'dev-libs/libpo6')
-rw-r--r-- | dev-libs/libpo6/libpo6-0.8.0.ebuild | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/dev-libs/libpo6/libpo6-0.8.0.ebuild b/dev-libs/libpo6/libpo6-0.8.0.ebuild index 810e8444c7be..94435303959f 100644 --- a/dev-libs/libpo6/libpo6-0.8.0.ebuild +++ b/dev-libs/libpo6/libpo6-0.8.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -11,7 +11,11 @@ LICENSE="BSD" SLOT="0" KEYWORDS="~amd64" -IUSE="" +src_configure() { + econf --disable-static +} -DEPEND="" -RDEPEND="${DEPEND}" +src_install() { + default + find "${ED}" -name '*.la' -delete || die +} |