diff --git a/games/armagetronad/Makefile b/games/armagetronad/Makefile index cd250a823c9f..8a1587e659f8 100644 --- a/games/armagetronad/Makefile +++ b/games/armagetronad/Makefile @@ -1,32 +1,35 @@ PORTNAME= armagetronad -DISTVERSION= 0.2.9.2.5 +DISTVERSION= 0.2.9.3.0 CATEGORIES= games MASTER_SITES= SF/${PORTNAME}/stable/${DISTVERSION}/ MAINTAINER= yuri@FreeBSD.org COMMENT= Tron clone in 3D -WWW= http://www.armagetronad.org/ +WWW= http://www.armagetronad.org/ \ + https://github.com/ArmagetronAd/armagetronad LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING BUILD_DEPENDS= bash:shells/bash -LIB_DEPENDS= libpng.so:graphics/png +LIB_DEPENDS= libcurl.so:ftp/curl \ + libpng.so:graphics/png \ + libZThread.so:devel/zthread USES= autoreconf desktop-file-utils gl gmake gnome pkgconfig sdl \ tar:tbz USE_CXXSTD= c++14 USE_GL= gl glu USE_GNOME= libxml2 USE_SDL= image mixer sdl GNU_CONFIGURE= yes CONFIGURE_ARGS= --disable-etc --disable-games --disable-uninstall --enable-music BINARY_ALIAS= sdl11-config=sdl-config PORTDOCS= * OPTIONS_DEFINE= DOCS .include diff --git a/games/armagetronad/distinfo b/games/armagetronad/distinfo index 8a00678f9bc7..f97eb802e9a7 100644 --- a/games/armagetronad/distinfo +++ b/games/armagetronad/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1771818181 -SHA256 (armagetronad-0.2.9.2.5.tbz) = 941d9f194340b84b1dd36d0f58c089660a15814ce37ca3813b90105dbedc5619 -SIZE (armagetronad-0.2.9.2.5.tbz) = 1867467 +TIMESTAMP = 1776582788 +SHA256 (armagetronad-0.2.9.3.0.tbz) = 9e0d27048ecfc963c8b07dc31177040561f221ca37e80af832b946b6e0a23fe0 +SIZE (armagetronad-0.2.9.3.0.tbz) = 1890506 diff --git a/games/armagetronad/files/patch-configure.ac b/games/armagetronad/files/patch-configure.ac new file mode 100644 index 000000000000..f2dd63b56c37 --- /dev/null +++ b/games/armagetronad/files/patch-configure.ac @@ -0,0 +1,11 @@ +--- configure.ac.orig 2026-04-19 08:40:17 UTC ++++ configure.ac +@@ -642,7 +642,7 @@ if test x$use_curl = xtrue; then + PKG_CHECK_MODULES([LIBCURL], [libcurl >= 7], + AC_DEFINE(LIBCURL_PROTOCOL_HTTP, 1, [Define if you have libcurl and it supports http]) dnl not technically accurate... but we are using that define in the source. + CPPFLAGS="$CPPFLAGS $LIBCURL_CFLAGS" +- LIBS=$"$LIBS $LIBCURL_LIBS", ++ LIBS="$LIBS $LIBCURL_LIBS", + AC_MSG_ERROR([libcurl not found. Either provide it or disable it (with `configure --disable-curl`)]) + ) + fi