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 F12E6158083 for ; Mon, 2 Sep 2024 01:27:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CFD80E2A07; Mon, 2 Sep 2024 01:27:11 +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 B3558E2A07 for ; Mon, 2 Sep 2024 01:27:11 +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 AA5B9343136 for ; Mon, 2 Sep 2024 01:27:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0EE421F33 for ; Mon, 2 Sep 2024 01:27:09 +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: <1725240390.6d9d3c27a7f7709bba568f8fae99b64f3eedd466.eschwartz@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libvisual/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/libvisual/libvisual-0.4.2-r1.ebuild X-VCS-Directories: media-libs/libvisual/ X-VCS-Committer: eschwartz X-VCS-Committer-Name: Eli Schwartz X-VCS-Revision: 6d9d3c27a7f7709bba568f8fae99b64f3eedd466 X-VCS-Branch: master Date: Mon, 2 Sep 2024 01:27:09 +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: 8570e841-cfb9-48f9-bfd4-f23685b06c4c X-Archives-Hash: cbb151d0b2ab90097704bf2c2ddfa480 commit: 6d9d3c27a7f7709bba568f8fae99b64f3eedd466 Author: Eli Schwartz gentoo org> AuthorDate: Mon Sep 2 01:11:01 2024 +0000 Commit: Eli Schwartz gentoo org> CommitDate: Mon Sep 2 01:26:30 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6d9d3c27 media-libs/libvisual: 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/libvisual/libvisual-0.4.2-r1.ebuild | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/media-libs/libvisual/libvisual-0.4.2-r1.ebuild b/media-libs/libvisual/libvisual-0.4.2-r1.ebuild index 0403b84fa57f..57c866f65947 100644 --- a/media-libs/libvisual/libvisual-0.4.2-r1.ebuild +++ b/media-libs/libvisual/libvisual-0.4.2-r1.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 -inherit multilib-minimal optfeature +inherit libtool multilib-minimal optfeature DESCRIPTION="Abstraction library between applications and audio visualisation plugins" HOMEPAGE="http://libvisual.org/" @@ -24,6 +24,11 @@ MULTILIB_WRAPPED_HEADERS=( /usr/include/libvisual-0.4/libvisual/lvconfig.h ) +src_prepare() { + default + elibtoolize +} + multilib_src_configure() { ECONF_SOURCE="${S}" econf \ --disable-static \