Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 28 Oct 2022 13:12:00 GMT
From:      Alexey Dokuchaev <danfe@FreeBSD.org>
To:        ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org
Subject:   git: 517ca7b450f6 - main - games/yquake2: the port had been updated to version 8.10
Message-ID:  <202210281312.29SDC01L057068@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by danfe:

URL: https://cgit.FreeBSD.org/ports/commit/?id=517ca7b450f68991d1183d740e0565939fc65b20

commit 517ca7b450f68991d1183d740e0565939fc65b20
Author:     Alexey Dokuchaev <danfe@FreeBSD.org>
AuthorDate: 2022-10-28 13:11:22 +0000
Commit:     Alexey Dokuchaev <danfe@FreeBSD.org>
CommitDate: 2022-10-28 13:11:22 +0000

    games/yquake2: the port had been updated to version 8.10
    
    While here, do not needlessly initialize local variable as the
    FS_GetNextRawPath() would DTRT itself and drop one extra space.
    
    PR:     265286
---
 games/yquake2/Makefile                         | 2 +-
 games/yquake2/distinfo                         | 6 +++---
 games/yquake2/files/patch-src_client_vid_vid.c | 4 ++--
 games/yquake2/pkg-plist                        | 1 +
 4 files changed, 7 insertions(+), 6 deletions(-)

diff --git a/games/yquake2/Makefile b/games/yquake2/Makefile
index f24106250f61..c9ae6bd5a296 100644
--- a/games/yquake2/Makefile
+++ b/games/yquake2/Makefile
@@ -1,5 +1,5 @@
 PORTNAME=	yquake2
-PORTVERSION=	8.01
+PORTVERSION=	8.10
 CATEGORIES=	games
 MASTER_SITES=	https://deponie.yamagi.org/quake2/
 DISTNAME=	quake2-${PORTVERSION}
diff --git a/games/yquake2/distinfo b/games/yquake2/distinfo
index ee74449e7613..a8e03b54aa0f 100644
--- a/games/yquake2/distinfo
+++ b/games/yquake2/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1642841575
-SHA256 (quake2-8.01.tar.xz) = 132889a6976dd7c75bf94a4ca49c76ff09cf843d66541872320d7a02a25a622c
-SIZE (quake2-8.01.tar.xz) = 2109408
+TIMESTAMP = 1653801164
+SHA256 (quake2-8.10.tar.xz) = 93d625f67bd365d943113f6aa7c65f6fd2bd4c46c4ab77eedc4642735c143ea1
+SIZE (quake2-8.10.tar.xz) = 2138064
diff --git a/games/yquake2/files/patch-src_client_vid_vid.c b/games/yquake2/files/patch-src_client_vid_vid.c
index 3238c79518d5..18a7f8ff95f3 100644
--- a/games/yquake2/files/patch-src_client_vid_vid.c
+++ b/games/yquake2/files/patch-src_client_vid_vid.c
@@ -5,9 +5,9 @@
  VID_GetRendererLibPath(const char *renderer, char *path, size_t len)
  {
 -	snprintf(path, len, "%sref_%s.%s", Sys_GetBinaryDir(), renderer, lib_ext);
-+	char *next_path = NULL;
++	char *next_path;
 +
-+	while ((next_path = FS_GetNextRawPath (next_path)) != NULL) {
++	while ((next_path = FS_GetNextRawPath(next_path)) != NULL) {
 +		snprintf(path, len, "%s/ref_%s.%s", next_path, renderer, lib_ext);
 +		if (Sys_IsFile(path))
 +			break;
diff --git a/games/yquake2/pkg-plist b/games/yquake2/pkg-plist
index fce8f627ae2e..1886f5b83753 100644
--- a/games/yquake2/pkg-plist
+++ b/games/yquake2/pkg-plist
@@ -3,6 +3,7 @@ bin/yquake2
 lib/yquake2/baseq2/game.so
 lib/yquake2/ref_gl1.so
 lib/yquake2/ref_gl3.so
+lib/yquake2/ref_gles3.so
 lib/yquake2/ref_soft.so
 %%PORTDOCS%%%%DOCSDIR%%/010_index.md
 %%PORTDOCS%%%%DOCSDIR%%/020_installation.md



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202210281312.29SDC01L057068>