1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-21 00:25:50 +00:00

- Fix build on 8.X and 9.X, where make(1) does not support

the @ modifier

PR:	191765
Submitted by:	Dan Lukes <dan@obluda.cz>
This commit is contained in:
Nicola Vitale 2014-07-11 23:16:20 +00:00
parent eb9674d053
commit 8f63476fff
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=361592

View File

@ -16,9 +16,12 @@ COMMENT= Tool for rapid development of small sites
ANT= ${STAGEDIR}${DATADIR}/tools/ant/bin/ant
ANT_TARGET= local-deploy
IGNORE_FILES= KEYS README.txt .gitignore *.bak *.bat \
*.orig forrest ant index.html
IGNORE_FILES:= ${IGNORE_FILES:@f@-and ! -name ${f}@}
IGNORE_FILES= ! -name *\.bak -and ! -name *\.bat \
-and ! -name *\.orig -and ! -name .gitignore \
-and ! -name KEYS -and ! -name README.txt \
-and ! -name ant -and ! -name forrest \
-and ! -name index.html
INSTALL_WRKSRC= ${WRKSRC}/build
JAVA_VERSION= 1.6+
@ -42,7 +45,7 @@ post-patch:
do-install:
@cd ${WRKSRC}; \
${COPYTREE_SHARE} . ${STAGEDIR}${DATADIR} '${IGNORE_FILES:[2..-1]}'
${COPYTREE_SHARE} . ${STAGEDIR}${DATADIR} '${IGNORE_FILES}'
@${INSTALL_SCRIPT} ${WRKSRC}/bin/forrest ${STAGEDIR}${DATADIR}/bin/forrest
@${INSTALL_SCRIPT} ${WRKSRC}/tools/ant/bin/ant ${STAGEDIR}${DATADIR}/tools/ant/bin/ant
@${LN} -sf ../${DATADIR_REL}/bin/forrest ${STAGEDIR}${PREFIX}/bin/forrest