svn commit: r473213 - head/games/kobodeluxe

Dmitry Marakasov amdmi3 at FreeBSD.org
Sun Jun 24 19:30:55 UTC 2018


Author: amdmi3
Date: Sun Jun 24 19:30:54 2018
New Revision: 473213
URL: https://svnweb.freebsd.org/changeset/ports/473213

Log:
  - Fix build with clang 6

Modified:
  head/games/kobodeluxe/Makefile

Modified: head/games/kobodeluxe/Makefile
==============================================================================
--- head/games/kobodeluxe/Makefile	Sun Jun 24 19:26:15 2018	(r473212)
+++ head/games/kobodeluxe/Makefile	Sun Jun 24 19:30:54 2018	(r473213)
@@ -17,6 +17,8 @@ USE_SDL=	image sdl
 GNU_CONFIGURE=	yes
 CONFIGURE_ARGS=	--sharedstatedir=${SCOREDIR} --enable-oss
 
+CXXFLAGS+=	-Wno-reserved-user-defined-literal
+
 SCOREDIR=	/var/games/${PORTNAME}
 
 SUB_FILES=	pkg-deinstall pkg-install
@@ -50,7 +52,9 @@ post-install:
 		${STAGEDIR}${PREFIX}/share/applications/
 	${INSTALL_DATA} ${WRKSRC}/icons/Ubuntu/kobo-icon.xpm \
 		${STAGEDIR}${PREFIX}/share/pixmaps/
-	${MKDIR} ${STAGEDIR}${DOCSDIR}
+
+post-install-DOCS-on:
+	@${MKDIR} ${STAGEDIR}${DOCSDIR}
 	${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${DOCSDIR}
 
 .include <bsd.port.mk>


More information about the svn-ports-all mailing list