Date: Mon, 14 May 2018 19:31:52 +0000 (UTC) From: Dmitry Marakasov <amdmi3@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r469959 - in head/games/stransball2: . files Message-ID: <201805141931.w4EJVq2P015811@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: amdmi3 Date: Mon May 14 19:31:51 2018 New Revision: 469959 URL: https://svnweb.freebsd.org/changeset/ports/469959 Log: - Add LICENSE - Switch to options helpers - Fix build with clang 6.0 Added: head/games/stransball2/files/patch-sources_auxiliar.cpp (contents, props changed) Modified: head/games/stransball2/Makefile Modified: head/games/stransball2/Makefile ============================================================================== --- head/games/stransball2/Makefile Mon May 14 19:31:49 2018 (r469958) +++ head/games/stransball2/Makefile Mon May 14 19:31:51 2018 (r469959) @@ -12,10 +12,13 @@ DISTNAME= ${PORTNAME}-v${PORTVERSION:C/\.//}-linux MAINTAINER= amdmi3@FreeBSD.org COMMENT= Sequel to Transball and Transball 2 THRUST-type games +LICENSE= GPLv2 +LICENSE_FILE= ${BUILD_WRKSRC}/LICENSE + LIB_DEPENDS= libSGE.so:devel/sdl_sge USES= gmake dos2unix zip -DOS2UNIX_FILES= sources/main.cpp +DOS2UNIX_FILES= sources/main.cpp sources/auxiliar.cpp USE_SDL= sdl image mixer sound BUILD_WRKSRC= ${WRKSRC}/sources @@ -37,8 +40,10 @@ post-patch: do-install: ${INSTALL_PROGRAM} ${BUILD_WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin/ - cd ${WRKSRC} && ${COPYTREE_SHARE} 'graphics sound maps demos' ${STAGEDIR}${DATADIR}/ - ${MKDIR} ${STAGEDIR}${DOCSDIR} + @cd ${WRKSRC} && ${COPYTREE_SHARE} 'graphics sound maps demos' ${STAGEDIR}${DATADIR}/ + +do-install-DOCS-on: + @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/readme.txt ${STAGEDIR}${DOCSDIR}/ .include <bsd.port.mk> Added: head/games/stransball2/files/patch-sources_auxiliar.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/stransball2/files/patch-sources_auxiliar.cpp Mon May 14 19:31:51 2018 (r469959) @@ -0,0 +1,11 @@ +--- sources/auxiliar.cpp.orig 2018-05-14 19:20:42 UTC ++++ sources/auxiliar.cpp +@@ -48,7 +48,7 @@ SDL_Surface *load_maskedimage(char *imag + mask=IMG_Load(name); + + if (tmp==0 || +- mask==0) return false; ++ mask==0) return NULL; + + res=SDL_DisplayFormatAlpha(tmp); +
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201805141931.w4EJVq2P015811>