diff options
author | amdmi3 <amdmi3@FreeBSD.org> | 2016-01-14 00:05:00 +0800 |
---|---|---|
committer | amdmi3 <amdmi3@FreeBSD.org> | 2016-01-14 00:05:00 +0800 |
commit | c208747a11d3e00b5cc785e13ab474cfd70a7f94 (patch) | |
tree | 7a534ac2599a57303e7941817ccc1a9ef0730cc2 /games | |
parent | 50c1d00ac213048e016549133606007e2b416ae1 (diff) | |
download | freebsd-ports-gnome-c208747a11d3e00b5cc785e13ab474cfd70a7f94.tar.gz freebsd-ports-gnome-c208747a11d3e00b5cc785e13ab474cfd70a7f94.tar.zst freebsd-ports-gnome-c208747a11d3e00b5cc785e13ab474cfd70a7f94.zip |
- Add LICENSE_FILE
- Don't duplicate COMMENT in DESKTOP_ENTRIES
- Silence mkdirs and strip
Diffstat (limited to 'games')
-rw-r--r-- | games/paintown/Makefile | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/games/paintown/Makefile b/games/paintown/Makefile index f2f7e6227f98..564bdc64cbad 100644 --- a/games/paintown/Makefile +++ b/games/paintown/Makefile @@ -11,6 +11,7 @@ MAINTAINER= ports@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> |