Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 21 Sep 2012 15:23:57 +0000 (UTC)
From:      Greg Lewis <glewis@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r304637 - head/java/eclipse-devel
Message-ID:  <201209211523.q8LFNvRs057599@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: glewis
Date: Fri Sep 21 15:23:56 2012
New Revision: 304637
URL: http://svn.freebsd.org/changeset/ports/304637

Log:
  . Also fix permissions in the dropins/jdt/plugins directory.
  
  Pointed out by:	ale@

Modified:
  head/java/eclipse-devel/Makefile

Modified: head/java/eclipse-devel/Makefile
==============================================================================
--- head/java/eclipse-devel/Makefile	Fri Sep 21 15:19:13 2012	(r304636)
+++ head/java/eclipse-devel/Makefile	Fri Sep 21 15:23:56 2012	(r304637)
@@ -7,7 +7,7 @@
 
 PORTNAME=	eclipse-devel
 PORTVERSION=	4.2.0
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	java devel
 MASTER_SITES=	http://download.eclipse.org/technology/linuxtools/eclipse-build/4.2.x/:1 \
 		http://download.eclipse.org/tools/orbit/downloads/drops/R20120119162704/repository/plugins/:2 \
@@ -282,7 +282,9 @@ 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
+.for d in plugins dropins/jdt/plugins
+	@${FIND} ${PORTDESTDIR}/${d} -type f -perm 600 -print0 | ${XARGS} -0 ${CHMOD} 644
+.endfor
 	@${SED} \
 	  -e "s+%%BROWSER%%+${GECKO:S/19//}+g" \
 	  -e "s+%%ECLIPSE_HOME%%+${PORTDESTDIR}+g" \



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201209211523.q8LFNvRs057599>