svn commit: r493816 - head/games/holotz-castle

Mark Linimon linimon at FreeBSD.org
Sun Feb 24 21:58:42 UTC 2019


Author: linimon
Date: Sun Feb 24 21:58:41 2019
New Revision: 493816
URL: https://svnweb.freebsd.org/changeset/ports/493816

Log:
  Add USE_CXXSTD=c++98 instead of CXXFLAGS+=-Wno-reserved-user-defined-literal
  (which is not supported by base GCC).
  
  While here, add USES=gl gnome sdl.
  
  PR:		235742
  Submitted by:	Piotr Kubaj

Modified:
  head/games/holotz-castle/Makefile

Modified: head/games/holotz-castle/Makefile
==============================================================================
--- head/games/holotz-castle/Makefile	Sun Feb 24 21:55:48 2019	(r493815)
+++ head/games/holotz-castle/Makefile	Sun Feb 24 21:58:41 2019	(r493816)
@@ -19,14 +19,13 @@ LICENSE_FILE=	${WRKSRC}/LICENSE.txt
 
 WRKSRC=		${WRKDIR}/${PORTNAME}-${PORTVERSION}-src
 
-USES=		gmake desthack
+USES=		desthack gl gmake gnome sdl
+USE_CXXSTD=	c++98
 USE_GL=		gl
 USE_SDL=	image mixer sdl ttf
 MAKE_ARGS=	HC_BASE=${PREFIX}/share/${PORTNAME}/ \
 		HC_BIN_DIR=${PREFIX}/bin/
 MAKE_JOBS_UNSAFE=	yes
-
-CXXFLAGS+=	-Wno-reserved-user-defined-literal
 
 INSTALLS_ICONS=	yes
 ICON_SIZES=	32x32 48x48 64x64 72x72 96x96 128x128


More information about the svn-ports-all mailing list