diff options
author | David Seifert <soap@gentoo.org> | 2021-04-24 15:07:46 +0200 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2021-04-24 15:07:46 +0200 |
commit | d0dbe5bdd96740a978c86c3874430854744f4fa3 (patch) | |
tree | a6cf8d77520b67a10f6b1ba4498e9051afb9fc4f /sci-libs/cxsparse | |
parent | dev-libs/igraph: drop old bugged version (diff) | |
download | gentoo-d0dbe5bdd96740a978c86c3874430854744f4fa3.tar.gz gentoo-d0dbe5bdd96740a978c86c3874430854744f4fa3.tar.bz2 gentoo-d0dbe5bdd96740a978c86c3874430854744f4fa3.zip |
sci-libs/cxsparse: Remove IUSE="static-libs"
Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'sci-libs/cxsparse')
-rw-r--r-- | sci-libs/cxsparse/cxsparse-3.2.0.ebuild | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/sci-libs/cxsparse/cxsparse-3.2.0.ebuild b/sci-libs/cxsparse/cxsparse-3.2.0.ebuild index c5df715062a8..fa44cb7a77cd 100644 --- a/sci-libs/cxsparse/cxsparse-3.2.0.ebuild +++ b/sci-libs/cxsparse/cxsparse-3.2.0.ebuild @@ -12,21 +12,20 @@ SRC_URI="http://202.36.178.9/sage/${P}.tar.bz2" LICENSE="LGPL-2.1+" SLOT="0" KEYWORDS="amd64 arm arm64 ~hppa ppc ppc64 sparc x86 ~amd64-linux ~x86-linux" -IUSE="static-libs" +RDEPEND=">=sci-libs/suitesparseconfig-5.4.0[${MULTILIB_USEDEP}]" +DEPEND="${RDEPEND}" BDEPEND="virtual/pkgconfig" -DEPEND=">=sci-libs/suitesparseconfig-5.4.0[${MULTILIB_USEDEP}]" -RDEPEND="${DEPEND}" -PATCHES=( "${FILESDIR}/${PN}-3.2.0-header.patch" ) +PATCHES=( "${FILESDIR}"/${PN}-3.2.0-header.patch ) multilib_src_configure() { - ECONF_SOURCE="${S}" econf $(use_enable static-libs static) + ECONF_SOURCE="${S}" econf --disable-static } multilib_src_install_all() { einstalldocs - # package provides .pc files - find "${D}" -name '*.la' -delete || die + # no static archives + find "${ED}" -name '*.la' -delete || die } |