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 08793158094 for ; Sun, 10 Jul 2022 22:51:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3914BE0C57; Sun, 10 Jul 2022 22:51:39 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 126A2E0C57 for ; Sun, 10 Jul 2022 22:51:39 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 3A0DF341087 for ; Sun, 10 Jul 2022 22:51:38 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C1DC9105 for ; Sun, 10 Jul 2022 22:51:36 +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: <1657493365.3558043407a3f4b41d6ff483d8dbe31b23a88ad0.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/pcaudiolib/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/pcaudiolib/pcaudiolib-1.1.ebuild X-VCS-Directories: media-libs/pcaudiolib/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 3558043407a3f4b41d6ff483d8dbe31b23a88ad0 X-VCS-Branch: master Date: Sun, 10 Jul 2022 22:51:36 +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: 8c1ced69-1c01-4bb9-a3ca-d76acc6136f5 X-Archives-Hash: b8db63d2ba255d36d5d653a37001db6c commit: 3558043407a3f4b41d6ff483d8dbe31b23a88ad0 Author: orbea riseup net> AuthorDate: Sat Jul 9 22:25:37 2022 +0000 Commit: Sam James gentoo org> CommitDate: Sun Jul 10 22:49:25 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=35580434 media-libs/pcaudiolib: Fix install with slibtool With slibtool the '.la' files are not installed by default. Closes: https://bugs.gentoo.org/799617 Signed-off-by: orbea riseup.net> Closes: https://github.com/gentoo/gentoo/pull/26315 Signed-off-by: Sam James gentoo.org> media-libs/pcaudiolib/pcaudiolib-1.1.ebuild | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/media-libs/pcaudiolib/pcaudiolib-1.1.ebuild b/media-libs/pcaudiolib/pcaudiolib-1.1.ebuild index 19f3461c468a..5042a1891ca4 100644 --- a/media-libs/pcaudiolib/pcaudiolib-1.1.ebuild +++ b/media-libs/pcaudiolib/pcaudiolib-1.1.ebuild @@ -34,11 +34,12 @@ src_configure() { $(use_with oss) $(use_with alsa) $(use_with pulseaudio) + --disable-static ) econf "${econf_args[@]}" } src_install() { default - rm "${ED}"/usr/lib*/libpcaudio.{a,la} || die + find "${ED}" -name '*.la' -delete || die }