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 7A3C9159C9B for ; Fri, 9 Aug 2024 13:02:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4A8672BC0E0; Fri, 9 Aug 2024 13:02:51 +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 E28A32BC0E0 for ; Fri, 9 Aug 2024 13:02:50 +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 D525C3430ED for ; Fri, 9 Aug 2024 13:02:48 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 42D2F1EB8 for ; Fri, 9 Aug 2024 13:02:47 +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: <1723208535.59fb489ea732490f6f535afb622c66ca88a5d1f5.eschwartz@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libcanberra/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/libcanberra/libcanberra-0.30-r7.ebuild X-VCS-Directories: media-libs/libcanberra/ X-VCS-Committer: eschwartz X-VCS-Committer-Name: Eli Schwartz X-VCS-Revision: 59fb489ea732490f6f535afb622c66ca88a5d1f5 X-VCS-Branch: master Date: Fri, 9 Aug 2024 13:02:47 +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: 8bb66b26-373f-4aba-b24b-481e7277b302 X-Archives-Hash: 6ab83517861a1d8f7b42f79776d6d0ef commit: 59fb489ea732490f6f535afb622c66ca88a5d1f5 Author: Eli Schwartz gentoo org> AuthorDate: Fri Aug 9 02:01:01 2024 +0000 Commit: Eli Schwartz gentoo org> CommitDate: Fri Aug 9 13:02:15 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=59fb489e media-libs/libcanberra: 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/libcanberra/libcanberra-0.30-r7.ebuild | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/media-libs/libcanberra/libcanberra-0.30-r7.ebuild b/media-libs/libcanberra/libcanberra-0.30-r7.ebuild index 31565f4ebc7c..7378cc9eee19 100644 --- a/media-libs/libcanberra/libcanberra-0.30-r7.ebuild +++ b/media-libs/libcanberra/libcanberra-0.30-r7.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 -inherit multilib-minimal systemd +inherit libtool multilib-minimal systemd DESCRIPTION="Portable sound event library" HOMEPAGE="http://0pointer.de/lennart/projects/libcanberra/" @@ -48,6 +48,11 @@ PATCHES=( "${FILESDIR}/${PN}-0.30-wayland.patch" ) +src_prepare() { + default + elibtoolize +} + multilib_src_configure() { ECONF_SOURCE="${S}" econf \ --docdir="${EPREFIX}"/usr/share/doc/${PF} \