From owner-freebsd-eclipse@FreeBSD.ORG Sat Jul 21 20:33:22 2012 Return-Path: Delivered-To: freebsd-eclipse@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BE358106566C for ; Sat, 21 Jul 2012 20:33:22 +0000 (UTC) (envelope-from john.a.schneider@gmail.com) Received: from mail-vc0-f182.google.com (mail-vc0-f182.google.com [209.85.220.182]) by mx1.freebsd.org (Postfix) with ESMTP id 791228FC19 for ; Sat, 21 Jul 2012 20:33:22 +0000 (UTC) Received: by vcbgb22 with SMTP id gb22so2036271vcb.13 for ; Sat, 21 Jul 2012 13:33:21 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=osPbWrzkQDqkNKgX9Q3597iFbDox0fiiDP+yv5l5HWY=; b=gUAIfRTc7O5cpDi0wQKB4BzMdMUzErkmZTACSS8m1/wjDondpPUrAzYb9fT4m2tAf1 sBRVNuEVJuQV7vDA3+tn4IpvNLZKyLCu8gg92Ya9cv5vGClRrKDus+adnQ6zBi3F5s4j HZ0VzAcSl3u7wZpAbcLPwGGy/DFbXEqKCATVlrCrPu3HwAWerD8dmGwR5Ngdv4/REsys pxCdJPFEXjo7ptyUptiJp+1KdmQw8NJefsynj6CRrRpqK2xszfe1Th6nVyHUA4/uO31g WaVc5OZeoI+ghixp4UM6MpCd1WwbhhpIzJqTF/oQFi962EFxxafOUSDXv9tCrY+GlOcE whyQ== MIME-Version: 1.0 Received: by 10.52.141.116 with SMTP id rn20mr2044176vdb.114.1342902801772; Sat, 21 Jul 2012 13:33:21 -0700 (PDT) Received: by 10.58.114.78 with HTTP; Sat, 21 Jul 2012 13:33:21 -0700 (PDT) Date: Sat, 21 Jul 2012 16:33:21 -0400 Message-ID: From: John Schneider To: freebsd-eclipse@FreeBSD.org Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: FreeBSD Port: java/eclipse X-BeenThere: freebsd-eclipse@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "FreeBSD users of eclipse EDI, tools, rich client apps & ports." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 21 Jul 2012 20:33:22 -0000 Several eclipse files are installed into /usr/local/lib/eclipse without world readable permissions. This causes eclipse to have problems with using plugins installed by non-root user. Plugin installation looks like it works, but after workbench restart, they are not usable. Reference: http://lists.freebsd.org/pipermail/freebsd-eclipse/2012-July/001775.html After running "find /usr/local/lib/eclipse -type f \! -perm +004" the following were found on a clean install of eclipse 3.7.1_1: /usr/local/lib/eclipse/plugins/javax.el_2.2.0.jar /usr/local/lib/eclipse/plugins/javax.servlet.jsp_2.2.0.v200806031607.jar /usr/local/lib/eclipse/plugins/javax.servlet_3.0.0.v201103241727.jar /usr/local/lib/eclipse/plugins/org.apache.commons.el_1.0.0.v201004212143.jar /usr/local/lib/eclipse/plugins/org.apache.tomcat_7.0.21.jar /usr/local/lib/eclipse/plugins/org.apache.el_7.0.21.jar /usr/local/lib/eclipse/plugins/org.apache.juli_7.0.21.jar /usr/local/lib/eclipse/plugins/org.apache.jasper_7.0.21.v201004212143.jar After running "chmod -R +r /usr/local/lib/eclipse" I was able to install and use plugins installed by non-root user. Please add post-install command to port to change file permissions so everything is readable. Thanks! John