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 139CB1382C5 for ; Sat, 6 Feb 2021 20:56:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 53C64E082B; Sat, 6 Feb 2021 20:56:27 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 3B094E082B for ; Sat, 6 Feb 2021 20:56:27 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 46E463433C5 for ; Sat, 6 Feb 2021 20:56:26 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B3D0D4BF for ; Sat, 6 Feb 2021 20:56:24 +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: <1612644980.aed75bf5efd81db64464a60207ebea49cb0bba76.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/openal/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/openal/metadata.xml media-libs/openal/openal-1.21.1-r1.ebuild media-libs/openal/openal-1.21.1.ebuild X-VCS-Directories: media-libs/openal/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: aed75bf5efd81db64464a60207ebea49cb0bba76 X-VCS-Branch: master Date: Sat, 6 Feb 2021 20:56:24 +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: 01e441e6-4e5b-4e44-b776-00cbd4d8d0a1 X-Archives-Hash: 13a6e5fd5606848f1e0b754d9c41ed79 commit: aed75bf5efd81db64464a60207ebea49cb0bba76 Author: Sam James gentoo org> AuthorDate: Sat Feb 6 20:55:46 2021 +0000 Commit: Sam James gentoo org> CommitDate: Sat Feb 6 20:56:20 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aed75bf5 media-libs/openal: fix automagic dep on media-sound/sndio Bug: https://bugs.gentoo.org/769122 Closes: https://bugs.gentoo.org/769098 Package-Manager: Portage-3.0.14, Repoman-3.0.2 Signed-off-by: Sam James gentoo.org> media-libs/openal/metadata.xml | 3 +++ media-libs/openal/{openal-1.21.1.ebuild => openal-1.21.1-r1.ebuild} | 4 +++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/media-libs/openal/metadata.xml b/media-libs/openal/metadata.xml index c584b0dd21e..a80658a8279 100644 --- a/media-libs/openal/metadata.xml +++ b/media-libs/openal/metadata.xml @@ -5,6 +5,9 @@ sound@gentoo.org Gentoo Sound project + + Enable support for the media-sound/sndio backend + kcat/openal-soft diff --git a/media-libs/openal/openal-1.21.1.ebuild b/media-libs/openal/openal-1.21.1-r1.ebuild similarity index 93% rename from media-libs/openal/openal-1.21.1.ebuild rename to media-libs/openal/openal-1.21.1-r1.ebuild index 477edb7b212..abc96492de7 100644 --- a/media-libs/openal/openal-1.21.1.ebuild +++ b/media-libs/openal/openal-1.21.1-r1.ebuild @@ -18,7 +18,7 @@ LICENSE="LGPL-2+ BSD" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux" IUSE=" - alsa coreaudio debug jack oss portaudio pulseaudio sdl qt5 + alsa coreaudio debug jack oss portaudio pulseaudio sdl sndio qt5 cpu_flags_x86_sse cpu_flags_x86_sse2 cpu_flags_x86_sse4_1 cpu_flags_arm_neon " @@ -34,6 +34,7 @@ RDEPEND=" dev-qt/qtwidgets:5 ) sdl? ( media-libs/libsdl2[${MULTILIB_USEDEP}] ) + sndio? ( media-sound/sndio[${MULTILIB_USEDEP}] ) " DEPEND="${RDEPEND} oss? ( virtual/os-headers )" @@ -53,6 +54,7 @@ src_configure() { -DALSOFT_REQUIRE_PORTAUDIO=$(usex portaudio) -DALSOFT_REQUIRE_PULSEAUDIO=$(usex pulseaudio) -DALSOFT_REQUIRE_SDL2=$(usex sdl) + -DALSOFT_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