Index: head/games/bzflag/Makefile =================================================================== --- head/games/bzflag/Makefile (revision 567251) +++ head/games/bzflag/Makefile (revision 567252) @@ -1,41 +1,41 @@ # $FreeBSD$ PORTNAME= bzflag -PORTVERSION= 2.4.20 +PORTVERSION= 2.4.22 CATEGORIES= games MASTER_SITES= https://download.bzflag.org/bzflag/source/${PORTVERSION}/ MAINTAINER= kevinz5000@gmail.com COMMENT?= Multiplayer 3D tank battle game LICENSE= LGPL21 LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libcurl.so:ftp/curl \ libcares.so:dns/c-ares GNU_CONFIGURE= yes USES= compiler:c++11-lib libtool localbase tar:bzip2 INSTALL_TARGET= install-strip .ifndef SERVER_ONLY USES+= gl sdl xorg USE_GL= gl glu glew USE_SDL= sdl USE_XORG= x11 xext xxf86vm sm ice xcb xshmfence xdamage xfixes .endif CONFIGURE_ARGS= --enable-ares-build CPPFLAGS+= -I ${LOCALBASE}/include .ifdef SERVER_ONLY CONFIGURE_ARGS+= --disable-client PLIST_SUB+= CLIENT="@comment " .else DESKTOP_ENTRIES= "BZFlag" "Battle enemy tanks" \ "${DATADIR}/bzflag-256x256.png" \ "bzflag" "Game;ActionGame;" false PLIST_SUB+= CLIENT="" .endif .include Index: head/games/bzflag/distinfo =================================================================== --- head/games/bzflag/distinfo (revision 567251) +++ head/games/bzflag/distinfo (revision 567252) @@ -1,3 +1,3 @@ -TIMESTAMP = 1589338912 -SHA256 (bzflag-2.4.20.tar.bz2) = 62c9c6175d805b4ac65d328eba8daefa56cc17931f46b42891e4fbe82aee7999 -SIZE (bzflag-2.4.20.tar.bz2) = 14032356 +TIMESTAMP = 1614561650 +SHA256 (bzflag-2.4.22.tar.bz2) = 9e64653302b657bd8b5f96fe1150a9ff80a1d53a6d7e8a35138c6b1b02006a4d +SIZE (bzflag-2.4.22.tar.bz2) = 14169079 Index: head/games/bzflag/files/patch-configure.ac =================================================================== --- head/games/bzflag/files/patch-configure.ac (nonexistent) +++ head/games/bzflag/files/patch-configure.ac (revision 567252) @@ -0,0 +1,11 @@ +--- configure.ac.orig 2021-03-02 19:58:06 UTC ++++ configure.ac +@@ -816,7 +816,7 @@ if test x$enable_debug = xyes ; then + else + if test "$GCC" = yes ; then + case "`$CC --version 2>&1`" in +- *LLVM*|lcc*|clang*) ++ *LLVM*|lcc*|*clang*) + # Apple LLVM and MCST LCC falsely claim to be GCC + ;; + *) Property changes on: head/games/bzflag/files/patch-configure.ac ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Index: head/games/bzflag/files/patch-src_platform_EvdevJoystick.cxx =================================================================== --- head/games/bzflag/files/patch-src_platform_EvdevJoystick.cxx (nonexistent) +++ head/games/bzflag/files/patch-src_platform_EvdevJoystick.cxx (revision 567252) @@ -0,0 +1,11 @@ +--- src/platform/EvdevJoystick.cxx.orig 2021-03-02 20:03:56 UTC ++++ src/platform/EvdevJoystick.cxx +@@ -36,7 +36,7 @@ + + static inline int test_bit (int nr, const volatile void *addr) + { +- return 1 & (((const volatile __u32 *) addr)[nr >> 5] >> (nr & 31)); ++ return 1 & (((const volatile uint32_t *) addr)[nr >> 5] >> (nr & 31)); + } + + bool EvdevJoystick::isEvdevAvailable() Property changes on: head/games/bzflag/files/patch-src_platform_EvdevJoystick.cxx ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property