summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakov Smolic <jakov.smolic@sartura.hr>2020-11-16 00:22:52 +0100
committerDavid Seifert <soap@gentoo.org>2020-11-16 00:22:52 +0100
commitd629b4a88774f4584ce4e0551f62d6919d4ddffb (patch)
tree97ecd61500c1d35832d80a089f438bd0b2b851f8 /dev-libs
parentdev-games/paklib: disable static libs (diff)
downloadgentoo-d629b4a88774f4584ce4e0551f62d6919d4ddffb.tar.gz
gentoo-d629b4a88774f4584ce4e0551f62d6919d4ddffb.tar.bz2
gentoo-d629b4a88774f4584ce4e0551f62d6919d4ddffb.zip
dev-libs/busybee: disable static libs
Closes: https://bugs.gentoo.org/723172 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')
-rw-r--r--dev-libs/busybee/busybee-0.7.0.ebuild13
1 files changed, 10 insertions, 3 deletions
diff --git a/dev-libs/busybee/busybee-0.7.0.ebuild b/dev-libs/busybee/busybee-0.7.0.ebuild
index 165343bc960f..ad936c434700 100644
--- a/dev-libs/busybee/busybee-0.7.0.ebuild
+++ b/dev-libs/busybee/busybee-0.7.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,8 +11,15 @@ LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64"
-IUSE=""
-
DEPEND=">=dev-libs/libpo6-0.8
>=dev-libs/libe-0.11"
RDEPEND="${DEPEND}"
+
+src_configure() {
+ econf --disable-static
+}
+
+src_install() {
+ default
+ find "${ED}" -name '*.la' -delete || die
+}