diff options
author | Eli Schwartz <eschwartz93@gmail.com> | 2024-06-16 19:20:09 -0400 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2024-06-17 02:46:50 +0100 |
commit | 315ceb2bccecf8bade8d806d5439a248cfe24610 (patch) | |
tree | 2811f2e866d25b83e8d3537eb06bf99dd40e3891 /sci-libs | |
parent | sci-libs/cholmod: fix missing autotools in src_prepare (diff) | |
download | gentoo-315ceb2bccecf8bade8d806d5439a248cfe24610.tar.gz gentoo-315ceb2bccecf8bade8d806d5439a248cfe24610.tar.bz2 gentoo-315ceb2bccecf8bade8d806d5439a248cfe24610.zip |
sci-libs/umfpack: make sure elibtoolize is applied
Needed to e.g. pass LTO warning flags through to the linker.
Signed-off-by: Eli Schwartz <eschwartz93@gmail.com>
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'sci-libs')
-rw-r--r-- | sci-libs/umfpack/umfpack-5.7.9.ebuild | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/sci-libs/umfpack/umfpack-5.7.9.ebuild b/sci-libs/umfpack/umfpack-5.7.9.ebuild index dc4a12bb49ba..35e0ed26dac3 100644 --- a/sci-libs/umfpack/umfpack-5.7.9.ebuild +++ b/sci-libs/umfpack/umfpack-5.7.9.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 -inherit toolchain-funcs +inherit libtool toolchain-funcs DESCRIPTION="Unsymmetric multifrontal sparse LU factorization library" HOMEPAGE="https://people.engr.tamu.edu/davis/suitesparse.html" @@ -23,6 +23,11 @@ DEPEND=" cholmod? ( sci-libs/cholmod )" RDEPEND="${DEPEND}" +src_prepare() { + default + elibtoolize +} + src_configure() { econf \ --disable-static \ |