diff options
author | Alessandro Barbieri <lssndrbarbieri@gmail.com> | 2019-10-07 01:41:27 +0200 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2019-10-20 15:34:50 +0200 |
commit | 1d331e11cdc51047c25cb0c13eb28cd59cfabd62 (patch) | |
tree | 87ee3b47a6ab22686778199f6df472f8ea353eaf /sci-libs/arpack/arpack-9999.ebuild | |
parent | media-libs/zimg: disable static libraries (diff) | |
download | gentoo-1d331e11cdc51047c25cb0c13eb28cd59cfabd62.tar.gz gentoo-1d331e11cdc51047c25cb0c13eb28cd59cfabd62.tar.bz2 gentoo-1d331e11cdc51047c25cb0c13eb28cd59cfabd62.zip |
sci-libs/arpack: disable static libraries
Closes: https://bugs.gentoo.org/694130
Closes: https://github.com/gentoo/gentoo/pull/13060
Package-Manager: Portage-2.3.76, Repoman-2.3.17
Signed-off-by: Alessandro Barbieri <lssndrbarbieri@gmail.com>
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'sci-libs/arpack/arpack-9999.ebuild')
-rw-r--r-- | sci-libs/arpack/arpack-9999.ebuild | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/sci-libs/arpack/arpack-9999.ebuild b/sci-libs/arpack/arpack-9999.ebuild index 26930345b335..e81afe18fb49 100644 --- a/sci-libs/arpack/arpack-9999.ebuild +++ b/sci-libs/arpack/arpack-9999.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 inherit autotools eutils fortran-2 toolchain-funcs @@ -19,7 +19,7 @@ DESCRIPTION="Arnoldi package library to solve large scale eigenvalue problems" HOMEPAGE="http://www.caam.rice.edu/software/ARPACK/ https://github.com/opencollab/arpack-ng" LICENSE="BSD" SLOT="0" -IUSE="examples mpi static-libs" +IUSE="examples mpi" RDEPEND=" virtual/blas @@ -35,6 +35,7 @@ src_prepare() { src_configure() { econf \ + --disable-static \ --with-blas="$($(tc-getPKG_CONFIG) --libs blas)" \ --with-lapack="$($(tc-getPKG_CONFIG) --libs lapack)" \ $(use_enable mpi) |