diff options
author | Alex Dupre <ale@FreeBSD.org> | 2012-09-19 09:16:03 +0000 |
---|---|---|
committer | Alex Dupre <ale@FreeBSD.org> | 2012-09-19 09:16:03 +0000 |
commit | 0f72d36bc96bd6f69631411fba0a21a80d0e7b88 (patch) | |
tree | 05969938c12c86f1c182ada3fb8eeef9986c4f9c /java/eclipse | |
parent | - Update Digikam SC to 2.9.0 (diff) |
Fix wrong permissions on a few plugin jars.
Notes
Notes:
svn path=/head/; revision=304493
Diffstat (limited to 'java/eclipse')
-rw-r--r-- | java/eclipse/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/java/eclipse/Makefile b/java/eclipse/Makefile index 2568703f606c..0567762babdf 100644 --- a/java/eclipse/Makefile +++ b/java/eclipse/Makefile @@ -7,7 +7,7 @@ PORTNAME= eclipse PORTVERSION= 3.7.1 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= java devel MASTER_SITES= http://download.eclipse.org/technology/linuxtools/eclipse-build/3.7.x_Indigo/:1 \ http://download.eclipse.org/tools/orbit/downloads/drops/R20110523182458/repository/plugins/:2 \ @@ -245,6 +245,7 @@ do-install: @${MKDIR} ${PORTDESTDIR} @${MKDIR} ${PREFIX}/${DROPINS_DIR} @(cd ${BUILD_WRKSRC}; ${SETENV} ${MAKE_ENV} ${ANT} ${MAKE_ARGS} ${INSTALL_TARGET}) + @${FIND} ${PORTDESTDIR}/plugins -type f -perm 600 -print0 | ${XARGS} -0 ${CHMOD} 644 @${SED} \ -e "s+%%BROWSER%%+${GECKO:S/19//}+g" \ -e "s+%%ECLIPSE_HOME%%+${PORTDESTDIR}+g" \ |