From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 finch.gentoo.org (Postfix) with ESMTPS id 42D0F1584AD for ; Thu, 24 Apr 2025 21:31:01 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (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) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 380E8342FF4 for ; Thu, 24 Apr 2025 21:30:26 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 3304611028B; Thu, 24 Apr 2025 21:30:25 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 bobolink.gentoo.org (Postfix) with ESMTPS id 2B34711028B for ; Thu, 24 Apr 2025 21:30:25 +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 DC1DE341E1C for ; Thu, 24 Apr 2025 21:30:24 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 464BC2511 for ; Thu, 24 Apr 2025 21:30:23 +0000 (UTC) From: "Conrad Kostecki" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Conrad Kostecki" Message-ID: <1745530188.53b9c858f0f1177c4fc9c34758c74c2d8b6399ce.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/faudio/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-emulation/faudio/faudio-25.04.ebuild X-VCS-Directories: app-emulation/faudio/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: 53b9c858f0f1177c4fc9c34758c74c2d8b6399ce X-VCS-Branch: master Date: Thu, 24 Apr 2025 21:30:23 +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: 363c9231-0ba1-4e6c-826a-66387fccd223 X-Archives-Hash: 4098e1745e1cf828fb0ffacd18ee9499 commit: 53b9c858f0f1177c4fc9c34758c74c2d8b6399ce Author: Lee Zhi Wei (Dennis) gmail com> AuthorDate: Sat Apr 19 18:48:01 2025 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Thu Apr 24 21:29:48 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=53b9c858 app-emulation/faudio: add multilib Signed-off-by: Lee Zhi Wei (Dennis) gmail.com> Part-of: https://github.com/gentoo/gentoo/pull/41669 Closes: https://github.com/gentoo/gentoo/pull/41669 Signed-off-by: Conrad Kostecki gentoo.org> app-emulation/faudio/faudio-25.04.ebuild | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/app-emulation/faudio/faudio-25.04.ebuild b/app-emulation/faudio/faudio-25.04.ebuild index 47c16320b083..1b1873d707b3 100644 --- a/app-emulation/faudio/faudio-25.04.ebuild +++ b/app-emulation/faudio/faudio-25.04.ebuild @@ -3,7 +3,7 @@ EAPI=8 -inherit cmake flag-o-matic +inherit cmake-multilib flag-o-matic DESCRIPTION="Accuracy-focused XAudio reimplementation for open platforms" HOMEPAGE="https://fna-xna.github.io/" @@ -17,8 +17,8 @@ IUSE="debug dumpvoices sdl3 test" RESTRICT="!test? ( test )" RDEPEND=" - sdl3? ( media-libs/libsdl3 ) - !sdl3? ( media-libs/libsdl2[sound] ) + sdl3? ( media-libs/libsdl3[${MULTILIB_USEDEP}] ) + !sdl3? ( media-libs/libsdl2[${MULTILIB_USEDEP},sound] ) " DEPEND="${RDEPEND}" @@ -32,7 +32,7 @@ src_configure() { -DDUMP_VOICES="$(usex dumpvoices)" ) - cmake_src_configure + cmake-multilib_src_configure } src_test() {