diff options
author | Jakov Smolic <jakov.smolic@sartura.hr> | 2020-11-14 21:19:40 +0100 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2020-11-14 21:19:40 +0100 |
commit | 785c90cfa242ac84cff475d5ec5e7f0ed64c14c3 (patch) | |
tree | f77adf4b499470ba292260e19f0b9bf01f8c69f5 /sci-libs/cln/cln-1.3.6.ebuild | |
parent | sci-chemistry/mopac7: disable static libs (diff) | |
download | gentoo-785c90cfa242ac84cff475d5ec5e7f0ed64c14c3.tar.gz gentoo-785c90cfa242ac84cff475d5ec5e7f0ed64c14c3.tar.bz2 gentoo-785c90cfa242ac84cff475d5ec5e7f0ed64c14c3.zip |
sci-libs/cln: disable static libs
Closes: https://bugs.gentoo.org/725420
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 'sci-libs/cln/cln-1.3.6.ebuild')
-rw-r--r-- | sci-libs/cln/cln-1.3.6.ebuild | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/sci-libs/cln/cln-1.3.6.ebuild b/sci-libs/cln/cln-1.3.6.ebuild index 66502b2bb272..f0d995c3dc05 100644 --- a/sci-libs/cln/cln-1.3.6.ebuild +++ b/sci-libs/cln/cln-1.3.6.ebuild @@ -12,7 +12,7 @@ SRC_URI="https://www.ginac.de/CLN/${P}.tar.bz2" LICENSE="GPL-2" SLOT="1" KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux" -IUSE="doc examples static-libs" +IUSE="doc examples" RDEPEND="dev-libs/gmp:0=" DEPEND="${RDEPEND} @@ -33,6 +33,10 @@ src_prepare() { Makefile.in || die } +src_configure() { + econf --disable-static +} + src_compile() { default if use doc; then @@ -51,4 +55,6 @@ src_install() { docinto examples dodoc examples/*.cc fi + + find "${ED}" -name '*.la' -delete || die } |