Date: Sun, 25 Jul 2004 18:08:02 -0400 From: Jeremy Faulkner <gldisater@gldis.ca> To: Norikatsu Shigemura <nork@freebsd.org> Cc: freebsd-java@freebsd.org Subject: Re: HEADS UP: Eclipse 3.0 updated Message-ID: <41042F42.80604@gldis.ca> In-Reply-To: <20040725171544.71dc613e.nork@FreeBSD.org> References: <20040725171544.71dc613e.nork@FreeBSD.org>
next in thread | previous in thread | raw e-mail | index | archive | help
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--
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?41042F42.80604>