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 AE0ED15939F for ; Mon, 8 Jul 2024 03:19:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C7A822BC015; Mon, 8 Jul 2024 03:19:08 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 4EBF72BC018 for ; Mon, 8 Jul 2024 03:19:08 +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 69A91343052 for ; Mon, 8 Jul 2024 03:19:07 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A6DC51DF2 for ; Mon, 8 Jul 2024 03:19:05 +0000 (UTC) From: "Eli Schwartz" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Eli Schwartz" Message-ID: <1720408718.59f2556b041f91278457fa3a5d9831dbda0652fd.eschwartz@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/flac/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/flac/flac-1.4.3.ebuild X-VCS-Directories: media-libs/flac/ X-VCS-Committer: eschwartz X-VCS-Committer-Name: Eli Schwartz X-VCS-Revision: 59f2556b041f91278457fa3a5d9831dbda0652fd X-VCS-Branch: master Date: Mon, 8 Jul 2024 03:19:05 +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: 79068e13-4930-4f83-a258-2b87706d8055 X-Archives-Hash: e7f775428e2086b2f8eb048f5a38e65d commit: 59f2556b041f91278457fa3a5d9831dbda0652fd Author: Eli Schwartz gentoo org> AuthorDate: Sun Jul 7 22:15:25 2024 +0000 Commit: Eli Schwartz gentoo org> CommitDate: Mon Jul 8 03:18:38 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=59f2556b media-libs/flac: make sure elibtoolize is applied Needed to e.g. pass LTO warning flags through to the linker. Signed-off-by: Eli Schwartz gentoo.org> media-libs/flac/flac-1.4.3.ebuild | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/media-libs/flac/flac-1.4.3.ebuild b/media-libs/flac/flac-1.4.3.ebuild index 88c731fe0cbc..c68945a115f4 100644 --- a/media-libs/flac/flac-1.4.3.ebuild +++ b/media-libs/flac/flac-1.4.3.ebuild @@ -3,7 +3,7 @@ EAPI=8 -inherit flag-o-matic multilib-minimal +inherit flag-o-matic libtool multilib-minimal DESCRIPTION="Free lossless audio encoder and decoder" HOMEPAGE="https://xiph.org/flac/" @@ -27,6 +27,11 @@ BDEPEND=" virtual/pkgconfig " +src_prepare() { + default + elibtoolize +} + multilib_src_configure() { # -fipa-pta exposes a test failure in replaygain_analysis (https://gcc.gnu.org/PR115533) # TOOD: Replace with some -ffp-contract= option?