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 848F0158020 for ; Sat, 10 Dec 2022 02:44:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5BB7FE07FE; Sat, 10 Dec 2022 02:44:08 +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 41675E07FE for ; Sat, 10 Dec 2022 02:44: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 00C8C340F4D for ; Sat, 10 Dec 2022 02:44:07 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AE98E77D for ; Sat, 10 Dec 2022 02:44:04 +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: <1670640183.40b028161459dcad5ddbe429216c7632a0b7e80a.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/fdk-aac/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/fdk-aac/fdk-aac-2.0.2.ebuild X-VCS-Directories: media-libs/fdk-aac/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 40b028161459dcad5ddbe429216c7632a0b7e80a X-VCS-Branch: master Date: Sat, 10 Dec 2022 02:44:04 +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: 1e12203d-d057-41bc-9765-9776fdaedcac X-Archives-Hash: 9216fa593c62516b4439677ceb918873 commit: 40b028161459dcad5ddbe429216c7632a0b7e80a Author: Sam James gentoo org> AuthorDate: Sat Dec 10 02:42:57 2022 +0000 Commit: Sam James gentoo org> CommitDate: Sat Dec 10 02:43:03 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=40b02816 media-libs/fdk-aac: elibtoolize for -Werror=odr Closes: https://bugs.gentoo.org/884767 Signed-off-by: Sam James gentoo.org> media-libs/fdk-aac/fdk-aac-2.0.2.ebuild | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/media-libs/fdk-aac/fdk-aac-2.0.2.ebuild b/media-libs/fdk-aac/fdk-aac-2.0.2.ebuild index 4c39024a57df..375b82c75a5f 100644 --- a/media-libs/fdk-aac/fdk-aac-2.0.2.ebuild +++ b/media-libs/fdk-aac/fdk-aac-2.0.2.ebuild @@ -10,6 +10,7 @@ if [[ ${PV} == *9999* ]]; then [[ ${PV%9999} != "" ]] && EGIT_BRANCH="release/${PV%.9999}" inherit autotools git-r3 else + inherit libtool KEYWORDS="amd64 arm arm64 ~loong ppc ppc64 ~riscv x86 ~x64-macos" if [[ ${PV%_p*} != ${PV} ]]; then # Gentoo snapshot SRC_URI="mirror://gentoo/${P}.tar.xz" @@ -30,7 +31,12 @@ PATCHES=( "${FILESDIR}"/${P}-always_inline.patch ) src_prepare() { default - [[ ${PV} == *9999* ]] && eautoreconf + + if [[ ${PV} == *9999* ]] ; then + eautoreconf + else + elibtoolize + fi } multilib_src_configure() {