diff --git a/games/wyrmgus/Makefile b/games/wyrmgus/Makefile index 842c2042a4ca..b48c553c3fa8 100644 --- a/games/wyrmgus/Makefile +++ b/games/wyrmgus/Makefile @@ -1,49 +1,50 @@ # Created by: Travis Poppe PORTNAME= wyrmgus -PORTVERSION= 5.0.1 +PORTVERSION= 5.2.0 DISTVERSIONPREFIX= v CATEGORIES= games devel MAINTAINER= amdmi3@FreeBSD.org COMMENT= Modified Stratagus engine for Wyrmsun LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libtolua++-${LUA_VER}.so:lang/tolua++ BUILD_DEPENDS= ${LOCALBASE}/include/boost/tokenizer.hpp:devel/boost-libs -USE_GITHUB= yes -GH_ACCOUNT= Andrettin -GH_PROJECT= Wyrmgus +USE_GITHUB= yes +GH_ACCOUNT= Andrettin +GH_PROJECT= Wyrmgus +GH_TAGNAME= eca99a1 # contains critical fixes USES= cmake compiler:c++17-lang lua:51 pkgconfig sdl sqlite qt:5 xorg USE_QT= core gui widgets multimedia location \ quickcontrols quickcontrols2 graphicaleffects \ qmake_build buildtools_build USE_XORG= x11 USE_SDL= sdl2 mixer2 CMAKE_ARGS= -DGAMEDIR:STRING="bin" \ -DTOLUA++_APP:STRING="tolua++-${LUA_VER}" \ -DTOLUA++_INCLUDE_DIR:STRING="${LUA_INCDIR}" \ -DTOLUA++_LIBRARY:STRING="${LUA_LIBDIR}/libtolua++.so" \ -DENABLE_USEGAMEDIR:BOOL=OFF PORTDOCS= * PLIST_FILES= bin/${PORTNAME} \ share/pixmaps/wyrmsun.ico OPTIONS_DEFINE= OPENGL DOCS OPTIONS_DEFAULT=OPENGL OPENGL_USES= gl OPENGL_USE= GL=gl,glu OPENGL_CMAKE_ON= -DWITH_RENDERER="OpenGL" OPENGL_CMAKE_OFF= -DWITH_RENDERER="NativeSDL" post-install: ${INSTALL_DATA} ${WRKSRC}/src/win32/wyrmsun.ico ${STAGEDIR}${PREFIX}/share/pixmaps/ .include diff --git a/games/wyrmgus/distinfo b/games/wyrmgus/distinfo index 453d9c713ec7..de522990f3fa 100644 --- a/games/wyrmgus/distinfo +++ b/games/wyrmgus/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1629717520 -SHA256 (Andrettin-Wyrmgus-v5.0.1_GH0.tar.gz) = a149e6d6f80471ee017f1182b68c4a22256da220fc569a68a3cc9cc950a28141 -SIZE (Andrettin-Wyrmgus-v5.0.1_GH0.tar.gz) = 1567090 +TIMESTAMP = 1633375943 +SHA256 (Andrettin-Wyrmgus-v5.2.0-eca99a1_GH0.tar.gz) = 40892f7b256975c5f5ec18906f184ab8b98ac4fb94e0d0e04b837623e76c0ff9 +SIZE (Andrettin-Wyrmgus-v5.2.0-eca99a1_GH0.tar.gz) = 1574920 diff --git a/games/wyrmgus/files/patch-src_util_path__util.h b/games/wyrmgus/files/patch-src_util_path__util.h deleted file mode 100644 index 5617bf8aa85e..000000000000 --- a/games/wyrmgus/files/patch-src_util_path__util.h +++ /dev/null @@ -1,13 +0,0 @@ -std::filesystem::path::u8string may return std::string depending on standard - ---- src/util/path_util.h.orig 2021-08-22 18:46:24 UTC -+++ src/util/path_util.h -@@ -31,7 +31,7 @@ namespace wyrmgus::path { - inline std::string to_string(const std::filesystem::path &path) - { - //convert a path to a UTF-8 encoded string -- const std::u8string u8str = path.u8string(); -+ const auto u8str = path.u8string(); - return std::string(u8str.begin(), u8str.end()); - } -