HEADS UP: Eclipse 3.0 updated
Jeremy Faulkner
gldisater at gldis.ca
Sun Jul 25 15:04:28 PDT 2004
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 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.
--
Jeremy Faulkner http://www.gldis.ca
-------------- next part --------------
--- 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
More information about the freebsd-java
mailing list