svn commit: r406054 - head/games/paintown

Dmitry Marakasov amdmi3 at FreeBSD.org
Wed Jan 13 16:05:02 UTC 2016


Author: amdmi3
Date: Wed Jan 13 16:05:00 2016
New Revision: 406054
URL: https://svnweb.freebsd.org/changeset/ports/406054

Log:
  - Add LICENSE_FILE
  - Don't duplicate COMMENT in DESKTOP_ENTRIES
  - Silence mkdirs and strip

Modified:
  head/games/paintown/Makefile

Modified: head/games/paintown/Makefile
==============================================================================
--- head/games/paintown/Makefile	Wed Jan 13 15:58:02 2016	(r406053)
+++ head/games/paintown/Makefile	Wed Jan 13 16:05:00 2016	(r406054)
@@ -11,6 +11,7 @@ MAINTAINER=	ports at FreeBSD.org
 COMMENT=	Fighting game similar to Streets of Rage and TMNT
 
 LICENSE=	BSD3CLAUSE
+LICENSE_FILE=	${WRKSRC}/LICENSE
 
 LIB_DEPENDS=	liballeg.so:${PORTSDIR}/devel/allegro \
 		libpng.so:${PORTSDIR}/graphics/png \
@@ -21,16 +22,16 @@ USE_SDL=	yes
 INSTALLS_ICONS=	yes
 DOS2UNIX_REGEX=	.*\.(c|cpp|h)
 
-DESKTOP_ENTRIES="Paintown" "Fighting game similar to Streets of Rage and TMNT" \
+DESKTOP_ENTRIES="Paintown" "" \
 		"${LOCALBASE}/share/icons/hicolor/32x32/apps/paintown.png" \
 		"paintown" "Game;ActionGame;" false
 
 do-install:
-	${MKDIR} ${STAGEDIR}${DATADIR}
+	@${MKDIR} ${STAGEDIR}${DATADIR}
 	(cd ${WRKSRC} && ${SETENV} DESTDIR=${STAGEDIR} ./install.sh -d ${DATADIR} -b ${PREFIX}/bin)
-	${MKDIR} ${STAGEDIR}${LOCALBASE}/share/icons/hicolor/32x32/apps
+	@${MKDIR} ${STAGEDIR}${LOCALBASE}/share/icons/hicolor/32x32/apps
 	${INSTALL_DATA} ${WRKSRC}/misc/icon.png \
 		${STAGEDIR}${LOCALBASE}/share/icons/hicolor/32x32/apps/paintown.png
-	${STRIP_CMD} ${STAGEDIR}${PREFIX}/share/paintown/paintown-bin
+	@${STRIP_CMD} ${STAGEDIR}${PREFIX}/share/paintown/paintown-bin
 
 .include <bsd.port.mk>


More information about the svn-ports-head mailing list