From owner-freebsd-openoffice@FreeBSD.ORG Sun Mar 12 17:29:10 2006 Return-Path: X-Original-To: freebsd-openoffice@FreeBSD.ORG Delivered-To: freebsd-openoffice@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 769F716A400 for ; Sun, 12 Mar 2006 17:29:09 +0000 (GMT) (envelope-from schweikh@schweikhardt.net) Received: from bremen.shuttle.de (bremen.shuttle.de [194.95.249.251]) by mx1.FreeBSD.org (Postfix) with ESMTP id F270443D58 for ; Sun, 12 Mar 2006 17:29:05 +0000 (GMT) (envelope-from schweikh@schweikhardt.net) Received: by bremen.shuttle.de (Postfix, from userid 10) id 8398A3B9C4; Sun, 12 Mar 2006 18:29:03 +0100 (CET) Received: from hal9000.schweikhardt.net (localhost [127.0.0.1]) by hal9000.schweikhardt.net (8.13.4/8.13.4) with ESMTP id k2CHShUZ009753 for ; Sun, 12 Mar 2006 18:28:43 +0100 (CET) (envelope-from schweikh@hal9000.schweikhardt.net) Received: (from schweikh@localhost) by hal9000.schweikhardt.net (8.13.4/8.13.4/Submit) id k2CHShR8009752 for freebsd-openoffice@FreeBSD.ORG; Sun, 12 Mar 2006 18:28:43 +0100 (CET) (envelope-from schweikh) Date: Sun, 12 Mar 2006 18:28:43 +0100 From: Jens Schweikhardt To: freebsd-openoffice@FreeBSD.ORG Message-ID: <20060312172843.GA1838@schweikhardt.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.11 Cc: Subject: ooo can't find default printer even though any other app can X-BeenThere: freebsd-openoffice@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting OpenOffice to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Mar 2006 17:29:10 -0000 hello, world\n I'm trying to get ooo to print to my Laserjet 2300d. The details: openoffice.org-2.0.2.rc2 on FreeBSD 7-CURRENT as of a few days ago, using CUPS (cups-1.1.23.0_1, cups-lpr-1.1.23.0_1, cups-base-1.1.23.0_8, cups-pstoraster-8.15). I compiled the system with NO_LPR=, so the system print tools are not in /usr/sbin. Printing from the command line, from other apps like acroread or ghostview works like a charm. So CUPS is unlikely to be the culprit. When I want to print a spreadsheet from within ooo with File->Print... I get a message box saying "No default printer found. Please chose a printer and try again." Then I am presented with a dialog to chose a printer, but the list of available printers is empty and there is now way I know of to enter a printer name. I've done some investigation, especially looking at the place where ooo builds the list of available printers with lpc. It looks like this is in source/printer/printerinfomanager.cxx, around these lines struct SystemCommandParameters { const char* pQueueCommand; const char* pPrintCommand; const char* pForeToken; const char* pAftToken; unsigned int nForeTokenCount; }; static const struct SystemCommandParameters aParms[] = { #if defined(LINUX) || defined(NETBSD) || defined(FREEBSD) { "/usr/sbin/lpc status", "lpr -P \"(PRINTER)\"", "", ":", 0 }, { "lpc status", "lpr -P \"(PRINTER)\"", "", ":", 0 }, { "LANG=C;LC_ALL=C;export LANG LC_ALL;lpstat -s", "lp -d \"(PRINTER)\"", "system for ", ": ", 1 } ... #endif }; I made /usr/sbin/lpc a symlink to CUPS' /usr/local/sbin/lpc, just in case not all of these commands would be tested. (I assume that any parseable output of a single command would be enough). Anyway, the output of these three commands is # /usr/sbin/lpc status LaserJet_2300d: printer is on device 'parallel' speed -1 queuing is enabled printing is enabled no entries daemon present # lpc status LaserJet_2300d: printer is on device 'parallel' speed -1 queuing is enabled printing is enabled no entries daemon present # LANG=C;LC_ALL=C;export LANG LC_ALL;lpstat -s system default destination: LaserJet_2300d device for LaserJet_2300d: parallel:/dev/lpt0 With the exception of the last entry, where CUPS prints "device for" instead of the expected "system for", this should tell ooo that I have a "LaserJet_2300d". But it doesn't. I'm stumped. What is the magic incantation to make ooo print when using CUPS? Regards, Jens -- Jens Schweikhardt http://www.schweikhardt.net/ SIGSIG -- signature too long (core dumped) From owner-freebsd-openoffice@FreeBSD.ORG Sun Mar 12 17:52:08 2006 Return-Path: X-Original-To: freebsd-openoffice@FreeBSD.ORG Delivered-To: freebsd-openoffice@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D45AC16A407 for ; Sun, 12 Mar 2006 17:52:07 +0000 (GMT) (envelope-from freebsd@chillt.de) Received: from dd2718.kasserver.com (dd2718.kasserver.com [81.209.184.159]) by mx1.FreeBSD.org (Postfix) with ESMTP id EE98B43D81 for ; Sun, 12 Mar 2006 17:51:56 +0000 (GMT) (envelope-from freebsd@chillt.de) Received: from [127.0.0.1] (dslb-084-061-200-065.pools.arcor-ip.net [84.61.200.65]) by dd2718.kasserver.com (Postfix) with ESMTP id C8AC36F911; Sun, 12 Mar 2006 18:50:18 +0100 (CET) Message-ID: <44145FC1.3050509@chillt.de> Date: Sun, 12 Mar 2006 18:52:01 +0100 From: Bartosz Fabianowski User-Agent: Thunderbird 1.5 (X11/20060113) MIME-Version: 1.0 To: Jens Schweikhardt References: <20060312172843.GA1838@schweikhardt.net> In-Reply-To: <20060312172843.GA1838@schweikhardt.net> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-openoffice@FreeBSD.ORG Subject: Re: ooo can't find default printer even though any other app can X-BeenThere: freebsd-openoffice@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting OpenOffice to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Mar 2006 17:52:08 -0000 > But it doesn't. I'm stumped. What is the magic incantation to make > ooo print when using CUPS? It's not a CUPS problem. The same happens with lpr as well. This is a bug that has been mentioned on the list before - the newest revision of the port fails to install the printer drivers required by OOo. Until that is fixed, you'll need to: * manually install the from the work directory after compiling the port or * downgrade to a working revision of the port (2.0.1 worked fine for me) or * export to PDF instead of printing (which is a lame work-around, but I use it all the time ;) - Bartosz From owner-freebsd-openoffice@FreeBSD.ORG Sun Mar 12 19:09:23 2006 Return-Path: X-Original-To: openoffice@freebsd.org Delivered-To: freebsd-openoffice@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C15DC16A400; Sun, 12 Mar 2006 19:09:23 +0000 (GMT) (envelope-from past@ebs.gr) Received: from fly.ebs.gr (fly.ebs.gr [83.171.239.113]) by mx1.FreeBSD.org (Postfix) with ESMTP id BA83C43D46; Sun, 12 Mar 2006 19:09:22 +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 k2CJ9LUg004372; Sun, 12 Mar 2006 21:09:21 +0200 (EET) (envelope-from past@ebs.gr) Received: from [10.1.1.200] (pptp.ebs.gr [10.1.1.200]) by ebs.gr (8.13.3/8.13.3) with ESMTP id k2CJ9IIk017089; Sun, 12 Mar 2006 21:09:19 +0200 (EET) (envelope-from past@ebs.gr) Message-ID: <441471DA.5020400@ebs.gr> Date: Sun, 12 Mar 2006 21:09:14 +0200 From: Panagiotis Astithas Organization: EBS Ltd. User-Agent: Thunderbird 1.5 (X11/20060203) MIME-Version: 1.0 To: NAKATA Maho References: <44114DBE.3040202@ebs.gr> <20060311.104756.104072791.chat95@mac.com> In-Reply-To: <20060311.104756.104072791.chat95@mac.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: java@freebsd.org, gerald@pfeifer.com, openoffice@freebsd.org Subject: Re: GCJ 4.1 and OpenOffice.org X-BeenThere: freebsd-openoffice@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting OpenOffice to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Mar 2006 19:09:23 -0000 NAKATA Maho wrote: > In Message-ID: <44114DBE.3040202@ebs.gr> > Panagiotis Astithas wrote: > >> So this is essentially a (collection of) tweaked gcc41 port(s) that >> avoids the gmake bug that hoses systems with 1GB RAM? If so I'd love to > right aviods. >> try this, as I've been wanting to do the same for a while. > > Not only contains a workaround of gmake bug ;) > current gmake eats up system's memory while installation, but > 3.81RC1 does not seem to be compatible with other programs. > so I restricted to use ONLY while installing gcj. I'm getting the following error while building: ... mkdir .libs /usr/home/past/myports/gcc41-with_gcj/work/build/./gcc/xgcc -B/usr/home/past/myports/gcc41-with_gcj/work/build/./gcc/ -B/usr/local/i386-portbld-freebsd6.1/bin/ -B/usr/local/i386-portbld-freebsd6.1/lib/ -isystem /usr/local/i386-portbld-freebsd6.1/include -isystem /usr/local/i386-portbld-freebsd6.1/sys-include -DHAVE_CONFIG_H -I. -I../../../../.././..//gcc-4.1-20060217/libjava/classpath/native/jawt -I../../include -I../../../../.././..//gcc-4.1-20060217/libjava/classpath/include -I../../../../.././..//gcc-4.1-20060217/libjava/classpath/native/jni/classpath -I../../../../.././..//gcc-4.1-20060217/libjava/classpath/native/target/Linux -I../../../../.././..//gcc-4.1-20060217/libjava/classpath/native/target/generic -I/usr/local/include -pedantic -W -Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes -Wno-long-long -D_REENTRANT -DXTHREADS -DXUSE_MTSAFE_API -I/usr/local/include/atk-1.0 -I/usr/local/include/cairo -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/X11R6/include/gtk-2.0 -I/usr/X11R6/lib/gtk-2.0/include -I/usr/X11R6/include/pango-1.0 -I/usr/X11R6/include -I/usr/local/include/freetype2 -I/usr/local/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/X11R6/include/pango-1.0 -I/usr/X11R6/include -I/usr/local/include/freetype2 -I/usr/local/include -O2 -O2 -fno-strict-aliasing -pipe -MT jawt.lo -MD -MP -MF .deps/jawt.Tpo -c ../../../../.././..//gcc-4.1-20060217/libjava/classpath/native/jawt/jawt.c -fPIC -DPIC -o .libs/jawt.o /bin/sh ../../libtool --mode=link /usr/home/past/myports/gcc41-with_gcj/work/build/./gcc/xgcc -B/usr/home/past/myports/gcc41-with_gcj/work/build/./gcc/ -B/usr/local/i386-portbld-freebsd6.1/bin/ -B/usr/local/i386-portbld-freebsd6.1/lib/ -isystem /usr/local/i386-portbld-freebsd6.1/include -isystem /usr/local/i386-portbld-freebsd6.1/sys-include -pedantic -W -Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes -Wno-long-long -D_REENTRANT -DXTHREADS -DXUSE_MTSAFE_API -I/usr/local/include/atk-1.0 -I/usr/local/include/cairo -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/X11R6/include/gtk-2.0 -I/usr/X11R6/lib/gtk-2.0/include -I/usr/X11R6/include/pango-1.0 -I/usr/X11R6/include -I/usr/local/include/freetype2 -I/usr/local/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/X11R6/include/pango-1.0 -I/usr/X11R6/include -I/usr/local/include/freetype2 -I/usr/local/include -O2 -O2 -fno-strict-aliasing -pipe -module -version-info 0:0:0 -no-undefined -pthread -Wl,--rpath -Wl,/usr/local/lib -L/usr/local/lib -L/usr/X11R6/lib -lgtk-x11-2.0 -lgdk-x11-2.0 -lXrandr -lXi -lXinerama -latk-1.0 -lpangocairo-1.0 -lXcursor -lXfixes -lcairo -lpangoft2-1.0 -lfontconfig -lfreetype -lz -lpango-1.0 -lXrender -lX11 -lXext -lgthread-2.0 -lgdk_pixbuf-2.0 -lm -lgobject-2.0 -lgmodule-2.0 -lglib-2.0 -liconv -Wl,--rpath -Wl,/usr/local/lib -L/usr/local/lib -L/usr/X11R6/lib -lpangoft2-1.0 -lfontconfig -lfreetype -lz -lpango-1.0 -lm -lgobject-2.0 -lgmodule-2.0 -lglib-2.0 -liconv -L/usr/X11R6/lib -lXtst -o libjawtgnu.la jawt.lo ../../native/jni/gtk-peer/libgtkpeer.la libtool: link: cannot find the library `' gmake[6]: *** [libjawtgnu.la] Error 1 gmake[6]: Leaving directory `/usr/home/past/myports/gcc41-with_gcj/work/build/i386-portbld-freebsd6.1/libjava/classpath/native/jawt' gmake[5]: *** [all-recursive] Error 1 gmake[5]: Leaving directory `/usr/home/past/myports/gcc41-with_gcj/work/build/i386-portbld-freebsd6.1/libjava/classpath/native' gmake[4]: *** [all-recursive] Error 1 gmake[4]: Leaving directory `/usr/home/past/myports/gcc41-with_gcj/work/build/i386-portbld-freebsd6.1/libjava/classpath' gmake[3]: *** [all-recursive] Error 1 gmake[3]: Leaving directory `/usr/home/past/myports/gcc41-with_gcj/work/build/i386-portbld-freebsd6.1/libjava' gmake[2]: *** [all-target-libjava] Error 2 gmake[2]: Leaving directory `/usr/home/past/myports/gcc41-with_gcj/work/build' gmake[1]: *** [all] Error 2 gmake[1]: Leaving directory `/usr/home/past/myports/gcc41-with_gcj/work/build' gmake: *** [bootstrap-lean] Error 2 *** Error code 2 Stop in /usr/home/past/myports/gcc41-with_gcj. Is this ports supposed to build with the new libtool? Cheers, Panagiotis From owner-freebsd-openoffice@FreeBSD.ORG Sun Mar 12 19:29:09 2006 Return-Path: X-Original-To: openoffice@freebsd.org Delivered-To: freebsd-openoffice@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 02AF416A400; Sun, 12 Mar 2006 19:29:09 +0000 (GMT) (envelope-from freebsd@chillt.de) Received: from dd2718.kasserver.com (dd2718.kasserver.com [81.209.184.159]) by mx1.FreeBSD.org (Postfix) with ESMTP id A1AD143D58; Sun, 12 Mar 2006 19:29:07 +0000 (GMT) (envelope-from freebsd@chillt.de) Received: from [127.0.0.1] (dslb-084-061-200-065.pools.arcor-ip.net [84.61.200.65]) by dd2718.kasserver.com (Postfix) with ESMTP id A197462364; Sun, 12 Mar 2006 20:27:29 +0100 (CET) Message-ID: <44147685.3010703@chillt.de> Date: Sun, 12 Mar 2006 20:29:09 +0100 From: Bartosz Fabianowski User-Agent: Thunderbird 1.5 (X11/20060113) MIME-Version: 1.0 To: Panagiotis Astithas References: <44114DBE.3040202@ebs.gr> <20060311.104756.104072791.chat95@mac.com> <441471DA.5020400@ebs.gr> In-Reply-To: <441471DA.5020400@ebs.gr> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: java@freebsd.org, gerald@pfeifer.com, openoffice@freebsd.org Subject: Re: GCJ 4.1 and OpenOffice.org X-BeenThere: freebsd-openoffice@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting OpenOffice to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Mar 2006 19:29:09 -0000 > libtool: link: cannot find the library `' > gmake[6]: *** [libjawtgnu.la] Error 1 > gmake[6]: Leaving directory > `/usr/home/past/myports/gcc41-with_gcj/work/build/i386-portbld-freebsd6.1/libjava/classpath/native/jawt' This looks fallout from the recent libtool changes. It seems that Maho has written the port on a system that is using the old way of handling libtool. By default, every port will use its included version of libtool. If that one is too old and doesn't work, you will get the error above. In this case, you need to force the port to use the libtool version provided by the system: --- gcc41/Makefile.orig Sun Mar 12 20:21:09 2006 +++ gcc41/Makefile Sun Mar 12 20:21:49 2006 @@ -37,6 +37,7 @@ USE_BISON= yes USE_BZIP2= yes USE_GMAKE= yes +USE_AUTOTOOLS= libtool:15 USE_ICONV= yes USE_PERL5_BUILD=yes .if defined(WITH_JAVA_AWT) This change should be enough unless the version of classpath included with gcj 4.1 has its own libtool. If so, this will need to be replaced by /usr/local/bin/libtool as well. You can probably do this manually by symlinking for now. For a later release, it would need to be fixed properly. - Bartosz From owner-freebsd-openoffice@FreeBSD.ORG Sun Mar 12 19:40:18 2006 Return-Path: X-Original-To: openoffice@FreeBSD.org Delivered-To: freebsd-openoffice@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8A9FA16A400 for ; Sun, 12 Mar 2006 19:40:18 +0000 (GMT) (envelope-from hans@lambermont.dyndns.org) Received: from lambermont.dyndns.org (lambermont.dyndns.org [82.93.47.245]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1DF3043D46 for ; Sun, 12 Mar 2006 19:40:18 +0000 (GMT) (envelope-from hans@lambermont.dyndns.org) Received: by lambermont.dyndns.org (Postfix, from userid 1001) id B1F1414D960; Sun, 12 Mar 2006 20:40:16 +0100 (CET) Date: Sun, 12 Mar 2006 20:40:16 +0100 To: openoffice@FreeBSD.org Message-ID: <20060312194016.GB2255@leia.lambermont.dyndns.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4.2.1i From: hans@lambermont.dyndns.org (Hans Lambermont) Cc: Subject: 2.0.2.rc2 build error in work/OOB680_m2/python/ X-BeenThere: freebsd-openoffice@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting OpenOffice to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Mar 2006 19:40:18 -0000 Hi, I hope this is still interesting with the 2.0.2 coming up soon ;-) 5.4-RELEASE-p6 , up to date ports tree of last week (everything built from scratch) python-2.3.5_1 and python-2.4.2 installed. ... running install_scripts copying build/scripts-2.3/pydoc -> /usr/local/bin copying build/scripts-2.3/idle -> /usr/local/bin changing mode of /usr/local/bin/pydoc to 755 changing mode of /usr/local/bin/idle to 755 if test -f /usr/local/bin/python -o -h /usr/local/bin/python; \ then rm -f /usr/local/bin/python; \ else true; \ fi (cd /usr/local/bin; ln python2.3 python) /usr/bin/install -c -m 644 ./Misc/python.man \ /usr/local/man/man1/python.1 chmod: /usr/ports/editors/openoffice.org-2.0/work/OOB680_m2/python/unxfbsd.pro/misc/build/python-inst: No such file or directory dmake: Error code 1, while making './unxfbsd.pro/misc/build/so_built_so_python' '---* tg_merge.mk *---' ERROR: Error 65280 occurred while making /usr/ports/editors/openoffice.org-2.0/work/OOB680_m2/python dmake: Error code 1, while making 'build_instsetoo_native' '---* *---' *** Error code 255 Stop in /usr/ports/editors/openoffice.org-2.0. If you need anything else, please let me know. Oh, and Keep Up The Good Work :) regards, Hans Lambermont From owner-freebsd-openoffice@FreeBSD.ORG Sun Mar 12 20:57:07 2006 Return-Path: X-Original-To: openoffice@FreeBSD.org Delivered-To: freebsd-openoffice@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AE25216A400 for ; Sun, 12 Mar 2006 20:57:07 +0000 (GMT) (envelope-from chat95@mac.com) Received: from smtpout.mac.com (smtpout.mac.com [17.250.248.88]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5E8C743D48 for ; Sun, 12 Mar 2006 20:57:07 +0000 (GMT) (envelope-from chat95@mac.com) Received: from mac.com (smtpin07-en2 [10.13.10.152]) by smtpout.mac.com (Xserve/8.12.11/smtpout01/MantshX 4.0) with ESMTP id k2CKv6Pq014875; Sun, 12 Mar 2006 12:57:06 -0800 (PST) Received: from localhost ([133.11.172.102]) (authenticated bits=0) by mac.com (Xserve/smtpin07/MantshX 4.0) with ESMTP id k2CKv1EW000971; Sun, 12 Mar 2006 12:57:05 -0800 (PST) Date: Mon, 13 Mar 2006 05:56:59 +0900 (JST) Message-Id: <20060313.055659.74747475.chat95@mac.com> To: hans@lambermont.dyndns.org From: NAKATA Maho In-Reply-To: <20060312194016.GB2255@leia.lambermont.dyndns.org> References: <20060312194016.GB2255@leia.lambermont.dyndns.org> Organization: private X-Mailer: Mew version 3.3 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Cc: openoffice@FreeBSD.org Subject: Re: 2.0.2.rc2 build error in work/OOB680_m2/python/ X-BeenThere: freebsd-openoffice@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting OpenOffice to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Mar 2006 20:57:07 -0000 In Message-ID: <20060312194016.GB2255@leia.lambermont.dyndns.org> hans@lambermont.dyndns.org (Hans Lambermont) wrote: > Hi, I hope this is still interesting with the 2.0.2 coming up soon ;-) > > 5.4-RELEASE-p6 , up to date ports tree of last week (everything built > from scratch) python-2.3.5_1 and python-2.4.2 installed. > > ... > running install_scripts > copying build/scripts-2.3/pydoc -> /usr/local/bin > copying build/scripts-2.3/idle -> /usr/local/bin > changing mode of /usr/local/bin/pydoc to 755 > changing mode of /usr/local/bin/idle to 755 > if test -f /usr/local/bin/python -o -h /usr/local/bin/python; \ > then rm -f /usr/local/bin/python; \ > else true; \ > fi > (cd /usr/local/bin; ln python2.3 python) > /usr/bin/install -c -m 644 ./Misc/python.man \ > /usr/local/man/man1/python.1 > chmod: /usr/ports/editors/openoffice.org-2.0/work/OOB680_m2/python/unxfbsd.pro/misc/build/python-inst: No such file or directory do you override some CFLAGS or other flags? -- NAKATA, Maho (maho@FreeBSD.org) From owner-freebsd-openoffice@FreeBSD.ORG Sun Mar 12 21:22:41 2006 Return-Path: X-Original-To: freebsd-openoffice@FreeBSD.ORG Delivered-To: freebsd-openoffice@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8917C16A401 for ; Sun, 12 Mar 2006 21:22:41 +0000 (GMT) (envelope-from chat95@mac.com) Received: from smtpout.mac.com (smtpout.mac.com [17.250.248.47]) by mx1.FreeBSD.org (Postfix) with ESMTP id EF83943D48 for ; Sun, 12 Mar 2006 21:22:40 +0000 (GMT) (envelope-from chat95@mac.com) Received: from mac.com (smtpin07-en2 [10.13.10.152]) by smtpout.mac.com (Xserve/8.12.11/smtpout09/MantshX 4.0) with ESMTP id k2CLMclA025860; Sun, 12 Mar 2006 13:22:38 -0800 (PST) Received: from localhost ([133.11.172.102]) (authenticated bits=0) by mac.com (Xserve/smtpin07/MantshX 4.0) with ESMTP id k2CLMXmp007647; Sun, 12 Mar 2006 13:22:37 -0800 (PST) Date: Mon, 13 Mar 2006 06:22:31 +0900 (JST) Message-Id: <20060313.062231.41638133.chat95@mac.com> To: schweikh@schweikhardt.net From: NAKATA Maho In-Reply-To: <20060312172843.GA1838@schweikhardt.net> References: <20060312172843.GA1838@schweikhardt.net> Organization: private X-Mailer: Mew version 3.3 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Multipart/Mixed; boundary="--Next_Part(Mon_Mar_13_06:22:31_2006_646)--" Content-Transfer-Encoding: 7bit Cc: freebsd-openoffice@FreeBSD.ORG Subject: Re: ooo can't find default printer even though any other app can X-BeenThere: freebsd-openoffice@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting OpenOffice to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Mar 2006 21:22:42 -0000 ----Next_Part(Mon_Mar_13_06:22:31_2006_646)-- Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit In Message-ID: <20060312172843.GA1838@schweikhardt.net> Jens Schweikhardt wrote: > But it doesn't. I'm stumped. What is the magic incantation to make > ooo print when using CUPS? this might be http://www.openoffice.org/issues/show_bug.cgi?id=62535 apply attached patch and make package again ;( -- NAKATA, Maho (maho@FreeBSD.org) ----Next_Part(Mon_Mar_13_06:22:31_2006_646)-- Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename=patch-psprint-i62535 --- config_office/configure 2006-02-24 23:17:16.000000000 +0100 +++ config_office/configure 2006-02-25 08:53:26.000000000 +0100 @@ -19833,13 +19833,13 @@ echo "$as_me:$LINENO: checking whether to include PPDs" >&5 echo $ECHO_N "checking whether to include PPDs... $ECHO_C" >&6 if test "$without_ppds" = "yes"; then - echo "$as_me:$LINENO: result: yes" >&5 -echo "${ECHO_T}yes" >&6 -else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 WITHOUT_PPDS=YES SCPDEFS="$SCPDEFS -DWITHOUT_PPDS" +else + echo "$as_me:$LINENO: result: yes" >&5 +echo "${ECHO_T}yes" >&6 fi @@ -19847,13 +19847,13 @@ echo "$as_me:$LINENO: checking whether to include AFMs" >&5 echo $ECHO_N "checking whether to include AFMs... $ECHO_C" >&6 if test "$without_afms" = "yes"; then - echo "$as_me:$LINENO: result: yes" >&5 -echo "${ECHO_T}yes" >&6 -else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 WITHOUT_AFMS=YES SCPDEFS="$SCPDEFS -DWITHOUT_AFMS" +else + echo "$as_me:$LINENO: result: yes" >&5 +echo "${ECHO_T}yes" >&6 fi --- config_office/configure.in 2006-02-24 23:17:16.000000000 +0100 +++ config_office/configure.in 2006-02-25 08:52:23.000000000 +0100 @@ -4172,22 +4172,22 @@ AC_MSG_CHECKING([whether to include PPDs]) if test "$without_ppds" = "yes"; then - AC_MSG_RESULT([yes]) -else AC_MSG_RESULT([no]) WITHOUT_PPDS=YES SCPDEFS="$SCPDEFS -DWITHOUT_PPDS" +else + AC_MSG_RESULT([yes]) fi AC_SUBST(WITHOUT_PPDS) AC_SUBST(SCPDEFS) AC_MSG_CHECKING([whether to include AFMs]) if test "$without_afms" = "yes"; then - AC_MSG_RESULT([yes]) -else AC_MSG_RESULT([no]) WITHOUT_AFMS=YES SCPDEFS="$SCPDEFS -DWITHOUT_AFMS" +else + AC_MSG_RESULT([yes]) fi AC_SUBST(WITHOUT_AFMS) AC_SUBST(SCPDEFS) ----Next_Part(Mon_Mar_13_06:22:31_2006_646)---- From owner-freebsd-openoffice@FreeBSD.ORG Sun Mar 12 21:56:10 2006 Return-Path: X-Original-To: openoffice@FreeBSD.org Delivered-To: freebsd-openoffice@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2C37716A401 for ; Sun, 12 Mar 2006 21:56:10 +0000 (GMT) (envelope-from hans@lambermont.dyndns.org) Received: from lambermont.dyndns.org (lambermont.dyndns.org [82.93.47.245]) by mx1.FreeBSD.org (Postfix) with ESMTP id A75FA43D45 for ; Sun, 12 Mar 2006 21:56:09 +0000 (GMT) (envelope-from hans@lambermont.dyndns.org) Received: by lambermont.dyndns.org (Postfix, from userid 1001) id 8EBF114D960; Sun, 12 Mar 2006 22:56:08 +0100 (CET) Date: Sun, 12 Mar 2006 22:56:08 +0100 To: NAKATA Maho Message-ID: <20060312215608.GC2255@leia.lambermont.dyndns.org> References: <20060312194016.GB2255@leia.lambermont.dyndns.org> <20060313.055659.74747475.chat95@mac.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20060313.055659.74747475.chat95@mac.com> User-Agent: Mutt/1.4.2.1i From: hans@lambermont.dyndns.org (Hans Lambermont) Cc: openoffice@FreeBSD.org Subject: Re: 2.0.2.rc2 build error in work/OOB680_m2/python/ X-BeenThere: freebsd-openoffice@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting OpenOffice to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Mar 2006 21:56:10 -0000 NAKATA Maho wrote: > In Message-ID: <20060312194016.GB2255@leia.lambermont.dyndns.org> > hans@lambermont.dyndns.org (Hans Lambermont) wrote: > > 5.4-RELEASE-p6 , up to date ports tree of last week (everything built > > from scratch) python-2.3.5_1 and python-2.4.2 installed. > > ... > > running install_scripts > > copying build/scripts-2.3/pydoc -> /usr/local/bin > > copying build/scripts-2.3/idle -> /usr/local/bin > > changing mode of /usr/local/bin/pydoc to 755 > > changing mode of /usr/local/bin/idle to 755 > > if test -f /usr/local/bin/python -o -h /usr/local/bin/python; \ > > then rm -f /usr/local/bin/python; \ > > else true; \ > > fi > > (cd /usr/local/bin; ln python2.3 python) > > /usr/bin/install -c -m 644 ./Misc/python.man \ > > /usr/local/man/man1/python.1 > > chmod: /usr/ports/editors/openoffice.org-2.0/work/OOB680_m2/python/unxfbsd.pro/misc/build/python-inst: No such file or directory > > do you override some CFLAGS or other flags? No CFLAGS changes, here's my make.conf : cat /etc/make.conf NO_PROFILE=true NO_SENDMAIL=true NO_MAILWRAPPER=true PAPERSIZE=a4 DISABLE_VULNERABILITIES=true PERL_VER=5.8.8 PERL_VERSION=5.8.8 I used make with -DWITHOUT_MOZILLA -DWITH_KDE . regards, Hans Lambermont From owner-freebsd-openoffice@FreeBSD.ORG Mon Mar 13 02:14:44 2006 Return-Path: X-Original-To: openoffice@freebsd.org Delivered-To: freebsd-openoffice@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E96B416A401; Mon, 13 Mar 2006 02:14:44 +0000 (UTC) (envelope-from chat95@mac.com) Received: from smtpout.mac.com (smtpout.mac.com [17.250.248.86]) by mx1.FreeBSD.org (Postfix) with ESMTP id A84B643D45; Mon, 13 Mar 2006 02:14:44 +0000 (GMT) (envelope-from chat95@mac.com) Received: from mac.com (smtpin02-en2 [10.13.10.147]) by smtpout.mac.com (Xserve/8.12.11/smtpout04/MantshX 4.0) with ESMTP id k2D2EZ98013015; Sun, 12 Mar 2006 18:14:35 -0800 (PST) Received: from localhost ([133.11.172.102]) (authenticated bits=0) by mac.com (Xserve/smtpin02/MantshX 4.0) with ESMTP id k2D2ETeU021963; Sun, 12 Mar 2006 18:14:33 -0800 (PST) Date: Mon, 13 Mar 2006 11:14:27 +0900 (JST) Message-Id: <20060313.111427.41636808.chat95@mac.com> To: freebsd@chillt.de From: NAKATA Maho In-Reply-To: <44147685.3010703@chillt.de> References: <20060311.104756.104072791.chat95@mac.com> <441471DA.5020400@ebs.gr> <44147685.3010703@chillt.de> Organization: private X-Mailer: Mew version 3.3 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, gerald@pfeifer.com, past@ebs.gr, openoffice@freebsd.org Subject: Re: GCJ 4.1 and OpenOffice.org X-BeenThere: freebsd-openoffice@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting OpenOffice to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Mar 2006 02:14:45 -0000 In Message-ID: <44147685.3010703@chillt.de> Bartosz Fabianowski wrote: > --- gcc41/Makefile.orig Sun Mar 12 20:21:09 2006 > +++ gcc41/Makefile Sun Mar 12 20:21:49 2006 > @@ -37,6 +37,7 @@ > USE_BISON= yes > USE_BZIP2= yes > USE_GMAKE= yes > +USE_AUTOTOOLS= libtool:15 > USE_ICONV= yes > USE_PERL5_BUILD=yes > .if defined(WITH_JAVA_AWT) > > This change should be enough unless the version of classpath included > with gcj 4.1 has its own libtool. If so, this will need to be replaced > by /usr/local/bin/libtool as well. You can probably do this manually by > symlinking for now. For a later release, it would need to be fixed properly. thanks, I updated my ports tarball at good-day. ftp://ooopackages.good-day.net/pub/OpenOffice.org/FreeBSD/misc/openoffice.org-2.0.060313.tar.bz2 (contains gcc41 as well) -- NAKATA, Maho (maho@FreeBSD.org) From owner-freebsd-openoffice@FreeBSD.ORG Mon Mar 13 09:00:47 2006 Return-Path: X-Original-To: openoffice@freebsd.org Delivered-To: freebsd-openoffice@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2432B16A423; Mon, 13 Mar 2006 09:00:47 +0000 (UTC) (envelope-from past@ebs.gr) Received: from fly.ebs.gr (fly.ebs.gr [83.171.239.113]) by mx1.FreeBSD.org (Postfix) with ESMTP id B2E0C43D53; Mon, 13 Mar 2006 09:00:44 +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 k2D90WUg006659; Mon, 13 Mar 2006 11:00:32 +0200 (EET) (envelope-from past@ebs.gr) Received: from [10.1.1.157] (pc157.ebs.gr [10.1.1.157]) by ebs.gr (8.13.3/8.13.3) with ESMTP id k2D90UHH031531; Mon, 13 Mar 2006 11:00:31 +0200 (EET) (envelope-from past@ebs.gr) Message-ID: <441534AA.1080304@ebs.gr> Date: Mon, 13 Mar 2006 11:00:26 +0200 From: Panagiotis Astithas Organization: EBS Ltd. User-Agent: Thunderbird 1.5 (X11/20060203) MIME-Version: 1.0 To: NAKATA Maho References: <20060311.104756.104072791.chat95@mac.com> <441471DA.5020400@ebs.gr> <44147685.3010703@chillt.de> <20060313.111427.41636808.chat95@mac.com> In-Reply-To: <20060313.111427.41636808.chat95@mac.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: gerald@pfeifer.com, openoffice@freebsd.org, java@freebsd.org Subject: Re: GCJ 4.1 and OpenOffice.org X-BeenThere: freebsd-openoffice@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting OpenOffice to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Mar 2006 09:00:47 -0000 NAKATA Maho wrote: > In Message-ID: <44147685.3010703@chillt.de> > Bartosz Fabianowski wrote: > > >> --- gcc41/Makefile.orig Sun Mar 12 20:21:09 2006 >> +++ gcc41/Makefile Sun Mar 12 20:21:49 2006 >> @@ -37,6 +37,7 @@ >> USE_BISON= yes >> USE_BZIP2= yes >> USE_GMAKE= yes >> +USE_AUTOTOOLS= libtool:15 >> USE_ICONV= yes >> USE_PERL5_BUILD=yes >> .if defined(WITH_JAVA_AWT) >> >> This change should be enough unless the version of classpath included >> with gcj 4.1 has its own libtool. If so, this will need to be replaced >> by /usr/local/bin/libtool as well. You can probably do this manually by >> symlinking for now. For a later release, it would need to be fixed properly. > > thanks, I updated my ports tarball at good-day. > ftp://ooopackages.good-day.net/pub/OpenOffice.org/FreeBSD/misc/openoffice.org-2.0.060313.tar.bz2 (contains gcc41 as well) Unfortunately it does not fix the issue. It appears that the port uses its own libtool. Cheers, Panagiotis From owner-freebsd-openoffice@FreeBSD.ORG Mon Mar 13 11:05:44 2006 Return-Path: X-Original-To: openoffice@freebsd.org Delivered-To: freebsd-openoffice@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BE8FD16A420 for ; Mon, 13 Mar 2006 11:05:43 +0000 (UTC) (envelope-from owner-bugmaster@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id B7D6743D5F for ; Mon, 13 Mar 2006 11:05:34 +0000 (GMT) (envelope-from owner-bugmaster@freebsd.org) Received: from freefall.freebsd.org (peter@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k2DB5Y8L099303 for ; Mon, 13 Mar 2006 11:05:34 GMT (envelope-from owner-bugmaster@freebsd.org) Received: (from peter@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k2DB5WWT099297 for openoffice@freebsd.org; Mon, 13 Mar 2006 11:05:32 GMT (envelope-from owner-bugmaster@freebsd.org) Date: Mon, 13 Mar 2006 11:05:32 GMT Message-Id: <200603131105.k2DB5WWT099297@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: peter set sender to owner-bugmaster@freebsd.org using -f From: FreeBSD bugmaster To: openoffice@FreeBSD.org Cc: Subject: Current problem reports assigned to you X-BeenThere: freebsd-openoffice@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting OpenOffice to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Mar 2006 11:05:44 -0000 Current FreeBSD problem reports Critical problems Serious problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [2004/11/29] ports/74518 openoffice openoffice-1.1 build failure on 4-stable: o [2005/03/04] ports/78428 openoffice openoffice.org-1.1.4 stops compiling -> d f [2005/04/14] ports/79941 openoffice openoffice.org-1.1 1.1.4_1 binary package o [2005/07/11] ports/83252 openoffice openoffice.org-1.1 1.1.4 build failure: D o [2005/09/20] ports/86383 openoffice Can't compile openoffice.org-1.1 o [2005/11/21] ports/89393 openoffice can't install OpenOffice 2.0.0 from port o [2005/12/10] ports/90184 openoffice Install of OpenOffice 2.0.0 fails o [2005/12/21] ports/90759 openoffice cannot save ANY file with "de-openoffice. o [2006/01/23] ports/92218 openoffice openoffice.org-2.0 build fails with shlib o [2006/02/03] ports/92753 openoffice [PATCH] editors/openoffice.org-2.0 makes o [2006/03/09] ports/94270 openoffice I cant make OpenOffice.org-2.0 11 problems total. Non-critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [2004/05/10] ports/66480 openoffice editors/openoffice.org-1.1 port uses root o [2005/09/16] ports/86206 openoffice editors/openoffice.org-2.0: Unable to bui o [2005/11/12] ports/88898 openoffice Openoffice 2.0 broken save as o [2006/02/02] ports/92737 openoffice editors/openoffice.org-2.0 build failure o [2006/02/19] ports/93559 openoffice OpenOffice.org-2.0.2 compile error o [2006/02/25] ports/93827 openoffice build fails on editors/openoffice.org-2.0 o [2006/03/01] ports/93971 openoffice open-office2.0.2rc2 compile problem o [2006/03/03] ports/94046 openoffice openoffice.org-1.1.5_1 does not build on o [2006/03/06] ports/94126 openoffice Can not build OpenOffice 2.0.2rc2 o [2006/03/07] ports/94172 openoffice editors/openoffice.org-2.0 needs sane sym 10 problems total. From owner-freebsd-openoffice@FreeBSD.ORG Mon Mar 13 14:57:15 2006 Return-Path: X-Original-To: openoffice@freebsd.org Delivered-To: freebsd-openoffice@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4EA7C16A400; Mon, 13 Mar 2006 14:57:12 +0000 (UTC) (envelope-from herve.quiroz@esil.univ-mrs.fr) Received: from arabica.esil.univ-mrs.fr (arabica.esil.univ-mrs.fr [139.124.41.108]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2B54543D46; Mon, 13 Mar 2006 14:57:10 +0000 (GMT) (envelope-from herve.quiroz@esil.univ-mrs.fr) Received: from arabica.esil.univ-mrs.fr (localhost [127.0.0.1]) by arabica.esil.univ-mrs.fr (8.13.4/8.13.4) with ESMTP id k2DEv99P083860; Mon, 13 Mar 2006 15:57:09 +0100 (CET) (envelope-from herve.quiroz@esil.univ-mrs.fr) Received: (from rv@localhost) by arabica.esil.univ-mrs.fr (8.13.4/8.13.4/Submit) id k2DEv8GZ083859; Mon, 13 Mar 2006 15:57:08 +0100 (CET) (envelope-from herve.quiroz@esil.univ-mrs.fr) X-Authentication-Warning: arabica.esil.univ-mrs.fr: rv set sender to herve.quiroz@esil.univ-mrs.fr using -f Date: Mon, 13 Mar 2006 15:57:08 +0100 From: Herve Quiroz To: NAKATA Maho Message-ID: <20060313145708.GA83814@arabica.esil.univ-mrs.fr> Mail-Followup-To: NAKATA Maho , java@freebsd.org, gerald@pfeifer.com, openoffice@freebsd.org References: <20060310.105935.85400368.chat95@mac.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20060310.105935.85400368.chat95@mac.com> User-Agent: Mutt/1.4.2.1i Cc: java@freebsd.org, gerald@pfeifer.com, openoffice@freebsd.org Subject: Re: GCJ 4.1 and OpenOffice.org X-BeenThere: freebsd-openoffice@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting OpenOffice to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Mar 2006 14:57:15 -0000 FWIW, I have been working with Eric Anholt to have Kaffe (java/kaffe) supported by bsd.java.mk. The only thing with miss is a port of a Javadoc tool so that ports documentation may be built without any Sun or IBM JDK. I believe gjdoc (can't remember if this part of classpath or another "free" Java tool) could be used in place of javadoc. I'll have a look at your wrapper and modifications in the next few days. Herve On Fri, Mar 10, 2006 at 10:59:35AM +0900, NAKATA Maho wrote: > I believe gcj is now one of the usable Java implementation, > however there are some small (but tedious) issues must be solved to > check in to FBSD ports cvs repo. > I made some ports or updates of ports so that we can at least compile a > package using Java; OpenOffice.org. I believe with appropreate wrapper, > we can add gnugcj as _JAVA_VENDOR_LIST in /usr/ports/Mk/bsd.java.mk. > then we can use/comple Java applications without bootstrapping java/jdk14 > etc. From owner-freebsd-openoffice@FreeBSD.ORG Mon Mar 13 20:50:51 2006 Return-Path: X-Original-To: openoffice@freebsd.org Delivered-To: freebsd-openoffice@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8FF1F16A449 for ; Mon, 13 Mar 2006 20:50:51 +0000 (UTC) (envelope-from root@mail.bitdefender.com) Received: from mail.bitdefender.com (ns.bitdefender.com [217.156.83.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id 68EF843D91 for ; Mon, 13 Mar 2006 20:49:48 +0000 (GMT) (envelope-from root@mail.bitdefender.com) Received: (qmail 19007 invoked by uid 0); 13 Mar 2006 22:49:45 +0200 Received: (qmail 16818 invoked by uid 1010); 11 Mar 2006 09:00:44 +0200 Received: from mailx.softwin.ro (194.102.234.6) by mail.bitdefender.com with AES256-SHA encrypted SMTP; 11 Mar 2006 09:00:43 +0200 Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by mailx.softwin.ro (8.13.4/8.13.4) with ESMTP id k2B5B9q1022658 for ; Sat, 11 Mar 2006 07:11:11 +0200 Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id CE1C7D0580; Sat, 11 Mar 2006 04:47:49 +0000 (GMT) (envelope-from owner-freebsd-ports-bugs@freebsd.org) Received: from hub.freebsd.org (localhost [127.0.0.1]) by hub.freebsd.org (Postfix) with ESMTP id F419A16A437; Sat, 11 Mar 2006 04:47:48 +0000 (GMT) (envelope-from owner-freebsd-ports-bugs@freebsd.org) X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A86EE16A41F; Sat, 11 Mar 2006 02:28:15 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 512D843D62; Sat, 11 Mar 2006 02:28:15 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k2B2SFWp060569; Sat, 11 Mar 2006 02:28:15 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k2B2SFjI060565; Sat, 11 Mar 2006 02:28:15 GMT (envelope-from gnats) Date: Sat, 11 Mar 2006 02:28:15 GMT From: GNU GNATS Message-Id: <200603110228.k2B2SFjI060565@freefall.freebsd.org> To: gnats@freebsd.org, freebsd-ports-bugs@freebsd.org, openoffice@freebsd.org X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Sender: owner-freebsd-ports-bugs@freebsd.org Errors-To: owner-freebsd-ports-bugs@freebsd.org X-BitDefender-SpamStamp: 1.1.4 049000040111AAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgB X-BitDefender-Scanner: Clean, Agent: BitDefender Qmail 1.6.2 on mail.bitdefender.com X-BitDefender-Spam: No (0) Cc: Subject: Re: ports/94270: I cant make OpenOffice.org-2.0 X-BeenThere: freebsd-openoffice@freebsd.org List-Id: Porting OpenOffice to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Mar 2006 20:50:51 -0000 Synopsis: I cant make OpenOffice.org-2.0 Responsible-Changed-From-To: freebsd-ports-bugs->openoffice Responsible-Changed-By: gnats Responsible-Changed-When: Sat Mar 11 02:28:01 UTC 2006 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=94270 _______________________________________________ freebsd-ports-bugs@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-ports-bugs To unsubscribe, send any mail to "freebsd-ports-bugs-unsubscribe@freebsd.org" -- This message was scanned for spam and viruses by BitDefender. For more information please visit http://www.bitdefender.com/ From owner-freebsd-openoffice@FreeBSD.ORG Mon Mar 13 22:17:38 2006 Return-Path: X-Original-To: openoffice@freebsd.org Delivered-To: freebsd-openoffice@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1856616A420 for ; Mon, 13 Mar 2006 22:17:38 +0000 (UTC) (envelope-from root@mail.bitdefender.com) Received: from mail.bitdefender.com (ns.bitdefender.com [217.156.83.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2AC9943D48 for ; Mon, 13 Mar 2006 22:17:35 +0000 (GMT) (envelope-from root@mail.bitdefender.com) Received: (qmail 28339 invoked by uid 0); 14 Mar 2006 00:17:33 +0200 Received: (qmail 10908 invoked by uid 1010); 11 Mar 2006 13:32:22 +0200 Received: from mx2.freebsd.org (216.136.204.119) by mail.bitdefender.com with SMTP; 11 Mar 2006 13:32:21 +0200 Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id E21AB56C77; Sat, 11 Mar 2006 11:31:41 +0000 (GMT) (envelope-from owner-freebsd-ports@freebsd.org) Received: from hub.freebsd.org (localhost [127.0.0.1]) by hub.freebsd.org (Postfix) with ESMTP id B0AD916A43D; Sat, 11 Mar 2006 11:31:40 +0000 (GMT) (envelope-from owner-freebsd-ports@freebsd.org) X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4975516A41F; Sat, 11 Mar 2006 11:31:02 +0000 (GMT) (envelope-from freebsd@chillt.de) Received: from dd2718.kasserver.com (dd2718.kasserver.com [81.209.184.159]) by mx1.FreeBSD.org (Postfix) with ESMTP id 77B7943D46; Sat, 11 Mar 2006 11:30:53 +0000 (GMT) (envelope-from freebsd@chillt.de) Received: from [127.0.0.1] (dslb-084-061-207-221.pools.arcor-ip.net [84.61.207.221]) by dd2718.kasserver.com (Postfix) with ESMTP id 12A46DE442; Sat, 11 Mar 2006 12:29:15 +0100 (CET) Message-ID: <4412B4EA.5000901@chillt.de> Date: Sat, 11 Mar 2006 12:30:50 +0100 From: Bartosz Fabianowski User-Agent: Thunderbird 1.5 (X11/20060113) MIME-Version: 1.0 To: Guillermo MORENO-SOCIAS References: <20060308175002.GA55759@math.uvsq.fr> <20060308210359.GA57344@math.uvsq.fr> <9b53dd530603081339q37f5737ei61d166f371eea9b3@mail.gmail.com> <20060309102843.GB62168@math.uvsq.fr> <9b53dd530603090249k5e32c5d7xa311e0390b45ea0f@mail.gmail.com> <20060311100517.GB623@math.uvsq.fr> In-Reply-To: <20060311100517.GB623@math.uvsq.fr> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Sender: owner-freebsd-ports@freebsd.org Errors-To: owner-freebsd-ports@freebsd.org X-BitDefender-SpamStamp: 1.1.4 049000040111AAAAAAEAAAAAAgAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgB X-BitDefender-Scanner: Clean, Agent: BitDefender Qmail 1.6.2 on mail.bitdefender.com X-BitDefender-Spam: No (0) Cc: freebsd-ports@freebsd.org, openoffice@freebsd.org Subject: Re: editors/openoffice-2.0 X-BeenThere: freebsd-openoffice@freebsd.org List-Id: Porting OpenOffice to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Mar 2006 22:17:38 -0000 > It seems that it should work with jdk14 patchlevel 7 but I hesitate > to downgrade my jdk14 patchlevel 8 (besides, I do not know how to > proceed). Are you actually positive you're running jdk-1.4.2p8_3? The compile date of your jdk14 port certainly seems to indicate you should have port revision 3. But maybe you forgot to cvsup before compiling that? The problem you are experiencing was fixed when portrevision on jdk14 got bumped from 2 to 3. Please double-check you have the newest revision of the JDK installed. - Bartosz _______________________________________________ freebsd-ports@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to "freebsd-ports-unsubscribe@freebsd.org" -- This message was scanned for spam and viruses by BitDefender. For more information please visit http://www.bitdefender.com/ From owner-freebsd-openoffice@FreeBSD.ORG Mon Mar 13 22:17:41 2006 Return-Path: X-Original-To: openoffice@freebsd.org Delivered-To: freebsd-openoffice@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3523816A420 for ; Mon, 13 Mar 2006 22:17:41 +0000 (UTC) (envelope-from root@mail.bitdefender.com) Received: from mail.bitdefender.com (ns.bitdefender.com [217.156.83.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id E168F43D45 for ; Mon, 13 Mar 2006 22:17:38 +0000 (GMT) (envelope-from root@mail.bitdefender.com) Received: (qmail 28407 invoked by uid 0); 14 Mar 2006 00:17:35 +0200 Received: (qmail 11130 invoked by uid 1010); 11 Mar 2006 13:32:23 +0200 Received: from mx2.freebsd.org (216.136.204.119) by mail.bitdefender.com with SMTP; 11 Mar 2006 13:32:21 +0200 Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id 0DEDA56F32; Sat, 11 Mar 2006 11:31:42 +0000 (GMT) (envelope-from owner-freebsd-ports@freebsd.org) Received: from hub.freebsd.org (localhost [127.0.0.1]) by hub.freebsd.org (Postfix) with ESMTP id C89CA16A441; Sat, 11 Mar 2006 11:31:40 +0000 (GMT) (envelope-from owner-freebsd-ports@freebsd.org) X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4975516A41F; Sat, 11 Mar 2006 11:31:02 +0000 (GMT) (envelope-from freebsd@chillt.de) Received: from dd2718.kasserver.com (dd2718.kasserver.com [81.209.184.159]) by mx1.FreeBSD.org (Postfix) with ESMTP id 77B7943D46; Sat, 11 Mar 2006 11:30:53 +0000 (GMT) (envelope-from freebsd@chillt.de) Received: from [127.0.0.1] (dslb-084-061-207-221.pools.arcor-ip.net [84.61.207.221]) by dd2718.kasserver.com (Postfix) with ESMTP id 12A46DE442; Sat, 11 Mar 2006 12:29:15 +0100 (CET) Message-ID: <4412B4EA.5000901@chillt.de> Date: Sat, 11 Mar 2006 12:30:50 +0100 From: Bartosz Fabianowski User-Agent: Thunderbird 1.5 (X11/20060113) MIME-Version: 1.0 To: Guillermo MORENO-SOCIAS References: <20060308175002.GA55759@math.uvsq.fr> <20060308210359.GA57344@math.uvsq.fr> <9b53dd530603081339q37f5737ei61d166f371eea9b3@mail.gmail.com> <20060309102843.GB62168@math.uvsq.fr> <9b53dd530603090249k5e32c5d7xa311e0390b45ea0f@mail.gmail.com> <20060311100517.GB623@math.uvsq.fr> In-Reply-To: <20060311100517.GB623@math.uvsq.fr> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Sender: owner-freebsd-ports@freebsd.org Errors-To: owner-freebsd-ports@freebsd.org X-BitDefender-SpamStamp: 1.1.4 049000040111AAAAAAEAAAAAAgAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgB X-BitDefender-Scanner: Clean, Agent: BitDefender Qmail 1.6.2 on mail.bitdefender.com X-BitDefender-Spam: No (0) Cc: freebsd-ports@freebsd.org, openoffice@freebsd.org Subject: Re: editors/openoffice-2.0 X-BeenThere: freebsd-openoffice@freebsd.org List-Id: Porting OpenOffice to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Mar 2006 22:17:41 -0000 > It seems that it should work with jdk14 patchlevel 7 but I hesitate > to downgrade my jdk14 patchlevel 8 (besides, I do not know how to > proceed). Are you actually positive you're running jdk-1.4.2p8_3? The compile date of your jdk14 port certainly seems to indicate you should have port revision 3. But maybe you forgot to cvsup before compiling that? The problem you are experiencing was fixed when portrevision on jdk14 got bumped from 2 to 3. Please double-check you have the newest revision of the JDK installed. - Bartosz _______________________________________________ freebsd-ports@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to "freebsd-ports-unsubscribe@freebsd.org" -- This message was scanned for spam and viruses by BitDefender. For more information please visit http://www.bitdefender.com/ From owner-freebsd-openoffice@FreeBSD.ORG Mon Mar 13 22:19:02 2006 Return-Path: X-Original-To: openoffice@freebsd.org Delivered-To: freebsd-openoffice@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5CFD116A41F for ; Mon, 13 Mar 2006 22:19:02 +0000 (UTC) (envelope-from root@mail.bitdefender.com) Received: from mail.bitdefender.com (ns.bitdefender.com [217.156.83.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id F2A2F43D46 for ; Mon, 13 Mar 2006 22:18:53 +0000 (GMT) (envelope-from root@mail.bitdefender.com) Received: (qmail 31544 invoked by uid 0); 14 Mar 2006 00:18:50 +0200 Received: (qmail 21725 invoked by uid 1010); 11 Mar 2006 13:33:27 +0200 Received: from mailx.softwin.ro (194.102.234.6) by mail.bitdefender.com with AES256-SHA encrypted SMTP; 11 Mar 2006 13:33:25 +0200 Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by mailx.softwin.ro (8.13.4/8.13.4) with ESMTP id k2BA7CeC010661 for ; Sat, 11 Mar 2006 12:07:13 +0200 Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id 36A4F57EE3; Sat, 11 Mar 2006 10:05:58 +0000 (GMT) (envelope-from owner-freebsd-ports@freebsd.org) Received: from hub.freebsd.org (localhost [127.0.0.1]) by hub.freebsd.org (Postfix) with ESMTP id 9D90B16A44C; Sat, 11 Mar 2006 10:05:48 +0000 (GMT) (envelope-from owner-freebsd-ports@freebsd.org) X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B6EE516A41F; Sat, 11 Mar 2006 10:05:23 +0000 (GMT) (envelope-from Guillermo.Moreno-Socias@math.uvsq.fr) Received: from soleil.uvsq.fr (soleil.uvsq.fr [193.51.24.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id 09D8B43D4C; Sat, 11 Mar 2006 10:05:22 +0000 (GMT) (envelope-from Guillermo.Moreno-Socias@math.uvsq.fr) Received: from cauchy.math.uvsq.fr (cauchy.math.uvsq.fr [193.51.32.2]) by soleil.uvsq.fr (8.13.4/jtpda-5.4) with ESMTP id k2BA5IU1082296 ; Sat, 11 Mar 2006 11:05:18 +0100 (CET) Received: from fermat.math.uvsq.fr (fermat.math.uvsq.fr [193.51.32.1]) by cauchy.math.uvsq.fr (8.13.3/jtpda-5.4) with ESMTP id k2BA5IkV045247 ; Sat, 11 Mar 2006 11:05:18 +0100 (CET) Received: from fermat.math.uvsq.fr (localhost [127.0.0.1]) by fermat.math.uvsq.fr (8.13.3/jtpda-5.4) with ESMTP id k2BA5I0v000769 ; Sat, 11 Mar 2006 11:05:18 +0100 (CET) Received: (from moreno@localhost) by fermat.math.uvsq.fr (8.13.3/8.13.3/Submit) id k2BA5I5I000768; Sat, 11 Mar 2006 11:05:18 +0100 (CET) (envelope-from moreno) Date: Sat, 11 Mar 2006 11:05:18 +0100 From: Guillermo MORENO-SOCIAS To: John Teague Message-ID: <20060311100517.GB623@math.uvsq.fr> References: <20060308175002.GA55759@math.uvsq.fr> <20060308210359.GA57344@math.uvsq.fr> <9b53dd530603081339q37f5737ei61d166f371eea9b3@mail.gmail.com> <20060309102843.GB62168@math.uvsq.fr> <9b53dd530603090249k5e32c5d7xa311e0390b45ea0f@mail.gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <9b53dd530603090249k5e32c5d7xa311e0390b45ea0f@mail.gmail.com> User-Agent: Mutt/1.4.2.1i X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-1.7.5 (soleil.uvsq.fr [193.51.24.1]); Sat, 11 Mar 2006 11:05:18 +0100 (CET) X-Miltered: at soleil.uvsq.fr with ID 4412A0DE.000 by Joe's j-chkmail (http://j-chkmail.ensmp.fr)! X-Virus-Scanned: ClamAV 0.88/1324/Sat Mar 11 07:47:36 2006 on soleil.uvsq.fr X-Virus-Status: Clean X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Sender: owner-freebsd-ports@freebsd.org Errors-To: owner-freebsd-ports@freebsd.org X-BitDefender-SpamStamp: 1.1.4 049000040111AAAAAAEAAAAAAgAAAABAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAgB X-BitDefender-Scanner: Clean, Agent: BitDefender Qmail 1.6.2 on mail.bitdefender.com X-BitDefender-Spam: No (0) Cc: freebsd-ports@freebsd.org, openoffice@freebsd.org Subject: Re: editors/openoffice-2.0 X-BeenThere: freebsd-openoffice@freebsd.org List-Id: Porting OpenOffice to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Mar 2006 22:19:02 -0000 qmail 21725 invoked by uid 1010); 11 Mar 2006 13:33:27 +0200 Received: from mailx.softwin.ro (194.102.234.6) by mail.bitdefender.com with AES256-SHA encrypted SMTP; 11 Mar 2006 13:33:25 +0200 Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by mailx.softwin.ro (8.13.4/8.13.4) with ESMTP id k2BA7CeC010661 for ; Sat, 11 Mar 2006 12:07:13 +0200 Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id 36A4F57EE3; Sat, 11 Mar 2006 10:05:58 +0000 (GMT) (envelope-from owner-freebsd-ports@freebsd.org) Received: from hub.freebsd.org (localhost [127.0.0.1]) by hub.freebsd.org (Postfix) with ESMTP id 9D90B16A44C; Sat, 11 Mar 2006 10:05:48 +0000 (GMT) (envelope-from owner-freebsd-ports@freebsd.org) X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B6EE516A41F; Sat, 11 Mar 2006 10:05:23 +0000 (GMT) (envelope-from Guillermo.Moreno-Socias@math.uvsq.fr) Received: from soleil.uvsq.fr (soleil.uvsq.fr [193.51.24.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id 09D8B43D4C; Sat, 11 Mar 2006 10:05:22 +0000 (GMT) (envelope-from Guillermo.Moreno-Socias@math.uvsq.fr) Received: from cauchy.math.uvsq.fr (cauchy.math.uvsq.fr [193.51.32.2]) by soleil.uvsq.fr (8.13.4/jtpda-5.4) with ESMTP id k2BA5IU1082296 ; Sat, 11 Mar 2006 11:05:18 +0100 (CET) Received: from fermat.math.uvsq.fr (fermat.math.uvsq.fr [193.51.32.1]) by cauchy.math.uvsq.fr (8.13.3/jtpda-5.4) with ESMTP id k2BA5IkV045247 ; Sat, 11 Mar 2006 11:05:18 +0100 (CET) Received: from fermat.math.uvsq.fr (localhost [127.0.0.1]) by fermat.math.uvsq.fr (8.13.3/jtpda-5.4) with ESMTP id k2BA5I0v000769 ; Sat, 11 Mar 2006 11:05:18 +0100 (CET) Received: (from moreno@localhost) by fermat.math.uvsq.fr (8.13.3/8.13.3/Submit) id k2BA5I5I000768; Sat, 11 Mar 2006 11:05:18 +0100 (CET) (envelope-from moreno) Date: Sat, 11 Mar 2006 11:05:18 +0100 From: Guillermo MORENO-SOCIAS To: John Teague Message-ID: <20060311100517.GB623@math.uvsq.fr> References: <20060308175002.GA55759@math.uvsq.fr> <20060308210359.GA57344@math.uvsq.fr> <9b53dd530603081339q37f5737ei61d166f371eea9b3@mail.gmail.com> <20060309102843.GB62168@math.uvsq.fr> <9b53dd530603090249k5e32c5d7xa311e0390b45ea0f@mail.gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <9b53dd530603090249k5e32c5d7xa311e0390b45ea0f@mail.gmail.com> User-Agent: Mutt/1.4.2.1i X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-1.7.5 (soleil.uvsq.fr [193.51.24.1]); Sat, 11 Mar 2006 11:05:18 +0100 (CET) X-Miltered: at soleil.uvsq.fr with ID 4412A0DE.000 by Joe's j-chkmail (http://j-chkmail.ensmp.fr)! X-Virus-Scanned: ClamAV 0.88/1324/Sat Mar 11 07:47:36 2006 on soleil.uvsq.fr X-Virus-Status: Clean Cc: freebsd-ports@freebsd.org, openoffice@freebsd.org Subject: Re: editors/openoffice-2.0 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: owner-freebsd-ports@freebsd.org Errors-To: owner-freebsd-ports@freebsd.org X-BitDefender-SpamStamp: 1.1.4 049000040111AAAAAAEAAAAAAgAAAABAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAgB X-BitDefender-Scanner: Clean, Agent: BitDefender Qmail 1.6.2 on mail.bitdefender.com X-BitDefender-Spam: No (0) oked by uid 1010); 11 Mar 2006 13:33:27 +0200 Received: from mailx.softwin.ro (194.102.234.6) by mail.bitdefender.com with AES256-SHA encrypted SMTP; 11 Mar 2006 13:33:25 +0200 Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by mailx.softwin.ro (8.13.4/8.13.4) with ESMTP id k2BA7CeC010661 for ; Sat, 11 Mar 2006 12:07:13 +0200 Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id 36A4F57EE3; Sat, 11 Mar 2006 10:05:58 +0000 (GMT) (envelope-from owner-freebsd-ports@freebsd.org) Received: from hub.freebsd.org (localhost [127.0.0.1]) by hub.freebsd.org (Postfix) with ESMTP id 9D90B16A44C; Sat, 11 Mar 2006 10:05:48 +0000 (GMT) (envelope-from owner-freebsd-ports@freebsd.org) X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B6EE516A41F; Sat, 11 Mar 2006 10:05:23 +0000 (GMT) (envelope-from Guillermo.Moreno-Socias@math.uvsq.fr) Received: from soleil.uvsq.fr (soleil.uvsq.fr [193.51.24.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id 09D8B43D4C; Sat, 11 Mar 2006 10:05:22 +0000 (GMT) (envelope-from Guillermo.Moreno-Socias@math.uvsq.fr) Received: from cauchy.math.uvsq.fr (cauchy.math.uvsq.fr [193.51.32.2]) by soleil.uvsq.fr (8.13.4/jtpda-5.4) with ESMTP id k2BA5IU1082296 ; Sat, 11 Mar 2006 11:05:18 +0100 (CET) Received: from fermat.math.uvsq.fr (fermat.math.uvsq.fr [193.51.32.1]) by cauchy.math.uvsq.fr (8.13.3/jtpda-5.4) with ESMTP id k2BA5IkV045247 ; Sat, 11 Mar 2006 11:05:18 +0100 (CET) Received: from fermat.math.uvsq.fr (localhost [127.0.0.1]) by fermat.math.uvsq.fr (8.13.3/jtpda-5.4) with ESMTP id k2BA5I0v000769 ; Sat, 11 Mar 2006 11:05:18 +0100 (CET) Received: (from moreno@localhost) by fermat.math.uvsq.fr (8.13.3/8.13.3/Submit) id k2BA5I5I000768; Sat, 11 Mar 2006 11:05:18 +0100 (CET) (envelope-from moreno) Date: Sat, 11 Mar 2006 11:05:18 +0100 From: Guillermo MORENO-SOCIAS To: John Teague Message-ID: <20060311100517.GB623@math.uvsq.fr> References: <20060308175002.GA55759@math.uvsq.fr> <20060308210359.GA57344@math.uvsq.fr> <9b53dd530603081339q37f5737ei61d166f371eea9b3@mail.gmail.com> <20060309102843.GB62168@math.uvsq.fr> <9b53dd530603090249k5e32c5d7xa311e0390b45ea0f@mail.gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <9b53dd530603090249k5e32c5d7xa311e0390b45ea0f@mail.gmail.com> User-Agent: Mutt/1.4.2.1i X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-1.7.5 (soleil.uvsq.fr [193.51.24.1]); Sat, 11 Mar 2006 11:05:18 +0100 (CET) X-Miltered: at soleil.uvsq.fr with ID 4412A0DE.000 by Joe's j-chkmail (http://j-chkmail.ensmp.fr)! X-Virus-Scanned: ClamAV 0.88/1324/Sat Mar 11 07:47:36 2006 on soleil.uvsq.fr X-Virus-Status: Clean Cc: freebsd-ports@freebsd.org, openoffice@freebsd.org Subject: Re: editors/openoffice-2.0 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: owner-freebsd-ports@freebsd.org Errors-To: owner-freebsd-ports@freebsd.org X-BitDefender-SpamStamp: 1.1.4 049000040111AAAAAAEAAAAAAgAAAABAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAgB X-BitDefender-Scanner: Clean, Agent: BitDefender Qmail 1.6.2 on mail.bitdefender.com X-BitDefender-Spam: No (0) On Thu, Mar 09, 2006 at 05:49:48AM -0500, John Teague wrote: > On 3/9/06, ASSISTANCE INFORMATIQUE wrote: > > On Wed, Mar 08, 2006 at 04:39:37PM -0500, John Teague wrote: > > > On 3/8/06, Guillermo MORENO-SOCIAS > > wrote: > > > > On Wed, Mar 08, 2006 at 11:46:04AM -0800, Jack L. wrote: > > > > > You need to manually download that file because of the licensing. > > > > My question is: In order to install editors/openoffice.org-2.0, > > > > should I install java/linux-sun-jdk14, besides java/jdk14 which is > > > > "the native FreeBSD JDK"? > > > I just installed OOo 2.0 from ports and I did not have to install > > anything > > > other than jdk14. Can you tell us what version of FreeBSD you are using? > > FreeBSD 5.4-RELEASE. FWIW, I had made "portupgrade -aRr". > This looks exactly like a problem reported at > http://www.archivesat.com/Porting_OpenOffice_to_FreeBSD/thread67554.htm where > jdk14 with patch level 8 installed conflicts with the OOo upgrade > script. It looks like the user who reported the problem found a work around. > Hope this helps. Let us know how it turns out. > > John Teague I think that was it! It seems that it should work with jdk14 patchlevel 7 but I hesitate to downgrade my jdk14 patchlevel 8 (besides, I do not know how to proceed). I am afraid I shall have to wait for un upgrade to 5.5-RELEASE and then install the package. Thanks to everybody who answered. Guillermo Moreno-Socias > > > On 3/8/06, Guillermo MORENO-SOCIAS > > > > > > > wrote: > > > > > > > > > > > > I am trying to install editors/openoffice-2.0. > > > > > > > > > > > > "portupgrade -F" gives: > > > > > > > > ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ > > > > > > ---> Fresh installation of editors/openoffice.org-2.0 started at: > > > > Fri, 03 > > > > > > Mar 2006 18:55:46 +0100 > > > > > > ---> Installing 'openoffice.org-2.0.2.rc2' from a port > > > > > > (editors/openoffice.org-2.0) > > > > > > ---> Build of editors/openoffice.org-2.0 started at: Fri, 03 Mar > > 2006 > > > > > > 18:55:47 +0100 > > > > > > ---> Fetching '/usr/ports/editors/openoffice.org-2.0' with make > > > > flags: > > > > > > MINIMAL=yes > > > > > > ===> Fetching and checking checksums for openoffice.org-2.0.2.rc2and > > > > > > dependencies > > > > > > [...] > > > > > > > > ====================================================================== > > > > > > Warning: This JDK may be unstable. You are advised to use the > > native > > > > > > FreeBSD JDK, in ports/java/jdk14. > > > > > > [...] > > > > > > > > ====================================================================== > > > > > > => j2sdk-1_4_2_10-linux-i586.bin doesn't seem to exist in > > > > > > /usr/ports/distfiles/. > > > > > > => Attempting to fetch from > > ftp://ftp.uvsq.fr/pub/FreeBSD/distfiles/. > > > > > > fetch: > > > > > > > > ftp://ftp.uvsq.fr/pub/FreeBSD/distfiles/j2sdk-1_4_2_10-linux-i586.bin: > > > > > > File unavailable (e.g., file not found, no access) > > > > > > => Attempting to fetch from > > ftp://ftp.uvsq.fr/pub/FreeBSD/distfiles/. > > > > > > fetch: > > > > > > > > ftp://ftp.uvsq.fr/pub/FreeBSD/distfiles/j2sdk-1_4_2_10-linux-i586.bin: > > > > > > File unavailable (e.g., file not found, no access) > > > > > > => Couldn't fetch it - please try to retrieve this > > > > > > => port manually into /usr/ports/distfiles/ and try again. > > > > > > *** Error code 1 > > > > > > > > > > > > Stop in /usr/ports/java/linux-sun-jdk14. > > > > > > *** Error code 1 > > > > > > > > > > > > Stop in /usr/ports/editors/openoffice.org-2.0. > > > > > > ** Command failed [exit code 1]: /usr/bin/script -qa > > > > > > /tmp/portupgrade52730.53 make MINIMAL=yes -DBATCH > > -DPACKAGE_BUILDING > > > > > > checksum-recursive > > > > > > ** Fix the problem and try again. > > > > > > ---> Build of editors/openoffice.org-2.0 ended at: Fri, 03 Mar > > 2006 > > > > > > 18:56:30 +0100 (consumed 00:00:43) > > > > > > ---> Fresh installation of editors/openoffice.org-2.0 ended at: > > Fri, > > > > 03 > > > > > > Mar 2006 18:56:30 +0100 (consumed 00:00:43) > > > > > > > > ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ > > > > > > > > > > > > I do have java/jdk14 (/var/db/pkg/jdk-1.4.2p8_3), and even > > > > > > java/jdk15 (/var/db/pkg/jdk-1.5.0p2_6) so I do not install > > > > > > java/linux-sun-jdk14. > > > > > > > > > > > > Then I try "portupgrade -Nv editors/openoffice.org-2.0". I get > > the > > > > > > following error: > > > > > > > > > > > > > > ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ > > > > > > [Updating the pkgdb in /var/db/pkg ... - 497 > > > > packages > > > > > > found (-0 +1) . done] > > > > > > ---> Session started at: Wed, 08 Mar 2006 15:23:14 +0100 > > > > > > ---> Fresh installation of editors/openoffice.org-2.0 started at: > > > > Wed, 08 > > > > > > Mar 2006 15:23:32 +0100 > > > > > > ---> Installing 'openoffice.org-2.0.2.rc2' from a port > > > > > > (editors/openoffice.org-2.0) > > > > > > ---> Build of editors/openoffice.org-2.0 started at: Wed, 08 Mar > > 2006 > > > > > > 15:23:34 +0100 > > > > > > ---> Building '/usr/ports/editors/openoffice.org-2.0' with make > > > > flags: > > > > > > MINIMAL=yes > > > > > > [...] > > > > > > register component 'javaloader.uno.so' in registry > > > > > > '../../unxfbsd.pro/lib/uno_services.rdb' succesful! > > > > > > register component 'javavm.uno.so' in registry > > > > > > '../../unxfbsd.pro/lib/uno_services.rdb' succesful! > > > > > > regcomp -register -br > > ../../unxfbsd.pro/misc/bridgetest/bootstrap.rdb > > > > -r > > > > > > ../../unxfbsd.pro/lib/uno_services.rdb -c \ > > > > > > > > > > > > > > > > > > file:///usr/ports/editors/openoffice.org-2.0/work/OOB680_m2/testtools/source/bridgetest/../../unxfbsd.pro/class/testComponent.jar\ > > > > > > -env:URE_INTERNAL_JAVA_DIR= > > > > > > > > > > > > file:///usr/ports/editors/openoffice.org-2.0/work/OOB680_m2/solver/680/unxfbsd.pro/bin > > > > > > using loader com.sun.star.loader.Java2 > > > > > > > > > > > > An unexpected exception has been detected in native code outside > > the > > > > VM. > > > > > > Unexpected Signal : 11 occurred at PC=0x28D276BC > > > > > > Function=inflate_fast+0x18 > > > > > > Library=/lib/libz.so.2 > > > > > > > > > > > > Current Java thread: > > > > > > at java.util.zip.Inflater.inflateBytes(Native Method) > > > > > > at java.util.zip.Inflater.inflate(Inflater.java:219) > > > > > > - locked <0x2d03e658> (a java.util.zip.Inflater) > > > > > > at java.util.zip.InflaterInputStream.read( > > > > InflaterInputStream.java > > > > > > :128) > > > > > > at java.io.DataInputStream.readFully(DataInputStream.java > > :266) > > > > > > at java.util.jar.JarFile.hasClassPathAttribute(JarFile.java > > > > :423) > > > > > > at > > > > java.util.jar.JavaUtilJarAccessImpl.jarFileHasClassPathAttribute > > > > > > (JavaUtilJarAccessImpl.java:15) > > > > > > at sun.misc.URLClassPath$JarLoader.getClassPath( > > > > URLClassPath.java > > > > > > :803) > > > > > > at sun.misc.URLClassPath.getLoader(URLClassPath.java:289) > > > > > > - locked <0x2d038868> (a sun.misc.URLClassPath) > > > > > > at sun.misc.URLClassPath.getResource(URLClassPath.java:156) > > > > > > at java.net.URLClassLoader$1.run(URLClassLoader.java:191) > > > > > > at java.security.AccessController.doPrivileged(Native > > Method) > > > > > > at java.net.URLClassLoader.findClass(URLClassLoader.java > > :187) > > > > > > at java.lang.ClassLoader.loadClass(ClassLoader.java:289) > > > > > > - locked <0x2d0385a8> (a java.net.URLClassLoader) > > > > > > at java.lang.ClassLoader.loadClass(ClassLoader.java:235) > > > > > > > > > > > > Dynamic libraries: > > > > > > 0x8048000 /usr/ports/editors/openoffice.org-2.0 > > > > > > /work/OOB680_m2/solver/680/unxfbsd.pro/bin/regcomp.bin > > > > > > 0x28092000 /usr/ports/editors/openoffice.org-2.0 > > > > > > /work/OOB680_m2/solver/680/unxfbsd.pro/lib/libuno_sal.so.3 > > > > > > 0x2823e000 /usr/ports/editors/openoffice.org-2.0 > > > > > > /work/OOB680_m2/solver/680/unxfbsd.pro/lib/libuno_cppu.so.3 > > > > > > 0x28272000 /usr/ports/editors/openoffice.org-2.0 > > > > > > > > /work/OOB680_m2/solver/680/unxfbsd.pro/lib/libuno_cppuhelpergcc3.so.3 > > > > > > 0x282d0000 /usr/ports/editors/openoffice.org-2.0 > > > > > > /work/OOB680_m2/solver/680/unxfbsd.pro/lib/libstlport_gcc.so > > > > > > 0x28378000 /lib/libm.so.3 > > > > > > 0x28393000 /usr/lib/libpthread.so.1 > > > > > > 0x283b7000 /lib/libc.so.5 > > > > > > 0x28491000 /usr/ports/editors/openoffice.org-2.0 > > > > > > > > /work/OOB680_m2/solver/680/unxfbsd.pro/lib/libuno_salhelpergcc3.so.3 > > > > > > 0x284a6000 /usr/ports/editors/openoffice.org-2.0 > > > > > > /work/OOB680_m2/solver/680/unxfbsd.pro/lib/servicemgr.uno.so > > > > > > 0x284c4000 /usr/ports/editors/openoffice.org-2.0 > > > > > > /work/OOB680_m2/solver/680/unxfbsd.pro/lib/shlibloader.uno.so > > > > > > 0x284ca000 /usr/ports/editors/openoffice.org-2.0 > > > > > > /work/OOB680_m2/solver/680/unxfbsd.pro/lib/simplereg.uno.so > > > > > > 0x284da000 /usr/ports/editors/openoffice.org-2.0 > > > > > > /work/OOB680_m2/solver/680/unxfbsd.pro/lib/nestedreg.uno.so > > > > > > 0x284e9000 /usr/ports/editors/openoffice.org-2.0 > > > > > > /work/OOB680_m2/solver/680/unxfbsd.pro/lib/typemgr.uno.so > > > > > > 0x2850b000 /usr/ports/editors/openoffice.org-2.0 > > > > > > /work/OOB680_m2/solver/680/unxfbsd.pro/lib/implreg.uno.so > > > > > > 0x2851e000 /usr/ports/editors/openoffice.org-2.0 > > > > > > /work/OOB680_m2/solver/680/unxfbsd.pro/lib/security.uno.so > > > > > > 0x28539000 /usr/ports/editors/openoffice.org-2.0 > > > > > > /work/OOB680_m2/solver/680/unxfbsd.pro/lib/libreg.so.3 > > > > > > 0x28556000 /usr/ports/editors/openoffice.org-2.0 > > > > > > /work/OOB680_m2/solver/680/unxfbsd.pro/lib/libstore.so.3 > > > > > > 0x28b5a000 /usr/ports/editors/openoffice.org-2.0 > > > > > > /work/OOB680_m2/solver/680/unxfbsd.pro/lib/regtypeprov.uno.so > > > > > > 0x28b9f000 /usr/ports/editors/openoffice.org-2.0 > > > > > > /work/OOB680_m2/solver/680/unxfbsd.pro/lib/javaloader.uno.so > > > > > > 0x28ba6000 /usr/ports/editors/openoffice.org-2.0 > > > > > > /work/OOB680_m2/solver/680/unxfbsd.pro/lib/libjvmaccessgcc3.so.3 > > > > > > 0x28bba000 /usr/ports/editors/openoffice.org-2.0 > > > > > > /work/OOB680_m2/solver/680/unxfbsd.pro/lib/javavm.uno.so > > > > > > 0x28bd4000 /usr/ports/editors/openoffice.org-2.0 > > > > > > /work/OOB680_m2/solver/680/unxfbsd.pro/lib/libjvmfwk.so.3 > > > > > > 0x28bef000 /usr/ports/editors/openoffice.org-2.0 > > > > > > /work/OOB680_m2/solver/680/unxfbsd.pro/lib/libxml2.so.2.6.17 > > > > > > 0x28d22000 /lib/libz.so.2 > > > > > > 0x28d32000 /usr/ports/editors/openoffice.org-2.0 > > > > > > /work/OOB680_m2/solver/680/unxfbsd.pro/lib/sunjavaplugin.so > > > > > > 0x28d44000 /usr/local/jdk1.4.2/jre/lib/i386/client/libjvm.so > > > > > > 0x29177000 /usr/lib/libstdc++.so.4 > > > > > > > > > > > > 0x29249000 /usr/local/jdk1.4.2/jre/lib/i386/native_threads/libhpi.so > > > > > > 0x29257000 /usr/local/jdk1.4.2/jre/lib/i386/libverify.so > > > > > > 0x2926c000 /usr/local/jdk1.4.2/jre/lib/i386/libjava.so > > > > > > 0x2928a000 /usr/local/jdk1.4.2/jre/lib/i386/libzip.so > > > > > > 0x350a9000 /usr/ports/editors/openoffice.org-2.0 > > > > > > /work/OOB680_m2/solver/680/unxfbsd.pro/lib/uriproc.uno.so > > > > > > 0x2805b000 /usr/libexec/ld-elf.so.1 > > > > > > > > > > > > Heap at VM Abort: > > > > > > Heap > > > > > > def new generation total 576K, used 122K [0x2d020000, > > 0x2d0c0000, > > > > > > 0x2d500000) > > > > > > eden space 512K, 24% used [0x2d020000, 0x2d03ebd0, 0x2d0a0000) > > > > > > from space 64K, 0% used [0x2d0a0000, 0x2d0a0000, 0x2d0b0000) > > > > > > to space 64K, 0% used [0x2d0b0000, 0x2d0b0000, 0x2d0c0000) > > > > > > tenured generation total 1408K, used 0K [0x2d500000, 0x2d660000, > > > > > > 0x31020000) > > > > > > the space 1408K, 0% used [0x2d500000, 0x2d500000, 0x2d500200, > > > > > > 0x2d660000) > > > > > > compacting perm gen total 4096K, used 895K [0x31020000, > > 0x31420000, > > > > > > 0x35020000) > > > > > > the space 4096K, 21% used [0x31020000, 0x310ffdc0, 0x310ffe00, > > > > > > 0x31420000) > > > > > > > > > > > > Local Time = Wed Mar 8 17:44:04 2006 > > > > > > Elapsed Time = 0 > > > > > > # > > > > > > # The exception above was detected in native code outside the VM > > > > > > # > > > > > > # Java VM: Java HotSpot(TM) Client VM ( > > > > 1.4.2-p8-root_17_feb_2006_19_46mixed mode) > > > > > > # > > > > > > # An error report file has been saved as hs_err_pid21451.log. > > > > > > # Please refer to the file for further information. > > > > > > # > > > > > > Abort (core dumped) > > > > > > dmake: Error code 134, while making > > > > > > '../../unxfbsd.pro/lib/uno_services.rdb' > > > > > > dmake: '../../unxfbsd.pro/lib/uno_services.rdb' removed. > > > > > > '---* tg_merge.mk *---' > > > > > > > > > > > > ERROR: Error 65280 occurred while making > > > > > > /usr/ports/editors/openoffice.org-2.0 > > > > > > /work/OOB680_m2/testtools/source/bridgetest > > > > > > dmake: Error code 1, while making 'build_instsetoo_native' > > > > > > '---* *---' > > > > > > *** Error code 255 > > > > > > > > > > > > Stop in /usr/ports/editors/openoffice.org-2.0. > > > > > > ** Command failed [exit code 1]: /usr/bin/script -qa > > > > > > /tmp/portupgrade68732.0 make MINIMAL=yes > > > > > > ** Fix the problem and try again. > > > > > > ---> Build of editors/openoffice.org-2.0 ended at: Wed, 08 Mar > > 2006 > > > > > > 17:44:17 +0100 (consumed 02:20:42) > > > > > > ---> Fresh installation of editors/openoffice.org-2.0 ended at: > > Wed, > > > > 08 > > > > > > Mar 2006 17:44:17 +0100 (consumed 02:20:44) > > > > > > ---> Listing the results (+:done / -:ignored / *:skipped / > > !:failed) > > > > > > ! editors/openoffice.org-2.0 (missing header) > > > > > > ---> Packages processed: 0 done, 0 ignored, 0 skipped and 1 > > failed > > > > > > ---> Saving the results to '/tmp/portupgrade.log' > > > > > > ---> Session ended at: Wed, 08 Mar 2006 17:44:17 +0100 (consumed > > > > > > 02:21:02) > > > > > > > > ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ > > > > > > > > > > > > Thanks for your help. _______________________________________________ freebsd-ports@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to "freebsd-ports-unsubscribe@freebsd.org" -- This message was scanned for spam and viruses by BitDefender. For more information please visit http://www.bitdefender.com/ From owner-freebsd-openoffice@FreeBSD.ORG Mon Mar 13 22:19:04 2006 Return-Path: X-Original-To: openoffice@freebsd.org Delivered-To: freebsd-openoffice@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1D5A816A41F for ; Mon, 13 Mar 2006 22:19:04 +0000 (UTC) (envelope-from root@mail.bitdefender.com) Received: from mail.bitdefender.com (ns.bitdefender.com [217.156.83.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id 01AFB43D58 for ; Mon, 13 Mar 2006 22:18:55 +0000 (GMT) (envelope-from root@mail.bitdefender.com) Received: (qmail 31594 invoked by uid 0); 14 Mar 2006 00:18:52 +0200 Received: (qmail 22084 invoked by uid 1010); 11 Mar 2006 13:33:29 +0200 Received: from mailx.softwin.ro (194.102.234.6) by mail.bitdefender.com with AES256-SHA encrypted SMTP; 11 Mar 2006 13:33:28 +0200 Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by mailx.softwin.ro (8.13.4/8.13.4) with ESMTP id k2BA7EKJ010664 for ; Sat, 11 Mar 2006 12:07:14 +0200 Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id CAF8E57FE9; Sat, 11 Mar 2006 10:05:58 +0000 (GMT) (envelope-from owner-freebsd-ports@freebsd.org) Received: from hub.freebsd.org (localhost [127.0.0.1]) by hub.freebsd.org (Postfix) with ESMTP id B7CF616A451; Sat, 11 Mar 2006 10:05:48 +0000 (GMT) (envelope-from owner-freebsd-ports@freebsd.org) X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B6EE516A41F; Sat, 11 Mar 2006 10:05:23 +0000 (GMT) (envelope-from Guillermo.Moreno-Socias@math.uvsq.fr) Received: from soleil.uvsq.fr (soleil.uvsq.fr [193.51.24.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id 09D8B43D4C; Sat, 11 Mar 2006 10:05:22 +0000 (GMT) (envelope-from Guillermo.Moreno-Socias@math.uvsq.fr) Received: from cauchy.math.uvsq.fr (cauchy.math.uvsq.fr [193.51.32.2]) by soleil.uvsq.fr (8.13.4/jtpda-5.4) with ESMTP id k2BA5IU1082296 ; Sat, 11 Mar 2006 11:05:18 +0100 (CET) Received: from fermat.math.uvsq.fr (fermat.math.uvsq.fr [193.51.32.1]) by cauchy.math.uvsq.fr (8.13.3/jtpda-5.4) with ESMTP id k2BA5IkV045247 ; Sat, 11 Mar 2006 11:05:18 +0100 (CET) Received: from fermat.math.uvsq.fr (localhost [127.0.0.1]) by fermat.math.uvsq.fr (8.13.3/jtpda-5.4) with ESMTP id k2BA5I0v000769 ; Sat, 11 Mar 2006 11:05:18 +0100 (CET) Received: (from moreno@localhost) by fermat.math.uvsq.fr (8.13.3/8.13.3/Submit) id k2BA5I5I000768; Sat, 11 Mar 2006 11:05:18 +0100 (CET) (envelope-from moreno) Date: Sat, 11 Mar 2006 11:05:18 +0100 From: Guillermo MORENO-SOCIAS To: John Teague Message-ID: <20060311100517.GB623@math.uvsq.fr> References: <20060308175002.GA55759@math.uvsq.fr> <20060308210359.GA57344@math.uvsq.fr> <9b53dd530603081339q37f5737ei61d166f371eea9b3@mail.gmail.com> <20060309102843.GB62168@math.uvsq.fr> <9b53dd530603090249k5e32c5d7xa311e0390b45ea0f@mail.gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <9b53dd530603090249k5e32c5d7xa311e0390b45ea0f@mail.gmail.com> User-Agent: Mutt/1.4.2.1i X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-1.7.5 (soleil.uvsq.fr [193.51.24.1]); Sat, 11 Mar 2006 11:05:18 +0100 (CET) X-Miltered: at soleil.uvsq.fr with ID 4412A0DE.000 by Joe's j-chkmail (http://j-chkmail.ensmp.fr)! X-Virus-Scanned: ClamAV 0.88/1324/Sat Mar 11 07:47:36 2006 on soleil.uvsq.fr X-Virus-Status: Clean X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Sender: owner-freebsd-ports@freebsd.org Errors-To: owner-freebsd-ports@freebsd.org X-BitDefender-SpamStamp: 1.1.4 049000040111AAAAAAEAAAAAAgAAAABAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAgB X-BitDefender-Scanner: Clean, Agent: BitDefender Qmail 1.6.2 on mail.bitdefender.com X-BitDefender-Spam: No (0) Cc: freebsd-ports@freebsd.org, openoffice@freebsd.org Subject: Re: editors/openoffice-2.0 X-BeenThere: freebsd-openoffice@freebsd.org List-Id: Porting OpenOffice to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Mar 2006 22:19:04 -0000 qmail 22084 invoked by uid 1010); 11 Mar 2006 13:33:29 +0200 Received: from mailx.softwin.ro (194.102.234.6) by mail.bitdefender.com with AES256-SHA encrypted SMTP; 11 Mar 2006 13:33:28 +0200 Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by mailx.softwin.ro (8.13.4/8.13.4) with ESMTP id k2BA7EKJ010664 for ; Sat, 11 Mar 2006 12:07:14 +0200 Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id CAF8E57FE9; Sat, 11 Mar 2006 10:05:58 +0000 (GMT) (envelope-from owner-freebsd-ports@freebsd.org) Received: from hub.freebsd.org (localhost [127.0.0.1]) by hub.freebsd.org (Postfix) with ESMTP id B7CF616A451; Sat, 11 Mar 2006 10:05:48 +0000 (GMT) (envelope-from owner-freebsd-ports@freebsd.org) X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B6EE516A41F; Sat, 11 Mar 2006 10:05:23 +0000 (GMT) (envelope-from Guillermo.Moreno-Socias@math.uvsq.fr) Received: from soleil.uvsq.fr (soleil.uvsq.fr [193.51.24.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id 09D8B43D4C; Sat, 11 Mar 2006 10:05:22 +0000 (GMT) (envelope-from Guillermo.Moreno-Socias@math.uvsq.fr) Received: from cauchy.math.uvsq.fr (cauchy.math.uvsq.fr [193.51.32.2]) by soleil.uvsq.fr (8.13.4/jtpda-5.4) with ESMTP id k2BA5IU1082296 ; Sat, 11 Mar 2006 11:05:18 +0100 (CET) Received: from fermat.math.uvsq.fr (fermat.math.uvsq.fr [193.51.32.1]) by cauchy.math.uvsq.fr (8.13.3/jtpda-5.4) with ESMTP id k2BA5IkV045247 ; Sat, 11 Mar 2006 11:05:18 +0100 (CET) Received: from fermat.math.uvsq.fr (localhost [127.0.0.1]) by fermat.math.uvsq.fr (8.13.3/jtpda-5.4) with ESMTP id k2BA5I0v000769 ; Sat, 11 Mar 2006 11:05:18 +0100 (CET) Received: (from moreno@localhost) by fermat.math.uvsq.fr (8.13.3/8.13.3/Submit) id k2BA5I5I000768; Sat, 11 Mar 2006 11:05:18 +0100 (CET) (envelope-from moreno) Date: Sat, 11 Mar 2006 11:05:18 +0100 From: Guillermo MORENO-SOCIAS To: John Teague Message-ID: <20060311100517.GB623@math.uvsq.fr> References: <20060308175002.GA55759@math.uvsq.fr> <20060308210359.GA57344@math.uvsq.fr> <9b53dd530603081339q37f5737ei61d166f371eea9b3@mail.gmail.com> <20060309102843.GB62168@math.uvsq.fr> <9b53dd530603090249k5e32c5d7xa311e0390b45ea0f@mail.gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <9b53dd530603090249k5e32c5d7xa311e0390b45ea0f@mail.gmail.com> User-Agent: Mutt/1.4.2.1i X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-1.7.5 (soleil.uvsq.fr [193.51.24.1]); Sat, 11 Mar 2006 11:05:18 +0100 (CET) X-Miltered: at soleil.uvsq.fr with ID 4412A0DE.000 by Joe's j-chkmail (http://j-chkmail.ensmp.fr)! X-Virus-Scanned: ClamAV 0.88/1324/Sat Mar 11 07:47:36 2006 on soleil.uvsq.fr X-Virus-Status: Clean Cc: freebsd-ports@freebsd.org, openoffice@freebsd.org Subject: Re: editors/openoffice-2.0 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: owner-freebsd-ports@freebsd.org Errors-To: owner-freebsd-ports@freebsd.org X-BitDefender-SpamStamp: 1.1.4 049000040111AAAAAAEAAAAAAgAAAABAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAgB X-BitDefender-Scanner: Clean, Agent: BitDefender Qmail 1.6.2 on mail.bitdefender.com X-BitDefender-Spam: No (0) invoked by uid 1010); 11 Mar 2006 13:33:29 +0200 Received: from mailx.softwin.ro (194.102.234.6) by mail.bitdefender.com with AES256-SHA encrypted SMTP; 11 Mar 2006 13:33:28 +0200 Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by mailx.softwin.ro (8.13.4/8.13.4) with ESMTP id k2BA7EKJ010664 for ; Sat, 11 Mar 2006 12:07:14 +0200 Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id CAF8E57FE9; Sat, 11 Mar 2006 10:05:58 +0000 (GMT) (envelope-from owner-freebsd-ports@freebsd.org) Received: from hub.freebsd.org (localhost [127.0.0.1]) by hub.freebsd.org (Postfix) with ESMTP id B7CF616A451; Sat, 11 Mar 2006 10:05:48 +0000 (GMT) (envelope-from owner-freebsd-ports@freebsd.org) X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B6EE516A41F; Sat, 11 Mar 2006 10:05:23 +0000 (GMT) (envelope-from Guillermo.Moreno-Socias@math.uvsq.fr) Received: from soleil.uvsq.fr (soleil.uvsq.fr [193.51.24.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id 09D8B43D4C; Sat, 11 Mar 2006 10:05:22 +0000 (GMT) (envelope-from Guillermo.Moreno-Socias@math.uvsq.fr) Received: from cauchy.math.uvsq.fr (cauchy.math.uvsq.fr [193.51.32.2]) by soleil.uvsq.fr (8.13.4/jtpda-5.4) with ESMTP id k2BA5IU1082296 ; Sat, 11 Mar 2006 11:05:18 +0100 (CET) Received: from fermat.math.uvsq.fr (fermat.math.uvsq.fr [193.51.32.1]) by cauchy.math.uvsq.fr (8.13.3/jtpda-5.4) with ESMTP id k2BA5IkV045247 ; Sat, 11 Mar 2006 11:05:18 +0100 (CET) Received: from fermat.math.uvsq.fr (localhost [127.0.0.1]) by fermat.math.uvsq.fr (8.13.3/jtpda-5.4) with ESMTP id k2BA5I0v000769 ; Sat, 11 Mar 2006 11:05:18 +0100 (CET) Received: (from moreno@localhost) by fermat.math.uvsq.fr (8.13.3/8.13.3/Submit) id k2BA5I5I000768; Sat, 11 Mar 2006 11:05:18 +0100 (CET) (envelope-from moreno) Date: Sat, 11 Mar 2006 11:05:18 +0100 From: Guillermo MORENO-SOCIAS To: John Teague Message-ID: <20060311100517.GB623@math.uvsq.fr> References: <20060308175002.GA55759@math.uvsq.fr> <20060308210359.GA57344@math.uvsq.fr> <9b53dd530603081339q37f5737ei61d166f371eea9b3@mail.gmail.com> <20060309102843.GB62168@math.uvsq.fr> <9b53dd530603090249k5e32c5d7xa311e0390b45ea0f@mail.gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <9b53dd530603090249k5e32c5d7xa311e0390b45ea0f@mail.gmail.com> User-Agent: Mutt/1.4.2.1i X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-1.7.5 (soleil.uvsq.fr [193.51.24.1]); Sat, 11 Mar 2006 11:05:18 +0100 (CET) X-Miltered: at soleil.uvsq.fr with ID 4412A0DE.000 by Joe's j-chkmail (http://j-chkmail.ensmp.fr)! X-Virus-Scanned: ClamAV 0.88/1324/Sat Mar 11 07:47:36 2006 on soleil.uvsq.fr X-Virus-Status: Clean Cc: freebsd-ports@freebsd.org, openoffice@freebsd.org Subject: Re: editors/openoffice-2.0 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: owner-freebsd-ports@freebsd.org Errors-To: owner-freebsd-ports@freebsd.org X-BitDefender-SpamStamp: 1.1.4 049000040111AAAAAAEAAAAAAgAAAABAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAgB X-BitDefender-Scanner: Clean, Agent: BitDefender Qmail 1.6.2 on mail.bitdefender.com X-BitDefender-Spam: No (0) On Thu, Mar 09, 2006 at 05:49:48AM -0500, John Teague wrote: > On 3/9/06, ASSISTANCE INFORMATIQUE wrote: > > On Wed, Mar 08, 2006 at 04:39:37PM -0500, John Teague wrote: > > > On 3/8/06, Guillermo MORENO-SOCIAS > > wrote: > > > > On Wed, Mar 08, 2006 at 11:46:04AM -0800, Jack L. wrote: > > > > > You need to manually download that file because of the licensing. > > > > My question is: In order to install editors/openoffice.org-2.0, > > > > should I install java/linux-sun-jdk14, besides java/jdk14 which is > > > > "the native FreeBSD JDK"? > > > I just installed OOo 2.0 from ports and I did not have to install > > anything > > > other than jdk14. Can you tell us what version of FreeBSD you are using? > > FreeBSD 5.4-RELEASE. FWIW, I had made "portupgrade -aRr". > This looks exactly like a problem reported at > http://www.archivesat.com/Porting_OpenOffice_to_FreeBSD/thread67554.htm where > jdk14 with patch level 8 installed conflicts with the OOo upgrade > script. It looks like the user who reported the problem found a work around. > Hope this helps. Let us know how it turns out. > > John Teague I think that was it! It seems that it should work with jdk14 patchlevel 7 but I hesitate to downgrade my jdk14 patchlevel 8 (besides, I do not know how to proceed). I am afraid I shall have to wait for un upgrade to 5.5-RELEASE and then install the package. Thanks to everybody who answered. Guillermo Moreno-Socias > > > On 3/8/06, Guillermo MORENO-SOCIAS > > > > > > > wrote: > > > > > > > > > > > > I am trying to install editors/openoffice-2.0. > > > > > > > > > > > > "portupgrade -F" gives: > > > > > > > > ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ > > > > > > ---> Fresh installation of editors/openoffice.org-2.0 started at: > > > > Fri, 03 > > > > > > Mar 2006 18:55:46 +0100 > > > > > > ---> Installing 'openoffice.org-2.0.2.rc2' from a port > > > > > > (editors/openoffice.org-2.0) > > > > > > ---> Build of editors/openoffice.org-2.0 started at: Fri, 03 Mar > > 2006 > > > > > > 18:55:47 +0100 > > > > > > ---> Fetching '/usr/ports/editors/openoffice.org-2.0' with make > > > > flags: > > > > > > MINIMAL=yes > > > > > > ===> Fetching and checking checksums for openoffice.org-2.0.2.rc2and > > > > > > dependencies > > > > > > [...] > > > > > > > > ====================================================================== > > > > > > Warning: This JDK may be unstable. You are advised to use the > > native > > > > > > FreeBSD JDK, in ports/java/jdk14. > > > > > > [...] > > > > > > > > ====================================================================== > > > > > > => j2sdk-1_4_2_10-linux-i586.bin doesn't seem to exist in > > > > > > /usr/ports/distfiles/. > > > > > > => Attempting to fetch from > > ftp://ftp.uvsq.fr/pub/FreeBSD/distfiles/. > > > > > > fetch: > > > > > > > > ftp://ftp.uvsq.fr/pub/FreeBSD/distfiles/j2sdk-1_4_2_10-linux-i586.bin: > > > > > > File unavailable (e.g., file not found, no access) > > > > > > => Attempting to fetch from > > ftp://ftp.uvsq.fr/pub/FreeBSD/distfiles/. > > > > > > fetch: > > > > > > > > ftp://ftp.uvsq.fr/pub/FreeBSD/distfiles/j2sdk-1_4_2_10-linux-i586.bin: > > > > > > File unavailable (e.g., file not found, no access) > > > > > > => Couldn't fetch it - please try to retrieve this > > > > > > => port manually into /usr/ports/distfiles/ and try again. > > > > > > *** Error code 1 > > > > > > > > > > > > Stop in /usr/ports/java/linux-sun-jdk14. > > > > > > *** Error code 1 > > > > > > > > > > > > Stop in /usr/ports/editors/openoffice.org-2.0. > > > > > > ** Command failed [exit code 1]: /usr/bin/script -qa > > > > > > /tmp/portupgrade52730.53 make MINIMAL=yes -DBATCH > > -DPACKAGE_BUILDING > > > > > > checksum-recursive > > > > > > ** Fix the problem and try again. > > > > > > ---> Build of editors/openoffice.org-2.0 ended at: Fri, 03 Mar > > 2006 > > > > > > 18:56:30 +0100 (consumed 00:00:43) > > > > > > ---> Fresh installation of editors/openoffice.org-2.0 ended at: > > Fri, > > > > 03 > > > > > > Mar 2006 18:56:30 +0100 (consumed 00:00:43) > > > > > > > > ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ > > > > > > > > > > > > I do have java/jdk14 (/var/db/pkg/jdk-1.4.2p8_3), and even > > > > > > java/jdk15 (/var/db/pkg/jdk-1.5.0p2_6) so I do not install > > > > > > java/linux-sun-jdk14. > > > > > > > > > > > > Then I try "portupgrade -Nv editors/openoffice.org-2.0". I get > > the > > > > > > following error: > > > > > > > > > > > > > > ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ > > > > > > [Updating the pkgdb in /var/db/pkg ... - 497 > > > > packages > > > > > > found (-0 +1) . done] > > > > > > ---> Session started at: Wed, 08 Mar 2006 15:23:14 +0100 > > > > > > ---> Fresh installation of editors/openoffice.org-2.0 started at: > > > > Wed, 08 > > > > > > Mar 2006 15:23:32 +0100 > > > > > > ---> Installing 'openoffice.org-2.0.2.rc2' from a port > > > > > > (editors/openoffice.org-2.0) > > > > > > ---> Build of editors/openoffice.org-2.0 started at: Wed, 08 Mar > > 2006 > > > > > > 15:23:34 +0100 > > > > > > ---> Building '/usr/ports/editors/openoffice.org-2.0' with make > > > > flags: > > > > > > MINIMAL=yes > > > > > > [...] > > > > > > register component 'javaloader.uno.so' in registry > > > > > > '../../unxfbsd.pro/lib/uno_services.rdb' succesful! > > > > > > register component 'javavm.uno.so' in registry > > > > > > '../../unxfbsd.pro/lib/uno_services.rdb' succesful! > > > > > > regcomp -register -br > > ../../unxfbsd.pro/misc/bridgetest/bootstrap.rdb > > > > -r > > > > > > ../../unxfbsd.pro/lib/uno_services.rdb -c \ > > > > > > > > > > > > > > > > > > file:///usr/ports/editors/openoffice.org-2.0/work/OOB680_m2/testtools/source/bridgetest/../../unxfbsd.pro/class/testComponent.jar\ > > > > > > -env:URE_INTERNAL_JAVA_DIR= > > > > > > > > > > > > file:///usr/ports/editors/openoffice.org-2.0/work/OOB680_m2/solver/680/unxfbsd.pro/bin > > > > > > using loader com.sun.star.loader.Java2 > > > > > > > > > > > > An unexpected exception has been detected in native code outside > > the > > > > VM. > > > > > > Unexpected Signal : 11 occurred at PC=0x28D276BC > > > > > > Function=inflate_fast+0x18 > > > > > > Library=/lib/libz.so.2 > > > > > > > > > > > > Current Java thread: > > > > > > at java.util.zip.Inflater.inflateBytes(Native Method) > > > > > > at java.util.zip.Inflater.inflate(Inflater.java:219) > > > > > > - locked <0x2d03e658> (a java.util.zip.Inflater) > > > > > > at java.util.zip.InflaterInputStream.read( > > > > InflaterInputStream.java > > > > > > :128) > > > > > > at java.io.DataInputStream.readFully(DataInputStream.java > > :266) > > > > > > at java.util.jar.JarFile.hasClassPathAttribute(JarFile.java > > > > :423) > > > > > > at > > > > java.util.jar.JavaUtilJarAccessImpl.jarFileHasClassPathAttribute > > > > > > (JavaUtilJarAccessImpl.java:15) > > > > > > at sun.misc.URLClassPath$JarLoader.getClassPath( > > > > URLClassPath.java > > > > > > :803) > > > > > > at sun.misc.URLClassPath.getLoader(URLClassPath.java:289) > > > > > > - locked <0x2d038868> (a sun.misc.URLClassPath) > > > > > > at sun.misc.URLClassPath.getResource(URLClassPath.java:156) > > > > > > at java.net.URLClassLoader$1.run(URLClassLoader.java:191) > > > > > > at java.security.AccessController.doPrivileged(Native > > Method) > > > > > > at java.net.URLClassLoader.findClass(URLClassLoader.java > > :187) > > > > > > at java.lang.ClassLoader.loadClass(ClassLoader.java:289) > > > > > > - locked <0x2d0385a8> (a java.net.URLClassLoader) > > > > > > at java.lang.ClassLoader.loadClass(ClassLoader.java:235) > > > > > > > > > > > > Dynamic libraries: > > > > > > 0x8048000 /usr/ports/editors/openoffice.org-2.0 > > > > > > /work/OOB680_m2/solver/680/unxfbsd.pro/bin/regcomp.bin > > > > > > 0x28092000 /usr/ports/editors/openoffice.org-2.0 > > > > > > /work/OOB680_m2/solver/680/unxfbsd.pro/lib/libuno_sal.so.3 > > > > > > 0x2823e000 /usr/ports/editors/openoffice.org-2.0 > > > > > > /work/OOB680_m2/solver/680/unxfbsd.pro/lib/libuno_cppu.so.3 > > > > > > 0x28272000 /usr/ports/editors/openoffice.org-2.0 > > > > > > > > /work/OOB680_m2/solver/680/unxfbsd.pro/lib/libuno_cppuhelpergcc3.so.3 > > > > > > 0x282d0000 /usr/ports/editors/openoffice.org-2.0 > > > > > > /work/OOB680_m2/solver/680/unxfbsd.pro/lib/libstlport_gcc.so > > > > > > 0x28378000 /lib/libm.so.3 > > > > > > 0x28393000 /usr/lib/libpthread.so.1 > > > > > > 0x283b7000 /lib/libc.so.5 > > > > > > 0x28491000 /usr/ports/editors/openoffice.org-2.0 > > > > > > > > /work/OOB680_m2/solver/680/unxfbsd.pro/lib/libuno_salhelpergcc3.so.3 > > > > > > 0x284a6000 /usr/ports/editors/openoffice.org-2.0 > > > > > > /work/OOB680_m2/solver/680/unxfbsd.pro/lib/servicemgr.uno.so > > > > > > 0x284c4000 /usr/ports/editors/openoffice.org-2.0 > > > > > > /work/OOB680_m2/solver/680/unxfbsd.pro/lib/shlibloader.uno.so > > > > > > 0x284ca000 /usr/ports/editors/openoffice.org-2.0 > > > > > > /work/OOB680_m2/solver/680/unxfbsd.pro/lib/simplereg.uno.so > > > > > > 0x284da000 /usr/ports/editors/openoffice.org-2.0 > > > > > > /work/OOB680_m2/solver/680/unxfbsd.pro/lib/nestedreg.uno.so > > > > > > 0x284e9000 /usr/ports/editors/openoffice.org-2.0 > > > > > > /work/OOB680_m2/solver/680/unxfbsd.pro/lib/typemgr.uno.so > > > > > > 0x2850b000 /usr/ports/editors/openoffice.org-2.0 > > > > > > /work/OOB680_m2/solver/680/unxfbsd.pro/lib/implreg.uno.so > > > > > > 0x2851e000 /usr/ports/editors/openoffice.org-2.0 > > > > > > /work/OOB680_m2/solver/680/unxfbsd.pro/lib/security.uno.so > > > > > > 0x28539000 /usr/ports/editors/openoffice.org-2.0 > > > > > > /work/OOB680_m2/solver/680/unxfbsd.pro/lib/libreg.so.3 > > > > > > 0x28556000 /usr/ports/editors/openoffice.org-2.0 > > > > > > /work/OOB680_m2/solver/680/unxfbsd.pro/lib/libstore.so.3 > > > > > > 0x28b5a000 /usr/ports/editors/openoffice.org-2.0 > > > > > > /work/OOB680_m2/solver/680/unxfbsd.pro/lib/regtypeprov.uno.so > > > > > > 0x28b9f000 /usr/ports/editors/openoffice.org-2.0 > > > > > > /work/OOB680_m2/solver/680/unxfbsd.pro/lib/javaloader.uno.so > > > > > > 0x28ba6000 /usr/ports/editors/openoffice.org-2.0 > > > > > > /work/OOB680_m2/solver/680/unxfbsd.pro/lib/libjvmaccessgcc3.so.3 > > > > > > 0x28bba000 /usr/ports/editors/openoffice.org-2.0 > > > > > > /work/OOB680_m2/solver/680/unxfbsd.pro/lib/javavm.uno.so > > > > > > 0x28bd4000 /usr/ports/editors/openoffice.org-2.0 > > > > > > /work/OOB680_m2/solver/680/unxfbsd.pro/lib/libjvmfwk.so.3 > > > > > > 0x28bef000 /usr/ports/editors/openoffice.org-2.0 > > > > > > /work/OOB680_m2/solver/680/unxfbsd.pro/lib/libxml2.so.2.6.17 > > > > > > 0x28d22000 /lib/libz.so.2 > > > > > > 0x28d32000 /usr/ports/editors/openoffice.org-2.0 > > > > > > /work/OOB680_m2/solver/680/unxfbsd.pro/lib/sunjavaplugin.so > > > > > > 0x28d44000 /usr/local/jdk1.4.2/jre/lib/i386/client/libjvm.so > > > > > > 0x29177000 /usr/lib/libstdc++.so.4 > > > > > > > > > > > > 0x29249000 /usr/local/jdk1.4.2/jre/lib/i386/native_threads/libhpi.so > > > > > > 0x29257000 /usr/local/jdk1.4.2/jre/lib/i386/libverify.so > > > > > > 0x2926c000 /usr/local/jdk1.4.2/jre/lib/i386/libjava.so > > > > > > 0x2928a000 /usr/local/jdk1.4.2/jre/lib/i386/libzip.so > > > > > > 0x350a9000 /usr/ports/editors/openoffice.org-2.0 > > > > > > /work/OOB680_m2/solver/680/unxfbsd.pro/lib/uriproc.uno.so > > > > > > 0x2805b000 /usr/libexec/ld-elf.so.1 > > > > > > > > > > > > Heap at VM Abort: > > > > > > Heap > > > > > > def new generation total 576K, used 122K [0x2d020000, > > 0x2d0c0000, > > > > > > 0x2d500000) > > > > > > eden space 512K, 24% used [0x2d020000, 0x2d03ebd0, 0x2d0a0000) > > > > > > from space 64K, 0% used [0x2d0a0000, 0x2d0a0000, 0x2d0b0000) > > > > > > to space 64K, 0% used [0x2d0b0000, 0x2d0b0000, 0x2d0c0000) > > > > > > tenured generation total 1408K, used 0K [0x2d500000, 0x2d660000, > > > > > > 0x31020000) > > > > > > the space 1408K, 0% used [0x2d500000, 0x2d500000, 0x2d500200, > > > > > > 0x2d660000) > > > > > > compacting perm gen total 4096K, used 895K [0x31020000, > > 0x31420000, > > > > > > 0x35020000) > > > > > > the space 4096K, 21% used [0x31020000, 0x310ffdc0, 0x310ffe00, > > > > > > 0x31420000) > > > > > > > > > > > > Local Time = Wed Mar 8 17:44:04 2006 > > > > > > Elapsed Time = 0 > > > > > > # > > > > > > # The exception above was detected in native code outside the VM > > > > > > # > > > > > > # Java VM: Java HotSpot(TM) Client VM ( > > > > 1.4.2-p8-root_17_feb_2006_19_46mixed mode) > > > > > > # > > > > > > # An error report file has been saved as hs_err_pid21451.log. > > > > > > # Please refer to the file for further information. > > > > > > # > > > > > > Abort (core dumped) > > > > > > dmake: Error code 134, while making > > > > > > '../../unxfbsd.pro/lib/uno_services.rdb' > > > > > > dmake: '../../unxfbsd.pro/lib/uno_services.rdb' removed. > > > > > > '---* tg_merge.mk *---' > > > > > > > > > > > > ERROR: Error 65280 occurred while making > > > > > > /usr/ports/editors/openoffice.org-2.0 > > > > > > /work/OOB680_m2/testtools/source/bridgetest > > > > > > dmake: Error code 1, while making 'build_instsetoo_native' > > > > > > '---* *---' > > > > > > *** Error code 255 > > > > > > > > > > > > Stop in /usr/ports/editors/openoffice.org-2.0. > > > > > > ** Command failed [exit code 1]: /usr/bin/script -qa > > > > > > /tmp/portupgrade68732.0 make MINIMAL=yes > > > > > > ** Fix the problem and try again. > > > > > > ---> Build of editors/openoffice.org-2.0 ended at: Wed, 08 Mar > > 2006 > > > > > > 17:44:17 +0100 (consumed 02:20:42) > > > > > > ---> Fresh installation of editors/openoffice.org-2.0 ended at: > > Wed, > > > > 08 > > > > > > Mar 2006 17:44:17 +0100 (consumed 02:20:44) > > > > > > ---> Listing the results (+:done / -:ignored / *:skipped / > > !:failed) > > > > > > ! editors/openoffice.org-2.0 (missing header) > > > > > > ---> Packages processed: 0 done, 0 ignored, 0 skipped and 1 > > failed > > > > > > ---> Saving the results to '/tmp/portupgrade.log' > > > > > > ---> Session ended at: Wed, 08 Mar 2006 17:44:17 +0100 (consumed > > > > > > 02:21:02) > > > > > > > > ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ > > > > > > > > > > > > Thanks for your help. _______________________________________________ freebsd-ports@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to "freebsd-ports-unsubscribe@freebsd.org" -- This message was scanned for spam and viruses by BitDefender. For more information please visit http://www.bitdefender.com/ From owner-freebsd-openoffice@FreeBSD.ORG Tue Mar 14 00:37:10 2006 Return-Path: X-Original-To: openoffice@freebsd.org Delivered-To: freebsd-openoffice@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B285616A400; Tue, 14 Mar 2006 00:37:10 +0000 (UTC) (envelope-from chat95@mac.com) Received: from smtpout.mac.com (smtpout.mac.com [17.250.248.72]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2999643D58; Tue, 14 Mar 2006 00:37:10 +0000 (GMT) (envelope-from chat95@mac.com) Received: from mac.com (smtpin01-en2 [10.13.10.146]) by smtpout.mac.com (Xserve/8.12.11/smtpout15/MantshX 4.0) with ESMTP id k2E0b5V8015889; Mon, 13 Mar 2006 16:37:05 -0800 (PST) Received: from localhost ([133.11.172.102]) (authenticated bits=0) by mac.com (Xserve/smtpin01/MantshX 4.0) with ESMTP id k2E0b0iJ013470; Mon, 13 Mar 2006 16:37:04 -0800 (PST) Date: Tue, 14 Mar 2006 09:36:57 +0900 (JST) Message-Id: <20060314.093657.71096041.chat95@mac.com> To: herve.quiroz@esil.univ-mrs.fr From: NAKATA Maho In-Reply-To: <20060313145708.GA83814@arabica.esil.univ-mrs.fr> References: <20060310.105935.85400368.chat95@mac.com> <20060313145708.GA83814@arabica.esil.univ-mrs.fr> Organization: private X-Mailer: Mew version 3.3 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, gerald@pfeifer.com, openoffice@freebsd.org Subject: Re: GCJ 4.1 and OpenOffice.org X-BeenThere: freebsd-openoffice@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting OpenOffice to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Mar 2006 00:37:10 -0000 In Message-ID: <20060313145708.GA83814@arabica.esil.univ-mrs.fr> Herve Quiroz wrote: > FWIW, I have been working with Eric Anholt to have Kaffe (java/kaffe) > supported by bsd.java.mk. The only thing with miss is a port of a > Javadoc tool so that ports documentation may be built without any Sun or > IBM JDK. I believe gjdoc (can't remember if this part of classpath or > another "free" Java tool) could be used in place of javadoc. OOo uses gjdoc so I have to make a port for it; please have a look at: ftp://ooopackages.good-day.net/pub/OpenOffice.org/FreeBSD/misc/openoffice.org-2.0.060314.tar.bz2 > I'll have a look at your wrapper and modifications in the next few days. thanks! -- NAKATA, Maho (maho@FreeBSD.org) From owner-freebsd-openoffice@FreeBSD.ORG Tue Mar 14 18:55:45 2006 Return-Path: X-Original-To: openoffice@hub.freebsd.org Delivered-To: freebsd-openoffice@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 71AD816A400; Tue, 14 Mar 2006 18:55:45 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2C98C43D45; Tue, 14 Mar 2006 18:55:45 +0000 (GMT) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k2EItjpA096050; Tue, 14 Mar 2006 18:55:45 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k2EItjK1096046; Tue, 14 Mar 2006 18:55:45 GMT (envelope-from linimon) Date: Tue, 14 Mar 2006 18:55:45 GMT From: Mark Linimon Message-Id: <200603141855.k2EItjK1096046@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, openoffice@FreeBSD.org Cc: Subject: Re: ports/94449: editors/openoffice.org-2.0: compile error while making 'hsqldb' X-BeenThere: freebsd-openoffice@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting OpenOffice to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Mar 2006 18:55:45 -0000 Synopsis: editors/openoffice.org-2.0: compile error while making 'hsqldb' Responsible-Changed-From-To: freebsd-ports-bugs->openoffice Responsible-Changed-By: linimon Responsible-Changed-When: Tue Mar 14 18:55:23 UTC 2006 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=94449 From owner-freebsd-openoffice@FreeBSD.ORG Wed Mar 15 07:54:33 2006 Return-Path: X-Original-To: openoffice@hub.freebsd.org Delivered-To: freebsd-openoffice@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 477CE16A424; Wed, 15 Mar 2006 07:54:33 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id B29E243D49; Wed, 15 Mar 2006 07:54:32 +0000 (GMT) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k2F7sWf2047320; Wed, 15 Mar 2006 07:54:32 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k2F7sWII047316; Wed, 15 Mar 2006 07:54:32 GMT (envelope-from linimon) Date: Wed, 15 Mar 2006 07:54:32 GMT From: Mark Linimon Message-Id: <200603150754.k2F7sWII047316@freefall.freebsd.org> To: k.yelizarov@ru.faberlic.com, linimon@FreeBSD.org, gnats-admin@FreeBSD.org, openoffice@FreeBSD.org Cc: Subject: Re: ports/94464: Re: ports/93971: open-office2.0.2rc2 compile problem X-BeenThere: freebsd-openoffice@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting OpenOffice to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Mar 2006 07:54:33 -0000 Old Synopsis: Re:%20ports/93971:%20open-office%32.%30.%32rc%32%20compile%20problem New Synopsis: Re: ports/93971: open-office2.0.2rc2 compile problem State-Changed-From-To: open->closed State-Changed-By: linimon State-Changed-When: Wed Mar 15 07:53:16 UTC 2006 State-Changed-Why: Misfiled followup to ports/93971; content migrated. Responsible-Changed-From-To: gnats-admin->openoffice Responsible-Changed-By: linimon Responsible-Changed-When: Wed Mar 15 07:53:16 UTC 2006 Responsible-Changed-Why: http://www.freebsd.org/cgi/query-pr.cgi?pr=94464 From owner-freebsd-openoffice@FreeBSD.ORG Wed Mar 15 07:55:54 2006 Return-Path: X-Original-To: openoffice@hub.freebsd.org Delivered-To: freebsd-openoffice@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D349416A41F; Wed, 15 Mar 2006 07:55:54 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8D36B43D45; Wed, 15 Mar 2006 07:55:54 +0000 (GMT) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k2F7tscL047398; Wed, 15 Mar 2006 07:55:54 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k2F7tscH047394; Wed, 15 Mar 2006 07:55:54 GMT (envelope-from linimon) Date: Wed, 15 Mar 2006 07:55:54 GMT From: Mark Linimon Message-Id: <200603150755.k2F7tscH047394@freefall.freebsd.org> To: linimon@FreeBSD.org, openoffice@FreeBSD.org, closed@FreeBSD.org Cc: Subject: Re: ports/93971: open-office2.0.2rc2 compile problem X-BeenThere: freebsd-openoffice@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting OpenOffice to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Mar 2006 07:55:54 -0000 Synopsis: open-office2.0.2rc2 compile problem Responsible-Changed-From-To: openoffice->closed Responsible-Changed-By: linimon Responsible-Changed-When: Wed Mar 15 07:54:36 UTC 2006 Responsible-Changed-Why: Adding to audit trail from misfiled PR ports/94464: Date: Wed, 15 Mar 2006 10:25:59 +0300 From: Kirill Yelizarov I did a portupgrade on March 14, 2006 and successfully compiled openoffice.org2.0rc2. State can be changed to closed http://www.freebsd.org/cgi/query-pr.cgi?pr=93971 From owner-freebsd-openoffice@FreeBSD.ORG Wed Mar 15 09:20:42 2006 Return-Path: X-Original-To: openoffice@hub.freebsd.org Delivered-To: freebsd-openoffice@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6CEFC16A41F; Wed, 15 Mar 2006 09:20:42 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 58A2943D77; Wed, 15 Mar 2006 09:20:36 +0000 (GMT) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k2F9KaXY055175; Wed, 15 Mar 2006 09:20:36 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k2F9Ka0V055171; Wed, 15 Mar 2006 09:20:36 GMT (envelope-from linimon) Date: Wed, 15 Mar 2006 09:20:36 GMT From: Mark Linimon Message-Id: <200603150920.k2F9Ka0V055171@freefall.freebsd.org> To: ykirill@yahoo.com, linimon@FreeBSD.org, closed@FreeBSD.org, openoffice@FreeBSD.org Cc: Subject: Re: ports/93971: open-office2.0.2rc2 compile problem X-BeenThere: freebsd-openoffice@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting OpenOffice to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Mar 2006 09:20:42 -0000 Synopsis: open-office2.0.2rc2 compile problem State-Changed-From-To: open->closed State-Changed-By: linimon State-Changed-When: Wed Mar 15 09:20:12 UTC 2006 State-Changed-Why: Duh, long day I guess. Responsible-Changed-From-To: closed->openoffice Responsible-Changed-By: linimon Responsible-Changed-When: Wed Mar 15 09:20:12 UTC 2006 Responsible-Changed-Why: http://www.freebsd.org/cgi/query-pr.cgi?pr=93971 From owner-freebsd-openoffice@FreeBSD.ORG Wed Mar 15 20:44:22 2006 Return-Path: X-Original-To: openoffice@freebsd.org Delivered-To: freebsd-openoffice@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 31D9016A430 for ; Wed, 15 Mar 2006 20:44:21 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from mail.droso.net (koala.droso.net [193.88.12.38]) by mx1.FreeBSD.org (Postfix) with ESMTP id B9DAF43D53 for ; Wed, 15 Mar 2006 20:44:15 +0000 (GMT) (envelope-from linimon@FreeBSD.org) Received: from localhost (localhost [127.0.0.1]) by mail.droso.net (Postfix) with ESMTP id 1B5B222B7A for ; Wed, 15 Mar 2006 21:44:15 +0100 (CET) Received: from koala.ipv6.droso.net (localhost [IPv6:::1]) by mail.droso.net (Postfix) with ESMTP id 1C9CC22B81 for ; Wed, 15 Mar 2006 21:44:13 +0100 (CET) From: linimon@FreeBSD.org To: openoffice@freebsd.org Message-Id: <20060315204413.1C9CC22B81@mail.droso.net> Date: Wed, 15 Mar 2006 21:44:13 +0100 (CET) X-Virus-Scanned: by amavisd 0.1 Cc: Subject: FreeBSD ports that you maintain which are currently marked broken X-BeenThere: freebsd-openoffice@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting OpenOffice to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Mar 2006 20:44:22 -0000 Dear FreeBSD port maintainer: As part of an ongoing effort to reduce the number of problems in the FreeBSD ports system, we are attempting to notify maintainers of ports that are marked as "broken" in their Makefiles. In many cases these ports are failing to compile on some subset of the FreeBSD build environments. The most common problem is that recent versions of -CURRENT include gcc3.4, which is much stricter about such things as function declarations, literal strings constants that continue over several physical lines, and forcing the deprecation of antique header files such as varargs.h (we should now be using stdargs.h). The next most common problem is that compiles succeed on the i386 architecture (e.g. the common Intel PC), but fail on one or more of the other architectures due to assumptions about things such as size of various types, byte-alignment issues, and so forth. In occasional cases we see that the same port may have different errors in different build environments. The script that runs on the build cluster uses heuristics to try to 'guess' the error type to help you isolate problems, but it is only a rough guide. If you need help in one or more build environments that you do not have access to, please ask for help on the freebsd-ports mailing list. One more note: on occasion, there are transient build errors seen on the build farm. Unfortunately, there is not yet any way for this algorithm to tell the difference (humans are much, much better at this kind of thing.) The errors are listed below. In the case where the same problem exists on more than one build environment, the URL points to the latest errorlog for that type. (By 'build environment' here we mean 'combination of 4.x/5.x/6.x with target architecture'.) (Note: the dates are included to help you to gauge whether or not the error still applies to the latest version. The program that generates this report is not yet able to determine this automatically.) portname: editors/ooo-build broken because: Unfetchable build errors: http://pointyhat.freebsd.org/errorlogs/i386-errorlogs/e.7.2006012902/ooo-build-2.0.2rc1.1.log (Mar 4 07:53:31 UTC 2006) overview: http://portsmon.FreeBSD.org/portoverview.py?category=editors&portname=ooo-build portname: editors/ooodict-all broken because: Size mismatch build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=editors&portname=ooodict-all If these errors are ones that you are already aware of, please accept our apologies and ignore this message. On the other hand, if you no longer wish to maintain this port (or ports), please reply with a message stating that, and accept our thanks for your efforts in the past. Every effort has been made to make sure that these error reports really do correspond to a port that you maintain. However, due to the fact that this is an automated process, it may indeed generate false matches. If one of these errors fits that description, please forward this email to the author of this software, Mark Linimon , so that he can attempt to fix the problem in the future. Thanks for your efforts to help improve FreeBSD. From owner-freebsd-openoffice@FreeBSD.ORG Wed Mar 15 21:19:43 2006 Return-Path: X-Original-To: openoffice@freebsd.org Delivered-To: freebsd-openoffice@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2C48416A41F for ; Wed, 15 Mar 2006 21:19:43 +0000 (UTC) (envelope-from VikasA@mexxxico.com) Received: from 84.94.122.184.cable.012.net.il (84.94.122.184.cable.012.net.il [84.94.122.184]) by mx1.FreeBSD.org (Postfix) with SMTP id 2CED643D45 for ; Wed, 15 Mar 2006 21:19:40 +0000 (GMT) (envelope-from VikasA@mexxxico.com) Received: from mexxxico.com (mexxxico-com.mr.outblaze.com [205.158.62.177]) by 84.94.122.184.cable.012.net.il (Postfix) with ESMTP id 61A02797E0 for ; Wed, 15 Mar 2006 16:17:36 -0500 From: Obychenie_recklame To: openoffice Date: Wed, 15 Mar 2006 16:17:36 -0500 Message-ID: <100101c64875$957661f4$58657dfd@mexxxico.com> Content-Transfer-Encoding: quoted-printable X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook, Build 10.0.2627 Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2479.0006 X-Virus-Scanned: by Ameriserv.net Anti-Virus E-Gateway MIME-Version: 1.0 Content-Type: text/plain; charset="windows-1251" X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: =?windows-1251?b?UmU6INP35eHt++kg6vPw8TogzOXy7uT7IO/u4vv45e3o?= =?windows-1251?b?/yD99PTl6vLo4u3u8fLoIPDl6uvg7PsgICAgNUQ=?= X-BeenThere: freebsd-openoffice@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting OpenOffice to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Mar 2006 21:19:43 -0000 =20 =20 =ca= =e0=ea=20 =ef=ee=e2=fb=f1=e8=f2=fc =fd=f4=f4=e5=ea=f2=e8=e2=ed=ee=f1=f2=fc = =f0=e5=ea=eb=e0=ec=fb =20 =d6=e5=eb=fc =ea=f3= =f0=f1=e0: =c2=ee=ef=f0=ee=f1 =ee=e1 =fd=f4=f4=e5=ea=f2=e8=e2=ed=ee=f1=f2=e8=20 - =e3=eb=e0=e2=ed=fb=e9 =e2 =f0=e5=ea=eb=e0=ec=e5=2e =ca=e0=e6=e4= =fb=e9 =f0=e5=ea=eb=e0=ec=ee=e4=e0=f2=e5=eb=fc =f1=f2=f0=e5=ec=e8=f2=f1=ff= =ef=ee=eb=f3=f7=e8=f2=fc =ec=e0=ea=f1=e8=ec=e0=eb=fc=ed=f3=fe=20 =ee=f2=e4=e0=f7=f3 =ee=f2 =e8=ed=e2=e5=f1=f2=e8=f6=e8=e9 =e2 =f0=e5= =ea=eb=e0=ec=f3=2e =cf=ee=fd=f2=ee=ec=f3 =e3=eb=e0=e2=ed=e0=ff =f6=e5=eb=fc= =ea=f3=f0=f1=e0 - =f0=e0=f1=f1=ea=e0=e7=e0=f2=fc=20 =ee =f1=eb=e0=e1=fb=f5 =e8 =f1=e8=eb=fc=ed=fb=f5 =f1=f2=ee=f0=ee=ed= =e0=f5 =ec=e0=f0=ea=e5=f2=e8=ed=e3=ee=e2=fb=f5 =ea=ee=ec=ec=f3=ed=e8=ea=e0= =f6=e8=e9 =e8 =ef=ee=ea=e0=e7=e0=ed=fb =f0=e5=e0=eb=fc=ed=fb=e5=20 =f1=ef=ee=f1=ee=e1=fb =ef=ee=e2=fb=f8=e5=ed=e8=ff =fd=f4=f4=e5=ea= =f2=e8=e2=ed=ee=f1=f2=e8=2e =c0=ed=e0=eb=e8=e7 =f0=e5=ea=eb=e0=ec=ed=fb=f5= =ec=e5=f0=ee=ef=f0=e8=ff=f2=e8=e9 =ef=ee=e7=e2=ee=eb=e8=f2=20 =ee=f6=e5=ed=e8=f2=fc =fd=f4=f4=e5=ea=f2=e8=e2=ed=ee=f1=f2=fc =f0= =e0=e1=ee=f2=fb =ea=ee=ec=ef=e0=ed=e8=e8, =ed=e0=e9=f2=e8 =fd=f4=f4=e5=ea= =f2=e8=e2=ed=fb=e5 =ef=f3=f2=e8 =e2=e7=e0=e8=ec=ee=e4=e5=e9=f1=f2=e2=e8=ff= =20 =f1 =ea=ee=ed=f2=f0=e0=e3=e5=ed=f2=e0=ec=e8, =f3=f7=e8=f2=fb=e2=e0= =f2=fc =ea=ee=ed=ea=f3=f0=e5=ed=f2=ed=f3=fe =f1=f0=e5=e4=f3 =ef=f0=e8 =f4= =ee=f0=ec=e8=f0=ee=e2=e0=ed=e8=e8 =ef=ee=eb=e8=f2=e8=ea=e8=20 =ea=ee=ec=ef=e0=ed=e8=e8=2e =dd=f2=ee =ef=ee=e7=e2=ee=eb=e8=f2 =ea= =ee=ec=ef=e0=ed=e8=e8 =ef=ee=e2=fb=f1=e8=f2=fc =ea=ee=ed=ea=f3=f0=e5=ed=f2= =ee=f1=ef=ee=f1=ee=e1=ed=ee=f1=f2=fc =e8 =e7=e0=ed=ff=f2=fc=20 =e2=e5=e4=f3=f9=e8=e5 =ef=ee=e7=e8=f6=e8=e8 =ed=e0 =f0=fb=ed=ea=e5= =2e =20 =20 =c4=e0=f2=e0 =ef=f0=ee=e2= =e5=e4=e5=ed=e8=ff: 21 - 22 =ec= =e0=f0=f2=e0 2006=20 =e3=2e =ef=ee 6 =e0=ea=e0=e4= =e5=ec=e8=f7=e5=f1=ea=e8=f5 =f7=e0=f1=ee=e2 =e2 =e4=e5=ed=fc,=20 =f1 =ef=e5=f0=e5=f0=fb=e2=ee=ec =ed=e0 =ee=e1=e5=e4 =e8 =ea=ee=f4=e5= -=e1=f0=fd=e9=ea=2e =20 =cc=e5=f1=f2=ee =ef=f0=ee=e2=e5= =e4=e5=ed=e8=ff: =e3=2e =cc=ee=f1=ea=e2=e0&nb= sp; =20 =20 =d1=f2=ee=e8=ec=ee=f1=f2= =fc =f3=f7=e0=f1=f2=e8=ff: 10 999=20 =f0=f3=e1=eb=e5=e9, =ec=e5=f2=ee=e4=e8=f7=e5=f1=ea=e8=e5= =e8 =f0=e0=e7=e4=e0=f2=ee=f7=ed=fb=e5 =ec=e0=f2=e5=f0=e8=e0=eb=fb, =ee=e1= =e5=e4=fb, =ea=ee=f4=e5-=e1=f0=fd=e9=ea=e8=20 =e2=ea=eb=fe=f7=e5=ed=fb =e2 =f1=f2=ee=e8=ec=ee=f1=f2=fc=2e = =20 =c0=f3=e4=e8=f2=ee=f0=e8=ff:&nb= sp; =ca=f3=f0=f1 =f0=e0=e7=f0=e0= =e1=ee=f2=e0=ed =e4=eb=ff =ec=e0=f0=ea=e5=f2=ee=eb=ee=e3=ee=e2, =f0=f3=ea= =ee=e2=ee=e4=e8=f2=e5=eb=e5=e9=20 =ee=f2=e4=e5=eb=ee=e2 =e8 =e4=f0=f3=e3=e8=f5 =f1=ef=e5=f6=e8=e0=eb= =e8=f1=f2=ee=e2, =e7=e0=ed=e8=ec=e0=fe=f9=e8=f5=f1=ff =ef=f0=ee=e4=e2=e8=e6= =e5=ed=e8=e5=ec =f2=ee=e2=e0=f0=ee=e2 =e8 =f3=f1=eb=f3=e3=20 =ea=ee=ec=ef=e0=ed=e8=e8, =e0 =f2=e0=ea=e6=e5 =e4=eb=ff =f2=e5=f5= , =ea=f2=ee =f5=ee=f7=e5=f2 =f0=e0=f1=f8=e8=f0=e8=f2=fc =e8=ed=f1=f2=f0=f3= =ec=e5=ed=f2=e0=f0=e8=e9 =e8=f1=ef=ee=eb=fc=e7=f3=e5=ec=fb=f5=20 =ec=e5=f2=ee=e4=e8=ea =f1 =f6=e5=eb=fc=fe =ef=f0=e8=ed=ff=f2=e8=ff= =f0=e5=f8=e5=ed=e8=e9, =f3=f7=e8=f2=fb=e2=e0=fe=f9=e8=f5 =f4=e0=ea=f2=ee= =f0=fb =e2=ed=e5=f8=ed=e5=e9 =f1=f0=e5=e4=fb =ee=f0=e3=e0=ed=e8=e7=e0=f6=e8= =e8 =20 =20 =ca= =f0=e0=f2=ea=ee=e5 =f1=ee=e4=e5=f0=e6=e0=ed=e8=e5: <= /div> =20 * =20 =d1=ef=ee=f1=ee=e1= =fb =ee=ef=f0=e5=e4=e5=eb=e5=ed=e8=ff =fd=f4=f4=e5=ea=f2=e8=e2=ed=ee=f1=f2= =e8=20 =f0=e5=ea=eb=e0=ec=fb * =20 =d1=ef=ee=f1=ee=e1= =fb =ef=ee=e2=fb=f8=e5=ed=e8=ff =fd=f4=f4=e5=ea=f2=e8=e2=ed=ee=f1=f2=e8=20= =f0=e5=ea=eb=e0=ec=fb * =20 =c2=fb=e1=ee=f0 = =ef=e0=f0=e0=ec=e5=f2=f0=ee=e2 =f0=e5=ea=eb=e0=ec=fb=20 * =20 =cf=f0=e0=ea=f2=e8= =f7=e5=f1=ea=e8=e5 =ee=f1=ee=e1=e5=ed=ed=ee=f1=f2=e8=20 =f0=e5=ea=eb=e0=ec=fb =ed=e5=ea=ee=f2=ee=f0=fb=f5 =e2=e8=e4=ee= =e2 =f2=ee=e2=e0=f0=ee=e2 =e8 =f3=f1=eb=f3=e3 * =20 =cf=f0=e8=ec=e5=f0= =fb =eb=f3=f7=f8=e5=e3=ee =e1=e8=e7=ed=e5=f1=e0 * =20 =d5=f3=e4=f8=e8=e5= =ef=f0=e8=ec=e5=f0=fb =e1=e8=e7=ed=e5=f1=e0 =20 =cf= =ee =e2=ee=ef=f0=ee=f1=e0=ec =f0=e5=e3=e8=f1=f2=f0=e0=f6=e8=e8=20 =ee=e1=f0=e0=f9=e0=e9=f2=e5=f1=fc =ef=ee =f2=e5=eb: (495) 235-58 = 88, 967-68-22 A2rGi From owner-freebsd-openoffice@FreeBSD.ORG Thu Mar 16 02:00:17 2006 Return-Path: X-Original-To: openoffice@freebsd.org Delivered-To: freebsd-openoffice@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D9A5D16A401 for ; Thu, 16 Mar 2006 02:00:17 +0000 (UTC) (envelope-from dhoo@lopezclub.com) Received: from bos94-3-82-229-169-98.fbx.proxad.net (bos94-3-82-229-169-98.fbx.proxad.net [82.229.169.98]) by mx1.FreeBSD.org (Postfix) with ESMTP id 784F243D69 for ; Thu, 16 Mar 2006 02:00:16 +0000 (GMT) (envelope-from dhoo@lopezclub.com) Message-ID: <6.0.0.22.1.20060315175631.72a3ae5d@lopezclub.com> X-Sender: handrails@lopezclub-com-bk.mr.outblaze.com X-Mailer: QUALCOMM Windows Eudora Version 6.0.0.22 Date: Wed, 15 Mar 2006 17:56:31 -0800 To: openoffice From: lexi Content-Transfer-Encoding: quoted-printable X-GMX-Antivirus: 0 (no virus found) MIME-Version: 1.0 Content-Type: text/plain; charset="windows-1251" X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: =?windows-1251?b?0MDRz9DOxMDGwCDQwNHVzsTN29UgzMDSxdDIwMvOwiDE?= =?windows-1251?b?y98gytHF0M7K0c7CIMggz9DIzdLF0M7CICjSzs3F0NssIMTF?= =?windows-1251?b?wsXLzs8uINLF1MvOzS3CwMvbLCDHyM8pINLl6y44LTkwMS03?= =?windows-1251?q?11-58-90?= X-BeenThere: freebsd-openoffice@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting OpenOffice to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Mar 2006 02:00:17 -0000 [DEL: =d2=c5=cb=c5=d4=ce=cd=20 (901) 711 58 90 :DEL] [DEL: =2e=2e=2e=2e=e5=f9=e5=20 =e1=ee=eb=e5=e5 200 =ef=ee=e7=e8=f6=e8=e9: :DEL] =20 =d2=ce=cd=c5=d0 CANON NP-3325/= 3825 -------------------------------------------------------------=20 8,00 =d2=ce=cd=c5=d0 CANON NP-6025/6030 ------------------------------= -----------------------------=20 10,00 =d2=ce=cd=c5=d0 MINOLTA EP-2120/2130/2150/2152/2153 =f2=f3=e1=e0 = 50=e3=2e---------------------=20 3,00 =d2=ce=cd=c5=d0 MITA DC-1205/1255/1415/1435/1455 =f2=f3=e1=e0 65=e3= =2e----------------------------=20 3,00 =d2=ce=cd=c5=d0 MITA =d1=d1-30/35 =f2=f3=e1=e0 50=e3 ------------= -----------------------------------------------=20 3,00 =d2=ce=cd=c5=d0 RICOH FT-3013/3213/3513/3713 type 320 320=e3=2e -= ------------------------=20 5,00 =d2=ce=cd=c5=d0 RICOH FT-3113/3313/3413 type 310 320=e3=2e ------= ---------------------------=20 5,00 =d2=ce=cd=c5=d0 RICOH FT-4215/20/22/4415/18/21 type-410 370=e3=2e= -----------------------=20 7,00 =d2=ce=cd=c5=d0 RICOH M-100/M5/M50 10=ea=e3=2e=d1=d8=c0 ---------= ---------------------------------=20 100,00 =d2=ce=cd=c5=d0 SHARP SF-2014/2114/2214 =e1=e0=ed=ea=e0 (=f1 =e4=e5= =e2=e5=eb=ee=ef=e5=f0=ee=ec) USA 240 =e3, - 3,00=20 =d2=ce=cd=c5=d0 SHARP SF-7300/73507800/7850 10=ea=e3=2e=d1=d8=c0 = ---------------------------=20 100,00 =d2=ce=cd=c5=d0 TOSHIBA 1340/1350/60/701550/1560 10=ea=e3=2e=d1=d8= =c0 -------------------- 100,00=20 =d2=ce=cd=c5=d0 XEROX 5017/5316/5317 10=ea=e3, =d1=d8=c0 --------= ------------------------------=20 100,00 =d2=ce=cd=c5=d0 XEROX 5340/50/5343/52/5437/5665/5837/45 10 =ea=e3= =2e=d1=d8=c0 --------- 100,00=20 =d2=ce=cd=c5=d0 BROTHER (TN-100) HL-630/631/2300/2500/3500/ (TN-2= 00) 3550/6550 10=20 =ea=e3=2e=d1=d8=c0 -100,00 =d2=ce=cd=c5=d0 EPSON EPL-5200/5500/7100/1000/1500 10=ea=e3=2e =d1= =d8=c0 -------------- 100,00=20 =d2=ce=cd=c5=d0 BROTHER (TN-100) HL-630/631/2300/2500/3500/ (TN-2= 00) 3550/6550 10=20 =ea=e3=2e=d1=d8=c0 - 100,00 =d2=ce=cd=c5=d0 PANASONIC 4400 /=ca=d5-455 10=ea=e3 =d1=d8=c0 ---= --------------------------------=20 100,00 =c4=c5=c2=c5=cb=ce=cf=c5=d0 SHARP Z-20/25/30/50/55/70/75 XEROX 50= 09 10=ea=e3=2e=d1=d8=c0 - 100,00 =c4=c5=c2=c5=cb=ce=cf=c5=d0 XEROX 1025/1038/5331/5332/5026/5332 1= 0=ea=e3=2e =d1=d8=c0 ------ 100,00=20 =c1=c0=d0=c0=c1=c0=cd HP LJ 5000 --------------------------------= --------------------------------------=20 13,00 =c1=c0=d0=c0=c1=c0=cd SHARP SF-2114/2014 =f1 =f0=e0=ea=e5=eb=e5=ec= --------------------------------------=20 25,00 =c1=c0=d0=c0=c1=c0=cd RICOH FT-410/4415/4418/4421/4427/4460/4215/= 22 ------------- 25,00=20 =c1=c0=d0=c0=c1=c0=cd TOSHIBA 1340/1350/1360/1370 ---------------= -------------------------=20 25,00 =d0=c0=ca=c5=cb=dc CANON FC-210/220/230/330 ---------------------= ----------------------------=20 1,50 =d0=c0=ca=c5=cb=dc HP LJ 4000 -----------------------------------= ---------------------------------------=20 2,00 =d0=c0=ca=c5=cb=dc HP LJ 5Si ------------------------------------= ----------------------------------------=20 2,00 =d0=c0=ca=c5=cb=dc MITA DC 1605/56/57/1855/2155 -----------------= ---------------------------=20 2,00 =d0=c0=ca=c5=cb=dc RICOH FT-310/3113 ----------------------------= ---------------------------------=20 2,50 =d0=c0=ca=c5=cb=dc RICOH FT-4022/27/4522/27 ---------------------= -----------------------------=20 2,50 =d0=c0=ca=c5=cb=dc RICOH FT-410/4415/4418 -----------------------= ------------------------------=20 2,50 =d0=c0=ca=c5=cb=dc XEROX 5026/5331/5330/5332 --------------------= ---------------------------=20 3,00 =d0=c5=c7=c8=cd=ce=c2=db=c9 =c2=c0=cb CANON FC-230/220 ----------= -----------------------------------=20 6,00 =d0=c5=c7=c8=cd=ce=c2=db=c9 =c2=c0=cb CANON FC-330/310 ----------= -----------------------------------=20 5,00 =d2=c5=d4=cb=ce=cd=ce=c2=db=c9 =c2=c0=cb CANON PC-7/NP-1010/6010 = ------------------------------=20 5,00 =d2=c5=d4=cb=ce=cd=ce=c2=db=c9 =c2=c0=cb RICOH FT-4415/4418/4220/= 2260 ----------------------- 10,00=20 =d2=c5=d4=cb=ce=cd=ce=c2=db=c9 =c2=c0=cb SHARP SF-7800/7700/7850/= 7750 --------------------- 10,00=20 =d2=c5=d4=cb=ce=cd=ce=c2=db=c9 =c2=c0=cb SHARP Z-50 -------------= ----------------------------------------=20 5,00 =d2=c5=d4=cb=ce=cd=ce=c2=db=c9 =c2=c0=cb XEROX 1025/1038/5026/533= 1/32/5017/5317 ------- 12,00 =c5=f9=e5 =e1=ee=eb=e5=e5 200 =ef=ee=e7=e8=f6=e8=e9= =2e BiTm3 From owner-freebsd-openoffice@FreeBSD.ORG Thu Mar 16 08:00:03 2006 Return-Path: X-Original-To: openoffice@freebsd.org Delivered-To: freebsd-openoffice@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 182D016A420; Thu, 16 Mar 2006 08:00:02 +0000 (UTC) (envelope-from ecyluhxvc@franzsennhuette.at) Received: from p549C7E78.dip.t-dialin.net (p549C7E78.dip.t-dialin.net [84.156.126.120]) by mx1.FreeBSD.org (Postfix) with SMTP id D0BE843D5E; Thu, 16 Mar 2006 07:59:57 +0000 (GMT) (envelope-from ecyluhxvc@franzsennhuette.at) Received: (qmail 20940 invoked from network); Thu, 16 Mar 2006 02:59:56 -0500 Received: from unknown (HELO is46.ili.org) (84.156.126.120) by 0 with SMTP; Date: Thu, 16 Mar 2006 02:59:56 -0500 From: "Dewitt" To: openoffice@freebsd.org X-Mailer: pvb v6.5.9.1000.26869758 Message-Id: <20060310131501.rztkfpfxkh@ili.org> Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Content-Type: text/plain; charset="windows-1252" X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: Fw:Obtain prestige that comes with having the career position Dewitt X-BeenThere: freebsd-openoffice@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: z.1975.25336504@ili.org List-Id: Porting OpenOffice to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Mar 2006 08:00:03 -0000 [1]3D" 3D"" blandish utah conciliate jurisdiction language ergative contemptible chara= cter hausdorff azalea salt riemann ilona ninefold advise continuo bernini = bimolecular burden quintessential 1 References 1. 3D"http://nrjheujz.info/d/" From owner-freebsd-openoffice@FreeBSD.ORG Thu Mar 16 08:19:34 2006 Return-Path: X-Original-To: freebsd-openoffice@freebsd.org Delivered-To: freebsd-openoffice@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0728016A400 for ; Thu, 16 Mar 2006 08:19:34 +0000 (UTC) (envelope-from dilinger@compuserve.com) Received: from bb220-255-29-83.singnet.com.sg (bb220-255-29-83.singnet.com.sg [220.255.29.83]) by mx1.FreeBSD.org (Postfix) with SMTP id BCDD643D6E for ; Thu, 16 Mar 2006 08:19:29 +0000 (GMT) (envelope-from dilinger@compuserve.com) Received: from compuserve.com (mail.mx5.compuserve.com [149.174.40.183]) by bb220-255-29-83.singnet.com.sg (Postfix) with ESMTP id A58D0643E6 for ; Thu, 16 Mar 2006 03:17:15 -0500 Date: Thu, 16 Mar 2006 03:17:15 -0500 From: Integracia_Holdingi X-Mailer: The Bat! (v2.00.2) Personal X-Priority: 3 Message-ID: <5640767926.20060316031715@compuserve.com> To: freebsd-openoffice Content-Transfer-Encoding: 8bit X-AntiVirus: checked by AntiVir MailGate (version: 2.0.1.10; AVE: 6.20.0.1; VDF: 6.20.0.46; host: bb220-255-29-83.singnet.com.sg) MIME-Version: 1.0 Content-Type: text/plain; charset="windows-1251" X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: =?windows-1251?b?yu7t8vDu6/wg6CDz7/Dg4uvl7ejlIOIg9e7r5Ojt4+Uu?= X-BeenThere: freebsd-openoffice@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting OpenOffice to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Mar 2006 08:19:34 -0000 Интегрированные структуры (холдинги). Контроль над управлением Цель семинара: Осмысление современного состояния и перспектив развития правового регулирования холдинговых структур в России. Обзор основных способов создания холдингов. Изучение особенностей корпоративного управления и обеспечения корпоративного контроля в интегрированных структурах. Дата проведения: 21 - 22 марта, по 6 академических часов в день, с перерывом на обед и кофе-брэйк. Место проведения: г. Москва Стоимость участия: 10 999 рублей, методические и раздаточные материалы, обеды, кофе-брэйки включены в стоимость. Аудитория: Курс разработан для руководителей предприятий крупного и среднего бизнеса, членов советов директоров, собственников бизнеса, руководителей и ответственных работников юридических и финансовых департаментов, отделов ценных бумаг, инвестиционной практики, управления имуществом, корпоративного управления, внутреннего аудита. По окончании курса участники узнают: * Наиболее оптимальные способы создания холдинговых структур. * Порядок изменения корпоративного управления дочерними обществами в зависимости от потребностей холдинга. * Методы и приемы, обеспечивающие сохранение корпоративного контроля над интегрированными структурами. * Принципы гармонизации внутренних документов (локальных нормативных актов) интегрированных структур. Краткое содержание * Понятие холдинга. Современное состояние и перспективы развития правового регулирования холдинговых структур в России. * Особенности создания и внутренняя структура холдингов в России * Корпоративное управление холдинговыми структурами: международная практика и российский подход * Обеспечение корпоративного контроля над холдингами и предотвращение внешних и внутренних угроз. * Значение внутренних документов (локальных нормативных актов) в управлении интегрированными структурами. * Правовое регулирование ответственности в холдинговых структурах * Ответы на вопросы По вопросам регистарации обращайтесь по тел: (495) 792-21 22, 742-91-98 00tzt From owner-freebsd-openoffice@FreeBSD.ORG Thu Mar 16 16:38:51 2006 Return-Path: X-Original-To: openoffice@freebsd.org Delivered-To: freebsd-openoffice@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 69FBA16A400 for ; Thu, 16 Mar 2006 16:38:51 +0000 (UTC) (envelope-from barnard@i1.net) Received: from bl6-61-250.dsl.telepac.pt (bl6-61-250.dsl.telepac.pt [82.155.61.250]) by mx1.FreeBSD.org (Postfix) with ESMTP id 254F543D46 for ; Thu, 16 Mar 2006 16:38:48 +0000 (GMT) (envelope-from barnard@i1.net) Date: Thu, 16 Mar 2006 08:49:15 -0800 From: "=?Windows-1251?Q?=CD=E0_=EFo=EB=FC=E7=F3_=E1=E8=E7=EDec=F3?=" X-Mailer: The Bat! (v3.0.1.33) Home X-Priority: 3 (Normal) Message-ID: <5773755386.20060316233261@bl6-61-250.dsl.telepac.pt> To: "=?Windows-1251?Q?=D4=E8=ED=E0=ED=F1=EE=E2=EE=EC=F3_=E4=E8pe=EA=F2=EEp=F3?=" MIME-Version: 1.0 Content-Type: text/plain; charset=Windows-1251 Content-Transfer-Encoding: 8bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: =?windows-1251?b?S2HqIOdh6u7t7W8g6CDiIOpwYfL3Yen46PUg8fDu6iDi?= =?windows-1251?b?5XDt8/L8IOTl7fzj6A==?= X-BeenThere: freebsd-openoffice@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: =?Windows-1251?Q?=CD=E0_=EFo=EB=FC=E7=F3_=E1=E8=E7=EDec=F3?= List-Id: Porting OpenOffice to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Mar 2006 16:38:51 -0000 Бизнec-Центр Нациoнальный Пpедcтавляет ПPАKТИКА ИCПOЛНИТЕЛЬНОГО ПPOИЗBОДСТВА. КАK ЗAKОННО И B KPОТЧАЙШИЙ CРOК BЕРНУТЬ ДEНЬГИ? ———————————————————————————————————————————————————————————————————————— Ceминар • 18 мapтa • 2006 г. г. Kиeв • бульв. Шевкенкo 4 • oтeль «Cанкт-Пeтeрбург» ———————————————————————————————————————————————————————————————————————— Тeл.: (044) 233-5733, 233-7349 • Фaкc: (044) 280-1044 ———————————————————————————————————————————————————————————————————————— Многo oшибoк мы cовершаем пo тoй пpичине, чтo нe знaeм cвоиx прaв и oбязаннoстей. Испoлнитeльное пpоизвoдство в этoм oтнoшeнии - нe иcключeниe. Hедoстаток знaний o тoм, ктo мoжeт пpинимать учacтие в иcполнительном произвoдстве, кaкиe пpaвa и oбязанности имeют учаcтники иcпoлнитeльного прoизводства, пo кaкoму cпоcобу и нa какиx oснoваниях эти лицa сoвeршают тe или другиe дейcтвия, частo обоpачивается гоpьким финалoм. Поcлe утoмительнoго cудeбного прoцесса счacтливый побeдитель оcтупaется именнo тaм, гдe мeньше всeгo oжидал. Чтoб избeжать тaкиx ошибoк, слeдует имeть четкoе пpедставление oб испoлнитeльном пpoизводстве. ЦЕЛEBАЯ AУДИТОPИЯ Рукoвoдители пpeдприятий, юpидичeских cлужб, юриcкoнсульты, сoтpудники юридичеcких фиpм, a тaкжe кредитныe менеджeры, крeдитныe кoнтрoлеры, бухгалтeра и финaнcoвые диpектора. ЛEKТOР * Kузь A. P. – зaмеcтитель диpeктoра, Дeпартамента Госудaрственной испoлнительной cлужбы Министeрства Юcтици Укpаины. * Oбидинa Иринa Фeдoровна – глaвный Дeпaртамента Гocударственной испoлнительной cлужбы Министepства Юcтици Укрaины. ЦEЛЬ СЕМИHАРА Дaть учаcтникaм сeминара прaктичeские pекoмендации кaк имeнно дoбиться иcполнeния судебныx pешений. ПPOГРАММА 1. Закoнодательное уpeгулиpование принудитeльного иcпoлнeния pешeний cудoв и дpугиx opганов (дoлжностных лиц). 2. Госудaрственная исполнитeльная cлужба кaк eдиный opган принудитeльного иcпoлнения решeний в Укpaинe. 3. Уcлoвия и пopядок пpедъявления исполнитeльного документa нa иcпoлнение в oтдел гocудaрственной испoлнительной cлужбы. 4. Откpытие иcпoлнительного пpoизводства и мepоприятия пo обeспечению дaльнейшeго иcполнeния peшения. 5. Услoвия дoбрoвольного испoлнeния рeшений. 6. Пoрядoк обpaщения взыcкания нa имущeство должникa. 7. Пoрядoк выплaты взысканныx сpедств взыскaтелем. 8. Оcнования для пpeкращения иcпoлнитeльного прoизводства. 9. Oснования вoзврaта иcполнительного дoкументa взыскатeлю или пpeкpащение иcполнитeльного прoизводства. 10. Oбpaщение взыcкания нa зaложенное имущеcтвo (предмeт ипoтеки). 11. Обpaщение взыскaния нa имущеcтвo дoлжника, кoторое нaхoдится у дpугих лиц или принaдлежит дoлжнику oт другиx лиц. 12. Отвeтственность зa наpушение зaкoнoдательства oб иcполнитeльном пpoизводстве. 13. Обжaлoвание дeйствий (бeздеятeльности) гоcудaрственного иcпoлнитeля. 14. Мeждународный кoммеpческий aрбитpажный cуд пpи Тopгoво-промышленной палaтe Укpaины. 15. Ocобенности иcполнeния решeния Мeждунaродного коммeрческого аpбитражного cудa пpи ТПП Укрaины нa тeрритории Укpаины. 16. Bопрос признaния закoнности и исполнeния нa тepриториях инocтранных гocударств peшений xoзяйcтвенных судoв Укpaины. 17. Пpизнaние и иcпoлнение peшeний иностpанных cудoв нa тeppитории Укрaины cоглaсно зaконодательства Укpаины. PЕГЛАМЕНТ * 9.30-17.00 * Пеpeрыв 13.00-14.00 * Pегистрация c 9.00 в кoнфeренц-зале гocтиницы «Cанкт-Пeтербург». CТOИМOСТЬ * 630.00 гpн. зa одногo учaстникa. * Для втoрoго и трeтьего учаcтникa cкидки — 5% и 7% cоoтветственно. * B cтoимoсть вхoдит: инфopмационно-консультационное обcлуживание нa семинaре, cбoрник мaтериалов, кофe-бpейк, oбед в peсторане, oбcуждeние доклaдов и oбмен мнeниями c лeктoром. OТKАЗАТЬСЯ OТ РACСЫЛКИ * Извинитe, еcли этo письмo причинилo Bам неудoбcтва. * Baш адрeс взят из oткpытых иcточникoв: бaз дaнныx пpeдпpиятий, форумoв, вeб-caйтов и т. п. * Чтoбы откaзaться oт pассылки, пожaлуйcта, cooбщите нaм Bаш элeктpoнный aдpeс пo телефoну. РEГИCТРАЦИЯ * Тeл.: (044) 233-5733, 233-7349 * Фaкс: (044) 280-1044 * Kaждый учaстник сeминaра получаeт буxгалтерский кoмплeкт — opигинaлы дoкументов: дoгoвoр, aкт, оpигинал счeтa, кoпии cвидeтeльств. From owner-freebsd-openoffice@FreeBSD.ORG Fri Mar 17 14:53:19 2006 Return-Path: X-Original-To: openoffice@freebsd.org Delivered-To: freebsd-openoffice@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 98DAE16A443 for ; Fri, 17 Mar 2006 14:53:19 +0000 (UTC) (envelope-from JW.Bergen@mindef.nl) Received: from mail2.mindef.nl (mail2.mindef.nl [217.169.231.203]) by mx1.FreeBSD.org (Postfix) with ESMTP id B85B343D60 for ; Fri, 17 Mar 2006 14:53:14 +0000 (GMT) (envelope-from JW.Bergen@mindef.nl) Received: from somewhere by someone Received: from somewhere by someone Received: from somewhere by someone Received: from somewhere by someone From: JW.Bergen@MINDEF.NL To: openoffice@freeBSD.org Date: Fri, 17 Mar 2006 15:48:34 +0100 MIME-Version: 1.0 Message-Id: <20060317145309.71BE65A986@mail2.mindef.nl> Content-Type: text/plain; charset="iso-8859-1" X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: OO for i386 and Alpha X-BeenThere: freebsd-openoffice@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting OpenOffice to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Mar 2006 14:53:19 -0000 Dear lady/sir, I'm a first time user of freeBSD, yet to do a first time install. One of the programs I'd like to install is Open Office 2. (And later on Firefox and Thunderbird). Where do I find a binary install for i386, and for the Alpha? Thank you, Jan van Bergen From owner-freebsd-openoffice@FreeBSD.ORG Sat Mar 18 11:04:25 2006 Return-Path: X-Original-To: freebsd-openoffice@freebsd.org Delivered-To: freebsd-openoffice@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DB5FD16A401 for ; Sat, 18 Mar 2006 11:04:25 +0000 (UTC) (envelope-from gofdpo-freebsd-openoffice@m.gmane.org) Received: from ciao.gmane.org (main.gmane.org [80.91.229.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6A8A843D46 for ; Sat, 18 Mar 2006 11:04:24 +0000 (GMT) (envelope-from gofdpo-freebsd-openoffice@m.gmane.org) Received: from list by ciao.gmane.org with local (Exim 4.43) id 1FKZEF-0008OC-4a for freebsd-openoffice@freebsd.org; Sat, 18 Mar 2006 12:04:15 +0100 Received: from 253-35.ip.ll.net ([209.131.253.35]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sat, 18 Mar 2006 12:04:15 +0100 Received: from supraexpress by 253-35.ip.ll.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sat, 18 Mar 2006 12:04:15 +0100 X-Injected-Via-Gmane: http://gmane.org/ To: freebsd-openoffice@freebsd.org From: User1001 Date: Sat, 18 Mar 2006 05:04:05 -0600 Lines: 15 Message-ID: References: <20060317145309.71BE65A986@mail2.mindef.nl> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-2 Content-Transfer-Encoding: 8bit X-Complaints-To: usenet@sea.gmane.org X-Gmane-NNTP-Posting-Host: 253-35.ip.ll.net User-Agent: Pan/0.14.2.91 (As She Crawled Across the Table) Sender: news Subject: Re: OO for i386 and Alpha X-BeenThere: freebsd-openoffice@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting OpenOffice to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 18 Mar 2006 11:04:25 -0000 Developer binaries for FreeBSD OpenOffice for FBSD5 and FBSD6 are available at: ftp://ooopackages.good-day.net/pub/OpenOffice.org/FreeBSD/ Firefox and Thunderbird are available as FreeBSD "ports". On Fri, 17 Mar 2006 15:48:34 +0100, JW.Bergen wrote: > I'm a first time user of freeBSD, yet to do a first time install. > > One of the programs I'd like to install is Open Office 2. > (And later on Firefox and Thunderbird). > > Where do I find a binary install for i386, and for the Alpha? From owner-freebsd-openoffice@FreeBSD.ORG Sat Mar 18 18:00:33 2006 Return-Path: X-Original-To: openoffice@hub.freebsd.org Delivered-To: freebsd-openoffice@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E8ED616A479 for ; Sat, 18 Mar 2006 18:00:33 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 444C043D48 for ; Sat, 18 Mar 2006 18:00:33 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k2II0WMp049236 for ; Sat, 18 Mar 2006 18:00:32 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k2II0WZ0049235; Sat, 18 Mar 2006 18:00:32 GMT (envelope-from gnats) Date: Sat, 18 Mar 2006 18:00:32 GMT Message-Id: <200603181800.k2II0WZ0049235@freefall.freebsd.org> To: openoffice@FreeBSD.org From: Heino Tiedemann Cc: Subject: Re: ports/94449: editors/openoffice.org-2.0: compile error while making 'hsqldb' X-BeenThere: freebsd-openoffice@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Heino Tiedemann List-Id: Porting OpenOffice to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 18 Mar 2006 18:00:34 -0000 The following reply was made to PR ports/94449; it has been noted by GNATS. From: Heino Tiedemann To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/94449: editors/openoffice.org-2.0: compile error while making 'hsqldb' Date: Sat, 18 Mar 2006 18:51:52 +0100 Hi, now it's the next tar.gz-File "OOo_2.0.2_src.tar.gz" with the same Problem und the same make args: ,---- | make -DWITHOUT_MOZILLA -DWITHOUT_JAVA -DWITH_CUPS -DWITH_KDE LOCALIZED_LANG=de `---- [...] patching file hsqldb/src/org/hsqldb/persist/DataFileCache.java patching file hsqldb/src/org/hsqldb/persist/DataFileDefrag.java patching file hsqldb/src/org/hsqldb/persist/HsqlDatabaseProperties.java patching file hsqldb/src/org/hsqldb/persist/Logger.java patching file hsqldb/src/org/hsqldb/persist/NIOScaledRAFile.java patching file hsqldb/src/org/hsqldb/persist/ScaledRAFile.java patching file hsqldb/src/org/hsqldb/persist/ScriptRunner.java patching file hsqldb/src/org/hsqldb/resources/sql-error-messages.properties patching file hsqldb/src/org/hsqldb/resources/sql-error-messages_it.properties patching file hsqldb/src/org/hsqldb/rowio/RowInputTextQuoted.java patching file hsqldb/src/org/hsqldb/scriptio/ScriptWriterBase.java /usr/bin/perl /usr/ports/editors/openoffice.org-2.0/work/OOB680_m5/solenv/bin/leconvert.pl dos ./unxfbsd.pro/misc/build/hsqldb/build/build.xml ./unxfbsd.pro/misc/build/hsqldb/doc/changelist_1_8_0.txt ./unxfbsd.pro/misc/build/hsqldb/src/org/hsqldb/resources/sql-error-messages_it.properties && touch ./unxfbsd.pro/misc/convert_dos_flag touch ./unxfbsd.pro/misc/build/so_configured_so_hsqldb mkdir ./unxfbsd.pro/misc/build/hsqldb/ mkdir: ./unxfbsd.pro/misc/build/hsqldb/: File exists cd ./unxfbsd.pro/misc/build/hsqldb/ && /usr/ports/editors/openoffice.org-2.0/work/OOB680_m5/external/common/apache-ant-1.6.1/bin/ant -Dbuild.label="build-680m5(Build:9011)" -f build/build.xml jar && touch so_built_so_hsqldb /usr/ports/editors/openoffice.org-2.0/work/OOB680_m5/external/common/apache-ant-1.6.1/bin/ant: Command not found. dmake: Error code 1, while making './unxfbsd.pro/misc/build/so_built_so_hsqldb' '---* tg_merge.mk *---' ERROR: Error 65280 occurred while making /usr/ports/editors/openoffice.org-2.0/work/OOB680_m5/hsqldb dmake: Error code 1, while making 'build_instsetoo_native' '---* *---' *** Error code 255 Stop in /usr/ports/editors/openoffice.org-2.0. ;-( Heino Tiedemann From owner-freebsd-openoffice@FreeBSD.ORG Sat Mar 18 18:05:26 2006 Return-Path: X-Original-To: freebsd-openoffice@freebsd.org Delivered-To: freebsd-openoffice@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1511C16A400 for ; Sat, 18 Mar 2006 18:05:26 +0000 (UTC) (envelope-from gofdpo-freebsd-openoffice@m.gmane.org) Received: from ciao.gmane.org (main.gmane.org [80.91.229.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 58DE843D45 for ; Sat, 18 Mar 2006 18:05:24 +0000 (GMT) (envelope-from gofdpo-freebsd-openoffice@m.gmane.org) Received: from list by ciao.gmane.org with local (Exim 4.43) id 1FKfnf-0005xz-Ni for freebsd-openoffice@freebsd.org; Sat, 18 Mar 2006 19:05:15 +0100 Received: from p548fc6aa.dip.t-dialin.net ([84.143.198.170]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sat, 18 Mar 2006 19:05:15 +0100 Received: from rotkap by p548fc6aa.dip.t-dialin.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sat, 18 Mar 2006 19:05:15 +0100 X-Injected-Via-Gmane: http://gmane.org/ To: freebsd-openoffice@freebsd.org From: Heino Tiedemann Date: Sat, 18 Mar 2006 19:05:01 +0100 Organization: yes Lines: 52 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Complaints-To: usenet@sea.gmane.org X-Gmane-NNTP-Posting-Host: p548fc6aa.dip.t-dialin.net User-Agent: Gnus/5.1007 (Gnus v5.10.7) XEmacs/21.4.19 (berkeley-unix) X-Face: v6Lci{Mw=kwHf$`7C?L-U#BHn7O\wqF-1qg#Vk%}nUQv\i^mM/.p=wU+cr)yXf#Ob+foOOxW; ir"QI!|25wG3`ywF)yh~@V.kKtr.qp+v.R; w?c@ZzM#!'/7r_+)$NjMN:]qo-]`&z~KlP}|cERO'%s9":6\ZnN/O Subject: No way to build editors/openoffice-2.0 X-BeenThere: freebsd-openoffice@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: rotkap@gmx.de List-Id: Porting OpenOffice to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 18 Mar 2006 18:05:26 -0000 Hi There I am despairing of OOo-compile Problems: [...] patching file hsqldb/src/org/hsqldb/persist/DataFileBlockManager.java patching file hsqldb/src/org/hsqldb/persist/DataFileCache.java patching file hsqldb/src/org/hsqldb/persist/DataFileDefrag.java patching file hsqldb/src/org/hsqldb/persist/HsqlDatabaseProperties.java patching file hsqldb/src/org/hsqldb/persist/Logger.java patching file hsqldb/src/org/hsqldb/persist/NIOScaledRAFile.java patching file hsqldb/src/org/hsqldb/persist/ScaledRAFile.java patching file hsqldb/src/org/hsqldb/persist/ScriptRunner.java patching file hsqldb/src/org/hsqldb/resources/sql-error-messages.properties patching file hsqldb/src/org/hsqldb/resources/sql-error-messages_it.properties patching file hsqldb/src/org/hsqldb/rowio/RowInputTextQuoted.java patching file hsqldb/src/org/hsqldb/scriptio/ScriptWriterBase.java /usr/bin/perl /usr/ports/editors/openoffice.org-2.0/work/OOB680_m5/solenv/bin/leconvert.pl dos ./unxfbsd.pro/misc/build/hsqldb/build/build.xml ./unxfbsd.pro/misc/build/hsqldb/doc/changelist_1_8_0.txt ./unxfbsd.pro/misc/build/hsqldb/src/org/hsqldb/resources/sql-error-messages_it.properties && touch ./unxfbsd.pro/misc/convert_dos_flag touch ./unxfbsd.pro/misc/build/so_configured_so_hsqldb mkdir ./unxfbsd.pro/misc/build/hsqldb/ mkdir: ./unxfbsd.pro/misc/build/hsqldb/: File exists cd ./unxfbsd.pro/misc/build/hsqldb/ && /usr/ports/editors/openoffice.org-2.0/work/OOB680_m5/external/common/apache-ant-1.6.1/bin/ant -Dbuild.label="build-680m5(Build:9011)" -f build/build.xml jar && touch so_built_so_hsqldb /usr/ports/editors/openoffice.org-2.0/work/OOB680_m5/external/common/apache-ant-1.6.1/bin/ant: Command not found. dmake: Error code 1, while making './unxfbsd.pro/misc/build/so_built_so_hsqldb' '---* tg_merge.mk *---' ERROR: Error 65280 occurred while making /usr/ports/editors/openoffice.org-2.0/work/OOB680_m5/hsqldb dmake: Error code 1, while making 'build_instsetoo_native' '---* *---' *** Error code 255 It was my problem with 1) OOo_2.0.2rc2_src.tar.gz 2) OOo_2.0.2_src.tar.gz Since OOo 2.0.1 I was not able to build any OpenOffice. ;-( What can I do my make args: ,---- | make -DWITHOUT_MOZILLA -DWITHOUT_JAVA -DWITH_CUPS -DWITH_KDE LOCALIZED_LANG=de `---- My Bugreports are without any response yet.. Any Hints, how to fix it? Heino