summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakov Smolic <jakov.smolic@sartura.hr>2020-11-14 21:18:49 +0100
committerDavid Seifert <soap@gentoo.org>2020-11-14 21:18:49 +0100
commitc100bc5df805fb9fa141be7bc85daa6d2eccded3 (patch)
tree3f9972a99ee74b2da5ca2d8bf188682e8b49c9b8 /dev-util
parentdev-libs/pcl: disable static libs (diff)
downloadgentoo-c100bc5df805fb9fa141be7bc85daa6d2eccded3.tar.gz
gentoo-c100bc5df805fb9fa141be7bc85daa6d2eccded3.tar.bz2
gentoo-c100bc5df805fb9fa141be7bc85daa6d2eccded3.zip
dev-util/colm: disable static libs
Closes: https://bugs.gentoo.org/723534 Package-Manager: Portage-3.0.4, 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-util')
-rw-r--r--dev-util/colm/colm-0.13.0.5.ebuild10
1 files changed, 9 insertions, 1 deletions
diff --git a/dev-util/colm/colm-0.13.0.5.ebuild b/dev-util/colm/colm-0.13.0.5.ebuild
index a64627ad7bb8..ec66f5a78c62 100644
--- a/dev-util/colm/colm-0.13.0.5.ebuild
+++ b/dev-util/colm/colm-0.13.0.5.ebuild
@@ -10,6 +10,14 @@ SRC_URI="https://www.colm.net/files/${PN}/${P}.tar.gz"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="amd64 arm arm64 ~ia64 x86 ~amd64-linux ~x86-linux"
-IUSE=""
DEPEND="app-text/asciidoc"
+
+src_configure() {
+ econf --disable-static
+}
+
+src_install() {
+ default
+ find "${ED}" -name '*.la' -delete || die
+}