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 52A9E158021 for ; Thu, 20 Oct 2022 04:25:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 18B40E0878; Thu, 20 Oct 2022 04:25:11 +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 F37EEE0869 for ; Thu, 20 Oct 2022 04:25:10 +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 0FB73340F8E for ; Thu, 20 Oct 2022 04:25:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6957561F for ; Thu, 20 Oct 2022 04:25:08 +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: <1666239743.a6e70576e0d401a87ab4dd51f9be72e0e5bbaf1e.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-action/prismlauncher/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-action/prismlauncher/prismlauncher-9999.ebuild X-VCS-Directories: games-action/prismlauncher/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: a6e70576e0d401a87ab4dd51f9be72e0e5bbaf1e X-VCS-Branch: master Date: Thu, 20 Oct 2022 04:25:08 +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: 09e2920d-4083-41e3-b3c7-7eb494c03716 X-Archives-Hash: 75939c5e7a6f7562980066048ddb24f7 commit: a6e70576e0d401a87ab4dd51f9be72e0e5bbaf1e Author: Thiago Donato Ferreira gmail com> AuthorDate: Wed Oct 19 22:02:30 2022 +0000 Commit: Sam James gentoo org> CommitDate: Thu Oct 20 04:22:23 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a6e70576 games-action/prismlauncher: use system gulrak-filesystem This replaces the bundled one, like what's done with quazip. Signed-off-by: Thiago Donato Ferreira gmail.com> Signed-off-by: Sam James gentoo.org> games-action/prismlauncher/prismlauncher-9999.ebuild | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/games-action/prismlauncher/prismlauncher-9999.ebuild b/games-action/prismlauncher/prismlauncher-9999.ebuild index 0c3fb958fff1..ae1e581ba2f0 100644 --- a/games-action/prismlauncher/prismlauncher-9999.ebuild +++ b/games-action/prismlauncher/prismlauncher-9999.ebuild @@ -16,7 +16,7 @@ if [[ ${PV} == 9999 ]]; then " # TODO: Add tomlplusplus as a system library, like quazip - EGIT_SUBMODULES=( '*' '-libraries/quazip' ) + EGIT_SUBMODULES=( '*' '-libraries/quazip' '-libraries/filesystem' ) else MY_PN="PrismLauncher" @@ -77,8 +77,12 @@ COMMON_DEPENDS=" sys-libs/zlib " +# The gulrak-filesystem dependency is only needed at build time, because we don't actually use it on Linux, +# only on legacy macOS. Still, we need it present at build time to appease CMake, and having it like this +# makes it easier to maintain than patching the CMakeLists file directly. BDEPEND=" app-text/scdoc + dev-cpp/gulrak-filesystem kde-frameworks/extra-cmake-modules:5 "