dev-libs/igraph: Remove libtool archives

Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: David Seifert <soap@gentoo.org>
This commit is contained in:
David Seifert
2020-08-23 19:01:34 +02:00
parent 9cb2f52e90
commit e807e60264

View File

@@ -1,7 +1,7 @@
# Copyright 1999-2016 Gentoo Foundation
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
EAPI=7
inherit autotools toolchain-funcs
@@ -22,8 +22,8 @@ RDEPEND="
>=sci-libs/cxsparse-3
sci-mathematics/glpk
gmp? ( dev-libs/gmp:0 )"
DEPEND="${RDEPEND}
virtual/pkgconfig"
DEPEND="${RDEPEND}"
BDEPEND="virtual/pkgconfig"
PATCHES=( "${FILESDIR}"/${P}-unbundle.patch )
@@ -37,6 +37,7 @@ src_configure() {
econf \
$(use_enable gmp) \
$(use_enable debug) \
--disable-static \
--disable-tls \
--with-external-arpack \
--with-external-blas \
@@ -44,3 +45,10 @@ src_configure() {
--with-external-f2c \
--with-external-glpk
}
src_install() {
default
# no static archives
find "${D}" -name '*.la' -delete || die
}