commit: 5f53e79a02caf41a76d6987ad678003bd042fac4 Author: Eli Schwartz <eschwartz <AT> gentoo <DOT> org> AuthorDate: Mon Aug 26 04:47:18 2024 +0000 Commit: Eli Schwartz <eschwartz <AT> gentoo <DOT> org> CommitDate: Mon Aug 26 13:12:42 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5f53e79a
sci-libs/spqr: make sure elibtoolize is applied Needed to e.g. pass LTO warning flags through to the linker. Signed-off-by: Eli Schwartz <eschwartz <AT> gentoo.org> sci-libs/spqr/spqr-2.0.9-r3.ebuild | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/sci-libs/spqr/spqr-2.0.9-r3.ebuild b/sci-libs/spqr/spqr-2.0.9-r3.ebuild index b63bdbe966ea..a7499f3bf790 100644 --- a/sci-libs/spqr/spqr-2.0.9-r3.ebuild +++ b/sci-libs/spqr/spqr-2.0.9-r3.ebuild @@ -1,8 +1,10 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 +inherit libtool + DESCRIPTION="Multithreaded multifrontal sparse QR factorization library" HOMEPAGE="https://people.engr.tamu.edu/davis/suitesparse.html" SRC_URI="http://202.36.178.9/sage/${P}.tar.bz2" @@ -25,6 +27,11 @@ DEPEND=" tbb? ( <dev-cpp/tbb-2021:= )" RDEPEND="${DEPEND}" +src_prepare() { + default + elibtoolize +} + src_configure() { econf \ --disable-static \
