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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id B7998158086 for ; Sun, 7 Nov 2021 05:05:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F09C52BC0E1; Sun, 7 Nov 2021 05:05:14 +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 352492BC0E2 for ; Sun, 7 Nov 2021 05:05:12 +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 9390C342A25 for ; Sun, 7 Nov 2021 05:05:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 991081B3 for ; Sun, 7 Nov 2021 05:05:07 +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: <1636261496.b2f9af7650de22e118bed4f9d4aaf7a327b89437.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-libs/libavc1394/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-libs/libavc1394/libavc1394-0.5.4-r2.ebuild X-VCS-Directories: sys-libs/libavc1394/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: b2f9af7650de22e118bed4f9d4aaf7a327b89437 X-VCS-Branch: master Date: Sun, 7 Nov 2021 05:05:07 +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: ea9752c7-2abe-465a-adb8-f3b780fd3750 X-Archives-Hash: ac16d78f31c86b12c9f3d885240feb88 commit: b2f9af7650de22e118bed4f9d4aaf7a327b89437 Author: Sam James gentoo org> AuthorDate: Sun Nov 7 05:04:29 2021 +0000 Commit: Sam James gentoo org> CommitDate: Sun Nov 7 05:04:56 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b2f9af76 sys-libs/libavc1394: fix build on musl Closes: https://bugs.gentoo.org/713174 Signed-off-by: Sam James gentoo.org> sys-libs/libavc1394/libavc1394-0.5.4-r2.ebuild | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/sys-libs/libavc1394/libavc1394-0.5.4-r2.ebuild b/sys-libs/libavc1394/libavc1394-0.5.4-r2.ebuild index 2bd1328cadf..ecc3bbed45e 100644 --- a/sys-libs/libavc1394/libavc1394-0.5.4-r2.ebuild +++ b/sys-libs/libavc1394/libavc1394-0.5.4-r2.ebuild @@ -3,7 +3,7 @@ EAPI=7 -inherit multilib-minimal +inherit flag-o-matic multilib-minimal DESCRIPTION="Library for the 1394 AV/C (Audio/Video Control) Digital Interface Command Set" HOMEPAGE="https://sourceforge.net/projects/libavc1394/" @@ -14,10 +14,14 @@ SLOT="0" KEYWORDS="~alpha amd64 arm arm64 ~ia64 ppc ppc64 ~riscv sparc x86" BDEPEND="virtual/pkgconfig" -DEPEND=">=sys-libs/libraw1394-2.1.0-r1[${MULTILIB_USEDEP}]" +DEPEND=">=sys-libs/libraw1394-2.1.0-r1[${MULTILIB_USEDEP}] + elibc_musl? ( sys-libs/argp-standalone )" RDEPEND="${DEPEND}" multilib_src_configure() { + # bug #713174 + use elibc_musl && append-libs -largp + ECONF_SOURCE="${S}" econf --disable-static }