diff options
author | amdmi3 <amdmi3@FreeBSD.org> | 2016-11-27 17:00:44 +0800 |
---|---|---|
committer | amdmi3 <amdmi3@FreeBSD.org> | 2016-11-27 17:00:44 +0800 |
commit | 3638860f1d575a41c263c7aeecfe489e81fbe6e4 (patch) | |
tree | 66847141538ee4deafc66c4b9b606b7ef6c5a6ad /games/4stattack | |
parent | bab1c171e79a1159949fe08ed95532d0ac24f2e3 (diff) | |
download | freebsd-ports-gnome-3638860f1d575a41c263c7aeecfe489e81fbe6e4.tar.gz freebsd-ports-gnome-3638860f1d575a41c263c7aeecfe489e81fbe6e4.tar.zst freebsd-ports-gnome-3638860f1d575a41c263c7aeecfe489e81fbe6e4.zip |
- Add LICENSE_FILE
- Add NO_ARCH
- Switch to options helpers
Diffstat (limited to 'games/4stattack')
-rw-r--r-- | games/4stattack/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/games/4stattack/Makefile b/games/4stattack/Makefile index ae6366aeac42..b3918cc66076 100644 --- a/games/4stattack/Makefile +++ b/games/4stattack/Makefile @@ -12,19 +12,22 @@ MAINTAINER= ports@FreeBSD.org COMMENT= Connect four stones in a straight line LICENSE= GPLv2 +LICENSE_FILE= ${WRKSRC}/GPL RUN_DEPENDS= ${PYGAME} USES= python +NO_ARCH= yes PORTDOCS= changelog.txt credits.txt -OPTIONS_DEFINE= DOCS INSTALLS_ICONS= yes ICON_SIZES= 16x16 22x22 32x32 48x48 64x64 SUB_FILES= ${PORTNAME} pkg-message +OPTIONS_DEFINE= DOCS + post-patch: .for s in 16 22 32 48 64 @cd ${WRKSRC}/kde/icons/${s}x${s} ; \ @@ -56,6 +59,7 @@ do-install: ${LN} -sf ${PREFIX}/share/icons/hicolor/48x48/apps/${PORTNAME}.png \ ${STAGEDIR}${PREFIX}/share/pixmaps/ +do-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR} |