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 D997E15ACFB for ; Sun, 16 Apr 2023 15:49:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 19196E093B; Sun, 16 Apr 2023 15:49:36 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 0134FE093B for ; Sun, 16 Apr 2023 15:49:35 +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 2D261340D6C for ; Sun, 16 Apr 2023 15:49:35 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 592E4A3A for ; Sun, 16 Apr 2023 15:49:33 +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: <1681660129.90a8da676a57973ca25a9d1397165744be4beaae.chewi@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-rpg/crosscode/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-rpg/crosscode/crosscode-1.4.2.2-r1.ebuild games-rpg/crosscode/crosscode-1.4.2.2.ebuild X-VCS-Directories: games-rpg/crosscode/ X-VCS-Committer: chewi X-VCS-Committer-Name: James Le Cuirot X-VCS-Revision: 90a8da676a57973ca25a9d1397165744be4beaae X-VCS-Branch: master Date: Sun, 16 Apr 2023 15:49:33 +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: 1a9e2248-a5dd-4782-b9a0-ecb1a3428839 X-Archives-Hash: 45e3af862104261c67ec1ed0be98cc2f commit: 90a8da676a57973ca25a9d1397165744be4beaae Author: James Le Cuirot gentoo org> AuthorDate: Sun Apr 16 15:48:49 2023 +0000 Commit: James Le Cuirot gentoo org> CommitDate: Sun Apr 16 15:48:49 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=90a8da67 games-rpg/crosscode: Fix for newer NW.js versions Signed-off-by: James Le Cuirot gentoo.org> .../{crosscode-1.4.2.2.ebuild => crosscode-1.4.2.2-r1.ebuild} | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/games-rpg/crosscode/crosscode-1.4.2.2.ebuild b/games-rpg/crosscode/crosscode-1.4.2.2-r1.ebuild similarity index 86% rename from games-rpg/crosscode/crosscode-1.4.2.2.ebuild rename to games-rpg/crosscode/crosscode-1.4.2.2-r1.ebuild index e28c2d292fc1..b37a1d0cb29d 100644 --- a/games-rpg/crosscode/crosscode-1.4.2.2.ebuild +++ b/games-rpg/crosscode/crosscode-1.4.2.2-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -44,6 +44,7 @@ src_install() { doins -r assets/ favicon.png natives_blob.bin package.json newicon assets/media/face/lore/lea.png ${PN}.png - make_wrapper ${PN} "nwjs '${EPREFIX}${DIR}'" + # --use-gl=egl is needed with recent NW.js versions. + make_wrapper ${PN} "nwjs '${EPREFIX}${DIR}' --use-gl=egl" make_desktop_entry ${PN} CrossCode }