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 5C2201382C5 for ; Sun, 28 Mar 2021 19:11:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 98C98E086C; Sun, 28 Mar 2021 19:11:05 +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 7EF24E086C for ; Sun, 28 Mar 2021 19:11:05 +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 46821335C9A for ; Sun, 28 Mar 2021 19:11:04 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 94E5C632 for ; Sun, 28 Mar 2021 19:11:02 +0000 (UTC) From: "Sergei Trofimovich" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sergei Trofimovich" Message-ID: <1616958660.7daa88b5f535f881a587ccc6afaf3e46888520f3.slyfox@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-emulation/dolphin/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-emulation/dolphin/dolphin-9999.ebuild X-VCS-Directories: games-emulation/dolphin/ X-VCS-Committer: slyfox X-VCS-Committer-Name: Sergei Trofimovich X-VCS-Revision: 7daa88b5f535f881a587ccc6afaf3e46888520f3 X-VCS-Branch: master Date: Sun, 28 Mar 2021 19:11: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: a077546e-1c87-4b8e-b6e6-c2c2058bc04a X-Archives-Hash: 8a613fb869e33ac174eb1845c4085471 commit: 7daa88b5f535f881a587ccc6afaf3e46888520f3 Author: Samuel BAUER yahoo fr> AuthorDate: Tue Mar 23 22:18:23 2021 +0000 Commit: Sergei Trofimovich gentoo org> CommitDate: Sun Mar 28 19:11:00 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7daa88b5 games-emulation/dolphin: refresh live ebuild Avoid -durty suffix to allow more netplay sessions. Make vulkan-loader optional. Signed-off-by: Sergei Trofimovich gentoo.org> games-emulation/dolphin/dolphin-9999.ebuild | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/games-emulation/dolphin/dolphin-9999.ebuild b/games-emulation/dolphin/dolphin-9999.ebuild index 14b329e33b8..6bf77bf6c3d 100644 --- a/games-emulation/dolphin/dolphin-9999.ebuild +++ b/games-emulation/dolphin/dolphin-9999.ebuild @@ -11,6 +11,7 @@ inherit cmake desktop xdg-utils l10n pax-utils if [[ ${PV} == *9999 ]] then EGIT_REPO_URI="https://github.com/dolphin-emu/dolphin" + EGIT_SUBMODULES=() inherit git-r3 else inherit vcs-snapshot @@ -69,7 +70,7 @@ BDEPEND=" # vulkan-loader required for vulkan backend which can be selected # at runtime. RDEPEND="${RDEPEND} - media-libs/vulkan-loader" + vulkan? ( media-libs/vulkan-loader )" src_prepare() { cmake_src_prepare @@ -131,8 +132,11 @@ src_prepare() { l10n_find_plocales_changes "Languages/po/" "" '.po' l10n_for_each_disabled_locale_do remove_locale - # About 50% compile-time speedup + # About 50% compile-time speedup use vulkan || sed -i -e '/Externals\/glslang/d' CMakeLists.txt + + # Remove dirty suffix: needed for netplay + sed -i -e 's/--dirty/&=""/' CMakeLists.txt } src_configure() {