diff options
author | Ion-Mihai Tetcu <itetcu@FreeBSD.org> | 2009-04-07 20:40:39 +0000 |
---|---|---|
committer | Ion-Mihai Tetcu <itetcu@FreeBSD.org> | 2009-04-07 20:40:39 +0000 |
commit | c7bba1143f500d5df93a9167c78cc5fdc789c7ac (patch) | |
tree | 9fab0a0720f3fa4a60d32ea23363542a01c83372 /games/galaxymage | |
parent | 1a884346bfdb64c4f3d5a4c9bc5c5b545468ff21 (diff) |
Fix plist with -DNOPORTDOCS.
Prompted by: QAT QA run
Approved by: maintainer timeout on QATMail
Notes
Notes:
svn path=/head/; revision=231810
Diffstat (limited to 'games/galaxymage')
-rw-r--r-- | games/galaxymage/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/games/galaxymage/Makefile b/games/galaxymage/Makefile index 6f2fc0dad6bd..d816f78a2468 100644 --- a/games/galaxymage/Makefile +++ b/games/galaxymage/Makefile @@ -37,7 +37,7 @@ post-configure: do-install: @${INSTALL_SCRIPT} ${WRKSRC}/GalaxyMage.py ${PREFIX}/bin/GalaxyMage - @${MKDIR} ${DATADIR} ${DOCSDIR} + @${MKDIR} ${DATADIR} .for DIRE in src data @cd ${WRKSRC}/${DIRE} && \ ${FIND} * -type d -exec ${MKDIR} "${DATADIR}/{}" \; && \ @@ -51,6 +51,7 @@ do-install: ${PREFIX}/share/locale/${FILE}/LC_MESSAGES .endfor .if !defined(NOPORTDOCS) + @${MKDIR} ${DOCSDIR} @cd ${WRKSRC}/doc && \ ${FIND} * -type d -exec ${MKDIR} "${DOCSDIR}/{}" \; && \ ${FIND} -E * -type f -iregex ".*\.(html|css|txt|png)" -exec ${INSTALL_DATA} "{}" \ |