diff options
author | nemysis <nemysis@FreeBSD.org> | 2014-03-17 17:57:49 +0800 |
---|---|---|
committer | nemysis <nemysis@FreeBSD.org> | 2014-03-17 17:57:49 +0800 |
commit | c4bfcc91136bb00ee8e9160c972854ab30a6a1e4 (patch) | |
tree | 359e8e2c1a800323578762ab654337e55e7b2b8c /games | |
parent | 76a5669c72a701ab3fba8090b5159d86438f7de0 (diff) | |
download | freebsd-ports-gnome-c4bfcc91136bb00ee8e9160c972854ab30a6a1e4.tar.gz freebsd-ports-gnome-c4bfcc91136bb00ee8e9160c972854ab30a6a1e4.tar.zst freebsd-ports-gnome-c4bfcc91136bb00ee8e9160c972854ab30a6a1e4.zip |
- Change Makefile header, use my name and @FreeBSD.org email
- Change Desktop entry file
- Change install, cosmetical changes
Diffstat (limited to 'games')
-rw-r--r-- | games/tong/Makefile | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/games/tong/Makefile b/games/tong/Makefile index 3084db6c5c95..2621645f771e 100644 --- a/games/tong/Makefile +++ b/games/tong/Makefile @@ -1,4 +1,4 @@ -# Created by: nemysis <nemysis@gmx.ch> +# Created by: Rusmir Dusko <nemysis@FreeBSD.org> # $FreeBSD$ PORTNAME= tong @@ -16,13 +16,12 @@ USES= gmake USE_SDL= image mixer sdl PORTDOCS= CHANGELOG README making-of.txt notes.txt +OPTIONS_DEFINE= DOCS WRKSRC= ${WRKDIR}/${PORTNAME} -DESKTOP_ENTRIES="TONG!" "${COMMENT}" "${PORTNAME}" \ - "${PORTNAME}" "Game;ArcadeGame;" false - -OPTIONS_DEFINE= DOCS +DESKTOP_ENTRIES="TONG!" "" "${PORTNAME}" \ + "${PORTNAME}" "Game;ArcadeGame;" "" post-patch: @${REINPLACE_CMD} -e 's|GAME_DATA_DIR := .|GAME_DATA_DIR := ${DATADIR}|' \ @@ -34,9 +33,8 @@ do-install: @cd ${WRKSRC} && ${COPYTREE_SHARE} "*.png" ${STAGEDIR}${DATADIR} @${MKDIR} ${STAGEDIR}${DATADIR}/media/ - -.for d in *.png *.xcf *.ogg *.ico - @(cd ${WRKSRC}/media ; ${COPYTREE_SHARE} "${d}" ${STAGEDIR}${DATADIR}/media/) +.for f in *.png *.xcf *.ogg *.ico + @(cd ${WRKSRC}/media && ${COPYTREE_SHARE} "${f}" ${STAGEDIR}${DATADIR}/media/) .endfor ${LN} -sf ${DATADIR}/media/icon.png \ |