From owner-freebsd-java@FreeBSD.ORG Sun Jul 25 08:15:54 2004 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 022BD16A4CE; Sun, 25 Jul 2004 08:15:54 +0000 (GMT) Received: from sakura.ninth-nine.com (sakura.ninth-nine.com [219.127.74.120]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5796843D46; Sun, 25 Jul 2004 08:15:53 +0000 (GMT) (envelope-from nork@FreeBSD.org) Received: from nadesico.ninth-nine.com (nadesico.ninth-nine.com [219.127.74.122]) by sakura.ninth-nine.com (8.12.11/8.12.11/NinthNine) with ESMTP id i6P8FijF025881; Sun, 25 Jul 2004 17:15:44 +0900 (JST) (envelope-from nork@FreeBSD.org) Date: Sun, 25 Jul 2004 17:15:44 +0900 From: Norikatsu Shigemura To: freebsd-java@FreeBSD.org, alex@FreeBSD.org, rtdean@cytherianage.net Message-Id: <20040725171544.71dc613e.nork@FreeBSD.org> X-Mailer: Sylpheed version 0.9.12-gtk2-20040622 (GTK+ 2.4.4; i386-portbld-freebsd5.2) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-1.5.3 (sakura.ninth-nine.com [219.127.74.121]); Sun, 25 Jul 2004 17:15:45 +0900 (JST) cc: ports@FreeBSD.org Subject: HEADS UP: Eclipse 3.0 updated X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 Jul 2004 08:15:54 -0000 Hi eclipse user and maintainer. I updated Eclipse 3.0 and related ports, so then some ports was broken. Please fix these ports! :-) If you find a problem, please report to java@ and nork@. From owner-freebsd-java@FreeBSD.ORG Sun Jul 25 22:04:27 2004 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C2A4316A4CE; Sun, 25 Jul 2004 22:04:27 +0000 (GMT) Received: from gldis.ca (constans.gldis.ca [66.11.169.73]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3B93B43D54; Sun, 25 Jul 2004 22:04:27 +0000 (GMT) (envelope-from gldisater@gldis.ca) Received: from [IPv6:::1] (localhost [127.0.0.1]) by gldis.ca (8.12.11/8.12.11) with ESMTP id i6PMIMuA067921; Sun, 25 Jul 2004 18:18:23 -0400 (EDT) (envelope-from gldisater@gldis.ca) Message-ID: <41042F42.80604@gldis.ca> Date: Sun, 25 Jul 2004 18:08:02 -0400 From: Jeremy Faulkner User-Agent: Mozilla Thunderbird 0.7 (X11/20040626) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Norikatsu Shigemura References: <20040725171544.71dc613e.nork@FreeBSD.org> In-Reply-To: <20040725171544.71dc613e.nork@FreeBSD.org> Content-Type: multipart/mixed; boundary="------------060305030002040307080808" X-Virus-Scanned: ClamAV version 'clamd / ClamAV version 0.65', clamav-milter version '0.60p' cc: ports@freebsd.org cc: alex@freebsd.org cc: rtdean@cytherianage.net cc: freebsd-java@freebsd.org Subject: Re: HEADS UP: Eclipse 3.0 updated X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 Jul 2004 22:04:28 -0000 This is a multi-part message in MIME format. --------------060305030002040307080808 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Norikatsu Shigemura wrote: > Hi eclipse user and maintainer. > > I updated Eclipse 3.0 and related ports, so then some ports > was broken. Please fix these ports! :-) > > If you find a problem, please report to java@ and nork@. WITH_MOTIF=yes fails to detect that kdebase is not present on the system and will always attempt to compile it. An earlier patch I submitted removed the kde swt lib from the build, this patch corrects the pkg_info check for kdebase. The "no packages match pattern" is going to stderr not stdout and so will not be caught. However if there is a package installed the outputted information does go to stdout. -- Jeremy Faulkner http://www.gldis.ca --------------060305030002040307080808 Content-Type: text/plain; name="eclipse-swt-motif-build.sh.diff" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="eclipse-swt-motif-build.sh.diff" --- eclipse/files/swt-motif-build.sh Sun Jul 25 04:01:08 2004 +++ eclipse.mod/files/swt-motif-build.sh Sun Jul 25 09:01:23 2004 @@ -37,7 +37,7 @@ echo "Building FreeBSD version of SWT and GNOME DLLs." gmake -f make_freebsd.mak ${1} ${2} ${3} ${4} build_kde=`pkg_info -xc kdebase | grep "no packages match"` - if [ "$build_kde" = "" ]; then + if [ "$build_kde" != "" ]; then echo "Building FreeBSD version of KDE DLL." gmake -f make_freebsd.mak make_kde fi --------------060305030002040307080808-- From owner-freebsd-java@FreeBSD.ORG Sun Jul 25 23:07:12 2004 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 837BB16A4CE for ; Sun, 25 Jul 2004 23:07:12 +0000 (GMT) Received: from sakura.ninth-nine.com (sakura.ninth-nine.com [219.127.74.120]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0DB4243D48 for ; Sun, 25 Jul 2004 23:07:12 +0000 (GMT) (envelope-from nork@FreeBSD.org) Received: from nadesico.ninth-nine.com (nadesico.ninth-nine.com [219.127.74.122]) by sakura.ninth-nine.com (8.12.11/8.12.11/NinthNine) with ESMTP id i6PN7A5r089826; Mon, 26 Jul 2004 08:07:10 +0900 (JST) (envelope-from nork@FreeBSD.org) Date: Mon, 26 Jul 2004 08:07:09 +0900 From: Norikatsu Shigemura To: Jeremy Faulkner Message-Id: <20040726080709.406d591b.nork@FreeBSD.org> In-Reply-To: <41042F42.80604@gldis.ca> References: <20040725171544.71dc613e.nork@FreeBSD.org> <41042F42.80604@gldis.ca> X-Mailer: Sylpheed version 0.9.12-gtk2-20040622 (GTK+ 2.4.4; i386-portbld-freebsd5.2) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-1.5.3 (sakura.ninth-nine.com [219.127.74.121]); Mon, 26 Jul 2004 08:07:10 +0900 (JST) cc: freebsd-java@FreeBSD.org Subject: Re: HEADS UP: Eclipse 3.0 updated X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 Jul 2004 23:07:12 -0000 On Sun, 25 Jul 2004 18:08:02 -0400 Jeremy Faulkner wrote: > > Hi eclipse user and maintainer. > > I updated Eclipse 3.0 and related ports, so then some ports > > was broken. Please fix these ports! :-) > > If you find a problem, please report to java@ and nork@. > WITH_MOTIF=yes fails to detect that kdebase is not present on the system > and will always attempt to compile it. An earlier patch I submitted > removed the kde swt lib from the build, this patch corrects the pkg_info > check for kdebase. > The "no packages match pattern" is going to stderr not stdout and so > will not be caught. However if there is a package installed the > outputted information does go to stdout. Hum... How about following patch? - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - --- Makefile.orig Mon Jul 26 01:27:30 2004 +++ Makefile Mon Jul 26 08:05:10 2004 @@ -71,7 +71,7 @@ # The Motif version builds a KDE/Qt library if kdebase is around .if defined(WITH_MOTIF) -BUILD_KDE=`${PKG_INFO} -xc kdebase | ${GREP} "no packages match"` +BUILD_KDE=`${PKG_INFO} -xc kdebase | ${GREP} "no packages match" 2>&1` .if empty(${BUILD_KDE}) PLIST_SUB+= KDE:="" .else - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - From owner-freebsd-java@FreeBSD.ORG Mon Jul 26 00:10:58 2004 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6425C16A4D0 for ; Mon, 26 Jul 2004 00:10:58 +0000 (GMT) Received: from mproxy.gmail.com (rproxy.gmail.com [64.233.170.195]) by mx1.FreeBSD.org (Postfix) with ESMTP id 01E2F43D41 for ; Mon, 26 Jul 2004 00:10:58 +0000 (GMT) (envelope-from leafy7382@gmail.com) Received: by mproxy.gmail.com with SMTP id 75so48232rnl for ; Sun, 25 Jul 2004 17:10:57 -0700 (PDT) Received: by 10.38.207.22 with SMTP id e22mr174188rng; Sun, 25 Jul 2004 17:10:57 -0700 (PDT) Message-ID: Date: Mon, 26 Jul 2004 08:10:57 +0800 From: Jiawei Ye To: Norikatsu Shigemura In-Reply-To: <20040725171544.71dc613e.nork@FreeBSD.org> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit References: <20040725171544.71dc613e.nork@FreeBSD.org> cc: ports@freebsd.org cc: alex@freebsd.org cc: rtdean@cytherianage.net cc: freebsd-java@freebsd.org Subject: Re: HEADS UP: Eclipse 3.0 updated X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Jul 2004 00:10:58 -0000 On Sun, 25 Jul 2004 17:15:44 +0900, Norikatsu Shigemura wrote: > Hi eclipse user and maintainer. > > I updated Eclipse 3.0 and related ports, so then some ports > was broken. Please fix these ports! :-) > > If you find a problem, please report to java@ and nork@. Hi, I ran into this error while 'make install' on 4.10-stable system: build: [echo] Building libupdate.so [echo] gcc33 -o libupdate.so -shared -I/home/ports/java/eclipse/work/plugins/org.eclipse.update.core.freebsd/src/../../org.eclipse.update.core.freebsd/src/ -I/usr/local/jdk1.4.2/include -I/usr/local/jdk1.4.2/include/freebsd libupdate.so -static -lc [apply] /home/ports/java/eclipse/work/plugins/org.eclipse.update.core.freebsd/src/update.c: In function `Java_org_eclipse_update_configuration_LocalSystemInfo_nativeGetFreeSpace': [apply] /home/ports/java/eclipse/work/plugins/org.eclipse.update.core.freebsd/src/update.c:52: syntax error before `int' [apply] /home/ports/java/eclipse/work/plugins/org.eclipse.update.core.freebsd/src/update.c:53: `err' undeclared (first use in this function) [apply] /home/ports/java/eclipse/work/plugins/org.eclipse.update.core.freebsd/src/update.c:53: (Each undeclared identifier is reported only once [apply] /home/ports/java/eclipse/work/plugins/org.eclipse.update.core.freebsd/src/update.c:53: for each function it appears in.) [apply] /home/ports/java/eclipse/work/plugins/org.eclipse.update.core.freebsd/src/update.c: In function `Java_org_eclipse_update_configuration_LocalSystemInfo_nativeGetLabel': [apply] /home/ports/java/eclipse/work/plugins/org.eclipse.update.core.freebsd/src/update.c:86: syntax error before `result' [apply] /home/ports/java/eclipse/work/plugins/org.eclipse.update.core.freebsd/src/update.c:90: `result' undeclared (first use in this function) [apply] /home/ports/java/eclipse/work/plugins/org.eclipse.update.core.freebsd/src/update.c: In function `Java_org_eclipse_update_configuration_LocalSystemInfo_nativeGetType': [apply] /home/ports/java/eclipse/work/plugins/org.eclipse.update.core.freebsd/src/update.c:117: syntax error before `int' [apply] /home/ports/java/eclipse/work/plugins/org.eclipse.update.core.freebsd/src/update.c:121: `result' undeclared (first use in this function) [apply] /home/ports/java/eclipse/work/plugins/org.eclipse.update.core.freebsd/src/update.c: In function `Java_org_eclipse_update_configuration_LocalSystemInfo_nativeListMountPoints': [apply] /home/ports/java/eclipse/work/plugins/org.eclipse.update.core.freebsd/src/update.c:157: syntax error before `int' [apply] /home/ports/java/eclipse/work/plugins/org.eclipse.update.core.freebsd/src/update.c:158: `i' undeclared (first use in this function) From owner-freebsd-java@FreeBSD.ORG Mon Jul 26 03:19:57 2004 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B911316A4CE; Mon, 26 Jul 2004 03:19:57 +0000 (GMT) Received: from gull.mail.pas.earthlink.net (gull.mail.pas.earthlink.net [207.217.120.84]) by mx1.FreeBSD.org (Postfix) with ESMTP id 80D5E43D1D; Mon, 26 Jul 2004 03:19:57 +0000 (GMT) (envelope-from root@ix.netcom.com) Received: from lsanca1-ar6-4-62-200-215.lsanca1.elnk.dsl.genuity.net ([4.62.200.215] helo=bsd.mvh) by gull.mail.pas.earthlink.net with esmtp (Exim 3.33 #1) id 1Bow1t-0007No-00; Sun, 25 Jul 2004 20:19:57 -0700 Received: from localhost (localhost [127.0.0.1]) by bsd.mvh (Postfix) with ESMTP id 9645C545A; Sun, 25 Jul 2004 20:19:56 -0700 (PDT) Received: from bsd.mvh ([127.0.0.1]) by localhost (bsd.mvh [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 68246-09; Sun, 25 Jul 2004 20:19:56 -0700 (PDT) Received: by bsd.mvh (Postfix, from userid 0) id 23EDD5457; Sun, 25 Jul 2004 20:19:56 -0700 (PDT) From: Charlie Root To: freebsd-java@freebsd.org Message-Id: <20040726031956.23EDD5457@bsd.mvh> Date: Sun, 25 Jul 2004 20:19:56 -0700 (PDT) X-Virus-Scanned: by amavisd-new at bsd.mvh Subject: /usr/ports/devel/apache-ant not fetchable X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Jul 2004 03:19:57 -0000 apache-ant has been upgrade from 1.6.1 to 1.6.2, apparently as a bug fix. 1.6.1 is no longer fetchable from any of the listed mirrors - it's apparently only availabe as a .zip file. Could somebody put the .bz2 file on the freebsd site or update apache-ant for those of us trying to catch up? Thanks for working on the ports... - Mike H. From owner-freebsd-java@FreeBSD.ORG Mon Jul 26 04:09:42 2004 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4A21916A4CE; Mon, 26 Jul 2004 04:09:42 +0000 (GMT) Received: from t-mta7.odn.ne.jp (mfep7.odn.ne.jp [143.90.131.185]) by mx1.FreeBSD.org (Postfix) with ESMTP id 705F843D4C; Mon, 26 Jul 2004 04:09:40 +0000 (GMT) (envelope-from sugitk@rio.odn.ne.jp) Received: from localhost ([210.197.246.186]) by t-mta7.odn.ne.jp with ESMTP id <20040726040939263.JIQ.2974.t-mta7.odn.ne.jp@mta7.odn.ne.jp>; Mon, 26 Jul 2004 13:09:39 +0900 Date: Mon, 26 Jul 2004 13:09:35 +0900 (JST) Message-Id: <20040726.130935.74732878.sugitk@rio.odn.ne.jp> To: nork@freebsd.org From: SUGIMURA Takashi =?iso-2022-jp?B?GyRCP3lCPBsoQiAbJEI1LjtOGyhC?= In-Reply-To: <20040725171544.71dc613e.nork@FreeBSD.org> References: <20040725171544.71dc613e.nork@FreeBSD.org> X-Mailer: Mew version 4.0.65 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit cc: ports@freebsd.org cc: alex@freebsd.org cc: rtdean@cytherianage.net cc: freebsd-java@freebsd.org Subject: Re: HEADS UP: Eclipse 3.0 updated X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Jul 2004 04:09:42 -0000 I made Eclipse 3.0 from the newest ports, and I found a problem. At /usr/local/eclipse/eclipse, DEFAULT_JAVA_HOME and ECLIPSE_HOME are not set. --- SUGIMURA Takashi From owner-freebsd-java@FreeBSD.ORG Mon Jul 26 06:06:09 2004 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 353A916A4CE; Mon, 26 Jul 2004 06:06:09 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 177D643D1D; Mon, 26 Jul 2004 06:06:09 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) i6Q668Ud020906; Mon, 26 Jul 2004 06:06:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6Q668xk020902; Mon, 26 Jul 2004 06:06:08 GMT (envelope-from edwin) Date: Mon, 26 Jul 2004 06:06:08 GMT From: Edwin Groothuis Message-Id: <200407260606.i6Q668xk020902@freefall.freebsd.org> To: edwin@FreeBSD.org, znerd@FreeBSD.org, java@FreeBSD.org Subject: Re: ports/69600: apache-ant port is out of date X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Jul 2004 06:06:09 -0000 Synopsis: apache-ant port is out of date Responsible-Changed-From-To: znerd->java Responsible-Changed-By: edwin Responsible-Changed-When: Mon Jul 26 06:05:36 GMT 2004 Responsible-Changed-Why: Date: Mon, 26 Jul 2004 08:30:14 +0200 From: Ernst de Haan To: Edwin Groothuis Subject: Re: ports/69600: apache-ant port is out of date Edwin, Could you please re-assign this to java@ ? Ernst http://www.freebsd.org/cgi/query-pr.cgi?pr=69600 From owner-freebsd-java@FreeBSD.ORG Mon Jul 26 08:40:44 2004 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2D2B816A4CE; Mon, 26 Jul 2004 08:40:44 +0000 (GMT) Received: from t-mta7.odn.ne.jp (mfep7.odn.ne.jp [143.90.131.185]) by mx1.FreeBSD.org (Postfix) with ESMTP id EA61743D45; Mon, 26 Jul 2004 08:40:42 +0000 (GMT) (envelope-from sugitk@rio.odn.ne.jp) Received: from localhost ([210.197.246.186]) by t-mta7.odn.ne.jp with ESMTP id <20040726084041840.BRQO.2974.t-mta7.odn.ne.jp@mta7.odn.ne.jp>; Mon, 26 Jul 2004 17:40:41 +0900 Date: Mon, 26 Jul 2004 17:40:38 +0900 (JST) Message-Id: <20040726.174038.78725405.sugitk@rio.odn.ne.jp> To: past@ebs.gr From: SUGIMURA Takashi =?iso-2022-jp?B?GyRCP3lCPBsoQiAbJEI1LjtOGyhC?= In-Reply-To: <4104C179.4060209@ebs.gr> References: <20040725171544.71dc613e.nork@FreeBSD.org> <20040726.130935.74732878.sugitk@rio.odn.ne.jp> <4104C179.4060209@ebs.gr> X-Mailer: Mew version 4.0.65 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit cc: ports@freebsd.org cc: alex@freebsd.org cc: nork@freebsd.org cc: rtdean@cytherianage.net cc: freebsd-java@freebsd.org Subject: Re: HEADS UP: Eclipse 3.0 updated X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Jul 2004 08:40:44 -0000 > > I made Eclipse 3.0 from the newest ports, and I found a problem. > > > > At /usr/local/eclipse/eclipse, > > DEFAULT_JAVA_HOME and ECLIPSE_HOME are not set. > > I am not sure what you mean. DEFAULT_JAVA_HOME and ECLIPSE_HOME are set > in /usr/local/bin/eclipse, which in turn calls > /usr/local/eclipse/eclipse. You are supposed to only have > /usr/local/bimn in your $PATH. > I installed Eclipse 3.0 from ports, then /usr/local/bin/eclipse is as follows: ----------------------------------------------------- #!/bin/sh # # FreeBSD-specific startup script for Eclipse Platform # # See: http://www.eclipse.org # # $FreeBSD: ports/java/eclipse/files/eclipse.in,v 1.1 2003/06/17 17:39:48 nork E xp $ # DEFAULT_JAVA_HOME= ECLIPSE_HOME= DEFAULT_JAVA_CMD=java (snipped) ----------------------------------------------------- There are not values to be set properly. --- SUGIMURA Takashi From owner-freebsd-java@FreeBSD.ORG Mon Jul 26 09:22:14 2004 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1569116A4CE for ; Mon, 26 Jul 2004 09:22:14 +0000 (GMT) Received: from mproxy.gmail.com (rproxy.gmail.com [64.233.170.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id C4F3943D41 for ; Mon, 26 Jul 2004 09:22:13 +0000 (GMT) (envelope-from leafy7382@gmail.com) Received: by mproxy.gmail.com with SMTP id 75so55259rnl for ; Mon, 26 Jul 2004 02:22:13 -0700 (PDT) Received: by 10.38.81.69 with SMTP id e69mr194257rnb; Mon, 26 Jul 2004 02:22:13 -0700 (PDT) Message-ID: Date: Mon, 26 Jul 2004 17:22:13 +0800 From: Jiawei Ye To: "SUGIMURA Takashi IQ ´ë" In-Reply-To: <20040726.174038.78725405.sugitk@rio.odn.ne.jp> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable References: <20040725171544.71dc613e.nork@FreeBSD.org> <20040726.130935.74732878.sugitk@rio.odn.ne.jp> <20040726.174038.78725405.sugitk@rio.odn.ne.jp> cc: ports@freebsd.org cc: nork@freebsd.org cc: freebsd-java@freebsd.org Subject: Re: HEADS UP: Eclipse 3.0 updated X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Jul 2004 09:22:14 -0000 On Mon, 26 Jul 2004 17:40:38 +0900 (JST), SUGIMURA Takashi =E6=9D=89=E6=9D= =91 =E8=B2=B4=E5=A3=AB wrote: > I installed Eclipse 3.0 from ports, then /usr/local/bin/eclipse is > as follows: >=20 > ----------------------------------------------------- > #!/bin/sh > # > # FreeBSD-specific startup script for Eclipse Platform > # > # See: http://www.eclipse.org > # > # $FreeBSD: ports/java/eclipse/files/eclipse.in,v 1.1 2003/06/17 17:39:48= nork E > xp $ > # >=20 > DEFAULT_JAVA_HOME=3D > ECLIPSE_HOME=3D > DEFAULT_JAVA_CMD=3Djava >=20 I can confirm that my Eclipse 3.0 port compiled on -current also results in empty values. Jiawei Ye From owner-freebsd-java@FreeBSD.ORG Mon Jul 26 09:49:24 2004 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9ED4116A4EC for ; Mon, 26 Jul 2004 09:49:24 +0000 (GMT) Received: from mproxy.gmail.com (rproxy.gmail.com [64.233.170.197]) by mx1.FreeBSD.org (Postfix) with ESMTP id 26AFD43D45 for ; Mon, 26 Jul 2004 09:49:22 +0000 (GMT) (envelope-from leafy7382@gmail.com) Received: by mproxy.gmail.com with SMTP id 75so55646rnl for ; Mon, 26 Jul 2004 02:49:21 -0700 (PDT) Received: by 10.38.92.66 with SMTP id p66mr64355rnb; Mon, 26 Jul 2004 02:49:21 -0700 (PDT) Message-ID: Date: Mon, 26 Jul 2004 17:49:20 +0800 From: Jiawei Ye To: Panagiotis Astithas In-Reply-To: <4104C070.2010907@ebs.gr> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit References: <20040725171544.71dc613e.nork@FreeBSD.org> <4104C070.2010907@ebs.gr> cc: jan-peter.koopmann@seceidos.de cc: Norikatsu Shigemura cc: rtdean@cytherianage.net cc: ports@freebsd.org cc: alex@freebsd.org cc: freebsd-java@freebsd.org Subject: Re: HEADS UP: Eclipse 3.0 updated X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Jul 2004 09:49:24 -0000 On Mon, 26 Jul 2004 11:27:28 +0300, Panagiotis Astithas wrote: > > Let me know if it works for you. > -- > Panagiotis Astithas, PhD Hi, It compiled cleanly with your patch. Jiawei From owner-freebsd-java@FreeBSD.ORG Mon Jul 26 11:01:49 2004 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 749C316A4F1 for ; Mon, 26 Jul 2004 11:01:49 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6BC0743D39 for ; Mon, 26 Jul 2004 11:01:49 +0000 (GMT) (envelope-from owner-bugmaster@freebsd.org) Received: from freefall.freebsd.org (peter@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.11/8.12.11) with ESMTP id i6QB1nXB026716 for ; Mon, 26 Jul 2004 11:01:49 GMT (envelope-from owner-bugmaster@freebsd.org) Received: (from peter@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6QB1mjK026707 for freebsd-java@freebsd.org; Mon, 26 Jul 2004 11:01:48 GMT (envelope-from owner-bugmaster@freebsd.org) Date: Mon, 26 Jul 2004 11:01:48 GMT Message-Id: <200407261101.i6QB1mjK026707@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: peter set sender to owner-bugmaster@freebsd.org using -f From: FreeBSD bugmaster To: freebsd-java@FreeBSD.org Subject: Current problem reports assigned to you X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Jul 2004 11:01:49 -0000 Current FreeBSD problem reports Critical problems Serious problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [2004/04/13] ports/65479 java ports reinstall ignores ${MAKE_ARGS} o [2004/05/01] java/66151 java JBuilderX (sun jvm 1.4.1 builtin) crashes o [2004/07/13] java/68972 java unpack crashes during make install of lin 3 problems total. Non-critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [2002/10/18] java/44251 java Create stylebook port o [2003/07/30] java/55032 java SVr4 emulation interferes with install s [2003/09/16] java/56928 java jce-aba port should install to $JAVA_HOME o [2004/02/14] java/62837 java linux-sun-jdk14 executables hang with COM o [2004/04/08] java/65335 java [PATCH] java/jdk14: use bsd.java.mk for J o [2004/04/12] ports/65465 java Eclipse has no fonts with recent pango, c 6 problems total. From owner-freebsd-java@FreeBSD.ORG Mon Jul 26 11:02:15 2004 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1A18D16A4CE for ; Mon, 26 Jul 2004 11:02:15 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id F041343D3F for ; Mon, 26 Jul 2004 11:02:14 +0000 (GMT) (envelope-from owner-bugmaster@freebsd.org) Received: from freefall.freebsd.org (peter@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.11/8.12.11) with ESMTP id i6QB2EvT027180 for ; Mon, 26 Jul 2004 11:02:14 GMT (envelope-from owner-bugmaster@freebsd.org) Received: (from peter@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6QB2EYn027174 for java@freebsd.org; Mon, 26 Jul 2004 11:02:14 GMT (envelope-from owner-bugmaster@freebsd.org) Date: Mon, 26 Jul 2004 11:02:14 GMT Message-Id: <200407261102.i6QB2EYn027174@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: peter set sender to owner-bugmaster@freebsd.org using -f From: FreeBSD bugmaster To: java@FreeBSD.org Subject: Current problem reports assigned to you X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Jul 2004 11:02:15 -0000 Current FreeBSD problem reports Critical problems Serious problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [2004/07/26] ports/69600 java apache-ant port is out of date 1 problem total. Non-critical problems From owner-freebsd-java@FreeBSD.ORG Mon Jul 26 11:15:30 2004 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9754616A4CE for ; Mon, 26 Jul 2004 11:15:30 +0000 (GMT) Received: from smtpout01-04.mesa1.secureserver.net (smtpout01-04.mesa1.secureserver.net [64.202.165.79]) by mx1.FreeBSD.org (Postfix) with SMTP id 4611B43D31 for ; Mon, 26 Jul 2004 11:15:26 +0000 (GMT) (envelope-from mriem@manorrock.org) Received: (qmail 12655 invoked from network); 26 Jul 2004 11:15:25 -0000 Received: from unknown (212.187.123.12) by smtpout01-04.mesa1.secureserver.net (64.202.165.79) with ESMTP; 26 Jul 2004 11:15:25 -0000 From: "Manfred Riem" To: "'Greg Lewis'" Date: Mon, 26 Jul 2004 13:15:23 +0200 Organization: Manor 'n Rock MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Mailer: Microsoft Office Outlook, Build 11.0.5510 In-Reply-To: <20040721171746.GA24519@misty.eyesbeyond.com> X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1441 Thread-Index: AcRvRqbMZHyC0TwbRYSHqmao6N1KUgDuxHfQ Message-Id: <20040726111526.4611B43D31@mx1.FreeBSD.org> cc: freebsd-java@freebsd.org Subject: RE: RandomAccessFile and 1.4 X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: mriem@manorrock.org List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Jul 2004 11:15:30 -0000 Hi Greg, Works for me too ;). Thanx! Anything else I should stress test? Regards, Manfred Riem > -----Original Message----- > From: Greg Lewis [mailto:glewis@eyesbeyond.com] > Sent: Wednesday, July 21, 2004 7:18 PM > To: Manfred Riem > Cc: freebsd-java@freebsd.org > Subject: Re: RandomAccessFile and 1.4 > > On Wed, Jul 21, 2004 at 01:19:05PM +0200, Manfred Riem wrote: > > I've been trying to use the following code snippet using a > RandomAccessFile. > > > > RandomAccessFile rfile = new RandomAccessFile( file, "rws" ); > > rfile.write( byte ); > > > > The current version of the J2SDK 1.4 throws a > FileNotFoundException, > > while the Windows accepts it without any problems. > > The patch in my last response appears to correct this problem for me. > > For anyone else wanting to test it, you only get the > FileNotFoundException if file already exists. > > -- > Greg Lewis Email : glewis@eyesbeyond.com > Eyes Beyond Web : > http://www.eyesbeyond.com > Information Technology FreeBSD : glewis@FreeBSD.org > From owner-freebsd-java@FreeBSD.ORG Mon Jul 26 15:25:17 2004 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CB68316A4CE for ; Mon, 26 Jul 2004 15:25:17 +0000 (GMT) Received: from dirg.bris.ac.uk (dirg.bris.ac.uk [137.222.10.102]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8E01843D72 for ; Mon, 26 Jul 2004 15:25:17 +0000 (GMT) (envelope-from Jan.Grant@bristol.ac.uk) Received: from mail.ilrt.bris.ac.uk ([137.222.16.62]) by dirg.bris.ac.uk with esmtp (Exim 4.34) id 1Bp7LT-0002cB-Gn; Mon, 26 Jul 2004 16:24:56 +0100 Received: from cmjg (helo=localhost) by mail.ilrt.bris.ac.uk with local-esmtp (Exim 4.34) id 1Bp7Hw-0003lA-LF; Mon, 26 Jul 2004 16:21:16 +0100 Date: Mon, 26 Jul 2004 16:21:16 +0100 (BST) From: Jan Grant X-X-Sender: cmjg@mail.ilrt.bris.ac.uk To: Panagiotis Astithas In-Reply-To: <40FD3E81.1050206@ebs.gr> Message-ID: References: <40FD3E81.1050206@ebs.gr> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Sender: Jan Grant X-Spam-Score: 0.0 X-Spam-Level: / cc: java@freebsd.org cc: Jan-Peter Koopmann Subject: Re: eclipse 3.0 port X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Jul 2004 15:25:17 -0000 On Tue, 20 Jul 2004, Panagiotis Astithas wrote: >> BUILD FAILED >> /data/software/eclipse/work/plugins/org.eclipse.update.core.freebsd/src/ >> build.xml:66: Warning: Could not find file >> /data/software/eclipse/work/plugins/org.eclipse.update.core.freebsd/src/ >> libupdate.so to copy. >> >> Total time: 9 seconds >> *** Error code 1 >> >> Stop in /data/software/eclipse/work. >> *** Error code 1 >> >> Stop in /data/software/eclipse. > > This is weird. Can you show me the output from the following commands? > > uname -a > pkg_info -xc gcc > which gcc I'm also seeing this. Although the build.xml peered with the erroneous update.c mentions gcc33 in the echo, the following line begins: Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DAA4D16A4CE for ; Mon, 26 Jul 2004 15:30:28 +0000 (GMT) Received: from dirg.bris.ac.uk (dirg.bris.ac.uk [137.222.10.102]) by mx1.FreeBSD.org (Postfix) with ESMTP id A95AB43D49 for ; Mon, 26 Jul 2004 15:30:28 +0000 (GMT) (envelope-from Jan.Grant@bristol.ac.uk) Received: from mail.ilrt.bris.ac.uk ([137.222.16.62]) by dirg.bris.ac.uk with esmtp (Exim 4.34) id 1Bp7Qa-0003BQ-5K; Mon, 26 Jul 2004 16:30:13 +0100 Received: from cmjg (helo=localhost) by mail.ilrt.bris.ac.uk with local-esmtp (Exim 4.34) id 1Bp7Nu-00045y-AH; Mon, 26 Jul 2004 16:27:26 +0100 Date: Mon, 26 Jul 2004 16:27:26 +0100 (BST) From: Jan Grant X-X-Sender: cmjg@mail.ilrt.bris.ac.uk To: Panagiotis Astithas In-Reply-To: Message-ID: References: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Sender: Jan Grant X-Spam-Score: 0.0 X-Spam-Level: / cc: java@freebsd.org cc: Jan-Peter Koopmann Subject: Re: eclipse 3.0 port X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Jul 2004 15:30:29 -0000 On Mon, 26 Jul 2004, Jan Grant wrote: > On Tue, 20 Jul 2004, Panagiotis Astithas wrote: > >>> BUILD FAILED >>> /data/software/eclipse/work/plugins/org.eclipse.update.core.freebsd/src/ >>> build.xml:66: Warning: Could not find file >>> /data/software/eclipse/work/plugins/org.eclipse.update.core.freebsd/src/ >>> libupdate.so to copy. >>> >>> Total time: 9 seconds >>> *** Error code 1 >>> >>> Stop in /data/software/eclipse/work. >>> *** Error code 1 >>> >>> Stop in /data/software/eclipse. >> >> This is weird. Can you show me the output from the following commands? >> >> uname -a >> pkg_info -xc gcc >> which gcc > > I'm also seeing this. Although the build.xml peered with the erroneous > update.c mentions gcc33 in the echo, the following line begins: > > > and the stock system gcc doesn't know about declarations at the first point > of use (which is what's "wrong" with update.c) > > This is on a very recent -stable. Just to be clear: the version of the port I have has the bug in line 52 of /usr/ports/java/eclipse/files/update-build.xml (sorry if this has already been fixed). Cheers, jan -- jan grant, ILRT, University of Bristol. http://www.ilrt.bris.ac.uk/ Tel +44(0)117 9287088 Fax +44 (0)117 9287112 http://ioctl.org/jan/ Ceci n'est pas une pipe | From owner-freebsd-java@FreeBSD.ORG Mon Jul 26 16:21:32 2004 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9979716A4CE for ; Mon, 26 Jul 2004 16:21:32 +0000 (GMT) Received: from mail.seceidos.de (mail.seceidos.de [213.157.28.234]) by mx1.FreeBSD.org (Postfix) with ESMTP id 549AD43D2F for ; Mon, 26 Jul 2004 16:21:32 +0000 (GMT) jan-peter.koopmann=freebsd-java=freebsd.org=09f4b098b6d44d226cc6d229f5580115c18e77cf@seceidos.de) Content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Date: Mon, 26 Jul 2004 18:20:37 +0200 Message-ID: X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: HEADS UP: Eclipse 3.0 updated Thread-Index: AcRy6vimHeqSTZcxQiSgvveNlTHPygAQWLyQ From: "Jan-Peter Koopmann" To: "Panagiotis Astithas" , "Jiawei Ye" X-MailScanner-Seceidos: Found to be clean X-MailScanner-SpamCheck: cc: ports@freebsd.org cc: alex@freebsd.org cc: Norikatsu Shigemura cc: rtdean@cytherianage.net cc: freebsd-java@freebsd.org Subject: RE: HEADS UP: Eclipse 3.0 updated X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Jul 2004 16:21:32 -0000 On Monday, July 26, 2004 10:27 AM Panagiotis Astithas wrote: > This was reported a few days ago from Jan-Peter Koopmann > (CC'ed). I had suggested the following crude patch, that > seemed to compile for him, but > haven't heard ever since whether ir really worked. Uups... I am sure I sent a message but hell... Too much stress. It = worked out ok and eclipse compiled without any further problems! Thanks! Regards, JP From owner-freebsd-java@FreeBSD.ORG Mon Jul 26 16:29:00 2004 Return-Path: Delivered-To: freebsd-java@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4873C16A4CE; Mon, 26 Jul 2004 16:29:00 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 273F343D62; Mon, 26 Jul 2004 16:29:00 +0000 (GMT) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) i6QGScwT074535; Mon, 26 Jul 2004 16:28:38 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6QGSbrm074531; Mon, 26 Jul 2004 16:28:37 GMT (envelope-from linimon) Date: Mon, 26 Jul 2004 16:28:37 GMT From: Mark Linimon Message-Id: <200407261628.i6QGSbrm074531@freefall.freebsd.org> To: herve.quiroz@esil.univ-mrs.fr, linimon@FreeBSD.org, freebsd-java@FreeBSD.org Subject: Re: ports/65335: [PATCH] java/jdk14: use bsd.java.mk for JDK bootstrap setting X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Jul 2004 16:29:00 -0000 Synopsis: [PATCH] java/jdk14: use bsd.java.mk for JDK bootstrap setting State-Changed-From-To: open->feedback State-Changed-By: linimon State-Changed-When: Mon Jul 26 16:27:04 GMT 2004 State-Changed-Why: Is this one still relevant with the recent rework of bsd.java.mk? (Since it seems to be about the port itself and not the run-time, I've changed it over to a 'ports' PR.) http://www.freebsd.org/cgi/query-pr.cgi?pr=65335 From owner-freebsd-java@FreeBSD.ORG Mon Jul 26 16:32:50 2004 Return-Path: Delivered-To: freebsd-java@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3D54516A4D0; Mon, 26 Jul 2004 16:32:50 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 15E8343D67; Mon, 26 Jul 2004 16:32:50 +0000 (GMT) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) i6QGWUCG076064; Mon, 26 Jul 2004 16:32:30 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6QGWUlT076060; Mon, 26 Jul 2004 16:32:30 GMT (envelope-from linimon) Date: Mon, 26 Jul 2004 16:32:30 GMT From: Mark Linimon Message-Id: <200407261632.i6QGWUlT076060@freefall.freebsd.org> To: materribile@yahoo.com, linimon@FreeBSD.org, freebsd-java@FreeBSD.org Subject: Re: ports/55032: java/jdk13: SVr4 emulation interferes with install X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Jul 2004 16:32:50 -0000 Old Synopsis: SVr4 emulation interferes with install New Synopsis: java/jdk13: SVr4 emulation interferes with install State-Changed-From-To: open->feedback State-Changed-By: linimon State-Changed-When: Mon Jul 26 16:29:25 GMT 2004 State-Changed-Why: Is this still a problem with recent versions of the port? I am also wondering if this is not the classical problem where one needs to bootstrap the JDK install off of another binary- based JDK. http://www.freebsd.org/cgi/query-pr.cgi?pr=55032 From owner-freebsd-java@FreeBSD.ORG Mon Jul 26 17:05:21 2004 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B7EAE16A4CE for ; Mon, 26 Jul 2004 17:05:21 +0000 (GMT) Received: from mgr2.xmission.com (mgr2.xmission.com [198.60.22.202]) by mx1.FreeBSD.org (Postfix) with ESMTP id A25D143D2D for ; Mon, 26 Jul 2004 17:05:21 +0000 (GMT) (envelope-from glewis@eyesbeyond.com) Received: from [198.60.22.203] (helo=mgr3.xmission.com) by mgr2.xmission.com with esmtp (Exim 3.35 #1) id 1Bp8uG-00089b-02; Mon, 26 Jul 2004 11:04:56 -0600 Received: from [166.70.56.15] (helo=misty.eyesbeyond.com) by mgr3.xmission.com with esmtp (Exim 4.32) id 1Bp8uF-0002C6-Sa; Mon, 26 Jul 2004 11:04:56 -0600 Received: from misty.eyesbeyond.com (localhost.eyesbeyond.com [127.0.0.1]) i6QH4shW016140; Mon, 26 Jul 2004 11:04:54 -0600 (MDT) (envelope-from glewis@eyesbeyond.com) Received: (from glewis@localhost) by misty.eyesbeyond.com (8.12.11/8.12.11/Submit) id i6QH4r64016139; Mon, 26 Jul 2004 11:04:53 -0600 (MDT) (envelope-from glewis@eyesbeyond.com) X-Authentication-Warning: misty.eyesbeyond.com: glewis set sender to glewis@eyesbeyond.com using -f Date: Mon, 26 Jul 2004 11:04:53 -0600 From: Greg Lewis To: Manfred Riem Message-ID: <20040726170453.GB16107@misty.eyesbeyond.com> References: <20040721171746.GA24519@misty.eyesbeyond.com> <200407261115.i6QBFbMf033598@new.iagu.net> Mime-Version: 1.0 Content-Disposition: inline In-Reply-To: <200407261115.i6QBFbMf033598@new.iagu.net> User-Agent: Mutt/1.4.2.1i Content-Type: text/plain; charset=us-ascii X-Spam-Checker-Version: SpamAssassin 2.63 (2004-01-11) on mgr3.xmission.com X-Spam-Level: X-Spam-Status: No, hits=-4.9 required=8.0 tests=BAYES_00 autolearn=no version=2.63 X-SA-Exim-Connect-IP: 166.70.56.15 X-SA-Exim-Mail-From: glewis@eyesbeyond.com X-SA-Exim-Version: 4.0 (built Sat, 24 Apr 2004 12:31:30 +0200) X-SA-Exim-Scanned: Yes (on mgr3.xmission.com) cc: freebsd-java@freebsd.org Subject: Re: RandomAccessFile and 1.4 X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Jul 2004 17:05:21 -0000 On Mon, Jul 26, 2004 at 01:15:23PM +0200, Manfred Riem wrote: > Works for me too ;). Thanx! Anything else I should stress test? Great. I don't know of anything else in particular to stress test. Stress testing as much as possible is always a good idea :). -- Greg Lewis Email : glewis@eyesbeyond.com Eyes Beyond Web : http://www.eyesbeyond.com Information Technology FreeBSD : glewis@FreeBSD.org From owner-freebsd-java@FreeBSD.ORG Mon Jul 26 17:19:35 2004 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ADD6316A4CE for ; Mon, 26 Jul 2004 17:19:35 +0000 (GMT) Received: from t-mta7.odn.ne.jp (mfep7.odn.ne.jp [143.90.131.185]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1B24443D62 for ; Mon, 26 Jul 2004 17:19:35 +0000 (GMT) (envelope-from sugitk@rio.odn.ne.jp) Received: from localhost ([210.197.246.186]) by t-mta7.odn.ne.jp with ESMTP id <20040726171931030.FIEH.2974.t-mta7.odn.ne.jp@mta7.odn.ne.jp>; Tue, 27 Jul 2004 02:19:31 +0900 Date: Tue, 27 Jul 2004 02:19:28 +0900 (JST) Message-Id: <20040727.021928.41638321.sugitk@rio.odn.ne.jp> To: rui@ruilopes.com From: SUGIMURA Takashi =?iso-2022-jp?B?GyRCP3lCPBsoQiAbJEI1LjtOGyhC?= X-Mailer: Mew version 4.0.65 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Multipart/Mixed; boundary="--Next_Part(Tue_Jul_27_02_19_28_2004_424)--" Content-Transfer-Encoding: 7bit cc: java@freebsd.org Subject: [update port] devel/maven X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Jul 2004 17:19:35 -0000 ----Next_Part(Tue_Jul_27_02_19_28_2004_424)-- Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Hello Rui, I make a diff for a port devel/maven to 1.0. Would you please review this? --- SUGIMURA Takashi ----Next_Part(Tue_Jul_27_02_19_28_2004_424)-- Content-Type: Application/Octet-Stream Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="maven.diff.gz" H4sICEw8BUEAA21hdmVuLmRpZmYAlVpdb+O4FX2Of4WAbYAWXsn6smUHCJBpJ1tkgWQWSdqHvgxo ibZp06JK0Y4zxf73XslOLFLSNechhiweUofn3kseysnYYuG4ZCefnC3Z09wTki1Hj2RDF4zT473P rwPXdbtgV79J5jySd8dJnGB64/s3wcwJfT8eDIdDY4yr1x11ft9xJ0wcP7zxk5sgOmLv7hx38msQ OMP68+5u4PwycAbOH9+eX5++PN7fXtUjDdzqxr/vn18evj3dXgWe78lwMDRvDpx/fHm9/+e354f7 l9urjO4pd9ZkTwbO45eX1/vn7y8Pr1XLSqniZjTKyVK8E48UJF1RmN1ytGVSCjm6fvnX378+PF+P 5iwnktFypI3w/dh8e/WX/33w/HPgfn14OVFu3HaBlStT4NrdfLw+zeHPauaPXx6eXuHvHsaXO3YH f1wUtPRSsYX5fXt8vH96vb36HablFFKsaapAbZgK3dJcOSTPPm9Dj0LSFc1LJnJHCcEHWWfoM1Yq li/EKWwfX83Qf9y3Cf0n1gj95BNbhT74NXSG1QcE3n38Onb+Wvf+UM1TRHrzH+HfnFvHT9JFMo7p NJwmxI9m/oLS2J8k4WK2mCXxfOC+PPznHhlgPJ7NwjgaDPXnNCETspgGYbIIkjGNp2Q8SUhEJ0kS w/0JIfPB0HiGNv4sDpMw6JG42CzdgoMoJ30+v5sifzbYqHwG6zIHY0PmIJhWQgdwt6oxyOvRsbCG 19dVpl8fv7o52bMlUZAv9fQOZWYiTslVNzkfTdV4C1HlGskgUfOF3sTyUhHOv0taCK9c6Y0GD87m I5pnQpY0Gx223CUFK2sy89BbE9mHpDKlpRt6MSBbsExs4zUMEruwKLjTGuA0ASRX0Dz2IvjsbBRF JQrhGsptoqDatiIv3Tkl+U4xXpGeeB3DnYHqjR1UnatwTeACIhb5QRB4gR/F47j/ISln534hghOc Q7RYdR1iZDK2pKWishLJQ2a3lEepTo9GKAKyWLm+N8WGY8Kt5xz6kef7/njs91NcU87fj/CZD5OZ +GEwvgRXZFm6FeW63yQce34URvHEql8Gu1dOTwyrqMThLAqtulYZ0OwYzKJZOy87OlYpXxWuPwlA kshPwqi/n6lxD6sDbyZZbzA4yZeQJUgIuFguGYCqcozaA3WVmWtXrj2wS/X/Qaza0aEmaBXorgXg jcrNj6OucTjxwhAuO2BYDXcCO+qwG9dRh30RbddXJ7KndDqx/ZH9WLXPj+woKQh7HdfQ64jpce9q 3S44PexKyM1Ju60RjSCADJgGUTBrP/ZtxdJVHXpthN6dykA0d6rPpoLvIIPLE4TkudjlaW2d3GNT +3lmlwZycgHJ5RnbEXRDo2FL1ubCEHTl9Vn84c/MMMS7NJDJBWRzhq0NxkAXRUnlnn72CC8oLRVb kFSZEvbBy9WGckgHW3gBybG25VKjj3lrN34KhodKy6RKSalEK1f6wCuoZpjp8oyPL+PLMzrC0TTd lOqd07M0eAcOi6UtdS72TVFw3iKj5RtTwMhaGljsxJn5JdXhbFVS6KOk4JZPyCDN5oLIzCymPjwt uHi3BsOJFQ570oW0Z3um3i2lqk5btlCRzoXYWE6XEttoUdgKob4t10a6nlvm44L811K96k3Dzwq3 pDksS+dMR8VY7raFJZcVm1OZE2Wbiiu15eEBYmM5PssosRRwHVJqqcaaQPa9W6bG2jo1qlcwtmQB mqaWolVgTTKcxVyUpTV2x3hmvVKt02pZI0st2vg8M2qbGgAtwBDbUjmvIZaKV+8rLLOudiP2Sbqm qlmI+CyZJLbQnBe2k9vlTFVLHqctG9HnaVquI0bhLdeBeyvddUTeJTZdvgN/wnwuWl62B2t6FJSK 6VFQFh0eJbkwvOlSxji67VLiCw/QfUqEY3WfgnMxTQdOo9t0oEnWYTpQ+piPQKei+4gJCjV9BJoP mo9AKbR8BHoC0XwEOq7mI1C1e3wEOrrpI1AxdB+BcunwEWh2dfgINFN0H4FOUfcRONTwESgFzUeg Kaf7CFQ300egorV8ROuVD+okcClaTgKHdzkJtAJ0J4HzNp0ETqXDSeCa604Cx7acBJ4jupPAZ6k5 iUtgzUvE2OuLo5eofsKQypSwz34cbF0YhxI/WBpvwG5s/TRnKc3LVoL0ovNNvbNaGrztjivW2rhR 81Z3Ob2Zs3wKLH9sb+uW85LZUimyxXnBxpFULoRMbWU8oewiVGxbu3ofUmwtkZKC12lGHdW3SumS gbezPfmV6dYcuq+8Ov033uWgrTdo9RpVcxm9IfZos3JQ1h2VE+E9umsHpdRdOxHeyaweHKxVDwrV qgdHGuUwvgDf2u5QWkFcCGerJNDtqask0GhK0nrV24PUigfdcMoVbJK2Jcm2rH266QWrlpPrgyqi 0n1pRroXLXeqtJTMpIwGxKSMxtqkEWEqK1JueOPYc+Ftt6Jla/fvoaFDJ16I0lhnoplB6H60g0OB ZpvRqOy733/0oN+sT2otFmi4WyxQ9Fv7UNAj3Bud/9SvSm/sh3aQRsEH41iAMTbGRTNUH/f0/yh3 GZNya06zdb/5A3lX4+D/zdcplN8nAAA= ----Next_Part(Tue_Jul_27_02_19_28_2004_424)---- From owner-freebsd-java@FreeBSD.ORG Mon Jul 26 17:47:39 2004 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8B00916A4CE; Mon, 26 Jul 2004 17:47:39 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6AC7E43D67; Mon, 26 Jul 2004 17:47:39 +0000 (GMT) (envelope-from glewis@FreeBSD.org) Received: from freefall.freebsd.org (glewis@localhost [127.0.0.1]) i6QHlTES083216; Mon, 26 Jul 2004 17:47:29 GMT (envelope-from glewis@freefall.freebsd.org) Received: (from glewis@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6QHlTNK083211; Mon, 26 Jul 2004 17:47:29 GMT (envelope-from glewis) Date: Mon, 26 Jul 2004 17:47:29 GMT From: Greg Lewis Message-Id: <200407261747.i6QHlTNK083211@freefall.freebsd.org> To: glewis@FreeBSD.org, java@FreeBSD.org, glewis@FreeBSD.org Subject: Re: ports/69600: apache-ant port is out of date X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Jul 2004 17:47:39 -0000 Synopsis: apache-ant port is out of date Responsible-Changed-From-To: java->glewis Responsible-Changed-By: glewis Responsible-Changed-When: Mon Jul 26 17:47:11 GMT 2004 Responsible-Changed-Why: I'll take this one. http://www.freebsd.org/cgi/query-pr.cgi?pr=69600 From owner-freebsd-java@FreeBSD.ORG Mon Jul 26 17:52:27 2004 Return-Path: Delivered-To: freebsd-java@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EA8FA16A51E; Mon, 26 Jul 2004 17:52:26 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id BA9B443D2D; Mon, 26 Jul 2004 17:52:26 +0000 (GMT) (envelope-from glewis@FreeBSD.org) Received: from freefall.freebsd.org (glewis@localhost [127.0.0.1]) i6QHqQFI083493; Mon, 26 Jul 2004 17:52:26 GMT (envelope-from glewis@freefall.freebsd.org) Received: (from glewis@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6QHqQ8a083489; Mon, 26 Jul 2004 17:52:26 GMT (envelope-from glewis) Date: Mon, 26 Jul 2004 17:52:26 GMT From: Greg Lewis Message-Id: <200407261752.i6QHqQ8a083489@freefall.freebsd.org> To: herve.quiroz@esil.univ-mrs.fr, glewis@FreeBSD.org, freebsd-java@FreeBSD.org Subject: Re: ports/65335: [PATCH] java/jdk14: use bsd.java.mk for JDK bootstrap setting X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Jul 2004 17:52:27 -0000 Synopsis: [PATCH] java/jdk14: use bsd.java.mk for JDK bootstrap setting State-Changed-From-To: feedback->open State-Changed-By: glewis State-Changed-When: Mon Jul 26 17:47:58 GMT 2004 State-Changed-Why: The PR is still relevant. I've also got just the person in mind to assign it to... http://www.freebsd.org/cgi/query-pr.cgi?pr=65335 From owner-freebsd-java@FreeBSD.ORG Mon Jul 26 18:13:40 2004 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 68E7416A4CE; Mon, 26 Jul 2004 18:13:40 +0000 (GMT) Received: from gldis.ca (constans.gldis.ca [66.11.169.73]) by mx1.FreeBSD.org (Postfix) with ESMTP id D52F243D4C; Mon, 26 Jul 2004 18:13:39 +0000 (GMT) (envelope-from gldisater@gldis.ca) Received: from [IPv6:::1] (localhost [127.0.0.1]) by gldis.ca (8.12.11/8.12.11) with ESMTP id i6QIRIbB073155; Mon, 26 Jul 2004 14:27:18 -0400 (EDT) (envelope-from gldisater@gldis.ca) Message-ID: <41053064.1020208@gldis.ca> Date: Mon, 26 Jul 2004 12:25:08 -0400 From: Jeremy Faulkner User-Agent: Mozilla Thunderbird 0.7 (X11/20040626) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Panagiotis Astithas References: <20040725171544.71dc613e.nork@FreeBSD.org> <41042F42.80604@gldis.ca> <4104BD5F.70608@ebs.gr> In-Reply-To: <4104BD5F.70608@ebs.gr> Content-Type: multipart/mixed; boundary="------------090308060207070400070104" X-Virus-Scanned: ClamAV version 'clamd / ClamAV version 0.65', clamav-milter version '0.60p' cc: ports@freebsd.org cc: Norikatsu Shigemura cc: freebsd-java@freebsd.org Subject: Re: HEADS UP: Eclipse 3.0 updated X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Jul 2004 18:13:40 -0000 This is a multi-part message in MIME format. --------------090308060207070400070104 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Panagiotis Astithas wrote: > Jeremy Faulkner wrote: > >> Norikatsu Shigemura wrote: >> >>> Hi eclipse user and maintainer. >>> >>> I updated Eclipse 3.0 and related ports, so then some ports >>> was broken. Please fix these ports! :-) >>> >>> If you find a problem, please report to java@ and nork@. >> >> >> >> WITH_MOTIF=yes fails to detect that kdebase is not present on the >> system and will always attempt to compile it. An earlier patch I >> submitted removed the kde swt lib from the build, this patch corrects >> the pkg_info check for kdebase. >> >> The "no packages match pattern" is going to stderr not stdout and so >> will not be caught. However if there is a package installed the >> outputted information does go to stdout. > > > Regrettably I don't have a desktop machine without KDE right now, so I > can't verify this, but your analysis seems correct. However, your > proposed solution is not in accordance with your analysis. You seem to > simply reverse the logic of the null check, instead of redirecting > stderr to stdout as you implied. > I did not describe my fix, I described the problem. Here is another patch that removes the unnecessary greps. The redirection of stderr in this patch to /dev/null is only to avoid having it go to console during the compile. It doesn't really matter if you have KDE installed or not, you can test the fix by making it search for a pkg that you don't have installed. pkg_info -xc 'SomePkgThatIsNotInstalled' > test.txt cat test.txt pkg_info -xc 'SomePkgThatIsInstalled' > test.txt cat test.txt So, pkg_info returns nothing to stderr if the pkg is not installed, and returns the pkg information if the pkg is installed, thus the logic reversal in the if statement. -- Jeremy Faulkner http://www.gldis.ca --------------090308060207070400070104 Content-Type: text/plain; name="eclipse-no-grep.diff" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="eclipse-no-grep.diff" diff -ur eclipse/Makefile eclipse.mod/Makefile --- eclipse/Makefile Sun Jul 25 07:30:36 2004 +++ eclipse.mod/Makefile Sun Jul 25 20:13:23 2004 @@ -71,8 +71,8 @@ # The Motif version builds a KDE/Qt library if kdebase is around .if defined(WITH_MOTIF) -BUILD_KDE=`${PKG_INFO} -xc kdebase | ${GREP} "no packages match"` -.if empty(${BUILD_KDE}) +BUILD_KDE=`${PKG_INFO} -xc kdebase 2>/dev/null` +.if !empty(${BUILD_KDE}) PLIST_SUB+= KDE:="" .else PLIST_SUB+= KDE:="@comment *${BUILD_KDE}*" diff -ur eclipse/files/swt-motif-build.sh eclipse.mod/files/swt-motif-build.sh --- eclipse/files/swt-motif-build.sh Sun Jul 25 04:01:08 2004 +++ eclipse.mod/files/swt-motif-build.sh Sun Jul 25 20:12:25 2004 @@ -36,8 +36,8 @@ else echo "Building FreeBSD version of SWT and GNOME DLLs." gmake -f make_freebsd.mak ${1} ${2} ${3} ${4} - build_kde=`pkg_info -xc kdebase | grep "no packages match"` - if [ "$build_kde" = "" ]; then + build_kde=`pkg_info -xc kdebase 2>/dev/null` + if [ "$build_kde" != "" ]; then echo "Building FreeBSD version of KDE DLL." gmake -f make_freebsd.mak make_kde fi --------------090308060207070400070104-- From owner-freebsd-java@FreeBSD.ORG Mon Jul 26 18:16:58 2004 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 937F416A4CE; Mon, 26 Jul 2004 18:16:58 +0000 (GMT) Received: from gldis.ca (constans.gldis.ca [66.11.169.73]) by mx1.FreeBSD.org (Postfix) with ESMTP id F407743D41; Mon, 26 Jul 2004 18:16:57 +0000 (GMT) (envelope-from gldisater@gldis.ca) Received: from [IPv6:::1] (localhost [127.0.0.1]) by gldis.ca (8.12.11/8.12.11) with ESMTP id i6QIV1u4073174; Mon, 26 Jul 2004 14:31:01 -0400 (EDT) (envelope-from gldisater@gldis.ca) Message-ID: <41054B7D.6050206@gldis.ca> Date: Mon, 26 Jul 2004 14:20:45 -0400 From: Jeremy Faulkner User-Agent: Mozilla Thunderbird 0.7 (X11/20040626) X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-java@freebsd.org References: <20040725171544.71dc613e.nork@FreeBSD.org> <20040726.130935.74732878.sugitk@rio.odn.ne.jp> In-Reply-To: <20040726.130935.74732878.sugitk@rio.odn.ne.jp> Content-Type: multipart/mixed; boundary="------------090509080500090604010900" X-Virus-Scanned: ClamAV version 'clamd / ClamAV version 0.65', clamav-milter version '0.60p' cc: ports@freebsd.org cc: nork@freebsd.org Subject: Re: HEADS UP: Eclipse 3.0 updated X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Jul 2004 18:16:58 -0000 This is a multi-part message in MIME format. --------------090509080500090604010900 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit SUGIMURA Takashi wrote: > I made Eclipse 3.0 from the newest ports, and I found a problem. > > At /usr/local/eclipse/eclipse, > DEFAULT_JAVA_HOME and ECLIPSE_HOME are not set. > > --- > SUGIMURA Takashi Patch attached. -- Jeremy Faulkner http://www.gldis.ca --------------090509080500090604010900 Content-Type: text/plain; name="eclipse-files-Makefile.diff" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="eclipse-files-Makefile.diff" --- eclipse/files/Makefile Sun Jul 25 07:30:36 2004 +++ eclipse.mod/files/Makefile Mon Jul 26 14:09:47 2004 @@ -59,7 +59,7 @@ $(ANT) -Djava.home=$(JAVA_HOME) @$(ECHO) "===> Building libcore." cd plugins/org.eclipse.core.resources.freebsd/src && \ - env JDK_INCLUDE="/usr/local/jdk1.4.2/include -I/usr/local/jdk1.4.2/include/freebsd" $(GMAKE) && \ + env JDK_INCLUDE="$(JAVA_HOME)/include -I$(JAVA_HOME)/include/freebsd" $(GMAKE) && \ $(CP) *.so ../../org.eclipse.core.resources.freebsd/os/freebsd/x86 java: build-install @@ -74,8 +74,8 @@ $(UNZIP_CMD) result/$(ECLIPSE_OS)-$(ECLIPSE_WS)-$(ECLIPSE_ARCH)-sdk.zip -d $(PREFIX) @$(ECHO) "===> Installing a shell script..." @$(SED) \ - -e "/%%ECLIPSE_HOME%%/s//$(PORTDESTDIR:S/\//\\\//g)/g" \ - -e "/%%JAVA_HOME%%/s//$(JAVA_HOME:S/\//\\\//g)/g" \ + -e "s+%%ECLIPSE_HOME%%+$(PORTDESTDIR)+g" \ + -e "s+%%JAVA_HOME%%+$(JAVA_HOME)+g" \ eclipse.in > eclipse.tmp $(BSD_INSTALL_SCRIPT) eclipse.tmp $(PREFIX)/bin/eclipse --------------090509080500090604010900-- From owner-freebsd-java@FreeBSD.ORG Mon Jul 26 18:19:26 2004 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 83BD016A4CE; Mon, 26 Jul 2004 18:19:26 +0000 (GMT) Received: from smtp.unsam.edu.ar (smtp.unsam.edu.ar [170.210.48.3]) by mx1.FreeBSD.org (Postfix) with ESMTP id E600843D31; Mon, 26 Jul 2004 18:19:21 +0000 (GMT) (envelope-from fernan@iib.unsam.edu.ar) Received: from pi.iib.unsam.edu.ar (pi.iib.unsam.edu.ar [192.168.10.11]) by smtp.unsam.edu.ar (8.12.6/8.12.6) with ESMTP id i6QITVdg022474; Mon, 26 Jul 2004 15:29:33 -0300 (ART) (envelope-from fernan@iib.unsam.edu.ar) Received: from pi.iib.unsam.edu.ar (localhost.iib.unsam.edu.ar [127.0.0.1]) by pi.iib.unsam.edu.ar (8.12.11/8.12.9) with ESMTP id i6QIIqwj094504; Mon, 26 Jul 2004 15:18:52 -0300 (ART) (envelope-from fernan@iib.unsam.edu.ar) Received: (from fernan@localhost) by pi.iib.unsam.edu.ar (8.12.11/8.12.11/Submit) id i6QIIo83094503; Mon, 26 Jul 2004 15:18:50 -0300 (ART) (envelope-from fernan@iib.unsam.edu.ar) X-Authentication-Warning: pi.iib.unsam.edu.ar: fernan set sender to fernan@iib.unsam.edu.ar using -f Date: Mon, 26 Jul 2004 15:18:50 -0300 From: Fernan Aguero To: Jiawei Ye Message-ID: <20040726181850.GE16551@iib.unsam.edu.ar> Mail-Followup-To: Jiawei Ye , Norikatsu Shigemura , ports@freebsd.org, alex@freebsd.org, rtdean@cytherianage.net, freebsd-java@freebsd.org References: <20040725171544.71dc613e.nork@FreeBSD.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4.1i cc: ports@freebsd.org cc: alex@freebsd.org cc: Norikatsu Shigemura cc: rtdean@cytherianage.net cc: freebsd-java@freebsd.org Subject: Re: HEADS UP: Eclipse 3.0 updated X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Jul 2004 18:19:26 -0000 +----[ Jiawei Ye (26.Jul.2004 08:58): | | Hi, I ran into this error while 'make install' on 4.10-stable system: | | build: | [echo] Building libupdate.so | [echo] gcc33 -o libupdate.so -shared -I/home/ports/java/eclipse/work/plugins/org.eclipse.update.core.freebsd/src/../../org.eclipse.update.core.freebsd/src/ -I/usr/local/jdk1.4.2/include -I/usr/local/jdk1.4.2/include/freebsd libupdate.so -static -lc | [apply] /home/ports/java/eclipse/work/plugins/org.eclipse.update.core.freebsd/src/update.c: In function `Java_org_eclipse_update_configuration_LocalSystemInfo_nativeGetFreeSpace': | [apply] /home/ports/java/eclipse/work/plugins/org.eclipse.update.core.freebsd/src/update.c:52: syntax error before `int' | [apply] /home/ports/java/eclipse/work/plugins/org.eclipse.update.core.freebsd/src/update.c:53: `err' undeclared (first use in this function) | [apply] /home/ports/java/eclipse/work/plugins/org.eclipse.update.core.freebsd/src/update.c:53: (Each undeclared identifier is reported only once | [apply] /home/ports/java/eclipse/work/plugins/org.eclipse.update.core.freebsd/src/update.c:53: for each function it appears in.) | [apply] /home/ports/java/eclipse/work/plugins/org.eclipse.update.core.freebsd/src/update.c: In function `Java_org_eclipse_update_configuration_LocalSystemInfo_nativeGetLabel': | [apply] /home/ports/java/eclipse/work/plugins/org.eclipse.update.core.freebsd/src/update.c:86: syntax error before `result' | [apply] /home/ports/java/eclipse/work/plugins/org.eclipse.update.core.freebsd/src/update.c:90: `result' undeclared (first use in this function) | [apply] /home/ports/java/eclipse/work/plugins/org.eclipse.update.core.freebsd/src/update.c: In function `Java_org_eclipse_update_configuration_LocalSystemInfo_nativeGetType': | [apply] /home/ports/java/eclipse/work/plugins/org.eclipse.update.core.freebsd/src/update.c:117: syntax error before `int' | [apply] /home/ports/java/eclipse/work/plugins/org.eclipse.update.core.freebsd/src/update.c:121: `result' undeclared (first use in this function) | [apply] /home/ports/java/eclipse/work/plugins/org.eclipse.update.core.freebsd/src/update.c: In function `Java_org_eclipse_update_configuration_LocalSystemInfo_nativeListMountPoints': | [apply] /home/ports/java/eclipse/work/plugins/org.eclipse.update.core.freebsd/src/update.c:157: syntax error before `int' | [apply] /home/ports/java/eclipse/work/plugins/org.eclipse.update.core.freebsd/src/update.c:158: `i' undeclared (first use in this function) | +----] I have also run into this problem. My system is 4.10p2. As suggested in the list, there is a mention to 'gcc' in line 52 of files/update-build.xml that should be 'gcc33'. Or at least if it is changed to gcc33, eclipse now builds succesfully. The patch for correcting this is here: --- update-build.xml.orig Mon Jul 26 15:06:08 2004 +++ update-build.xml Mon Jul 26 15:06:50 2004 @@ -49,7 +49,7 @@ - + Now, also as suggested in the list, even though eclipse builds and installs fine, it does not run. The error message and the first lines of PREFIX/bin/eclipse follow: Script started on Mon Jul 26 15:03:18 2004 [fernan@pi] whereis eclipse eclipse: /usr/local/bin/eclipse /usr/ports/java/eclipse [fernan@pi] eclipse Error: JAVA_HOME is not defined correctly: Unable to find [fernan@pi] head -15 /usr/local/bin/eclipse #!/bin/sh # # FreeBSD-specific startup script for Eclipse Platform # # See: http://www.eclipse.org # # $FreeBSD: ports/java/eclipse/files/eclipse.in,v 1.1 2003/06/17 17:39:48 nork Exp $ # DEFAULT_JAVA_HOME= ECLIPSE_HOME= DEFAULT_JAVA_CMD=java #----------------------------------------------------------------------------- [fernan@pi] exit Script done on Mon Jul 26 15:04:19 2004 Fernan -- Fernan Aguero - fernan at iib.unsam.edu.ar Phone: +54 11 4580-7255/7 ext 310, Fax: +54 11 4752-9639 Check http://genoma.unsam.edu.ar/~fernan for more info. From owner-freebsd-java@FreeBSD.ORG Mon Jul 26 18:36:03 2004 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3557B16A4CE; Mon, 26 Jul 2004 18:36:03 +0000 (GMT) Received: from t-mta7.odn.ne.jp (mfep7.odn.ne.jp [143.90.131.185]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6D6EA43D5F; Mon, 26 Jul 2004 18:36:02 +0000 (GMT) (envelope-from sugitk@rio.odn.ne.jp) Received: from localhost ([210.197.246.186]) by t-mta7.odn.ne.jp with ESMTP id <20040726183601826.FKTF.2974.t-mta7.odn.ne.jp@mta7.odn.ne.jp>; Tue, 27 Jul 2004 03:36:01 +0900 Date: Tue, 27 Jul 2004 03:35:58 +0900 (JST) Message-Id: <20040727.033558.112621021.sugitk@rio.odn.ne.jp> To: gldisater@gldis.ca From: SUGIMURA Takashi =?iso-2022-jp?B?GyRCP3lCPBsoQiAbJEI1LjtOGyhC?= In-Reply-To: <41054B7D.6050206@gldis.ca> References: <20040725171544.71dc613e.nork@FreeBSD.org> <20040726.130935.74732878.sugitk@rio.odn.ne.jp> <41054B7D.6050206@gldis.ca> X-Mailer: Mew version 4.0.65 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit cc: ports@freebsd.org cc: nork@freebsd.org cc: freebsd-java@freebsd.org Subject: Re: HEADS UP: Eclipse 3.0 updated X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Jul 2004 18:36:03 -0000 > Patch attached. > Thank you very much. I can confirm that the problem has solved. --- SUGIMURA Takashi From owner-freebsd-java@FreeBSD.ORG Mon Jul 26 19:37:21 2004 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BC2AE16A4CE; Mon, 26 Jul 2004 19:37:21 +0000 (GMT) Received: from diomedes.noc.ntua.gr (diomedes.noc.ntua.gr [147.102.222.220]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8DA3B43D5D; Mon, 26 Jul 2004 19:37:18 +0000 (GMT) (envelope-from past@netmode.ntua.gr) Received: from netmode.ece.ntua.gr (dolly.netmode.ece.ntua.gr [147.102.13.10]) i6QJbGjD069677; Mon, 26 Jul 2004 22:37:16 +0300 (EEST) (envelope-from past@netmode.ntua.gr) Received: from [147.102.229.10] (ppp-229-010.dialup.ntua.gr [147.102.229.10]) by netmode.ece.ntua.gr (8.12.10/8.12.8) with ESMTP id i6QJbCNC096418; Mon, 26 Jul 2004 22:37:14 +0300 (EEST) (envelope-from past@netmode.ntua.gr) Message-ID: <41055D62.30802@netmode.ntua.gr> Date: Mon, 26 Jul 2004 22:37:06 +0300 From: Panagiotis Astithas User-Agent: Mozilla Thunderbird 0.7 (X11/20040702) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Jan-Peter Koopmann References: In-Reply-To: Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: Norikatsu Shigemura cc: rtdean@cytherianage.net cc: ports@freebsd.org cc: alex@freebsd.org cc: Jiawei Ye cc: freebsd-java@freebsd.org Subject: Re: HEADS UP: Eclipse 3.0 updated X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Jul 2004 19:37:21 -0000 Jan-Peter Koopmann wrote: > On Monday, July 26, 2004 10:27 AM Panagiotis Astithas wrote: > > > >>This was reported a few days ago from Jan-Peter Koopmann >>(CC'ed). I had suggested the following crude patch, that >>seemed to compile for him, but >> haven't heard ever since whether ir really worked. > > > Uups... I am sure I sent a message but hell... Too much stress. It worked out ok and eclipse compiled without any further problems! Thanks! > > Regards, > JP Great, I think the following patch should be appropriate then. If someone could test it I'd be grateful (especially on 4.x), since my system keeps locking hard today :-( diff -ruN /usr/ports/java/eclipse/files/Makefile eclipse/files/Makefile --- /usr/ports/java/eclipse/files/Makefile Mon Jul 26 13:59:03 2004 +++ eclipse/files/Makefile Mon Jul 26 20:19:18 2004 @@ -56,7 +56,7 @@ libupdate: @$(ECHO) "===> Building libupdate." cd plugins/org.eclipse.update.core.freebsd/src && \ - $(ANT) -Djava.home=$(JAVA_HOME) + $(ANT) -Djava.home=$(JAVA_HOME) -DCC=$(CC) @$(ECHO) "===> Building libcore." cd plugins/org.eclipse.core.resources.freebsd/src && \ env JDK_INCLUDE="/usr/local/jdk1.4.2/include -I/usr/local/jdk1.4.2/include/freebsd" $(GMAKE) && \ diff -ruN /usr/ports/java/eclipse/files/make_freebsd.mak eclipse/files/make_freebsd.mak --- /usr/ports/java/eclipse/files/make_freebsd.mak Sun Jul 25 11:01:08 2004+++ eclipse/files/make_freebsd.mak Wed Jul 21 12:56:32 2004 @@ -84,16 +84,16 @@ make_gnome: $(GNOME_LIB) $(GNOME_LIB): $(GNOME_OBJECTS) - gcc -o $@ $(GNOME_OBJECTS) $(GNOME_LIBS) + $(CC) -o $@ $(GNOME_OBJECTS) $(GNOME_LIBS) gnome.o: gnome.c - gcc -O -Wall -DSWT_VERSION=$(SWT_VERSION) -DFREEBSD -DGTK -I$(JAVA_HOME)/include -I$(JAVA_HOME)/include/bsd -I$(JAVA_HOME)/include/freebsd $(GNOME_CFLAGS) -c -o gnome.o gnome.c + $(CC) -O -Wall -DSWT_VERSION=$(SWT_VERSION) -DFREEBSD -DGTK -I$(JAVA_HOME)/include -I$(JAVA_HOME)/include/bsd -I$(JAVA_HOME)/include/freebsd $(GNOME_CFLAGS) -c -o gnome.o gnome.c gnome_structs.o: gnome_structs.c - gcc -O -Wall -DSWT_VERSION=$(SWT_VERSION) -DFREEBSD -DGTK -I$(JAVA_HOME)/include -I$(JAVA_HOME)/include/bsd -I$(JAVA_HOME)/include/freebsd $(GNOME_CFLAGS) -c -o gnome_structs.o gnome_structs.c + $(CC) -O -Wall -DSWT_VERSION=$(SWT_VERSION) -DFREEBSD -DGTK -I$(JAVA_HOME)/include -I$(JAVA_HOME)/include/bsd -I$(JAVA_HOME)/include/freebsd $(GNOME_CFLAGS) -c -o gnome_structs.o gnome_structs.c gnome_stats.o: gnome_stats.c - gcc -O -Wall -DSWT_VERSION=$(SWT_VERSION) -DFREEBSD -DGTK -I$(JAVA_HOME)/include -I$(JAVA_HOME)/include/bsd -I$(JAVA_HOME)/include/freebsd $(GNOME_CFLAGS) -c -o gnome_stats.o gnome_stats.c + $(CC) -O -Wall -DSWT_VERSION=$(SWT_VERSION) -DFREEBSD -DGTK -I$(JAVA_HOME)/include -I$(JAVA_HOME)/include/bsd -I$(JAVA_HOME)/include/freebsd $(GNOME_CFLAGS) -c -o gnome_stats.o gnome_stats.c make_kde: $(KDE_LIB) @@ -101,7 +101,7 @@ ld -o $@ $(KDE_OBJS) $(KDE_LIBS) $(KDE_OBJS): kde.cc - g++ $(KDE_CFLAGS) -o kde.o kde.cc + $(CXX) $(KDE_CFLAGS) -o kde.o kde.cc make_awt: $(AWT_LIB) diff -ruN /usr/ports/java/eclipse/files/make_gtk.mak eclipse/files/make_gtk.mak --- /usr/ports/java/eclipse/files/make_gtk.mak Sun Jul 25 11:01:08 2004 +++ eclipse/files/make_gtk.mak Mon Jul 26 22:23:51 2004 @@ -13,8 +13,7 @@ include make_common.mak -CC=gcc -LD=gcc +LD=$(CC) SWT_VERSION=$(maj_ver)$(min_ver) diff -ruN /usr/ports/java/eclipse/files/update-build.xml eclipse/files/update-build.xml --- /usr/ports/java/eclipse/files/update-build.xml Sun Jul 25 11:01:08 2004+++ eclipse/files/update-build.xml Mon Jul 26 20:02:57 2004 @@ -47,9 +47,9 @@ - + - + From owner-freebsd-java@FreeBSD.ORG Mon Jul 26 19:47:22 2004 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A587516A4CE; Mon, 26 Jul 2004 19:47:22 +0000 (GMT) Received: from diomedes.noc.ntua.gr (diomedes.noc.ntua.gr [147.102.222.220]) by mx1.FreeBSD.org (Postfix) with ESMTP id DC19F43D2F; Mon, 26 Jul 2004 19:47:21 +0000 (GMT) (envelope-from past@netmode.ntua.gr) Received: from netmode.ece.ntua.gr (dolly.netmode.ece.ntua.gr [147.102.13.10]) i6QJlKjD071858; Mon, 26 Jul 2004 22:47:20 +0300 (EEST) (envelope-from past@netmode.ntua.gr) Received: from [147.102.229.10] (ppp-229-010.dialup.ntua.gr [147.102.229.10]) by netmode.ece.ntua.gr (8.12.10/8.12.8) with ESMTP id i6QJlJNC096462; Mon, 26 Jul 2004 22:47:20 +0300 (EEST) (envelope-from past@netmode.ntua.gr) Message-ID: <41055FC2.4070909@netmode.ntua.gr> Date: Mon, 26 Jul 2004 22:47:14 +0300 From: Panagiotis Astithas User-Agent: Mozilla Thunderbird 0.7 (X11/20040702) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Jeremy Faulkner References: <20040725171544.71dc613e.nork@FreeBSD.org> <20040726.130935.74732878.sugitk@rio.odn.ne.jp> <41054B7D.6050206@gldis.ca> In-Reply-To: <41054B7D.6050206@gldis.ca> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: ports@freebsd.org cc: nork@freebsd.org cc: freebsd-java@freebsd.org Subject: Re: HEADS UP: Eclipse 3.0 updated X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Jul 2004 19:47:22 -0000 Jeremy Faulkner wrote: > SUGIMURA Takashi wrote: > >> I made Eclipse 3.0 from the newest ports, and I found a problem. >> >> At /usr/local/eclipse/eclipse, >> DEFAULT_JAVA_HOME and ECLIPSE_HOME are not set. >> >> --- >> SUGIMURA Takashi > > > Patch attached. > > > ------------------------------------------------------------------------ > > --- eclipse/files/Makefile Sun Jul 25 07:30:36 2004 > +++ eclipse.mod/files/Makefile Mon Jul 26 14:09:47 2004 > @@ -59,7 +59,7 @@ > $(ANT) -Djava.home=$(JAVA_HOME) > @$(ECHO) "===> Building libcore." > cd plugins/org.eclipse.core.resources.freebsd/src && \ > - env JDK_INCLUDE="/usr/local/jdk1.4.2/include -I/usr/local/jdk1.4.2/include/freebsd" $(GMAKE) && \ > + env JDK_INCLUDE="$(JAVA_HOME)/include -I$(JAVA_HOME)/include/freebsd" $(GMAKE) && \ > $(CP) *.so ../../org.eclipse.core.resources.freebsd/os/freebsd/x86 > > java: build-install > @@ -74,8 +74,8 @@ > $(UNZIP_CMD) result/$(ECLIPSE_OS)-$(ECLIPSE_WS)-$(ECLIPSE_ARCH)-sdk.zip -d $(PREFIX) > @$(ECHO) "===> Installing a shell script..." > @$(SED) \ > - -e "/%%ECLIPSE_HOME%%/s//$(PORTDESTDIR:S/\//\\\//g)/g" \ > - -e "/%%JAVA_HOME%%/s//$(JAVA_HOME:S/\//\\\//g)/g" \ > + -e "s+%%ECLIPSE_HOME%%+$(PORTDESTDIR)+g" \ > + -e "s+%%JAVA_HOME%%+$(JAVA_HOME)+g" \ > eclipse.in > eclipse.tmp > $(BSD_INSTALL_SCRIPT) eclipse.tmp $(PREFIX)/bin/eclipse Nice catch! I can't test it right now, but if it works I like it. From owner-freebsd-java@FreeBSD.ORG Mon Jul 26 21:02:55 2004 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D8EF216A4CE; Mon, 26 Jul 2004 21:02:55 +0000 (GMT) Received: from ulysses.noc.ntua.gr (ulysses.noc.ntua.gr [147.102.222.230]) by mx1.FreeBSD.org (Postfix) with ESMTP id 19CCA43D31; Mon, 26 Jul 2004 21:02:55 +0000 (GMT) (envelope-from past@netmode.ntua.gr) Received: from netmode.ece.ntua.gr (dolly.netmode.ece.ntua.gr [147.102.13.10]) by ulysses.noc.ntua.gr (8.12.9p1/8.12.9) with ESMTP id i6QJtjIs091232; Mon, 26 Jul 2004 22:55:45 +0300 (EEST) (envelope-from past@netmode.ntua.gr) Received: from [147.102.229.10] (ppp-229-010.dialup.ntua.gr [147.102.229.10]) by netmode.ece.ntua.gr (8.12.10/8.12.8) with ESMTP id i6QJtiNC096519; Mon, 26 Jul 2004 22:55:45 +0300 (EEST) (envelope-from past@netmode.ntua.gr) Message-ID: <410561BB.8080603@netmode.ntua.gr> Date: Mon, 26 Jul 2004 22:55:39 +0300 From: Panagiotis Astithas User-Agent: Mozilla Thunderbird 0.7 (X11/20040702) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Jeremy Faulkner References: <20040725171544.71dc613e.nork@FreeBSD.org> <41042F42.80604@gldis.ca> <4104BD5F.70608@ebs.gr> <41053064.1020208@gldis.ca> In-Reply-To: <41053064.1020208@gldis.ca> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: ports@freebsd.org cc: Norikatsu Shigemura cc: freebsd-java@freebsd.org Subject: Re: HEADS UP: Eclipse 3.0 updated X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Jul 2004 21:02:56 -0000 Jeremy Faulkner wrote: > I did not describe my fix, I described the problem. Here is another > patch that removes the unnecessary greps. The redirection of stderr in > this patch to /dev/null is only to avoid having it go to console during > the compile. > > It doesn't really matter if you have KDE installed or not, you can test > the fix by making it search for a pkg that you don't have installed. > > pkg_info -xc 'SomePkgThatIsNotInstalled' > test.txt > > cat test.txt > > > pkg_info -xc 'SomePkgThatIsInstalled' > test.txt > > cat test.txt > > > So, pkg_info returns nothing to stderr if the pkg is not installed, and > returns the pkg information if the pkg is installed, thus the logic > reversal in the if statement. (I suppose you meant s/stderr/stdout/) Thanks, I can see what you meant now. I'm OK with this, if you have verified that the patch works (I can't test it unfortunately). Cheers, Panagiotis From owner-freebsd-java@FreeBSD.ORG Mon Jul 26 21:12:02 2004 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2858A16A4CE; Mon, 26 Jul 2004 21:12:02 +0000 (GMT) Received: from smtp.unsam.edu.ar (smtp.unsam.edu.ar [170.210.48.3]) by mx1.FreeBSD.org (Postfix) with ESMTP id D4B9A43D2D; Mon, 26 Jul 2004 21:11:57 +0000 (GMT) (envelope-from fernan@iib.unsam.edu.ar) Received: from pi.iib.unsam.edu.ar (pi.iib.unsam.edu.ar [192.168.10.11]) by smtp.unsam.edu.ar (8.12.6/8.12.6) with ESMTP id i6QLMIdg027412; Mon, 26 Jul 2004 18:22:18 -0300 (ART) (envelope-from fernan@iib.unsam.edu.ar) Received: from pi.iib.unsam.edu.ar (localhost.iib.unsam.edu.ar [127.0.0.1]) by pi.iib.unsam.edu.ar (8.12.11/8.12.9) with ESMTP id i6QLBfAu023884; Mon, 26 Jul 2004 18:11:41 -0300 (ART) (envelope-from fernan@iib.unsam.edu.ar) Received: (from fernan@localhost) by pi.iib.unsam.edu.ar (8.12.11/8.12.11/Submit) id i6QLBflt023883; Mon, 26 Jul 2004 18:11:41 -0300 (ART) (envelope-from fernan@iib.unsam.edu.ar) X-Authentication-Warning: pi.iib.unsam.edu.ar: fernan set sender to fernan@iib.unsam.edu.ar using -f Date: Mon, 26 Jul 2004 18:11:41 -0300 From: Fernan Aguero To: Panagiotis Astithas Message-ID: <20040726211141.GI16551@iib.unsam.edu.ar> Mail-Followup-To: Panagiotis Astithas , FreeBSD Ports , java@freebsd.org References: <41055D62.30802@netmode.ntua.gr> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <41055D62.30802@netmode.ntua.gr> User-Agent: Mutt/1.4.1i cc: FreeBSD Ports cc: java@FreeBSD.ORG Subject: Re: HEADS UP: Eclipse 3.0 updated X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Jul 2004 21:12:02 -0000 +----[ Panagiotis Astithas (26.Jul.2004 16:43): | | Great, I think the following patch should be appropriate then. If | someone could test it I'd be grateful (especially on 4.x), since my | system keeps locking hard today :-( [patch snipped] | +----] The patches worked fine for me, though I had to introduce them manually, since my mailer wrapped the lines and the diff would not apply. After installing I edited bin/eclipse and changed DEFAULT_JAVA_HOME= to DEFAULT_JAVA_HOME=/usr/local/jdk1.4.2 and ECLIPSE_HOME= to ECLIPSE_HOME=/usr/local/eclipse I am running FreeBSD-4.10p2, and starting to enjoy eclipse-3.0! (I am just now getting my first look at it) Fernan -- Fernan Aguero - fernan at iib.unsam.edu.ar Phone: +54 11 4580-7255/7 ext 310, Fax: +54 11 4752-9639 Check http://genoma.unsam.edu.ar/~fernan for more info. From owner-freebsd-java@FreeBSD.ORG Mon Jul 26 21:50:55 2004 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BEB9716A4CE for ; Mon, 26 Jul 2004 21:50:55 +0000 (GMT) Received: from web21110.mail.yahoo.com (web21110.mail.yahoo.com [216.136.227.112]) by mx1.FreeBSD.org (Postfix) with SMTP id 91F0843D31 for ; Mon, 26 Jul 2004 21:50:55 +0000 (GMT) (envelope-from materribile@yahoo.com) Message-ID: <20040726215055.22777.qmail@web21110.mail.yahoo.com> Received: from [24.228.74.10] by web21110.mail.yahoo.com via HTTP; Mon, 26 Jul 2004 14:50:55 PDT Date: Mon, 26 Jul 2004 14:50:55 -0700 (PDT) From: Mark Terribile To: Mark Linimon , freebsd-java@FreeBSD.org In-Reply-To: <200407261632.i6QGWUlT076060@freefall.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Subject: Re: ports/55032: java/jdk13: SVr4 emulation interferes with install X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Jul 2004 21:50:55 -0000 Mark, > Old Synopsis: SVr4 emulation interferes with install > New Synopsis: java/jdk13: SVr4 emulation interferes with install > > State-Changed-From-To: open->feedback > State-Changed-By: linimon > State-Changed-When: Mon Jul 26 16:29:25 GMT 2004 > State-Changed-Why: > Is this still a problem with recent versions of the port? I don't know, not having tried this particular configuration combination since. > I am also wondering if this is not the classical problem where > one needs to bootstrap the JDK install off of another binary- > based JDK. Then why does it fail only when SVr4 emulation is installed? My somewhat fuzzy recollection was that SVr4 emulation prevented the loader from interpreting one of the ELF brands correctly, even after I manually reapplied the brand. Mark Terribile __________________________________ Do you Yahoo!? New and Improved Yahoo! Mail - 100MB free storage! http://promotions.yahoo.com/new_mail From owner-freebsd-java@FreeBSD.ORG Tue Jul 27 06:56:12 2004 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9247A16A4CE for ; Tue, 27 Jul 2004 06:56:12 +0000 (GMT) Received: from griffin.clustercube.com (griffin.clustercube.com [213.201.220.146]) by mx1.FreeBSD.org (Postfix) with SMTP id A502643D39 for ; Tue, 27 Jul 2004 06:56:11 +0000 (GMT) (envelope-from rui@ruilopes.com) Received: (qmail 56564 invoked by uid 98); 27 Jul 2004 06:56:10 -0000 Received: from rui@ruilopes.com by griffin.clustercube.com by uid 89 with qmail-scanner-1.22 Clear:RC:0(127.0.0.1):SA:0(-4.4/5.0):. Processed in 1.423522 secs); 27 Jul 2004 06:56:10 -0000 X-Spam-Status: No, hits=-4.4 required=5.0 X-Qmail-Scanner-Mail-From: rui@ruilopes.com via griffin.clustercube.com X-Qmail-Scanner: 1.22 (Clear:RC:0(127.0.0.1):SA:0(-4.4/5.0):. Processed in 1.423522 secs) Received: from localhost (HELO ?217.129.148.164?) (rui@ruilopes.com@127.0.0.1) by griffin.clustercube.com with SMTP; 27 Jul 2004 06:56:08 -0000 Message-ID: <4105FC84.8090003@ruilopes.com> Date: Tue, 27 Jul 2004 07:56:04 +0100 From: Rui Lopes User-Agent: Mozilla Thunderbird 0.7 (Windows/20040616) X-Accept-Language: en-us, en MIME-Version: 1.0 To: SUGIMURA Takashi References: <20040727.021928.41638321.sugitk@rio.odn.ne.jp> In-Reply-To: <20040727.021928.41638321.sugitk@rio.odn.ne.jp> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit cc: java@freebsd.org Subject: Re: [update port] devel/maven X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Jul 2004 06:56:12 -0000 Hello, SUGIMURA Takashi æ‰æ‘ 貴士 wrote: > I make a diff for a port devel/maven to 1.0. > > Would you please review this? The update is already waiting for being commited, have a look at ports/68769. -- Rui Lopes From owner-freebsd-java@FreeBSD.ORG Tue Jul 27 08:49:51 2004 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1890316A4CE; Tue, 27 Jul 2004 08:49:51 +0000 (GMT) Received: from phantom.cris.net (phantom.cris.net [212.110.130.74]) by mx1.FreeBSD.org (Postfix) with ESMTP id 77B8943D31; Tue, 27 Jul 2004 08:49:48 +0000 (GMT) (envelope-from ml@FreeBSD.org.ua) Received: from phantom.cris.net (ml@localhost [127.0.0.1]) by phantom.cris.net (8.12.10/8.12.10) with ESMTP id i6R8oeSo085570; Tue, 27 Jul 2004 11:50:41 +0300 (EEST) (envelope-from ml@FreeBSD.org.ua) Received: (from ml@localhost) by phantom.cris.net (8.12.10/8.12.10/Submit) id i6R8oeJH085569; Tue, 27 Jul 2004 11:50:40 +0300 (EEST) (envelope-from ml) Date: Tue, 27 Jul 2004 11:50:40 +0300 From: Alexey Zelkin To: Greg Lewis Message-ID: <20040727085040.GA85474@phantom.cris.net> References: <200407261752.i6QHqQ8a083489@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200407261752.i6QHqQ8a083489@freefall.freebsd.org> X-Operating-System: FreeBSD 4.9-STABLE i386 User-Agent: Mutt/1.5.5.1i cc: herve.quiroz@esil.univ-mrs.fr cc: freebsd-java@freebsd.org Subject: Re: ports/65335: [PATCH] java/jdk14: use bsd.java.mk for JDK bootstrap setting X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Jul 2004 08:49:51 -0000 hi, In my opinion it's not good idea to make jdk14 port depend on additional infrastructure. bsd.java.mk was designed to process java port. But jdk14 is not a clear java port from this point of view. Additionally it's very critical to be sure what no accidiental or unauthorized changes will not be committed into this infrastucture. Espessially implicitly. Making it depend on bsd.java.mk opens great perspective of such changes. So, I'd prefer to have clean jdk14 port which is not depending on unneeded items and infrastructure. I respect your work very much guys, but being conservative is also very good choice sometimes to avoid future problems. And last point, about using of 'java/linux-sun-jdk14' port for bootstraping when 'java/jdk14' is already installed. If you'll make closer look on exact contents of BUILD_DEPENDS in this case you'll realize following item: : /usr/local/jdk1.4.2/bin/javac:/usr/ports/java/linux-sun-jdk14 So, if jdk14 is installed -- it'll be used for bootstaping and java/linux-sun-jdk14 will not be installed in this case. I did it to avoid potential infinite loops for resources which has own logic of dependancies detection (it's kinda dangerous to have jdk14 port depending on jdk14 port) On Mon, Jul 26, 2004 at 05:52:26PM +0000, Greg Lewis wrote: > Synopsis: [PATCH] java/jdk14: use bsd.java.mk for JDK bootstrap setting > > State-Changed-From-To: feedback->open > State-Changed-By: glewis > State-Changed-When: Mon Jul 26 17:47:58 GMT 2004 > State-Changed-Why: > The PR is still relevant. I've also got just the person in mind to assign > it to... > > http://www.freebsd.org/cgi/query-pr.cgi?pr=65335 > _______________________________________________ > freebsd-java@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-java > To unsubscribe, send any mail to "freebsd-java-unsubscribe@freebsd.org" From owner-freebsd-java@FreeBSD.ORG Tue Jul 27 13:55:15 2004 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7337516A4CF for ; Tue, 27 Jul 2004 13:55:15 +0000 (GMT) Received: from fly.ebs.gr (fly.ebs.gr [62.103.84.177]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8BEAC43D39 for ; Tue, 27 Jul 2004 13:55:12 +0000 (GMT) (envelope-from past@hal.ebs.gr) Received: from ebs.gr (root@hal.ebs.gr [10.1.1.2]) by fly.ebs.gr (8.12.9p1/8.12.9) with ESMTP id i6QFgMJq016455; Mon, 26 Jul 2004 18:42:22 +0300 (EEST) (envelope-from past@hal.ebs.gr) Received: from hal.ebs.gr (past@localhost [127.0.0.1]) by ebs.gr (8.12.11/8.12.11) with ESMTP id i6QFgMqX061111; Mon, 26 Jul 2004 18:42:22 +0300 (EEST) (envelope-from past@hal.ebs.gr) Received: (from past@localhost) by hal.ebs.gr (8.12.11/8.12.11/Submit) id i6QFgJqi061110; Mon, 26 Jul 2004 18:42:19 +0300 (EEST) (envelope-from past) Date: Mon, 26 Jul 2004 18:42:19 +0300 From: Panagiotis Astithas To: Jan Grant Message-ID: <20040726154218.GA61067@hal.ebs.gr> References: <40FD3E81.1050206@ebs.gr> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4.2.1i X-Organization: EBS Ltd. X-Work-Phone: +30-1-6747-631 X-Work-FAX: +30-1-6747-601 cc: java@freebsd.org cc: Panagiotis Astithas cc: Jan-Peter Koopmann Subject: Re: eclipse 3.0 port X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Panagiotis.Astithas@ebs.gr List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Jul 2004 13:55:15 -0000 On Mon, Jul 26, 2004 at 04:27:26PM +0100, Jan Grant wrote: > On Mon, 26 Jul 2004, Jan Grant wrote: > > >On Tue, 20 Jul 2004, Panagiotis Astithas wrote: > > > >>>BUILD FAILED > >>>/data/software/eclipse/work/plugins/org.eclipse.update.core.freebsd/src/ > >>>build.xml:66: Warning: Could not find file > >>>/data/software/eclipse/work/plugins/org.eclipse.update.core.freebsd/src/ > >>>libupdate.so to copy. > >>> > >>>Total time: 9 seconds > >>>*** Error code 1 > >>> > >>>Stop in /data/software/eclipse/work. > >>>*** Error code 1 > >>> > >>>Stop in /data/software/eclipse. > >> > >>This is weird. Can you show me the output from the following commands? > >> > >>uname -a > >>pkg_info -xc gcc > >>which gcc > > > >I'm also seeing this. Although the build.xml peered with the erroneous > >update.c mentions gcc33 in the echo, the following line begins: > > > > > > >and the stock system gcc doesn't know about declarations at the first > >point of use (which is what's "wrong" with update.c) > > > >This is on a very recent -stable. > > Just to be clear: the version of the port I have has the bug in line 52 > of /usr/ports/java/eclipse/files/update-build.xml (sorry if this has > already been fixed). Try the same patch I posted earlier in today. I have two positive reports so far. From owner-freebsd-java@FreeBSD.ORG Tue Jul 27 13:55:20 2004 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0092B16A4D1; Tue, 27 Jul 2004 13:55:20 +0000 (GMT) Received: from fly.ebs.gr (fly.ebs.gr [62.103.84.177]) by mx1.FreeBSD.org (Postfix) with ESMTP id 91F9443D58; Tue, 27 Jul 2004 13:55:16 +0000 (GMT) (envelope-from past@ebs.gr) Received: from ebs.gr (root@hal.ebs.gr [10.1.1.2]) by fly.ebs.gr (8.12.9p1/8.12.9) with ESMTP id i6Q8VwJq015320; Mon, 26 Jul 2004 11:31:58 +0300 (EEST) (envelope-from past@ebs.gr) Received: from [10.1.1.52] (edgar.ebs.gr [10.1.1.52]) by ebs.gr (8.12.11/8.12.11) with ESMTP id i6Q8VvQ2057459; Mon, 26 Jul 2004 11:31:58 +0300 (EEST) (envelope-from past@ebs.gr) Message-ID: <4104C179.4060209@ebs.gr> Date: Mon, 26 Jul 2004 11:31:53 +0300 From: Panagiotis Astithas Organization: EBS Ltd. User-Agent: Mozilla Thunderbird 0.7 (X11/20040702) X-Accept-Language: en-us, en MIME-Version: 1.0 To: SUGIMURA Takashi References: <20040725171544.71dc613e.nork@FreeBSD.org> <20040726.130935.74732878.sugitk@rio.odn.ne.jp> In-Reply-To: <20040726.130935.74732878.sugitk@rio.odn.ne.jp> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: ports@freebsd.org cc: alex@freebsd.org cc: nork@freebsd.org cc: rtdean@cytherianage.net cc: freebsd-java@freebsd.org Subject: Re: HEADS UP: Eclipse 3.0 updated X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Jul 2004 13:55:20 -0000 SUGIMURA Takashi wrote: > I made Eclipse 3.0 from the newest ports, and I found a problem. > > At /usr/local/eclipse/eclipse, > DEFAULT_JAVA_HOME and ECLIPSE_HOME are not set. I am not sure what you mean. DEFAULT_JAVA_HOME and ECLIPSE_HOME are set in /usr/local/bin/eclipse, which in turn calls /usr/local/eclipse/eclipse. You are supposed to only have /usr/local/bimn in your $PATH. Cheers, -- Panagiotis Astithas, PhD R&D Manager EBS, Electronic Business Systems Ltd. 18 Evgenidou Street, 115 25, Athens GREECE Phone: +30 210 674 7631 Fax: +30 210 674 7601 http://www.ebs.gr From owner-freebsd-java@FreeBSD.ORG Tue Jul 27 13:55:22 2004 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9696C16A4D5; Tue, 27 Jul 2004 13:55:22 +0000 (GMT) Received: from fly.ebs.gr (fly.ebs.gr [62.103.84.177]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9B51043D1D; Tue, 27 Jul 2004 13:55:20 +0000 (GMT) (envelope-from past@ebs.gr) Received: from ebs.gr (root@hal.ebs.gr [10.1.1.2]) by fly.ebs.gr (8.12.9p1/8.12.9) with ESMTP id i6Q8RZJq015311; Mon, 26 Jul 2004 11:27:35 +0300 (EEST) (envelope-from past@ebs.gr) Received: from [10.1.1.52] (edgar.ebs.gr [10.1.1.52]) by ebs.gr (8.12.11/8.12.11) with ESMTP id i6Q8RWwS057374; Mon, 26 Jul 2004 11:27:33 +0300 (EEST) (envelope-from past@ebs.gr) Message-ID: <4104C070.2010907@ebs.gr> Date: Mon, 26 Jul 2004 11:27:28 +0300 From: Panagiotis Astithas Organization: EBS Ltd. User-Agent: Mozilla Thunderbird 0.7 (X11/20040702) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Jiawei Ye References: <20040725171544.71dc613e.nork@FreeBSD.org> In-Reply-To: Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: Jan-Peter.Koopmann@seceidos.de cc: Norikatsu Shigemura cc: rtdean@cytherianage.net cc: ports@freebsd.org cc: alex@freebsd.org cc: freebsd-java@freebsd.org Subject: Re: HEADS UP: Eclipse 3.0 updated X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Jul 2004 13:55:22 -0000 Jiawei Ye wrote: > On Sun, 25 Jul 2004 17:15:44 +0900, Norikatsu Shigemura > wrote: > >>Hi eclipse user and maintainer. >> >> I updated Eclipse 3.0 and related ports, so then some ports >> was broken. Please fix these ports! :-) >> >> If you find a problem, please report to java@ and nork@. > > Hi, I ran into this error while 'make install' on 4.10-stable system: > > build: > [echo] Building libupdate.so > [echo] gcc33 -o libupdate.so -shared > -I/home/ports/java/eclipse/work/plugins/org.eclipse.update.core.freebsd/src/../../org.eclipse.update.core.freebsd/src/ > -I/usr/local/jdk1.4.2/include -I/usr/local/jdk1.4.2/include/freebsd > libupdate.so -static -lc > [apply] /home/ports/java/eclipse/work/plugins/org.eclipse.update.core.freebsd/src/update.c: > In function `Java_org_eclipse_update_configuration_LocalSystemInfo_nativeGetFreeSpace': > [apply] /home/ports/java/eclipse/work/plugins/org.eclipse.update.core.freebsd/src/update.c:52: > syntax error before `int' [...] This was reported a few days ago from Jan-Peter Koopmann (CC'ed). I had suggested the following crude patch, that seemed to compile for him, but haven't heard ever since whether ir really worked. diff -u Makefile Makefile.new --- Makefile Thu Jul 8 20:19:57 2004 +++ Makefile.new Wed Jul 21 12:47:32 2004 @@ -21,6 +21,7 @@ ONLY_FOR_ARCHS= i386 USE_ZIP= yes +USE_GCC= 3.3 USE_JAVA= yes JAVA_VERSION= 1.4+ diff -u files/update-build.xml files/update-build.xml.new --- files/update-build.xml Tue Jun 22 11:25:45 2004 +++ files/update-build.xml.new Wed Jul 21 18:46:49 2004 @@ -47,9 +47,9 @@ - + - + If it turns out OK, we have to replace gcc33 with $(CC) and make sure this gets correctly propagated down to update-build.xml during building. I have some more cleanups like that (s/gcc/$(CC)/) but I want to make sure this on works first. Let me know if it works for you. -- Panagiotis Astithas, PhD R&D Manager EBS, Electronic Business Systems Ltd. 18 Evgenidou Street, 115 25, Athens GREECE Phone: +30 210 674 7631 Fax: +30 210 674 7601 http://www.ebs.gr From owner-freebsd-java@FreeBSD.ORG Tue Jul 27 13:55:26 2004 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8E77216A4E0; Tue, 27 Jul 2004 13:55:26 +0000 (GMT) Received: from fly.ebs.gr (fly.ebs.gr [62.103.84.177]) by mx1.FreeBSD.org (Postfix) with ESMTP id DA7EF43D31; Tue, 27 Jul 2004 13:55:23 +0000 (GMT) (envelope-from past@ebs.gr) Received: from ebs.gr (root@hal.ebs.gr [10.1.1.2]) by fly.ebs.gr (8.12.9p1/8.12.9) with ESMTP id i6Q8ETJq015281; Mon, 26 Jul 2004 11:14:29 +0300 (EEST) (envelope-from past@ebs.gr) Received: from [10.1.1.52] (edgar.ebs.gr [10.1.1.52]) by ebs.gr (8.12.11/8.12.11) with ESMTP id i6Q8EROr057253; Mon, 26 Jul 2004 11:14:28 +0300 (EEST) (envelope-from past@ebs.gr) Message-ID: <4104BD5F.70608@ebs.gr> Date: Mon, 26 Jul 2004 11:14:23 +0300 From: Panagiotis Astithas Organization: EBS Ltd. User-Agent: Mozilla Thunderbird 0.7 (X11/20040702) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Jeremy Faulkner References: <20040725171544.71dc613e.nork@FreeBSD.org> <41042F42.80604@gldis.ca> In-Reply-To: <41042F42.80604@gldis.ca> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: ports@freebsd.org cc: alex@freebsd.org cc: Norikatsu Shigemura cc: rtdean@cytherianage.net cc: freebsd-java@freebsd.org Subject: Re: HEADS UP: Eclipse 3.0 updated X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Jul 2004 13:55:26 -0000 Jeremy Faulkner wrote: > Norikatsu Shigemura wrote: > >> Hi eclipse user and maintainer. >> >> I updated Eclipse 3.0 and related ports, so then some ports >> was broken. Please fix these ports! :-) >> >> If you find a problem, please report to java@ and nork@. > > > WITH_MOTIF=yes fails to detect that kdebase is not present on the system > and will always attempt to compile it. An earlier patch I submitted > removed the kde swt lib from the build, this patch corrects the pkg_info > check for kdebase. > > The "no packages match pattern" is going to stderr not stdout and so > will not be caught. However if there is a package installed the > outputted information does go to stdout. Regrettably I don't have a desktop machine without KDE right now, so I can't verify this, but your analysis seems correct. However, your proposed solution is not in accordance with your analysis. You seem to simply reverse the logic of the null check, instead of redirecting stderr to stdout as you implied. -- Panagiotis Astithas, PhD R&D Manager EBS, Electronic Business Systems Ltd. 18 Evgenidou Street, 115 25, Athens GREECE Phone: +30 210 674 7631 Fax: +30 210 674 7601 http://www.ebs.gr From owner-freebsd-java@FreeBSD.ORG Tue Jul 27 13:55:30 2004 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 977BB16A506 for ; Tue, 27 Jul 2004 13:55:30 +0000 (GMT) Received: from fly.ebs.gr (fly.ebs.gr [62.103.84.177]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5E4E543D1F for ; Tue, 27 Jul 2004 13:55:27 +0000 (GMT) (envelope-from past@ebs.gr) Received: from ebs.gr (root@hal.ebs.gr [10.1.1.2]) by fly.ebs.gr (8.12.9p1/8.12.9) with ESMTP id i6Q77VJq015125; Mon, 26 Jul 2004 10:07:31 +0300 (EEST) (envelope-from past@ebs.gr) Received: from [10.1.1.52] (edgar.ebs.gr [10.1.1.52]) by ebs.gr (8.12.11/8.12.11) with ESMTP id i6Q77PW6056728; Mon, 26 Jul 2004 10:07:30 +0300 (EEST) (envelope-from past@ebs.gr) Message-ID: <4104ADA9.9060206@ebs.gr> Date: Mon, 26 Jul 2004 10:07:21 +0300 From: Panagiotis Astithas Organization: EBS Ltd. User-Agent: Mozilla Thunderbird 0.7 (X11/20040702) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Bjoern Hillebrand References: <200407241051.i6OApKuq024726@smtp.hispeed.ch> <41024D54.2070304@s-ar.de> In-Reply-To: <41024D54.2070304@s-ar.de> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: java@freebsd.org Subject: Re: native jdk release schedule question X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Jul 2004 13:55:30 -0000 Bjoern Hillebrand wrote: > Dani Irinchev wrote: > >> Hi again, >> I managed to successfully build native java 142 on FreeBSD 5.2.1 after >> upgrading ports and source to latest. No errors at all. What does that >> mean? >> Somewhere in this thread was said that the new KSE is a problem for >> having >> native java 14 on FreeBSD 5.2.1. Or it means that build is OK but once I >> start using it some problem will show up? Is reporting bugs >> interesting to >> the port team? >> Cheers, Dani >> >> > > Hi, > > I am using FreeBSD 5.2.1 with the latest native JDK Version. There were > no problems with > the KSE thread lib in my case. > > I can run ArgoUML,jedit,Poseidon and the Mozilla plugins without problems. > > Here is my libmap.conf : > > # /etc/libmap.conf > # > ######## > > libc_r.so.5 libkse.so.1 > libc_r.so libkse.so > > > As you can see, i generally switch to the KSE libs. They are a great > performance improvement in programs > which uses threads ( Mozilla ). My scheduler is the ULE Scheduler. The jdk works fine with KSE as long as you don't use debugging. Have you tried using jdb yet? Cheers, -- Panagiotis Astithas, PhD R&D Manager EBS, Electronic Business Systems Ltd. 18 Evgenidou Street, 115 25, Athens GREECE Phone: +30 210 674 7631 Fax: +30 210 674 7601 http://www.ebs.gr From owner-freebsd-java@FreeBSD.ORG Tue Jul 27 14:02:06 2004 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D5A8816A4CE for ; Tue, 27 Jul 2004 14:02:06 +0000 (GMT) Received: from turing.morons.org (turing.morons.org [209.237.229.34]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8815843D4C for ; Tue, 27 Jul 2004 14:02:04 +0000 (GMT) (envelope-from freebsd@spatula.net) Received: by turing.morons.org (Postfix, from userid 1001) id 0FE52A93A; Tue, 27 Jul 2004 07:02:00 -0700 (PDT) Received: from localhost (localhost [127.0.0.1]) by turing.morons.org (Postfix) with ESMTP id 0AC9EA933 for ; Tue, 27 Jul 2004 07:02:00 -0700 (PDT) Date: Tue, 27 Jul 2004 07:01:59 -0700 (PDT) From: Nick Johnson X-X-Sender: spatula@turing.morons.org To: java@freebsd.org In-Reply-To: <4104ADA9.9060206@ebs.gr> Message-ID: <20040727070121.A86418@turing.morons.org> References: <200407241051.i6OApKuq024726@smtp.hispeed.ch> <41024D54.2070304@s-ar.de> <4104ADA9.9060206@ebs.gr> X-what-happen: someone set up us the bomb X-Message-Flags: Spatula Precedence: special-delivery MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Subject: Re: native jdk release schedule question X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.1 List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Jul 2004 14:02:07 -0000 On Mon, 26 Jul 2004, Panagiotis Astithas wrote: > The jdk works fine with KSE as long as you don't use debugging. Have you > tried using jdb yet? Just curious: how does the problem with jdb manifest itself? Nick -- "The aptly-named morons.org is an obscenity-laced screed..." -- Robert P. Lockwood, Catholic League director of research Nick Johnson, version 2.1 http://web.morons.org/ From owner-freebsd-java@FreeBSD.ORG Wed Jul 28 02:09:10 2004 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 680EA16A578; Wed, 28 Jul 2004 02:09:08 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 46E6E43D67; Wed, 28 Jul 2004 02:09:08 +0000 (GMT) (envelope-from ijliao@FreeBSD.org) Received: from freefall.freebsd.org (ijliao@localhost [127.0.0.1]) i6S298PY067661; Wed, 28 Jul 2004 02:09:08 GMT (envelope-from ijliao@freefall.freebsd.org) Received: (from ijliao@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6S298pa067657; Wed, 28 Jul 2004 02:09:08 GMT (envelope-from ijliao) Date: Wed, 28 Jul 2004 02:09:08 GMT From: Ying-Chieh Liao Message-Id: <200407280209.i6S298pa067657@freefall.freebsd.org> To: ijliao@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, java@FreeBSD.org Subject: Re: ports/69675: Eclipse slow typing X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 Jul 2004 02:09:10 -0000 Synopsis: Eclipse slow typing Responsible-Changed-From-To: freebsd-ports-bugs->java Responsible-Changed-By: ijliao Responsible-Changed-When: Wed Jul 28 02:09:00 GMT 2004 Responsible-Changed-Why: over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=69675 From owner-freebsd-java@FreeBSD.ORG Thu Jul 29 02:40:31 2004 Return-Path: Delivered-To: freebsd-java@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 20FD116A4CE for ; Thu, 29 Jul 2004 02:40:31 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id EE95943D6A for ; Thu, 29 Jul 2004 02:40:30 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.11/8.12.11) with ESMTP id i6T2eL9P048806 for ; Thu, 29 Jul 2004 02:40:21 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6T2eLBC048805; Thu, 29 Jul 2004 02:40:21 GMT (envelope-from gnats) Resent-Date: Thu, 29 Jul 2004 02:40:21 GMT Resent-Message-Id: <200407290240.i6T2eLBC048805@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-java@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, SUGIMURA Takashi Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 63A1516A4CE for ; Thu, 29 Jul 2004 02:39:35 +0000 (GMT) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5A73943D39 for ; Thu, 29 Jul 2004 02:39:35 +0000 (GMT) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.12.11/8.12.11) with ESMTP id i6T2dID1017546 for ; Thu, 29 Jul 2004 02:39:18 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.12.11/8.12.11/Submit) id i6T2dIeQ017545; Thu, 29 Jul 2004 02:39:18 GMT (envelope-from nobody) Message-Id: <200407290239.i6T2dIeQ017545@www.freebsd.org> Date: Thu, 29 Jul 2004 02:39:18 GMT From: SUGIMURA Takashi To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Subject: java/69732: [Update port] misspelling at java/eclipse-lomboz/Makefile X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Jul 2004 02:40:31 -0000 >Number: 69732 >Category: java >Synopsis: [Update port] misspelling at java/eclipse-lomboz/Makefile >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-java >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Thu Jul 29 02:40:21 GMT 2004 >Closed-Date: >Last-Modified: >Originator: SUGIMURA Takashi >Release: 5.2.1-p9 >Organization: >Environment: FreeBSD kei.yasudakei.info 5.2.1-RELEASE-p9 FreeBSD 5.2.1-RELEASE-p9 #1: Thu Jul 1 18:28:40 JST 2004 root@kei.yasudakei.info:/usr/obj/usr/src/sys/KEI i386 >Description: I found a misspelling at java/eclipse-lomboz/Makefile, it seems to be changed when it was committed. >How-To-Repeat: >Fix: Please apply this simple patch: --- Makefile.orig Thu Jul 29 11:34:17 2004 +++ Makefile Thu Jul 29 11:34:23 2004 @@ -5,7 +5,7 @@ # $FreeBSD: ports/java/eclipse-lomboz/Makefile,v 1.1 2004/07/25 08:07:23 nork E xp $ # -PORTNAME= lombox +PORTNAME= lomboz PORTVERSION= 3 CATEGORIES= java MASTER_SITES= http://download.forge.objectweb.org/lomboz/ \ >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-java@FreeBSD.ORG Thu Jul 29 02:50:34 2004 Return-Path: Delivered-To: freebsd-java@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 73FB616A4CF for ; Thu, 29 Jul 2004 02:50:34 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5ECA343D6D for ; Thu, 29 Jul 2004 02:50:34 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.11/8.12.11) with ESMTP id i6T2oHNo049070 for ; Thu, 29 Jul 2004 02:50:17 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6T2oH7n049066; Thu, 29 Jul 2004 02:50:17 GMT (envelope-from gnats) Resent-Date: Thu, 29 Jul 2004 02:50:17 GMT Resent-Message-Id: <200407290250.i6T2oH7n049066@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-java@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, SUGIMURA Takashi Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6C7A716A4CE for ; Thu, 29 Jul 2004 02:48:21 +0000 (GMT) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4CE5443D1D for ; Thu, 29 Jul 2004 02:48:21 +0000 (GMT) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.12.11/8.12.11) with ESMTP id i6T2m55g039660 for ; Thu, 29 Jul 2004 02:48:05 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.12.11/8.12.11/Submit) id i6T2m56O039645; Thu, 29 Jul 2004 02:48:05 GMT (envelope-from nobody) Message-Id: <200407290248.i6T2m56O039645@www.freebsd.org> Date: Thu, 29 Jul 2004 02:48:05 GMT From: SUGIMURA Takashi To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Subject: java/69733: [new port] java/eclipse-sysdeo-tomcat, Sysdeo Eclipse Tomcat Launcher plugin X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Jul 2004 02:50:34 -0000 >Number: 69733 >Category: java >Synopsis: [new port] java/eclipse-sysdeo-tomcat, Sysdeo Eclipse Tomcat Launcher plugin >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-java >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Jul 29 02:50:16 GMT 2004 >Closed-Date: >Last-Modified: >Originator: SUGIMURA Takashi >Release: 5.2.1-p9 >Organization: >Environment: FreeBSD kei.yasudakei.info 5.2.1-RELEASE-p9 FreeBSD 5.2.1-RELEASE-p9 #1: Thu Jul 1 18:28:40 JST 2004 root@kei.yasudakei.info:/usr/obj/usr/src/sys/KEI i386 >Description: I've made a port for Sysdeo Eclipse Tomcat Plugin. >How-To-Repeat: >Fix: Please review this port: begin 644 eclipse-sysdeo-tomcat.tar.gz M'XL(`)YD"$$``^U8:T_;2!3E:_PKKE16:G?!K]BDC395`W&K%/)0',JJ7Z*) M/7&<^J49FT`I_WVO'^&UH:A.EN[#1T*VQW//?8SGS@G4\MR(TWU^R6T:[L>A M;Y%8VMDJ9%F3&[J.UPP/K]F](BNR*A\H#?E@1U8T16[L@+[=,-8CX3%A`#LL M#./OS5O.*?6>(Z#G!5V[_CWRAUG1=4W? M`7D[[K^/__GZOX`^74(4LIB#%7H>M6(W#,`O/@"8A:Q96_N1""^@0V(*%J-X ML9LUQ,?$NP3US1ZHN.=QPMD\]+,7-9XXKI\P\FX1B>\9I8=F1PR9([S`6;O% MP"X^".VF/CPV#4-=KJC&UL!`^CVQ_AGX."Z;`>C#\+1H-4ZC5WNU>]8Y33D#^K%K7-\39VZ/A->PS?)N2CHZN):SSJN3%1#&O MY:0NRJ+\5QXI3QI=BVY@>8E-X?J?;R/PWK]W_TQ=FW*;?8 M5GP\J?_J^FK_JZJ2ZG^](6O5_G\.%$*D4!N/")(]<%$>SE#G)8QR((PV!0$0 MOX*)U<.CPMD#'H=1A'=``AMP6O%B1:F)%WN@HP3`2UVL%^8CZN!10]F=B1$+ M+>4 MB1>^!ZF:?540M&T[-?^(,@F&N77FKXC`\@CG$8GGJQQI?#>3CY]Z$!%&?(J! M\[W;Z5GF4_R.'A(8%ZF8R2.^S3(+&KWF6;S'^%;YS<.0WW%HA<',=5!.9M)\ M=F$0MEWCW'[JOSNP2'. M8]^K3HN_'X_W_\C#G;D5'T_T__I!0[O1?PU=R?J_KE;]_SGPX$?84S_?I`X] M/\GV?RKLA!^U=K&5<2F@RT7$%A/LUZ+CSC9G43>C61*V82S%<;DJ4>3TL8+U`IT,^M)S$B`!R:C0B03IX$?^P;3Y/Q-,V0O8/XH*PDJ:<6=E1([RS M7<9\*+$G2YNFG;6D,<:+C>V"6L!\)(!?.@__WPGJ6\FFYU*0>!Y\^P8Q2^BC ?1FLG_VSM4*%"A0H5*E2H4*%"A7\7_@0A@L/L`"@````` ` end >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-java@FreeBSD.ORG Thu Jul 29 03:04:51 2004 Return-Path: Delivered-To: freebsd-java@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0C2BF16A4CE; Thu, 29 Jul 2004 03:04:51 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 57CA843D55; Thu, 29 Jul 2004 03:04:50 +0000 (GMT) (envelope-from nork@FreeBSD.org) Received: from freefall.freebsd.org (nork@localhost [127.0.0.1]) i6T34o25049916; Thu, 29 Jul 2004 03:04:50 GMT (envelope-from nork@freefall.freebsd.org) Received: (from nork@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6T34oFX049912; Thu, 29 Jul 2004 03:04:50 GMT (envelope-from nork) Date: Thu, 29 Jul 2004 03:04:50 GMT From: Norikatsu Shigemura Message-Id: <200407290304.i6T34oFX049912@freefall.freebsd.org> To: nork@FreeBSD.org, freebsd-java@FreeBSD.org, nork@FreeBSD.org Subject: Re: java/69733: [new port] java/eclipse-sysdeo-tomcat, Sysdeo Eclipse Tomcat Launcher plugin X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Jul 2004 03:04:51 -0000 Synopsis: [new port] java/eclipse-sysdeo-tomcat, Sysdeo Eclipse Tomcat Launcher plugin Responsible-Changed-From-To: freebsd-java->nork Responsible-Changed-By: nork Responsible-Changed-When: Thu Jul 29 03:04:20 GMT 2004 Responsible-Changed-Why: I'll handle this. http://www.freebsd.org/cgi/query-pr.cgi?pr=69733 From owner-freebsd-java@FreeBSD.ORG Thu Jul 29 03:05:11 2004 Return-Path: Delivered-To: freebsd-java@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1912216A4CE; Thu, 29 Jul 2004 03:05:11 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5F76E43D1D; Thu, 29 Jul 2004 03:05:07 +0000 (GMT) (envelope-from nork@FreeBSD.org) Received: from freefall.freebsd.org (nork@localhost [127.0.0.1]) i6T357m4049972; Thu, 29 Jul 2004 03:05:07 GMT (envelope-from nork@freefall.freebsd.org) Received: (from nork@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6T357J2049968; Thu, 29 Jul 2004 03:05:07 GMT (envelope-from nork) Date: Thu, 29 Jul 2004 03:05:07 GMT From: Norikatsu Shigemura Message-Id: <200407290305.i6T357J2049968@freefall.freebsd.org> To: nork@FreeBSD.org, freebsd-java@FreeBSD.org, nork@FreeBSD.org Subject: Re: java/69732: [Update port] misspelling at java/eclipse-lomboz/Makefile X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Jul 2004 03:05:11 -0000 Synopsis: [Update port] misspelling at java/eclipse-lomboz/Makefile Responsible-Changed-From-To: freebsd-java->nork Responsible-Changed-By: nork Responsible-Changed-When: Thu Jul 29 03:04:53 GMT 2004 Responsible-Changed-Why: I'll handle this. http://www.freebsd.org/cgi/query-pr.cgi?pr=69732 From owner-freebsd-java@FreeBSD.ORG Thu Jul 29 08:00:52 2004 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 775CA16A4E5; Thu, 29 Jul 2004 08:00:52 +0000 (GMT) Received: from moutng.kundenserver.de (moutng.kundenserver.de [212.227.126.183]) by mx1.FreeBSD.org (Postfix) with ESMTP id AA7B643D73; Thu, 29 Jul 2004 08:00:21 +0000 (GMT) (envelope-from freebsd-java@oliverlietz.de) Received: from [212.227.126.161] (helo=mrelayng.kundenserver.de) by moutng.kundenserver.de with esmtp (Exim 3.35 #1) id 1Bq5po-0002ko-00; Thu, 29 Jul 2004 10:00:16 +0200 Received: from [83.129.65.181] (helo=madness.oliverlietz.de) by mrelayng.kundenserver.de with asmtp (TLSv1:RC4-MD5:128) (Exim 3.35 #1) id 1Bq5po-0000Pc-00; Thu, 29 Jul 2004 10:00:16 +0200 From: Oliver Lietz To: SUGIMURA Takashi , Norikatsu Shigemura Date: Thu, 29 Jul 2004 10:00:12 +0200 User-Agent: KMail/1.6.2 References: <200407290305.i6T357J2049968@freefall.freebsd.org> In-Reply-To: <200407290305.i6T357J2049968@freefall.freebsd.org> MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="iso-8859-15" Content-Transfer-Encoding: 7bit Message-Id: <200407291000.12797.freebsd-java@oliverlietz.de> X-Provags-ID: kundenserver.de abuse@kundenserver.de auth:e64f77714209665f3744f5ffb6f675b8 cc: freebsd-java@freebsd.org Subject: lomboz 3.0.1 [was: Re: java/69732: [Update port] misspelling at java/eclipse-lomboz/Makefile] X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Jul 2004 08:00:52 -0000 Am Donnerstag 29 Juli 2004 05:05 schrieb Norikatsu Shigemura: > Synopsis: [Update port] misspelling at java/eclipse-lomboz/Makefile > > Responsible-Changed-From-To: freebsd-java->nork > Responsible-Changed-By: nork > Responsible-Changed-When: Thu Jul 29 03:04:53 GMT 2004 > Responsible-Changed-Why: > I'll handle this. > > http://www.freebsd.org/cgi/query-pr.cgi?pr=69732 Hello, could you please update lomboz to 3.0.1 (lomboz.301.zip)? Oliver From owner-freebsd-java@FreeBSD.ORG Thu Jul 29 08:39:13 2004 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AA49916A4CE; Thu, 29 Jul 2004 08:39:13 +0000 (GMT) Received: from t-mta1.odn.ne.jp (mfep1.odn.ne.jp [143.90.131.179]) by mx1.FreeBSD.org (Postfix) with ESMTP id E765543D39; Thu, 29 Jul 2004 08:39:12 +0000 (GMT) (envelope-from sugimura@jp.FreeBSD.org) Received: from localhost ([210.197.243.247]) by t-mta1.odn.ne.jp with ESMTP id <20040729083910152.WIWU.176179.t-mta1.odn.ne.jp@mta1.odn.ne.jp>; Thu, 29 Jul 2004 17:39:10 +0900 Date: Thu, 29 Jul 2004 17:39:07 +0900 (JST) Message-Id: <20040729.173907.70214305.sugitk@rio.odn.ne.jp> To: freebsd-java@oliverlietz.de From: SUGIMURA Takashi =?iso-2022-jp?B?GyRCP3lCPBsoQiAbJEI1LjtOGyhC?= In-Reply-To: <200407291000.12797.freebsd-java@oliverlietz.de> References: <200407290305.i6T357J2049968@freefall.freebsd.org> <200407291000.12797.freebsd-java@oliverlietz.de> X-Mailer: Mew version 4.0.65 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit cc: nork@freebsd.org cc: freebsd-java@freebsd.org Subject: Re: lomboz 3.0.1 X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Jul 2004 08:39:13 -0000 > could you please update lomboz to 3.0.1 (lomboz.301.zip)? > Sure. I'll work it immediately. --- SUGIMURA Takashi From owner-freebsd-java@FreeBSD.ORG Thu Jul 29 09:00:56 2004 Return-Path: Delivered-To: freebsd-java@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6D09F16A4CE for ; Thu, 29 Jul 2004 09:00:56 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 208BD43D6B for ; Thu, 29 Jul 2004 09:00:56 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.11/8.12.11) with ESMTP id i6T90bB1097035 for ; Thu, 29 Jul 2004 09:00:37 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6T90bIP097033; Thu, 29 Jul 2004 09:00:37 GMT (envelope-from gnats) Resent-Date: Thu, 29 Jul 2004 09:00:37 GMT Resent-Message-Id: <200407290900.i6T90bIP097033@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-java@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, SUGIMURA Takashi Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 340B516A4CE for ; Thu, 29 Jul 2004 08:50:28 +0000 (GMT) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id 14ACF43D54 for ; Thu, 29 Jul 2004 08:50:28 +0000 (GMT) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.12.11/8.12.11) with ESMTP id i6T8oPKl052800 for ; Thu, 29 Jul 2004 08:50:25 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.12.11/8.12.11/Submit) id i6T8oPRo052799; Thu, 29 Jul 2004 08:50:25 GMT (envelope-from nobody) Message-Id: <200407290850.i6T8oPRo052799@www.freebsd.org> Date: Thu, 29 Jul 2004 08:50:25 GMT From: SUGIMURA Takashi To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-2.3 Subject: java/69751: [update port] java/eclipse-lomboz, supercedes java/69732 X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Jul 2004 09:00:56 -0000 >Number: 69751 >Category: java >Synopsis: [update port] java/eclipse-lomboz, supercedes java/69732 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-java >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Thu Jul 29 09:00:37 GMT 2004 >Closed-Date: >Last-Modified: >Originator: SUGIMURA Takashi >Release: 5.2.1-p9 >Organization: >Environment: >Description: Thanks for Oliver Lietz, I updated a port for java/eclipse-lomboz to 3.0.1. >How-To-Repeat: >Fix: Apply the following patch to current port. begin 644 eclipse-lomboz.diff.gz M'XL("$BY"$$``V5C;&EP?PZ=`ZGEH MY9@[V+$4*6GBDSIM+HK=JJHJ60NL'0@W`8Z=?/HNV-A@0X[964M]B!,OS&]G M9V;9Y1^PG=F,[Z)%_,ACRW.B!'>]T#?#3T$5']`;GCD>WCNR;>>ZW6ZSU=GD M=<'?+SQ>N>!E>:!>##2=5R1)XSJ=3A.R8M0;J/I`D]9&5U=\5S^7-;Z3?UY= MCS=UX6Y!PF2CU1T7FI/Y!Z`T7E@S!^ MXX>KB/]&H!S/=9^?7B:/UP_#R[,'B_/5*ZS=\;GNF5WAB`) M,L??7$^&=T\OH^'X\BSSC>,?KL>3XEB*UUB4R!?Q7X[%T;/Q(EA7EIY5UCKQ3>6X-=HK1U+#RJX< MY7.%[V0?I!B[#[/3/L-G>,/J:?"%QG=I>)+DX3S.464\U>IJN:7U;,_NJ(?=,`^F& M9%RH,YWKU/>S(QB&IFJ:]F4BHK=Y-_)(B/;#MCU0GXKMX5:YV%E5DZ&I`\DH M)Z.?)4/-DU&,+_)(G06):(7^IN`]C.)`>)Q$(VQ'MR[D-H8^\[N1P)9^? M#R1[CH6#!`NOJ>^!0&L3844P?'M,-2%Y.N@II6A9:1AZ)!TW,48IOK92YQVE M3AC$I:CCXB'P\/6S*;/+H_Z_\O,6)%3M1=G3K8#YC MC+YTWI?)K#%Z>O9'MJ8>[3CVG33%H$Q7$8GUBGWTP[-WOU>)#>VLPCJ^TE=V M:'FX2!EVS:Z/LS5UU6J^5"FD9=/0\L)3Q5#.W2JDE$U:1(K]R"-EFV3A$7&0 M.NF'.'.P9R="MA-R</T-;3'Z<(\40^3KZ?K(/.?,=W'28+F M^#3!+^"GBW[1P^G"7^[A!/%/")Y<>D\3_P)^NO@7/9PN_N4>&,>?_+3QUD[7 MR,HF!IGA(CWV>EI+6*_I9*C$RR,W9U]PW"1BR)G'Z`/":KG>U#/RC7ZK77*76`M$,K]^!D`R-(\]82[T7=*`'TZZ=;7RL+:;DF%KZ79;,/D M2NJ:89(HFB:L&UAQ!!.]@5F3T+=0RL0S59)8<9#GL4$I*\8<6-##`"5@ATH0 MN#?PHB1;(2@CM#07S(C)K1,4$N/$"129"48%SX8TGYN:!/:G`*F,0#*CH>D2 M>'KN@T`S8HE-+YP[E@&.^`&)B5\]<-P+4I_%")/H%<=8WSK5H9(IY#W=F):R MIQO38BK[#%I(:=-`BSA&-V;*KE/.F'90)YPQ[Z"BF[&A-^C&;.&GB_Y7NC'[ M'DX0_P;=F"W\=/'_2C=FWP/C^%=TXQ_C:M1(N2PI4A(.=&,0IW0[SX"SU8TI M62W7FWK&OFY,R6FU;)6W!71)KD2SJAO3,6IU8SAJIQN#667=&`Q+V(UQI\N` M44M0K.IU8P:LDF[,@$9S#6FFE71C!K1]W9@MLJ0;LP#7ZL8,P-""KNK&E`QH MD91U8VI"13>FIA2Z,1V@I!O3`>C32;>^5A;6=DLJ?"UMTHT9<7(I`LJJZL8@ M6DDWAG)*NC$,M=.-&7%@02_KQBP@<&_@15G2C6D99=V8FE'6C6DA>[HQ"*." M9\.!;@P%J8Q`,J.AE71C5B#0C#C4C9F1F/C5`\?]4#<&D/9UXX-GE\-X+B"R M)7[%`EHYR506Y.S1I+RE6,_357JT(?FS_JGY^O-=M(HC*[?('P_O*\JY*O$= MN2_WSA4]?SS\RG;BV/\*Z*(DPO%4)Z-7]&,,2`!]LMAJ<7M!9?6O&9N@TDP0FEN0SB4QJW-:B1C&.-XZQ;_-&`++>8V4^AF M;K-D,H,!08VK?*-YW=M;0$I[\^Q=O8T'69LL:-W\'30`QTY!]NVOL4>\1\H8 C&F;OOK)E,J,Q`-&EK^&5SW6L6!*+18PAD_L/%"F#IS1"```` ` end >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-java@FreeBSD.ORG Thu Jul 29 14:03:03 2004 Return-Path: Delivered-To: freebsd-java@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B9AEF16A4CE; Thu, 29 Jul 2004 14:03:03 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9C0A443D2F; Thu, 29 Jul 2004 14:03:03 +0000 (GMT) (envelope-from nork@FreeBSD.org) Received: from freefall.freebsd.org (nork@localhost [127.0.0.1]) i6TE327V035643; Thu, 29 Jul 2004 14:03:02 GMT (envelope-from nork@freefall.freebsd.org) Received: (from nork@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6TE32pR035639; Thu, 29 Jul 2004 14:03:02 GMT (envelope-from nork) Date: Thu, 29 Jul 2004 14:03:02 GMT From: Norikatsu Shigemura Message-Id: <200407291403.i6TE32pR035639@freefall.freebsd.org> To: nork@FreeBSD.org, freebsd-java@FreeBSD.org, nork@FreeBSD.org Subject: Re: java/69751: [update port] java/eclipse-lomboz, supercedes java/69732 X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Jul 2004 14:03:03 -0000 Synopsis: [update port] java/eclipse-lomboz, supercedes java/69732 Responsible-Changed-From-To: freebsd-java->nork Responsible-Changed-By: nork Responsible-Changed-When: Thu Jul 29 14:02:50 GMT 2004 Responsible-Changed-Why: I'll handle this. http://www.freebsd.org/cgi/query-pr.cgi?pr=69751 From owner-freebsd-java@FreeBSD.ORG Fri Jul 30 13:56:07 2004 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E7D5F16A4CE for ; Fri, 30 Jul 2004 13:56:07 +0000 (GMT) Received: from turing.morons.org (turing.morons.org [209.237.229.34]) by mx1.FreeBSD.org (Postfix) with ESMTP id C2D7E43D49 for ; Fri, 30 Jul 2004 13:56:07 +0000 (GMT) (envelope-from freebsd@spatula.net) Received: by turing.morons.org (Postfix, from userid 1001) id 886A8A937; Fri, 30 Jul 2004 06:56:07 -0700 (PDT) Received: from localhost (localhost [127.0.0.1]) by turing.morons.org (Postfix) with ESMTP id 849DDA933; Fri, 30 Jul 2004 06:56:07 -0700 (PDT) Date: Fri, 30 Jul 2004 06:56:07 -0700 (PDT) From: Nick Johnson X-X-Sender: spatula@turing.morons.org To: Panagiotis Astithas In-Reply-To: <410A1DED.8020900@ebs.gr> Message-ID: <20040730064539.O86418@turing.morons.org> References: <200407241051.i6OApKuq024726@smtp.hispeed.ch> <41024D54.2070304@s-ar.de> <4104ADA9.9060206@ebs.gr> <20040727070121.A86418@turing.morons.org> <410A1DED.8020900@ebs.gr> X-what-happen: someone set up us the bomb X-Message-Flags: Spatula Precedence: special-delivery MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: java@freebsd.org Subject: Re: native jdk release schedule question X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.1 List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 Jul 2004 13:56:08 -0000 FWIW, it looks like the trouble comes from hotspot/src/share/vm/prims/jvmdi.cpp because monitor->monitor().raw_notify (or raw_wait or raw_notifyAll or raw_exit) is returning ObjectMonitor::OM_ILLEGAL_MONITOR_STATE. That seems to be triggered from hotspot/src/os/bsd/vm/objectMonitor_bsd.cpp like this: int ObjectMonitor::raw_notify(TRAPS) { if (THREAD != _owner) { return OM_ILLEGAL_MONITOR_STATE; } So at first glance it looks like a thread ownership problem. Don't have time to dig any deeper ATM. Nick On Fri, 30 Jul 2004, Panagiotis Astithas wrote: > Nick Johnson wrote: > > On Mon, 26 Jul 2004, Panagiotis Astithas wrote: > > > > > >>The jdk works fine with KSE as long as you don't use debugging. Have you > >>tried using jdb yet? > > > > > > Just curious: how does the problem with jdb manifest itself? > > You get messages like this: > > % jdb BuggyWindow2 > Initializing jdb ... > > run > run BuggyWindow2 > VM start exception: VM initialization failed for: > /usr/local/jdk1.4.2/jre/bin/java -Xdebug -Xnoagent -Djava.compiler=NONE > -Xrunjdwp:transport=dt_socket,address=edgar.ebs.gr:60765,suspend=y > BuggyWindow2 > > FATAL ERROR in native method: JDWP "util.c" (Mar 15 2004), line 1194: > Unexpected error, error code = 51 (JVMDI_ERROR_NOT_MONITOR_OWNER) > > > Fatal error: > Target VM failed to initialize. > > > > Cheers, > -- > Panagiotis Astithas, PhD > R&D Manager > EBS, Electronic Business Systems Ltd. > 18 Evgenidou Street, 115 25, Athens GREECE > Phone: +30 210 674 7631 > Fax: +30 210 674 7601 > http://www.ebs.gr > -- "The aptly-named morons.org is an obscenity-laced screed..." -- Robert P. Lockwood, Catholic League director of research Nick Johnson, version 2.1 http://web.morons.org/ From owner-freebsd-java@FreeBSD.ORG Fri Jul 30 17:59:21 2004 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E070816A4CE for ; Fri, 30 Jul 2004 17:59:21 +0000 (GMT) Received: from t-mta1.odn.ne.jp (mfep1.odn.ne.jp [143.90.131.179]) by mx1.FreeBSD.org (Postfix) with ESMTP id 23CED43D68 for ; Fri, 30 Jul 2004 17:59:21 +0000 (GMT) (envelope-from sugitk@rio.odn.ne.jp) Received: from localhost ([210.197.243.247]) by t-mta1.odn.ne.jp with ESMTP id <20040730175908244.ERFI.176179.t-mta1.odn.ne.jp@mta1.odn.ne.jp>; Sat, 31 Jul 2004 02:59:08 +0900 Date: Sat, 31 Jul 2004 02:59:08 +0900 (JST) Message-Id: <20040731.025908.104026005.sugitk@rio.odn.ne.jp> To: gldisater@gldis.ca From: SUGIMURA Takashi =?iso-2022-jp?B?GyRCP3lCPBsoQiAbJEI1LjtOGyhC?= In-Reply-To: <40FC1289.1030702@gldis.ca> References: <40FC1289.1030702@gldis.ca> X-Mailer: Mew version 4.0.65 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit cc: java@freebsd.org Subject: Re: Eclipse CDT 2.0 port X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 Jul 2004 17:59:22 -0000 > http://www.gldis.ca/gldisater/eclipse-cdt.tar.gz I've just tried your port, made a simple C++ project and run it. It works fine, so I took a snapshot: http://yasudakei.org/sugimura/image/eclipse-cdt-20040730.png It is interesting for me but I don't have such a project to work using Eclipse.. --- SUGIMURA Takashi From owner-freebsd-java@FreeBSD.ORG Fri Jul 30 19:28:41 2004 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CB3BE16A4CE for ; Fri, 30 Jul 2004 19:28:41 +0000 (GMT) Received: from mail.impactonline.org (mail.impactonline.org [192.220.110.5]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7970943D6A for ; Fri, 30 Jul 2004 19:28:41 +0000 (GMT) (envelope-from aah@roarmouse.org) Received: from [192.168.0.25] (ip-64-139-6-196.dsl.sca.megapath.net [64.139.6.196]) by mail.impactonline.org (8.12.11) id i6UJS5AP089032 for ; Fri, 30 Jul 2004 13:28:05 -0600 (MDT) Message-ID: <410AA0FB.5090207@roarmouse.org> Date: Fri, 30 Jul 2004 12:26:51 -0700 From: Andrew Houghton User-Agent: Mozilla Thunderbird 0.7.2 (X11/20040720) X-Accept-Language: en-us, en MIME-Version: 1.0 To: java@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: native JDK on Dragonfly BSD X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 Jul 2004 19:28:41 -0000 I've been playing around with DragonFly BSD for a few weeks, and thought I'd try compiling a native JDK from ports. Surprisingly enough (more on that later) almost everything seems to work. Admittedly, I'm not doing deep testing -- but the plugin, the JVM, and javac have handled everything I've thrown at them, including IntelliJ IDEA, various web applications, and things like HPJmeter. The one place I *am* running into problems is with Java Web Start. When I try starting it I get: Java Web Start splash screen process exiting ..... Bad installation. No JRE found in configuration file: No such file or directory I traced this message down to line 243 of /deploy/src/javaws/src/share/native/launcher.c; the helpful comment on line 241 or so says "This should never happen." The closest bug report I found was from Evan Easton: http://lists.freebsd.org/mailman/htdig/freebsd-java/2003-December/001403.html using his script I was able to get javaws to start, but i still can't get any of the demo apps to actually run. Now, looking at the patchset there's no mention of DragonFly (not surprisingly). The reason I was surprised that most things work is that the patch seems to be making many choices based on system type, and it's just not clear whether DragonFly defines anything close to the expected system types. So, I'm poking through the patchset and seeing what I can do, but someone actually familiar with this stuff (i.e., Greg or Alexey) could do this about a million times faster than I could, I think.. Is there any chance of getting DragonFly into the list of "officially" supported systems for the native JDK? Thanks, - Andrew From owner-freebsd-java@FreeBSD.ORG Fri Jul 30 23:01:21 2004 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 016AB16A4CE for ; Fri, 30 Jul 2004 23:01:21 +0000 (GMT) Received: from mgr2.xmission.com (mgr2.xmission.com [198.60.22.202]) by mx1.FreeBSD.org (Postfix) with ESMTP id C1AEA43D5C for ; Fri, 30 Jul 2004 23:01:20 +0000 (GMT) (envelope-from glewis@eyesbeyond.com) Received: from [198.60.22.209] (helo=mgr9.xmission.com) by mgr2.xmission.com with esmtp (Exim 3.35 #1) id 1BqgMo-0000MD-02; Fri, 30 Jul 2004 17:00:46 -0600 Received: from [166.70.56.15] (helo=misty.eyesbeyond.com) by mgr9.xmission.com with esmtp (Exim 4.32) id 1BqgMn-00085i-Sm; Fri, 30 Jul 2004 17:00:46 -0600 Received: from misty.eyesbeyond.com (localhost.eyesbeyond.com [127.0.0.1]) i6UN0ij3054711; Fri, 30 Jul 2004 17:00:44 -0600 (MDT) (envelope-from glewis@eyesbeyond.com) Received: (from glewis@localhost) by misty.eyesbeyond.com (8.12.11/8.12.11/Submit) id i6UN0hkl054710; Fri, 30 Jul 2004 17:00:43 -0600 (MDT) (envelope-from glewis@eyesbeyond.com) X-Authentication-Warning: misty.eyesbeyond.com: glewis set sender to glewis@eyesbeyond.com using -f Date: Fri, 30 Jul 2004 17:00:43 -0600 From: Greg Lewis To: Andrew Houghton Message-ID: <20040730230043.GA54639@misty.eyesbeyond.com> References: <410AA0FB.5090207@roarmouse.org> Mime-Version: 1.0 Content-Disposition: inline In-Reply-To: <410AA0FB.5090207@roarmouse.org> User-Agent: Mutt/1.4.2.1i Content-Type: text/plain; charset=us-ascii X-Spam-Checker-Version: SpamAssassin 2.63 (2004-01-11) on mgr9.xmission.com X-Spam-Level: X-Spam-Status: No, hits=-1.5 required=8.0 tests=BAYES_01 autolearn=no version=2.63 X-SA-Exim-Connect-IP: 166.70.56.15 X-SA-Exim-Mail-From: glewis@eyesbeyond.com X-SA-Exim-Version: 4.0 (built Sat, 24 Apr 2004 12:31:30 +0200) X-SA-Exim-Scanned: Yes (on mgr9.xmission.com) cc: freebsd-java@freebsd.org Subject: Re: native JDK on Dragonfly BSD X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 Jul 2004 23:01:21 -0000 On Fri, Jul 30, 2004 at 12:26:51PM -0700, Andrew Houghton wrote: > I've been playing around with DragonFly BSD for a few weeks, and thought > I'd try compiling a native JDK from ports. Surprisingly enough (more on > that later) almost everything seems to work. Admittedly, I'm not doing > deep testing -- but the plugin, the JVM, and javac have handled > everything I've thrown at them, including IntelliJ IDEA, various web > applications, and things like HPJmeter. > > The one place I *am* running into problems is with Java Web Start. When > I try starting it I get: > > Java Web Start splash screen process exiting ..... > Bad installation. No JRE found in configuration file: No such file > or directory I assume that it works on FreeBSD? I must admit I've never tried it. > I traced this message down to line 243 of > /deploy/src/javaws/src/share/native/launcher.c; the helpful comment on > line 241 or so says "This should never happen." > > The closest bug report I found was from Evan Easton: > > http://lists.freebsd.org/mailman/htdig/freebsd-java/2003-December/001403.html > > using his script I was able to get javaws to start, but i still can't > get any of the demo apps to actually run. What errors do they produce? > Now, looking at the patchset there's no mention of DragonFly (not > surprisingly). The reason I was surprised that most things work is that > the patch seems to be making many choices based on system type, and it's > just not clear whether DragonFly defines anything close to the expected > system types. I would guess that DragonFly still defines __FreeBSD__ (probably as 4) so tha tmost things will just work. > So, I'm poking through the patchset and seeing what I can do, but > someone actually familiar with this stuff (i.e., Greg or Alexey) could > do this about a million times faster than I could, I think.. Assuming we had a DragonFly system, maybe so :). > Is there any chance of getting DragonFly into the list of "officially" > supported systems for the native JDK? Yes. The easiest way is to do what you're doing and submit patches when you're done. All other ways involve waiting till someone else does it :). I'll try and have a quick look if I get a chance and let you know if I see anything obvious, but its going to be a little hard without a DragonFly system to test on. -- Greg Lewis Email : glewis@eyesbeyond.com Eyes Beyond Web : http://www.eyesbeyond.com Information Technology FreeBSD : glewis@FreeBSD.org From owner-freebsd-java@FreeBSD.ORG Sat Jul 31 00:40:23 2004 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9046716A4D0 for ; Sat, 31 Jul 2004 00:40:23 +0000 (GMT) Received: from gldis.ca (constans.gldis.ca [66.11.169.73]) by mx1.FreeBSD.org (Postfix) with ESMTP id E68CD43D5D for ; Sat, 31 Jul 2004 00:40:22 +0000 (GMT) (envelope-from gldisater@gldis.ca) Received: from [IPv6:::1] (localhost [127.0.0.1]) by gldis.ca (8.12.11/8.12.11) with ESMTP id i6V0rK84004175 for ; Fri, 30 Jul 2004 20:53:21 -0400 (EDT) (envelope-from gldisater@gldis.ca) Message-ID: <410AEB3C.7030103@gldis.ca> Date: Fri, 30 Jul 2004 20:43:40 -0400 From: Jeremy Faulkner User-Agent: Mozilla Thunderbird 0.7.2 (X11/20040728) X-Accept-Language: en-us, en MIME-Version: 1.0 To: java@freebsd.org References: <40FC1289.1030702@gldis.ca> In-Reply-To: <40FC1289.1030702@gldis.ca> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: ClamAV version 'clamd / ClamAV version 0.65', clamav-milter version '0.60p' Subject: Re: Eclipse CDT 2.0 port X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 Jul 2004 00:40:23 -0000 Jeremy Faulkner wrote: > Submitted for testing. The Eclipse 3 port needs to have its package name > adjusted to indicate which WS is being used to allow plugin ports to use > the correct WS. If there are no complaints/comments/etc. by the end of > the week I will send-pr this port. > > http://www.gldis.ca/gldisater/eclipse-cdt.tar.gz http://www.freebsd.org/cgi/query-pr.cgi?pr=69830 -- Jeremy Faulkner http://www.gldis.ca From owner-freebsd-java@FreeBSD.ORG Sat Jul 31 18:40:28 2004 Return-Path: Delivered-To: freebsd-java@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A84F316A4CF for ; Sat, 31 Jul 2004 18:40:28 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 82B5743D5F for ; Sat, 31 Jul 2004 18:40:28 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.11/8.12.11) with ESMTP id i6VIeS2C062405 for ; Sat, 31 Jul 2004 18:40:28 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i6VIeSJP062404; Sat, 31 Jul 2004 18:40:28 GMT (envelope-from gnats) Resent-Date: Sat, 31 Jul 2004 18:40:28 GMT Resent-Message-Id: <200407311840.i6VIeSJP062404@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-java@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Jake Hamby Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F09D216A4CE for ; Sat, 31 Jul 2004 18:33:00 +0000 (GMT) Received: from bronco.gopix.net (gopix.net [38.118.153.46]) by mx1.FreeBSD.org (Postfix) with ESMTP id BE3A543D4C for ; Sat, 31 Jul 2004 18:33:00 +0000 (GMT) (envelope-from jhamby@anobject.com) Received: from localhost.my.domain (ar39.lsanca2-4.16.240.235.lsanca2.elnk.dsl.genuity.net [4.16.240.235]) by bronco.gopix.net (8.12.11/8.12.11) with ESMTP id i6VIab3P019681 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Sat, 31 Jul 2004 11:36:38 -0700 Received: (from jhamby@localhost) by localhost.my.domain (8.12.11/8.12.11/Submit) id i6VIWvnd012723; Sat, 31 Jul 2004 11:32:57 -0700 (PDT) (envelope-from jhamby) Message-Id: <200407311832.i6VIWvnd012723@localhost.my.domain> Date: Sat, 31 Jul 2004 11:32:57 -0700 (PDT) From: Jake Hamby To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: java/69853: Patches to build java/jdk14 with GCC 3.4 X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Jake Hamby List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 Jul 2004 18:40:28 -0000 >Number: 69853 >Category: java >Synopsis: Patches to build java/jdk14 with GCC 3.4 >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-java >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Jul 31 18:40:28 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Jake Hamby >Release: FreeBSD 5.2-CURRENT i386 >Organization: anObject >Environment: System: FreeBSD atheros 5.2-CURRENT FreeBSD 5.2-CURRENT #0: Thu Jul 29 17:26:29 PDT 2004 root@atheros:/usr/home/work/ATHEROS i386 gcc (GCC) 3.4.2 [FreeBSD] 20040728 >Description: JDK 1.4.2p6_4 doesn't build under GCC 3.4.2 due to stricter type checking (patches attached). >How-To-Repeat: Build java/jdk-1.4.2p6_4 using GCC 3.4.2 recently committed to -current. >Fix: Some notes on the patches. The first one is the only patch needed for the JDK itself (it's casting away a const, but needs to be (byte*&) rather than (byte*) or else GCC 3.4 won't find the matching member function). The second patch is a bit of a hack for the Netscape 6/Mozilla plugin (which I've verified will load and works okay for both mozilla-1.7.1,2 and firefox-0.9.1_1). For UNIX, the correct HAVE_CPP_* macros are supposed to be defined by autoconf in, for example, "xpcom/xpcom-config.h" (according to the headers installed by Mozilla). But this file is missing altogether from the version of the headers installed by the BSD JDK patches, and GCC 3.4 really needs HAVE_CPP_MODERN_SPECIALIZE_TEMPLATE_SYNTAX defined or else it fails because "template<>" isn't being inserted in the right spots. Since both GCC 3.4 and the Metrowerks compiler support all of the HAVE_CPP features, I cheated and reused those defines for the NS_UNIX build. --- patch-awt_fontmanager_t2kScalaerContext.cpp begins here --- --- ../../j2se/src/share/native/sun/awt/font/fontmanager/fontobjects/t2kScalerContext.cpp.orig Fri Jul 30 18:00:09 2004 +++ ../../j2se/src/share/native/sun/awt/font/fontmanager/fontobjects/t2kScalerContext.cpp Fri Jul 30 22:11:36 2004 @@ -937,14 +937,14 @@ CMAPMapper::CharsToGlyphs( int count, const Unicode16 unicodes[], UInt32 glyphs[]) const { - ConvertUnicodeToGlyphs(*font, (unsigned char *)cmap, count, unicodes, glyphs); + ConvertUnicodeToGlyphs(*font, (byte*&)cmap, count, unicodes, glyphs); } void CMAPMapper::CharsToGlyphs( int count, const Unicode32 unicodes[], UInt32 glyphs[]) const { - ConvertUnicodeToGlyphs(*font, (unsigned char *)cmap, count, unicodes, glyphs); + ConvertUnicodeToGlyphs(*font, (byte*&)cmap, count, unicodes, glyphs); } ////////////////////////////////////////////////////////////////////////////// --- patch-awt_fontmanager_t2kScalaerContext.cpp ends here --- --- patch-plugin::include::nscore.h begins here --- --- ../../deploy/src/plugin/oji-plugin/include/mozilla_headers_ns610/nscore.h.orig Fri Jul 30 18:00:05 2004 +++ ../../deploy/src/plugin/oji-plugin/include/mozilla_headers_ns610/nscore.h Fri Jul 30 23:23:36 2004 @@ -163,7 +163,7 @@ */ /* under Metrowerks (Mac), we don't have autoconf yet */ -#ifdef __MWERKS__ +#if defined(__MWERKS__) || defined(NS_UNIX) #define HAVE_CPP_SPECIALIZATION #define HAVE_CPP_PARTIAL_SPECIALIZATION #define HAVE_CPP_MODERN_SPECIALIZE_TEMPLATE_SYNTAX --- ../../deploy/src/plugin/oji-plugin/include/mozilla_headers_ns600/nscore.h.orig Fri Jul 30 18:00:04 2004 +++ ../../deploy/src/plugin/oji-plugin/include/mozilla_headers_ns600/nscore.h Fri Jul 30 23:32:31 2004 @@ -163,7 +163,7 @@ */ /* under Metrowerks (Mac), we don't have autoconf yet */ -#ifdef __MWERKS__ +#if defined(__MWERKS__) || defined(NS_UNIX) #define HAVE_CPP_SPECIALIZATION #define HAVE_CPP_PARTIAL_SPECIALIZATION #define HAVE_CPP_MODERN_SPECIALIZE_TEMPLATE_SYNTAX --- patch-plugin::include::nscore.h ends here --- >Release-Note: >Audit-Trail: >Unformatted: