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--