From owner-svn-ports-all@FreeBSD.ORG Fri Sep 21 05:47:35 2012 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 569ED1065672; Fri, 21 Sep 2012 05:47:35 +0000 (UTC) (envelope-from glewis@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 424D68FC0C; Fri, 21 Sep 2012 05:47:35 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q8L5lZ73072545; Fri, 21 Sep 2012 05:47:35 GMT (envelope-from glewis@svn.freebsd.org) Received: (from glewis@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q8L5lZ0d072543; Fri, 21 Sep 2012 05:47:35 GMT (envelope-from glewis@svn.freebsd.org) Message-Id: <201209210547.q8L5lZ0d072543@svn.freebsd.org> From: Greg Lewis Date: Fri, 21 Sep 2012 05:47:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r304606 - head/java/eclipse-devel X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Sep 2012 05:47:35 -0000 Author: glewis Date: Fri Sep 21 05:47:34 2012 New Revision: 304606 URL: http://svn.freebsd.org/changeset/ports/304606 Log: . Fix permissions problems with some of the JARs installed as plugins. This is the same fix applied ale@ to java/eclipse. Reported by: Olivier Smedts Modified: head/java/eclipse-devel/Makefile Modified: head/java/eclipse-devel/Makefile ============================================================================== --- head/java/eclipse-devel/Makefile Thu Sep 20 23:52:30 2012 (r304605) +++ head/java/eclipse-devel/Makefile Fri Sep 21 05:47:34 2012 (r304606) @@ -7,6 +7,7 @@ PORTNAME= eclipse-devel PORTVERSION= 4.2.0 +PORTREVISION= 1 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 \ @@ -281,6 +282,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" \