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 E99C415808B for ; Fri, 11 Feb 2022 14:44:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1ACB1E082B; Fri, 11 Feb 2022 14:44:54 +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 F2383E082B for ; Fri, 11 Feb 2022 14:44:53 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 E0D1D3431CD for ; Fri, 11 Feb 2022 14:44:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6C481250 for ; Fri, 11 Feb 2022 14:44:51 +0000 (UTC) From: "Conrad Kostecki" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Conrad Kostecki" Message-ID: <1644590633.84f5330502d84aed65712c86814a3053ab6c558e.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-fps/eduke32/files/, games-fps/eduke32/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-fps/eduke32/eduke32-20220204.9957.ebuild games-fps/eduke32/files/eduke32-20220204.9957-log-to-tmpdir.patch games-fps/eduke32/files/eduke32-20220204.9957-osd-setparameters.patch X-VCS-Directories: games-fps/eduke32/ games-fps/eduke32/files/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: 84f5330502d84aed65712c86814a3053ab6c558e X-VCS-Branch: master Date: Fri, 11 Feb 2022 14:44:51 +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: d0b97e3e-01a8-4925-8481-e120eb3e5e8f X-Archives-Hash: 6483918c42b594d3eef35b7dd19fe4b7 commit: 84f5330502d84aed65712c86814a3053ab6c558e Author: Conrad Kostecki gentoo org> AuthorDate: Fri Feb 11 14:43:19 2022 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Fri Feb 11 14:43:53 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=84f53305 games-fps/eduke32: fix compilation Closes: https://bugs.gentoo.org/833101 Signed-off-by: Conrad Kostecki gentoo.org> games-fps/eduke32/eduke32-20220204.9957.ebuild | 3 ++- .../eduke32/files/eduke32-20220204.9957-log-to-tmpdir.patch | 11 +++++++++++ .../files/eduke32-20220204.9957-osd-setparameters.patch | 11 +++++++++++ 3 files changed, 24 insertions(+), 1 deletion(-) diff --git a/games-fps/eduke32/eduke32-20220204.9957.ebuild b/games-fps/eduke32/eduke32-20220204.9957.ebuild index c177f758e1a0..ed27b1dc402c 100644 --- a/games-fps/eduke32/eduke32-20220204.9957.ebuild +++ b/games-fps/eduke32/eduke32-20220204.9957.ebuild @@ -77,9 +77,10 @@ BDEPEND=" PDEPEND="duke3d? ( games-fps/duke3d-data )" PATCHES=( - "${FILESDIR}/${PN}-20190820.8043-log-to-tmpdir.patch" "${FILESDIR}/${PN}-20190820.8043-search-duke3d-path.patch" "${FILESDIR}/${PN}-20200505.8904-gcc10.patch" + "${FILESDIR}/${PN}-20220204.9957-log-to-tmpdir.patch" + "${FILESDIR}/${PN}-20220204.9957-osd-setparameters.patch" ) src_unpack() { diff --git a/games-fps/eduke32/files/eduke32-20220204.9957-log-to-tmpdir.patch b/games-fps/eduke32/files/eduke32-20220204.9957-log-to-tmpdir.patch new file mode 100644 index 000000000000..5296f0ac71a9 --- /dev/null +++ b/games-fps/eduke32/files/eduke32-20220204.9957-log-to-tmpdir.patch @@ -0,0 +1,11 @@ +--- a/source/sw/src/game.cpp ++++ b/source/sw/src/game.cpp +@@ -3467,7 +3467,7 @@ + } + else + #endif +- OSD_SetLogFile(APPBASENAME ".log"); ++ OSD_SetLogFile("/tmp/" APPBASENAME ".log"); + + wm_setapptitle(APPNAME); + diff --git a/games-fps/eduke32/files/eduke32-20220204.9957-osd-setparameters.patch b/games-fps/eduke32/files/eduke32-20220204.9957-osd-setparameters.patch new file mode 100644 index 000000000000..b302ac94afa6 --- /dev/null +++ b/games-fps/eduke32/files/eduke32-20220204.9957-osd-setparameters.patch @@ -0,0 +1,11 @@ +--- a/source/sw/src/jnstub.cpp ++++ b/source/sw/src/jnstub.cpp +@@ -731,7 +731,7 @@ + //LogUserTime(TRUE); // Send true because user is logging + // in. + +- OSD_SetParameters(0, 0, 0, 4, 2, 4, "^14", "^14", 0); ++ OSD_SetParameters(0, 0, 0, 4, 2, 4, "^14", "^14", "^14", 0); + + SW_ExtInit(); +