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 E8E131382C5 for ; Sat, 8 May 2021 23:35:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 12DDEE01E4; Sat, 8 May 2021 23:35:58 +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 72F87E01E4 for ; Sat, 8 May 2021 23:35:57 +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 E367B340C93 for ; Sat, 8 May 2021 23:35:55 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 07AAB59C for ; Sat, 8 May 2021 23:35:54 +0000 (UTC) From: "Ross Charles Campbell" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ross Charles Campbell" Message-ID: <1620516928.121287dfc57a06589b25465a8e953699073f6164.rossbridger@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-games/godot/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-games/godot/godot-3.3.ebuild X-VCS-Directories: dev-games/godot/ X-VCS-Committer: rossbridger X-VCS-Committer-Name: Ross Charles Campbell X-VCS-Revision: 121287dfc57a06589b25465a8e953699073f6164 X-VCS-Branch: dev Date: Sat, 8 May 2021 23:35:54 +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: 0d5fb396-3b45-4892-ba25-0317547c104f X-Archives-Hash: c086c19b25c5c64ca795fa124aba9b5e commit: 121287dfc57a06589b25465a8e953699073f6164 Author: Ross Charles Campbell gmail com> AuthorDate: Sat May 8 23:32:59 2021 +0000 Commit: Ross Charles Campbell gmail com> CommitDate: Sat May 8 23:35:28 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=121287df dev-games/godot: disable raycast module Since embree (https://github.com/embree/embree) is not landed at the moment, raycast module is disabled for the moment. Package-Manager: Portage-3.0.18, Repoman-3.0.3 Signed-off-by: Ross Charles Campbell gmail.com> dev-games/godot/godot-3.3.ebuild | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/dev-games/godot/godot-3.3.ebuild b/dev-games/godot/godot-3.3.ebuild index 29a02956d..fa2e46cd3 100644 --- a/dev-games/godot/godot-3.3.ebuild +++ b/dev-games/godot/godot-3.3.ebuild @@ -73,6 +73,7 @@ src_configure() { # Remove builtin third-party packages, link with system ones instead myesconsargs+=( builtin_bullet=no + builtin_embree=no builtin_enet=no builtin_freetype=no builtin_libogg=no @@ -92,6 +93,9 @@ src_configure() { myesconsargs+=( # Mono bindings requires MSBuild which is only available on Windows module_mono_enabled=no + # TODO: land embree library (https://github.com/embree/embree) in guru + # so that we can enable raycast module + module_raycast_enabled=no module_bullet_enabled=$(usex bullet) module_enet_enabled=$(usex enet) module_freetype_enabled=$(usex freetype) @@ -137,6 +141,6 @@ src_install() { insinto /usr/share/metainfo doins misc/dist/linux/org.godotengine.Godot.appdata.xml insinto /usr/share/mime/application - doins misc/dist/linux/x-godot-project.xml + doins misc/dist/linux/org.godotengine.Godot.xml dodoc AUTHORS.md CHANGELOG.md DONORS.md README.md }