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 AA5C7158041 for ; Sun, 31 Mar 2024 01:01:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EEDFC2BC013; Sun, 31 Mar 2024 01:01:33 +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 pigeon.gentoo.org (Postfix) with ESMTPS id BD31E2BC014 for ; Sun, 31 Mar 2024 01:01:33 +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 E5EDF343168 for ; Sun, 31 Mar 2024 01:01:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4FDA51611 for ; Sun, 31 Mar 2024 01:01:31 +0000 (UTC) From: "Julien Roy" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Julien Roy" Message-ID: <1711838093.880331281e4ce765d5e989f5adf21ad486ba3832.julien@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: media-libs/wivrn/ X-VCS-Repository: repo/proj/guru X-VCS-Files: media-libs/wivrn/wivrn-9999.ebuild X-VCS-Directories: media-libs/wivrn/ X-VCS-Committer: julien X-VCS-Committer-Name: Julien Roy X-VCS-Revision: 880331281e4ce765d5e989f5adf21ad486ba3832 X-VCS-Branch: master Date: Sun, 31 Mar 2024 01:01:31 +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: 4bcc0d79-fae4-4562-b2ae-1fd5d4e0075a X-Archives-Hash: 409b7845a26426b952ea599368c8cb70 commit: 880331281e4ce765d5e989f5adf21ad486ba3832 Author: Patrick Nicolas laposte net> AuthorDate: Sat Mar 30 22:34:53 2024 +0000 Commit: Julien Roy jroy ca> CommitDate: Sat Mar 30 22:34:53 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=88033128 media-libs/wivrn: update use flags and deps Signed-off-by: Patrick Nicolas laposte.net> media-libs/wivrn/wivrn-9999.ebuild | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/media-libs/wivrn/wivrn-9999.ebuild b/media-libs/wivrn/wivrn-9999.ebuild index bf9860cc12..f603e138c5 100644 --- a/media-libs/wivrn/wivrn-9999.ebuild +++ b/media-libs/wivrn/wivrn-9999.ebuild @@ -5,7 +5,7 @@ HOMEPAGE="https://github.com/meumeu/WiVRn" SLOT="0" LICENSE="GPL-3 Apache-2.0 MIT" -IUSE="nvenc systemd vaapi wireshark-plugins x264" +IUSE="nvenc pipewire pulseaudio systemd vaapi wireshark-plugins x264" REQUIRED_USE="|| ( nvenc vaapi x264 )" inherit cmake @@ -28,9 +28,6 @@ else fi RDEPEND=" - nvenc? ( - x11-drivers/nvidia-drivers - ) vaapi? ( media-video/ffmpeg[libdrm,vaapi] ) @@ -38,7 +35,12 @@ RDEPEND=" media-libs/x264 ) dev-libs/libbsd - media-libs/libpulse + pipewire? ( + media-video/pipewire + ) + pulseaudio? ( + media-libs/libpulse + ) media-libs/openxr-loader net-dns/avahi systemd? ( @@ -51,9 +53,6 @@ RDEPEND=" BDEPEND=" ${RDEPEND} - nvenc? ( - dev-util/nvidia-cuda-toolkit - ) dev-cpp/eigen dev-cpp/nlohmann_json dev-util/glslang @@ -86,6 +85,8 @@ src_configure() { -DWIVRN_BUILD_CLIENT=OFF -DWIVRN_BUILD_SERVER=ON -DWIVRN_BUILD_DISSECTOR=$(usex wireshark-plugins) + -DWIVRN_USE_PIPEWIRE=$(usex pipewire) + -DWIVRN_USE_PULSEAUDIO=$(usex pulseaudio) -DWIVRN_USE_NVENC=$(usex nvenc) -DWIVRN_USE_VAAPI=$(usex vaapi) -DWIVRN_USE_X264=$(usex x264)