From owner-freebsd-eclipse@FreeBSD.ORG Sat Sep 15 12:06:21 2012 Return-Path: Delivered-To: freebsd-eclipse@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1E7D11065672 for ; Sat, 15 Sep 2012 12:06:21 +0000 (UTC) (envelope-from kron24@gmail.com) Received: from mail-bk0-f54.google.com (mail-bk0-f54.google.com [209.85.214.54]) by mx1.freebsd.org (Postfix) with ESMTP id 9C53E8FC15 for ; Sat, 15 Sep 2012 12:06:20 +0000 (UTC) Received: by bkcje9 with SMTP id je9so1596914bkc.13 for ; Sat, 15 Sep 2012 05:06:19 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=message-id:date:from:user-agent:mime-version:to:subject:references :in-reply-to:content-type:content-transfer-encoding; bh=02OEGhHz9NlmBCCUwHe5T9uzhz+wsZWIgl48QnA2R+s=; b=nwJw6o8ie6aV8x63P8wfR35lXJsEgcqoFxhORO8CqaZ2/rHaESZfymO2NISpj2j43n zkIgDY07m4tkd4UEhsMUIkKJGgTTK87UBxlYGkDl9y611hujeKCLIeQfMHLMPn2ZAtzQ Sg68QQW8SrxV9Lgb5RsHtoJtOOLxqHEGpgQhCwXkzNw1WN22yJEuYE1DaW/5EwVIJ/tP fGfaOvUmWQ00hVORZ1EKDZk6rHE8A6YEKj6QX+iQbpqK+ZNHRHZLuC2zbXoepMA4dmGp OR5/XJm369HCGNrdHGG8XGECIqGB1Zg1/XA475dPYBlh+6SqYhxAfZ3p6lFxA6n7Y4+n GJuQ== Received: by 10.204.128.213 with SMTP id l21mr2679759bks.84.1347710779440; Sat, 15 Sep 2012 05:06:19 -0700 (PDT) Received: from nbvk.local (uidzr185150.sattnet.cz. [212.96.185.150]) by mx.google.com with ESMTPS id j9sm2461432bkv.0.2012.09.15.05.06.17 (version=SSLv3 cipher=OTHER); Sat, 15 Sep 2012 05:06:18 -0700 (PDT) Message-ID: <50546F38.2060107@gmail.com> Date: Sat, 15 Sep 2012 14:06:16 +0200 From: kron User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:15.0) Gecko/20120912 Thunderbird/15.0.1 MIME-Version: 1.0 To: freebsd-eclipse@freebsd.org References: <5051F21F.6010202@gmail.com> In-Reply-To: <5051F21F.6010202@gmail.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: failed upgrading eclipse-3.7.1_2 (and/or openjdk6) 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, 15 Sep 2012 12:06:21 -0000 On 2012/09/13 16:47, freethread wrote: > After upgrading openjdk6-b25_2 and eclipse-3.7.1_2 from previous > versions, eclipse no more start. The log files attached are: > 1347541596351.log --> The first log after update > 1347545372393.log --> All logs after the first (this is the last one) > > I'm not a java developers, I don't know how to solve this or if this is > related to something during jdk/eclipse installation. > > The directory > $HOME/.swt/lib/FreeBSD/x86_64 > is empty, I don't know if there was something in there before. The > libraries libswt-gtk-3738.so and libswt-gtk.so are not present in any > directories on the disk. > > I upgraded both jdk and eclipse while in KDE in console with portmaster, > I don't have installation log files but despite the jdk installation was > succesful I saw some errors and 'file not found' here and there while > compiling but thought it was nothing to worry to. > > In the previous version I installed the CDT pluging from within eclipse > download manager. > > I can continue my work (C++ with eclipse CDT) in an editor and compile > the project by hand for a couple of days, if there is something you like > I test with this broken installation. After that I will reinstall jdk > and eclipse (and CDT) if I don't hear you. > > In the past eclipse versions there was a file in the eclipse port three > directory that stated to run a command for each users that use it, no > more exists (pkg-message?). Is still needed that command? if yes, can > you tell me what it was (I don't remember, something like 'eclipse > update $username'). Two hints: 1. The port of Eclipse 3.7.1 had an issue with permissions on some directories/files which broke plugins. Not sure if it still persists - check /usr/local/lib/eclipse/plugins and below. Something like d=/usr/local/lib/eclipse/plugins find $d -type d -exec chmod 755 {} + find $d -type f -exec chmod 644 {} + could help... 2. Few days ago I posted to few lists (I think to ports and then to questions) that the last upgrade of www/libxul broke some programs - chmsee and gecko-mediaplayer in my case but eclipse may be affected, too. If you have libxul 10 then try to go back to 1.9 (see /usr/ports/UPDATING of 20120910) and rebuild eclipse. HTH Oli