From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id E56B6158041 for ; Wed, 27 Mar 2024 04:52:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A1B56E2A35; Wed, 27 Mar 2024 04:52:14 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 8617EE2A35 for ; Wed, 27 Mar 2024 04:52:14 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 788A8343097 for ; Wed, 27 Mar 2024 04:52:13 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B6A3C15F4 for ; Wed, 27 Mar 2024 04:52:11 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1711514987.5232e815915a4f51e8704d0f835726b07a08ad0f.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/matio/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-libs/matio/matio-1.5.23.ebuild X-VCS-Directories: sci-libs/matio/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 5232e815915a4f51e8704d0f835726b07a08ad0f X-VCS-Branch: master Date: Wed, 27 Mar 2024 04:52:11 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: e9de2390-e17b-41c6-b0f3-60cb5a1cf0c3 X-Archives-Hash: e360d349a6d71202da9fd7766b4647ef commit: 5232e815915a4f51e8704d0f835726b07a08ad0f Author: Eli Schwartz gmail com> AuthorDate: Wed Mar 27 04:16:56 2024 +0000 Commit: Sam James gentoo org> CommitDate: Wed Mar 27 04:49:47 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5232e815 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 gmail.com> Signed-off-by: Sam James gentoo.org> sci-libs/matio/matio-1.5.23.ebuild | 7 +++++++ 1 file changed, 7 insertions(+) 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 \