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 0A992158083 for ; Mon, 9 Sep 2024 21:55:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 04B09E29E7; Mon, 9 Sep 2024 21:55:05 +0000 (UTC) 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 pigeon.gentoo.org (Postfix) with ESMTPS id D83E0E29E7 for ; Mon, 9 Sep 2024 21:55:04 +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 D8AC0335DEB for ; Mon, 9 Sep 2024 21:55:03 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 213B013BD for ; Mon, 9 Sep 2024 21:55:02 +0000 (UTC) From: "James Le Cuirot" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "James Le Cuirot" Message-ID: <1725918854.9450fa1b30af7f79bd1b5354230e79d12ef84268.chewi@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/sunshine/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/sunshine/sunshine-9999.ebuild X-VCS-Directories: net-misc/sunshine/ X-VCS-Committer: chewi X-VCS-Committer-Name: James Le Cuirot X-VCS-Revision: 9450fa1b30af7f79bd1b5354230e79d12ef84268 X-VCS-Branch: master Date: Mon, 9 Sep 2024 21:55:02 +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: 8b1e64aa-dd53-4342-a752-abedde347963 X-Archives-Hash: 3540c354ba3765f5f35ab286aa0b21fd commit: 9450fa1b30af7f79bd1b5354230e79d12ef84268 Author: James Le Cuirot gentoo org> AuthorDate: Mon Sep 9 21:54:14 2024 +0000 Commit: James Le Cuirot gentoo org> CommitDate: Mon Sep 9 21:54:14 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9450fa1b net-misc/sunshine: Fix 9999 build by disabling docs Building the docs involves more npm pain. It's not worth it. Signed-off-by: James Le Cuirot gentoo.org> net-misc/sunshine/sunshine-9999.ebuild | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/net-misc/sunshine/sunshine-9999.ebuild b/net-misc/sunshine/sunshine-9999.ebuild index 6135d7c43f78..5018392b1133 100644 --- a/net-misc/sunshine/sunshine-9999.ebuild +++ b/net-misc/sunshine/sunshine-9999.ebuild @@ -52,7 +52,7 @@ DESCRIPTION="Self-hosted game stream host for Moonlight" HOMEPAGE="https://github.com/LizardByte/Sunshine" LICENSE="GPL-3" SLOT="0" -IUSE="cuda debug libdrm svt-av1 trayicon vaapi wayland X x264 x265" +IUSE="cuda debug libdrm svt-av1 systemd trayicon vaapi wayland X x264 x265" # Strings for CPU features in the useflag[:configure_option] form # if :configure_option isn't set, it will use 'useflag' as configure option @@ -338,6 +338,7 @@ src_configure() { local mycmakeargs=( -DBUILD_SHARED_LIBS=no -DBOOST_USE_STATIC=no + -DBUILD_DOCS=no -DBUILD_TESTS=no -DCCACHE_FOUND=no -DCMAKE_DISABLE_FIND_PACKAGE_Git=yes @@ -352,9 +353,9 @@ src_configure() { -DSUNSHINE_ENABLE_TRAY=$(usex trayicon) -DSUNSHINE_REQUIRE_TRAY=$(usex trayicon) -DSUNSHINE_SYSTEM_WAYLAND_PROTOCOLS=yes - -DSYSTEMD_USER_UNIT_INSTALL_DIR=$(systemd_get_userunitdir) -DUDEV_RULES_INSTALL_DIR=$(get_udevdir)/rules.d ) + use systemd && mycmakeargs+=( -DSYSTEMD_USER_UNIT_INSTALL_DIR=$(systemd_get_userunitdir) ) [[ ${PV} = 9999* ]] || mycmakeargs+=( -DNPM="${BROOT}"/bin/true ) CMAKE_USE_DIR="${S}" cmake_src_configure }