svn commit: r342807 - head/www/vtiger
John Marino
marino at FreeBSD.org
Wed Feb 5 17:59:02 UTC 2014
Author: marino
Date: Wed Feb 5 17:59:02 2014
New Revision: 342807
URL: http://svnweb.freebsd.org/changeset/ports/342807
QAT: https://qat.redports.org/buildarchive/r342807/
Log:
www/vtiger: Don't use -v option on install
DragonFly install program doesn't support verbose option.
Unmask installation step instead (Hi danfe!)
Modified:
head/www/vtiger/Makefile
Modified: head/www/vtiger/Makefile
==============================================================================
--- head/www/vtiger/Makefile Wed Feb 5 17:54:49 2014 (r342806)
+++ head/www/vtiger/Makefile Wed Feb 5 17:59:02 2014 (r342807)
@@ -47,7 +47,7 @@ WRITEABLES= cache storage install tabdat
do-patch:
.for DIR in ${PATCHDIRS}
- @${INSTALL_DATA} -v ${WRKDIR}/${DIR}/*.php ${WRKSRC}/${DIR}
+ ${INSTALL_DATA} ${WRKDIR}/${DIR}/*.php ${WRKSRC}/${DIR}
.endfor
do-install:
@@ -55,9 +55,9 @@ do-install:
${MKDIR} ${WWWDIR}/${DIR}
( cd ${WRKSRC} && ${COPYTREE_SHARE} ${DIR} ${WWWDIR} )
.endfor
- @( ${FIND} ${WRKSRC} -type f -maxdepth 1 \( -name \*.php -or -name \*.properties \
+ ( ${FIND} ${WRKSRC} -type f -maxdepth 1 \( -name \*.php -or -name \*.properties \
-or -name Copyright.txt \) -and -not -name config\* ; ${ECHO} ${WWWDIR} ) \
- | ${XARGS} ${INSTALL_DATA} -v
+ | ${XARGS} ${INSTALL_DATA}
.for FILE in ${CONFIGS}
${INSTALL_DATA} ${WRKSRC}/${FILE} ${WWWDIR}/${FILE}.sample
.endfor
More information about the svn-ports-all
mailing list