From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([69.77.167.62] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1Jibtm-0007iY-OA for garchives@archives.gentoo.org; Sun, 06 Apr 2008 20:55:34 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E4568E0468; Sun, 6 Apr 2008 20:55:33 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id BC5F4E0468 for ; Sun, 6 Apr 2008 20:55:33 +0000 (UTC) Received: from stork.gentoo.org (stork.gentoo.org [64.127.104.133]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTP id 50C2E66983 for ; Sun, 6 Apr 2008 20:55:33 +0000 (UTC) Received: from caster by stork.gentoo.org with local (Exim 4.68) (envelope-from ) id 1Jibtk-0005As-7v for gentoo-commits@lists.gentoo.org; Sun, 06 Apr 2008 20:55:32 +0000 From: "Vlastimil Babka (caster)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, caster@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in dev-util/eclipse-sdk/files/3.3: eclipse-3.3-r1 X-VCS-Repository: gentoo-x86 X-VCS-Files: eclipse-3.3-r1 X-VCS-Directories: dev-util/eclipse-sdk/files/3.3 X-VCS-Committer: caster X-VCS-Committer-Name: Vlastimil Babka Content-Type: text/plain; charset=utf8 Message-Id: Sender: Vlastimil Babka Date: Sun, 06 Apr 2008 20:55:32 +0000 Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: a932040b-fbe5-431c-b288-71a40ba6a5d3 X-Archives-Hash: 53a4391809a34fde0091149015907a50 caster 08/04/06 20:55:32 Added: eclipse-3.3-r1 Log: Revbump for workaround of bug #215150 in the eclipse startup script. Al= so get MOZILLA_FIVE_HOME variable from swt's package.env (bug #214785) - = this was by mistake already applied to 3.3.1.1 when locking swt dep (see = below) but only revbump gets this to everyone. (Portage version: 2.1.4.4) Revision Changes Path 1.1 dev-util/eclipse-sdk/files/3.3/eclipse-3.3-r1 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/eclipse-s= dk/files/3.3/eclipse-3.3-r1?rev=3D1.1&view=3Dmarkup plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/eclipse-s= dk/files/3.3/eclipse-3.3-r1?rev=3D1.1&content-type=3Dtext/plain Index: eclipse-3.3-r1 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D #!/bin/bash # # Tiny startup wrapper for Eclipse-3.3 # # Copyright (c) 2004, Karl Trygve Kalleberg # Copyright (c) 2007-2008, Jean-No=C3=ABl Rivasseau # Copyright (c) 2004-2008, Gentoo Foundation # # Licensed under the GNU General Public License, version 2 # [[ -f "/etc/eclipserc" ]] && source "/etc/eclipserc" [[ -f "$HOME/.gentoo/eclipserc" ]] && source "$HOME/.gentoo/eclipserc" ECLIPSE_HOME=3D${ECLIPSE_HOME:=3D"/usr/lib/eclipse-3.3"} ECLIPSE_BIN=3D"${ECLIPSE_HOME}/eclipse" if [[ ! -x "${ECLIPSE_BIN}" ]] ; then echo "Failed to find executable '${ECLIPSE_BIN}'" > /dev/stderr exit -1 fi if ((EUID=3D=3D0)); then echo "!!! You are running Eclipse as root." echo "!!! This is not recommended, nor needed." fi # get MOZILLA_FIVE_HOME from swt's package.env # a bit hackish way but works, bug #214785 eval $(gjl --package swt-3 --get-args) if [[ "${ECLIPSE_XMS}" ]]; then VM_ARGS=3D"${VM_ARGS} -Xms${ECLIPSE_XMS}"= ; fi if [[ "${ECLIPSE_XMX}" ]]; then VM_ARGS=3D"${VM_ARGS} -Xmx${ECLIPSE_XMX}"= ; fi if [[ "${ECLIPSE_PERMSIZE}" ]]; then VM_ARGS=3D"${VM_ARGS} -XX:PermSize=3D= ${ECLIPSE_PERMSIZE}"; fi if [[ "${ECLIPSE_MAX_PERMSIZE}" ]]; then VM_ARGS=3D"${VM_ARGS} -XX:MaxPer= mSize=3D${ECLIPSE_MAX_PERMSIZE}"; fi # workaround for bug #215150 if [[ $(java-config -f) =3D=3D sun-jdk-1.6 || $(java-config -f) =3D=3D su= n-jre-bin-1.6 ]]; then if [[ $(java-config -g VERSION) =3D=3D *1.6.0.04 || $(java-config -g = VERSION) =3D=3D *1.6.0.05 ]]; then echo "Performing workaround for bug #215150" VM_ARGS=3D"${VM_ARGS} -XX:CompileCommand=3Dexclude,org/eclipse/core/inte= rnal/dtree/DataTreeNode,forwardDeltaWith" fi fi exec "${ECLIPSE_BIN}" "$@" -vmargs ${VM_ARGS} -Djava.library.path=3D/usr/= lib --=20 gentoo-commits@lists.gentoo.org mailing list