svn commit: r568040 - head/games/bzflag

Rainer Hurling rhurlin at FreeBSD.org
Wed Mar 10 20:17:22 UTC 2021


Author: rhurlin
Date: Wed Mar 10 20:17:21 2021
New Revision: 568040
URL: https://svnweb.freebsd.org/changeset/ports/568040

Log:
  games/bzflag: Fix missing dependencies sdl2 and ncurses
  
  Submitted by:	Kevin Zheng <kevinz5000 at gmail.com> (maintainer)
  Reported by:	pkg-fallout

Modified:
  head/games/bzflag/Makefile

Modified: head/games/bzflag/Makefile
==============================================================================
--- head/games/bzflag/Makefile	Wed Mar 10 20:16:56 2021	(r568039)
+++ head/games/bzflag/Makefile	Wed Mar 10 20:17:21 2021	(r568040)
@@ -15,17 +15,16 @@ LIB_DEPENDS=	libcurl.so:ftp/curl \
 		libcares.so:dns/c-ares
 
 GNU_CONFIGURE=	yes
-USES=		autoreconf compiler:c++11-lib libtool localbase tar:bzip2
+USES=		autoreconf compiler:c++11-lib libtool localbase ncurses tar:bzip2
 INSTALL_TARGET=	install-strip
 
 .ifndef SERVER_ONLY
 USES+=		gl sdl xorg
 USE_GL=		gl glu glew
-USE_SDL=	sdl
+USE_SDL=	sdl2
 USE_XORG=	x11 xext xxf86vm sm ice xcb xshmfence xdamage xfixes
 .endif
 
-CONFIGURE_ARGS=	--enable-ares-build
 CPPFLAGS+=	-I ${LOCALBASE}/include
 
 .ifdef SERVER_ONLY


More information about the svn-ports-head mailing list