aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNuno Teixeira <eduardo@FreeBSD.org>2024-01-05 19:29:02 +0000
committerNuno Teixeira <eduardo@FreeBSD.org>2024-01-05 19:44:55 +0000
commit15f524b34c138d39333672686dde383f73ab7405 (patch)
treee3716db3c243aeae8dfe1ee2f36654e24078b96d
parent3dd1d157565a1104c47db84cfe14ee26beb7f467 (diff)
downloadports-15f524b34c138d39333672686dde383f73ab7405.tar.gz
ports-15f524b34c138d39333672686dde383f73ab7405.zip
games/exult{,-devel}: Update to 20240105 snapshot
- Only silence cast warnings on master port games/exult. ChangeLog: https://github.com/exult/exult/compare/snapshot-v1.9.0.20231225...snapshot-v1.9.0.20240105
-rw-r--r--games/exult-devel/Makefile7
-rw-r--r--games/exult-devel/distinfo6
-rw-r--r--games/exult/Makefile2
3 files changed, 8 insertions, 7 deletions
diff --git a/games/exult-devel/Makefile b/games/exult-devel/Makefile
index b778e32a2b7d..340a921bde5a 100644
--- a/games/exult-devel/Makefile
+++ b/games/exult-devel/Makefile
@@ -1,11 +1,12 @@
DISTVERSIONPREFIX= snapshot-v
-DISTVERSION= 1.9.0.20231225
-PORTREVISION= 0 # Do not remove PORTREVISION or it will be set to master
+DISTVERSION= 1.9.0.20240105
+PORTREVISION= 0 # Always set PORTREVISION explicitly as otherwise it is inherited from games/exult
PKGNAMESUFFIX= -devel
CONFLICTS_INSTALL= exult
-STUDIO_LIB_DEPENDS= libharfbuzz.so:print/harfbuzz \
+STUDIO_LIB_DEPENDS= libfreetype.so:print/freetype2 \
+ libharfbuzz.so:print/harfbuzz \
libicuuc.so:devel/icu
MASTERDIR= ${.CURDIR}/../exult
diff --git a/games/exult-devel/distinfo b/games/exult-devel/distinfo
index 3f632eac88ae..14c620d2125f 100644
--- a/games/exult-devel/distinfo
+++ b/games/exult-devel/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1703595583
-SHA256 (exult-exult-snapshot-v1.9.0.20231225_GH0.tar.gz) = dfad790eb57a57a2ec32c610406ed908924570b9a74adc1b8c60b2fca99865e1
-SIZE (exult-exult-snapshot-v1.9.0.20231225_GH0.tar.gz) = 19317343
+TIMESTAMP = 1704466061
+SHA256 (exult-exult-snapshot-v1.9.0.20240105_GH0.tar.gz) = be24219fe68cb8aaf90b6ba96d5508daeb882cf0cbca12bcc66cb1d3d0f1464a
+SIZE (exult-exult-snapshot-v1.9.0.20240105_GH0.tar.gz) = 19339495
diff --git a/games/exult/Makefile b/games/exult/Makefile
index de14ff2865ce..52d9425d344a 100644
--- a/games/exult/Makefile
+++ b/games/exult/Makefile
@@ -83,7 +83,7 @@ post-install-DOCS-on:
# Silence cast warnings from GTK callbacks in clang >=16
# https://github.com/exult/exult/issues/416
-.if ${OPSYS} == FreeBSD && ( ${OSVERSION} >= 1400091 || ( ${OSVERSION} >= 1302507 && ${OSVERSION} < 1400000 ))
+.if !defined(PKGNAMESUFFIX) && ( ${OPSYS} == FreeBSD && ( ${OSVERSION} >= 1400091 || ( ${OSVERSION} >= 1302507 && ${OSVERSION} < 1400000 )))
CFLAGS+= -Wno-cast-function-type-strict
.endif