diff options
author | Eli Schwartz <eschwartz93@gmail.com> | 2024-03-27 00:16:56 -0400 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2024-03-27 04:49:47 +0000 |
commit | 5232e815915a4f51e8704d0f835726b07a08ad0f (patch) | |
tree | e4f954fdedc14a1607b02a05cf4970cca526da89 /sci-libs/matio | |
parent | dev-perl/PDL: mark as LTO-unsafe (diff) | |
download | gentoo-5232e815915a4f51e8704d0f835726b07a08ad0f.tar.gz gentoo-5232e815915a4f51e8704d0f835726b07a08ad0f.tar.bz2 gentoo-5232e815915a4f51e8704d0f835726b07a08ad0f.zip |
sci-libs/matio: 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/matio')
-rw-r--r-- | sci-libs/matio/matio-1.5.23.ebuild | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/sci-libs/matio/matio-1.5.23.ebuild b/sci-libs/matio/matio-1.5.23.ebuild index 07f134ffdfa6..9e66ecdece8b 100644 --- a/sci-libs/matio/matio-1.5.23.ebuild +++ b/sci-libs/matio/matio-1.5.23.ebuild @@ -3,6 +3,8 @@ EAPI=8 +inherit libtool + DESCRIPTION="Library for reading and writing matlab files" HOMEPAGE="https://sourceforge.net/projects/matio/" SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" @@ -18,6 +20,11 @@ RDEPEND=" DEPEND="${RDEPEND}" BDEPEND="doc? ( virtual/latex-base )" +src_prepare() { + default + elibtoolize +} + src_configure() { econf \ --disable-static \ |