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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 050121580B9 for ; Fri, 27 Aug 2021 02:48:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1223FE08F6; Fri, 27 Aug 2021 02:48:31 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id BDD1AE08F6 for ; Fri, 27 Aug 2021 02:48:30 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8BE54342C56 for ; Fri, 27 Aug 2021 02:48:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CE7258DA for ; Fri, 27 Aug 2021 02:48:27 +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: <1630032496.db46d9942a9171aeaba5ddb6968a7391d763d259.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/openal/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/openal/openal-1.21.1-r1.ebuild media-libs/openal/openal-1.21.1-r2.ebuild X-VCS-Directories: media-libs/openal/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: db46d9942a9171aeaba5ddb6968a7391d763d259 X-VCS-Branch: master Date: Fri, 27 Aug 2021 02:48:27 +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: b6e6861c-9372-41d1-b451-3dfa27c50f50 X-Archives-Hash: 41587ae2660c9676a436338d7b5fd2a0 commit: db46d9942a9171aeaba5ddb6968a7391d763d259 Author: Sam James gentoo org> AuthorDate: Fri Aug 27 02:46:11 2021 +0000 Commit: Sam James gentoo org> CommitDate: Fri Aug 27 02:48:16 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=db46d994 media-libs/openal: fix automagic sndio dependency Closes: https://bugs.gentoo.org/809314 Signed-off-by: Sam James gentoo.org> .../openal/{openal-1.21.1-r1.ebuild => openal-1.21.1-r2.ebuild} | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/media-libs/openal/openal-1.21.1-r1.ebuild b/media-libs/openal/openal-1.21.1-r2.ebuild similarity index 93% rename from media-libs/openal/openal-1.21.1-r1.ebuild rename to media-libs/openal/openal-1.21.1-r2.ebuild index 049eff8c67e..23e407a521c 100644 --- a/media-libs/openal/openal-1.21.1-r1.ebuild +++ b/media-libs/openal/openal-1.21.1-r2.ebuild @@ -34,7 +34,7 @@ RDEPEND=" dev-qt/qtwidgets:5 ) sdl? ( media-libs/libsdl2[${MULTILIB_USEDEP}] ) - sndio? ( media-sound/sndio[${MULTILIB_USEDEP}] ) + sndio? ( media-sound/sndio:=[${MULTILIB_USEDEP}] ) " DEPEND="${RDEPEND} oss? ( virtual/os-headers )" @@ -54,7 +54,8 @@ src_configure() { -DALSOFT_REQUIRE_PORTAUDIO=$(usex portaudio) -DALSOFT_REQUIRE_PULSEAUDIO=$(usex pulseaudio) -DALSOFT_REQUIRE_SDL2=$(usex sdl) - -DALSOFT_REQUIRE_SNDIO=$(usex sndio) + # See bug #809314 for getting both options for sndio + -DALSOFT_{BACKEND,REQUIRE}_SNDIO=$(usex sndio) -DALSOFT_UTILS=$(multilib_is_native_abi && echo "ON" || echo "OFF") -DALSOFT_NO_CONFIG_UTIL=$(usex qt5 "$(multilib_is_native_abi && echo "OFF" || echo "ON")" ON) -DALSOFT_EXAMPLES=OFF