diff options
author | antoine <antoine@FreeBSD.org> | 2014-09-05 03:26:24 +0800 |
---|---|---|
committer | antoine <antoine@FreeBSD.org> | 2014-09-05 03:26:24 +0800 |
commit | 59d49e15cacdc386288d1958cdc1c291dcd919bc (patch) | |
tree | 7fe589d0d1b0e6d00b7aa9cd05fc46ca15de7655 /lang/pharo | |
parent | 990841b6170cce720b6df85c358d10065e9a7fa4 (diff) | |
download | freebsd-ports-gnome-59d49e15cacdc386288d1958cdc1c291dcd919bc.tar.gz freebsd-ports-gnome-59d49e15cacdc386288d1958cdc1c291dcd919bc.tar.zst freebsd-ports-gnome-59d49e15cacdc386288d1958cdc1c291dcd919bc.zip |
Change INSTALL_DATA to install with mode 644
Remove patches and hacks that were used to work around the previous
situation
This allows to stage more ports as a regular user
Differential Revision: https://reviews.freebsd.org/D703
Reviewed by and discussed with: bapt
With hat: portmgr
Diffstat (limited to 'lang/pharo')
-rw-r--r-- | lang/pharo/Makefile | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/lang/pharo/Makefile b/lang/pharo/Makefile index ddebf4bd274d..eee97ea1a0be 100644 --- a/lang/pharo/Makefile +++ b/lang/pharo/Makefile @@ -21,8 +21,6 @@ SVNVERSION= 14438 NO_BUILD= yes USES= zip -SHAREMODE= 644 - DIST_SUBDIR= squeak FILES_DIR= ${WRKDIR}/Pharo-${DISTVERSION}-${SVNVERSION}/ @@ -35,8 +33,6 @@ PLIST_FILES= lib/squeak/Pharo-${DISTVERSION}.image \ do-install: @${MKDIR} ${STAGEDIR}${PREFIX}/lib/squeak -.for f in ${FILES_TO_INSTALL} - (cd ${FILES_DIR} && ${INSTALL_DATA} ${f} ${STAGEDIR}${PREFIX}/lib/squeak/) -.endfor + ${INSTALL_DATA} ${FILES_TO_INSTALL:S,^,${FILES_DIR}/,} ${STAGEDIR}${PREFIX}/lib/squeak .include <bsd.port.mk> |