HEADS UP: Eclipse 3.0 updated

Norikatsu Shigemura nork at FreeBSD.org
Sun Jul 25 16:07:12 PDT 2004


On Sun, 25 Jul 2004 18:08:02 -0400
Jeremy Faulkner <gldisater at gldis.ca> 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 at .
> 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
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -


More information about the freebsd-java mailing list