From owner-freebsd-openoffice@FreeBSD.ORG Mon Jan 4 11:02:41 2010 Return-Path: Delivered-To: openoffice@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 53085106568B for ; Mon, 4 Jan 2010 11:02:41 +0000 (UTC) (envelope-from borja@pexego.es) Received: from ns205739.ovh.net (ns205739.ovh.net [94.23.33.38]) by mx1.freebsd.org (Postfix) with ESMTP id 057F38FC21 for ; Mon, 4 Jan 2010 11:02:40 +0000 (UTC) X-Bogosity: Unsure, spamicity=0.500001 X-DKIM: Sendmail DKIM Filter v2.8.3 ns205739.ovh.net o04AWwcL078329 DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=pexego.es; s=pexego; t=1262601184; bh=vAcI7ra2euOUxzB1AWqIsgj+hIHwBOTKn3RvjIW5bns=; h=Date:From:To:Subject:Message-Id:Mime-Version:Content-Type: Content-Transfer-Encoding; b=pIPdZXyOb3f4IrxMRGj1B1Ny7te1RcqPI9zl3b8Bw6W0KoUJwz3tTc9A3mUfdU2kh flKBy2MS60m7BkdL31YmETvWfzIsWUhC/h17LI/cSXrMALGHGbv6DpIbXX5Odp0rnF ghhWD1yd/uHaxwUUBWUgq7INmdkrbqqpqVE+O7Dg= Received: from albaricoque.pxgo.es (141.87.60.213.static.mundo-r.com [213.60.87.141]) (authenticated bits=0) by ns205739.ovh.net (8.14.3/8.14.3) with ESMTP id o04AWwcL078329 (version=TLSv1/SSLv3 cipher=DHE-DSS-AES256-SHA bits=256 verify=NO) for ; Mon, 4 Jan 2010 11:33:04 +0100 (CET) (envelope-from borja@pexego.es) Date: Mon, 4 Jan 2010 11:34:59 +0100 From: Francisco de Borja =?ISO-8859-1?Q?L=F3pez_R=EDo?= To: openoffice@freebsd.org Message-Id: <20100104113459.8a500c40.borja@pexego.es> Organization: Pexego Sistemas =?ISO-8859-1?Q?Inform=E1ticos?= S.L. X-Mailer: Sylpheed 2.5.0 (GTK+ 2.12.11; i386-portbld-freebsd7.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: Subject: Problems with FreeBSD 8, OpenOffice 3.1.1 and pyuno 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, 04 Jan 2010 11:02:41 -0000 Hi guys, I've a problem with OpenOffice 3.1.1 and FreeBSD 8. I've build the port from the latest ports tree in FreeBSD 8-STABLE: cd /usr/ports/editors/openoffice.org-3 && make -DWITHOUT_GNOME -DWITHOUT_CUPS LOCALIZED_LANG=es && make -DWITHOUT_GNOME -DWITHOUT_CUPS LOCALIZED_LANG=es package everything compiled and installed correctly, but as soon as I tried to use the pyuno bridge I noticed that it was compiled with SYSTEM_PYTHON="NO", so I wasn't able to import uno within the system-wide python interpreter. I've added the needed path to my PYTHONPATH and followed the instructions here: http://udk.openoffice.org/python/python-bridge.html#replacing to replace the python version within openoffice with my python version (installed from ports too). But as soon as I try to import the uno module I get: > setenv PYTHONPATH /usr/local/openoffice.org-3.1.1/openoffice.org/basis3.1/program/ > python Python 2.6.4 (r264:75706, Dec 28 2009, 18:33:38) [GCC 4.2.1 20070719 [FreeBSD]] on freebsd8 Type "help", "copyright", "credits" or "license" for more information. >>> import uno Traceback (most recent call last): File "", line 1, in File "/usr/local/openoffice.org-3.1.1/openoffice.org/basis3.1/program/uno.py", line 33, in import pyuno SystemError: dynamic module not initialized properly >>> which pointed me to some trouble regarding the pyuno.so file. I've tried to see the libs to which pyuno.so was linked with using ldd, and I got some really strange response: > ldd /usr/local/openoffice.org-3.1.1/openoffice.org/basis3.1/program/pyuno.so /usr/local/openoffice.org-3.1.1/openoffice.org/basis3.1/program/pyuno.so: > (no lib at all!) I've checked this in a 7-STABLE box with OpenOffice 2.4.0 and the result is the same (no libs appear when calling ldd). In some linux boxes I've at the office (ubuntu) calling ldd pyuno.so returns the usual information about the linked libs, so I think there is a problem with the building of pyuno.so. I've tried to rebuild only pyuno from the work directory in /usr/ports/editors/openoffice.org-3 switching to SYSTEM_PYTHON="YES", but I had no luck with it, I did: # cd /usr/ports/editors/openoffice.org-3/work # source FreeBSDAMDEnv.Set # setenv SYSTEM_PYTHON "YES" # setenv PYTHON_CFLAGS "-I/usr/local/include/python2.6" # setenv PYTHONPATH "/usr/local/lib:/usr/local/lib/python2.6:/usr/local/lib/python2.6/lib-dynload" # cd pyuno # rm -r unxfbsdx.pro # cd source/module # dmake Doing that seemed to work until it reaches a point where it does some checks on the recently created libs: Making: ../../unxfbsdx.pro/lib/libpyuno.so c++ -Wl,-z,combreloc -Wl,-rpath,'$ORIGIN:$ORIGIN/../ure-link/lib' -shared -L../../unxfbsdx.pro/lib -L../lib -L/home/openoffice.org-3/work/OOO310_m19/solenv/unxfbsdx/lib -L/home/openoffice.org-3/work/OOO310_m19/solver/310/unxfbsdx.pro/lib -L/home/openoffice.org-3/work/OOO310_m19/solenv/unxfbsdx/lib -L/usr/local/jdk1.6.0/lib -L/usr/local/jdk1.6.0/jre/lib/amd64 -L/usr/local/jdk1.6.0/jre/lib/amd64/server -L/usr/local/jdk1.6.0/jre/lib/amd64/native_threads -L/usr/local/lib ../../unxfbsdx.pro/slo/pyuno_version.o -o ../../unxfbsdx.pro/lib/libpyuno.so ../../unxfbsdx.pro/slo/pyuno_runtime.o ../../unxfbsdx.pro/slo/pyuno.o ../../unxfbsdx.pro/slo/pyuno_callable.o ../../unxfbsdx.pro/slo/pyuno_module.o ../../unxfbsdx.pro/slo/pyuno_type.o ../../unxfbsdx.pro/slo/pyuno_util.o ../../unxfbsdx.pro/slo/pyuno_except.o ../../unxfbsdx.pro/slo/pyuno_adapter.o ../../unxfbsdx.pro/slo/pyuno_gc.o -luno_cppu -luno_cppuhelpergcc3 -luno_sal -pthread -lm -Wl,-Bdynamic -lstlport_gcc rm -f ../../unxfbsdx.pro/lib/check_libpyuno.so mv ../../unxfbsdx.pro/lib/libpyuno.so ../../unxfbsdx.pro/lib/check_libpyuno.so /home/openoffice.org-3/work/OOO310_m19/solenv/bin/checkdll.sh -L../../unxfbsdx.pro/lib -L/home/openoffice.org-3/work/OOO310_m19/solver/310/unxfbsdx.pro/lib ../../unxfbsdx.pro/lib/check_libpyuno.so Checking DLL ../../unxfbsdx.pro/lib/check_libpyuno.so ...: ERROR: ../../unxfbsdx.pro/lib/check_libpyuno.so: Undefined symbol "PyType_Type" dmake: Error code 1, while making '../../unxfbsdx.pro/lib/libpyuno.so' ERROR: Error 65280 occurred while making /home/openoffice.org-3/work/OOO310_m19/pyuno/source/module rmdir /tmp/63451 # and there it crashes. I'm somehow lost now, as I've searched through google and tried some many things, so perhaps you could help me with that. I need pyuno working with the system-wide python version because I need to use it in another piece of software (actually OpenERP). Ah, almost forgot to mention the arch is amd64 ;D Thnx for your time and help. Best regards -- "Perceive that which cannot be seen with the eye." - Miyamoto Musashi --------------------------------------------------------------------- Francisco de Borja Lopez Rio (wu@e-shell.org) http://www.codigo23.net / http://www.e-shell.org -- "Do nothing which is of no use." - Miyamoto Musashi --------------------------------------------------------------------- Francisco de Borja Lopez Rio (borja@pexego.es) Pexego Sistemas Informaticos S.L. http://www.pexego.es From owner-freebsd-openoffice@FreeBSD.ORG Mon Jan 4 11:08:08 2010 Return-Path: Delivered-To: openoffice@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7BC671065679 for ; Mon, 4 Jan 2010 11:08:08 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 52AD28FC0C for ; Mon, 4 Jan 2010 11:08:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id o04B888q065953 for ; Mon, 4 Jan 2010 11:08:08 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id o04B87cN065951 for openoffice@FreeBSD.org; Mon, 4 Jan 2010 11:08:07 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 4 Jan 2010 11:08:07 GMT Message-Id: <201001041108.o04B87cN065951@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: gnats set sender to owner-bugmaster@FreeBSD.org using -f From: FreeBSD bugmaster To: openoffice@FreeBSD.org Cc: Subject: Current problem reports assigned to openoffice@FreeBSD.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, 04 Jan 2010 11:08:08 -0000 Note: to view an individual PR, use: http://www.freebsd.org/cgi/query-pr.cgi?pr=(number). The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/140927 openoffice problem build editors/openoffice.org-3 o ports/140608 openoffice /usr/ports/editors/openoffice.org-3 start up problem o ports/140215 openoffice editors/openoffice.org-3: Fatal error on OpenOffice cl o ports/139820 openoffice editors/openoffice.org-3 3.1.1 failed to build with GC o ports/139607 openoffice [Patch] editors/openoffice.org-3-devel: Add knobs for o ports/139449 openoffice editors/openoffice.org-3-devel not building properly w o ports/138144 openoffice editors/openoffice.org-3: 3.1.0 crashes on closing o ports/137293 openoffice editors/openoffice.org-3 fails to build o ports/136753 openoffice editors/openoffice.org-3 fails to create proper profil o ports/136291 openoffice [patch] editors/openoffice.org-3: gpatch failure f ports/134773 openoffice [patch] editors/openoffice.org-3 reduce depenedencies o ports/134458 openoffice editors/openoffice.org* fails to build (multiple versi o ports/132888 openoffice editors/openoffice.org-3: openoffice 3.0.1 fails to bu o ports/132680 openoffice editors/openoffice.org-3: OpenOffice symlinks in /usr/ o ports/129122 openoffice editors/openoffice.org-3: building OpenOffice.org-3.0. 15 problems total. From owner-freebsd-openoffice@FreeBSD.ORG Mon Jan 4 18:09:01 2010 Return-Path: Delivered-To: openoffice@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AFC9D106568F for ; Mon, 4 Jan 2010 18:09:01 +0000 (UTC) (envelope-from bounce@msg-002.mbstrm.com) Received: from m4-184.mobilestorm.com (m4-184.mobilestorm.com [67.201.37.184]) by mx1.freebsd.org (Postfix) with ESMTP id 865FA8FC15 for ; Mon, 4 Jan 2010 18:09:01 +0000 (UTC) Received: from [127.0.0.1] ([127.0.0.1:54876]) by msg-002.msxtra.com (envelope-from ) (ecelerity 2.2.2.42 r(32041/32042)) with ECSTREAM id CD/58-15318-DBE224B4; Mon, 04 Jan 2010 10:09:01 -0800 Date: Mon, 04 Jan 2010 10:09:01 -0800 Message-ID: From: "Collier Minerich" To: openoffice@FreeBSD.org X-Binding: m4.4269 X-ms1: NDI2OXw2NTgxMXxvcGVub2ZmaWNlQEZyZWVCU0Qub3JnfDM4MTE2OHwxMTk0MTUxODF8NTc0OTkw X-JobID: 574990|4269|381168 MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: Paladin Legal Center's Short Sale Acceleration Program Goes Nationwide - January Webinars X-BeenThere: freebsd-openoffice@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: cminerich@paladinlegalcenter.com List-Id: Porting OpenOffice to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jan 2010 18:09:01 -0000 This email was sent to you by Collier Minerich. Please add cminerich@paladinlegalcenter.com or paladinlegalcenter.com to your address book. This will ensure delivery into your Inbox (not your bulk or junk folders). If you have trouble reading this email, go to the [1]online version. Due to the overwhelming success and numerous requests we are pleased to announce that the Paladin Legal Advocacy Center Short Sale Acceleration Program(TM) is now available in all 50 states. We want to thank all of our partner realtors, title companies, mortgage brokers and affiliates for making 2009 a success and look forward to even more business in 2010. Short sales are here to stay, make yourself the expert in your market by having a qualified firm of real estate attorneys on your team. Would you like to close more short sales faster, doing little or no work, and at no cost to you? Would you like your client to better guarded against tax issues and yourself better protected from legal consequences? Would you like to work with a professional legal firm with a 98% success rate and an average 45-60 day completion time? Please allow me the time to introduce you to Paladin Legal Advocacy C enter and our Short Sale Acceleration Program. Our firm's main objective is to save you time, help you make more money, and add value to your clients through our services. We accomplish this by taking all the responsibility for the negotiation, escalation and litigation (if necessary) of the short sale process. This allows the real estate professional to spend your time doing what you do best; listing, showing, and selling homes. If you feel you or your clients could benefit from our services or simply want further information please contact me and I will send you a full package. I encourage you to click the links below to read for yourself the comments from a highly credible third party source. [2]http://mandelman.ml-implode.com/2009/10/spotlight-on-las-vegas-pala din-legal-advocacy-center For further information please join us for one of the live webinars listed below and/or contact me with any questions. Short Sale Acceleration Program(TM) Webinar Presented By Real Estate Attorney Please join the webinar to learn how agents/brokers representing buyers and sellers of short sale properties can learn to: - Make more money in less time closing more short sale transactions. - Completely avoid the time and paperwork required for lender approval. - Avoid personal and professional liability risks. - Simplify the process for yourself and your clients. - Capitalize on the opportunity to significantly grow your business. The webinar will be presented by an experienced real estate attorney from the Paladin Legal Advocacy Center. The webinar will discuss recent trends and regulatory iss ues related to short sales that agents and brokers should be aware of. In addition, the webinar will introduce the Short Sale Acceleration Program available to real estate professionals. For an overview of the Short Sale Acceleration Program and the benefits available to you, please visit our website: [3]www.paladinlegalcenter.com/shortsale.html There will be a significant amount of time for questions and answers with the attorney on every webinar. Register for a session now by clicking a date below: [4]Tue, Jan 5, 2010 2:00 PM - 3:00 PM PST [5]Thu, Jan 7, 2010 2:00 PM - 3:00 PM PST [6]Tue, Jan 12, 2010 2:00 PM - 3:00 PM PST [7]Thu, Jan 14, 2010 2:00 PM - 3:00 PM PST [8] Tue, Jan 19, 2010 2:00 PM - 3:00 PM PST [9]Thu, Jan 21, 2010 2:00 PM - 3:00 PM PST [10]Tue, Jan 26, 2010 2:00 PM - 3:00 PM PST [11]Thu, Jan 28, 2010 2:00 PM - 3:00 PM PST [12][logosm.jpg] COLLIER MINERICH Paladin Legal Center 702-838-PLAC - office 702-413-5100 - mobile cminerich@paladinlegalcenter.com [13]www.paladinlegalcenter.com Please join my network on ActiveRain [14]http://activerain.com/action/referrals/collierminerich [15]Unsubscribe | [16]Complain | [17]Edit Profile | [18]Confirm | [19]Forward to a friend FABULOUS LAS VEGAS NV 89109 [20][sent-by-mobilestorm.jpg] [mytracking.php?t=NDI2OXw2NTgxMXxvcGVub2ZmaWNlQEZyZWVCU0Qub3JnfDM4MTE2 OHwxMTk0MTUxODF8NTc0OTkw&scid=NTc0OTkw ] References 1. http://app.mobilestorm.com/cp/onlinePreview.php?t=NDI2OXw2NTgxMXxvcGVub2ZmaWNlQEZyZWVCU0Qub3JnfDM4MTE2OHwxMTk0MTUxODF8NTc0OTkw 2. http://app.mobilestorm.com/cp/redirect.php?u=NDI2OXw2NTgxMXxvcGVub2ZmaWNlQEZyZWVCU0Qub3JnfDM4MTE2OHwxMTk0MTUxODF8NTc0OTkw&id=2910096 3. http://app.mobilestorm.com/cp/redirect.php?u=NDI2OXw2NTgxMXxvcGVub2ZmaWNlQEZyZWVCU0Qub3JnfDM4MTE2OHwxMTk0MTUxODF8NTc0OTkw&id=2910097 4. http://app.mobilestorm.com/cp/redirect.php?u=NDI2OXw2NTgxMXxvcGVub2ZmaWNlQEZyZWVCU0Qub3JnfDM4MTE2OHwxMTk0MTUxODF8NTc0OTkw&id=2910098 5. http://app.mobilestorm.com/cp/redirect.php?u=NDI2OXw2NTgxMXxvcGVub2ZmaWNlQEZyZWVCU0Qub3JnfDM4MTE2OHwxMTk0MTUxODF8NTc0OTkw&id=2910099 6. http://app.mobilestorm.com/cp/redirect.php?u=NDI2OXw2NTgxMXxvcGVub2ZmaWNlQEZyZWVCU0Qub3JnfDM4MTE2OHwxMTk0MTUxODF8NTc0OTkw&id=2910100 7. http://app.mobilestorm.com/cp/redirect.php?u=NDI2OXw2NTgxMXxvcGVub2ZmaWNlQEZyZWVCU0Qub3JnfDM4MTE2OHwxMTk0MTUxODF8NTc0OTkw&id=2910101 8. http://app.mobilestorm.com/cp/redirect.php?u=NDI2OXw2NTgxMXxvcGVub2ZmaWNlQEZyZWVCU0Qub3JnfDM4MTE2OHwxMTk0MTUxODF8NTc0OTkw&id=2910102 9. http://app.mobilestorm.com/cp/redirect.php?u=NDI2OXw2NTgxMXxvcGVub2ZmaWNlQEZyZWVCU0Qub3JnfDM4MTE2OHwxMTk0MTUxODF8NTc0OTkw&id=2910103 10. http://app.mobilestorm.com/cp/redirect.php?u=NDI2OXw2NTgxMXxvcGVub2ZmaWNlQEZyZWVCU0Qub3JnfDM4MTE2OHwxMTk0MTUxODF8NTc0OTkw&id=2910104 11. http://app.mobilestorm.com/cp/redirect.php?u=NDI2OXw2NTgxMXxvcGVub2ZmaWNlQEZyZWVCU0Qub3JnfDM4MTE2OHwxMTk0MTUxODF8NTc0OTkw&id=2910105 12. http://app.mobilestorm.com/cp/redirect.php?u=NDI2OXw2NTgxMXxvcGVub2ZmaWNlQEZyZWVCU0Qub3JnfDM4MTE2OHwxMTk0MTUxODF8NTc0OTkw&id=2910097 13. http://app.mobilestorm.com/cp/redirect.php?u=NDI2OXw2NTgxMXxvcGVub2ZmaWNlQEZyZWVCU0Qub3JnfDM4MTE2OHwxMTk0MTUxODF8NTc0OTkw&id=2910106 14. http://app.mobilestorm.com/cp/redirect.php?u=NDI2OXw2NTgxMXxvcGVub2ZmaWNlQEZyZWVCU0Qub3JnfDM4MTE2OHwxMTk0MTUxODF8NTc0OTkw&id=2910107 15. http://www.mobilestorm.com/stun/unsubscribe.php?u=NDI2OXw2NTgxMXxvcGVub2ZmaWNlQEZyZWVCU0Qub3JnfDM4MTE2OHwxMTk0MTUxODF8NTc0OTkw 16. http://www.mobilestorm.com/abuse/?u=NDI2OXw2NTgxMXxvcGVub2ZmaWNlQEZyZWVCU0Qub3JnfDM4MTE2OHwxMTk0MTUxODF8NTc0OTkw 17. http://www.mobilestorm.com/stun/editProfile.php?u=NDI2OXw2NTgxMXxvcGVub2ZmaWNlQEZyZWVCU0Qub3JnfDM4MTE2OHwxMTk0MTUxODF8NTc0OTkw 18. http://www.mobilestorm.com/stun/confirm.php?u=NDI2OXw2NTgxMXxvcGVub2ZmaWNlQEZyZWVCU0Qub3JnfDM4MTE2OHwxMTk0MTUxODF8NTc0OTkw 19. http://www.mobilestorm.com/stun/forwardToFriend.php?u=NDI2OXw2NTgxMXxvcGVub2ZmaWNlQEZyZWVCU0Qub3JnfDM4MTE2OHwxMTk0MTUxODF8NTc0OTkw 20. https://app.mobilestorm.com/cp/footerTracking.php?NDI2OXw2NTgxMXxvcGVub2ZmaWNlQEZyZWVCU0Qub3JnfDM4MTE2OHwxMTk0MTUxODF8NTc0OTkw From owner-freebsd-openoffice@FreeBSD.ORG Fri Jan 8 00:10:15 2010 Return-Path: Delivered-To: openoffice@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2B6A1106568F; Fri, 8 Jan 2010 00:10:15 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 021ED8FC23; Fri, 8 Jan 2010 00:10:15 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id o080AEMZ041642; Fri, 8 Jan 2010 00:10:14 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id o080AErY041630; Fri, 8 Jan 2010 00:10:14 GMT (envelope-from edwin) Date: Fri, 8 Jan 2010 00:10:14 GMT Message-Id: <201001080010.o080AErY041630@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, openoffice@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/142449: [patch] editors/openoffice.org-2 use $SUB_FILES & $SUB_LIST to dynamically adjust pkg-message 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, 08 Jan 2010 00:10:15 -0000 Synopsis: [patch] editors/openoffice.org-2 use $SUB_FILES & $SUB_LIST to dynamically adjust pkg-message Responsible-Changed-From-To: freebsd-ports-bugs->openoffice Responsible-Changed-By: edwin Responsible-Changed-When: Fri Jan 8 00:10:14 UTC 2010 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=142449 From owner-freebsd-openoffice@FreeBSD.ORG Fri Jan 8 00:20:15 2010 Return-Path: Delivered-To: openoffice@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E22071065672; Fri, 8 Jan 2010 00:20:15 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id B7F398FC21; Fri, 8 Jan 2010 00:20:15 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id o080KF3Y051102; Fri, 8 Jan 2010 00:20:15 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id o080KFCO051089; Fri, 8 Jan 2010 00:20:15 GMT (envelope-from edwin) Date: Fri, 8 Jan 2010 00:20:15 GMT Message-Id: <201001080020.o080KFCO051089@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, openoffice@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/142450: [patch] editors/openoffice.org-3 use $SUB_FILES & $SUB_LIST to dynamically adjust pkg-message 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, 08 Jan 2010 00:20:16 -0000 Synopsis: [patch] editors/openoffice.org-3 use $SUB_FILES & $SUB_LIST to dynamically adjust pkg-message Responsible-Changed-From-To: freebsd-ports-bugs->openoffice Responsible-Changed-By: edwin Responsible-Changed-When: Fri Jan 8 00:20:14 UTC 2010 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=142450 From owner-freebsd-openoffice@FreeBSD.ORG Fri Jan 8 00:20:21 2010 Return-Path: Delivered-To: openoffice@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 548901065670; Fri, 8 Jan 2010 00:20:21 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 2B58E8FC37; Fri, 8 Jan 2010 00:20:21 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id o080KLRE051648; Fri, 8 Jan 2010 00:20:21 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id o080KKNn051635; Fri, 8 Jan 2010 00:20:21 GMT (envelope-from edwin) Date: Fri, 8 Jan 2010 00:20:21 GMT Message-Id: <201001080020.o080KKNn051635@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, openoffice@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/142451: [patch] editors/openoffice.org-3-RC use $SUB_FILES & $SUB_LIST to dynamically adjust pkg-message 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, 08 Jan 2010 00:20:21 -0000 Synopsis: [patch] editors/openoffice.org-3-RC use $SUB_FILES & $SUB_LIST to dynamically adjust pkg-message Responsible-Changed-From-To: freebsd-ports-bugs->openoffice Responsible-Changed-By: edwin Responsible-Changed-When: Fri Jan 8 00:20:20 UTC 2010 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=142451 From owner-freebsd-openoffice@FreeBSD.ORG Fri Jan 8 00:30:13 2010 Return-Path: Delivered-To: openoffice@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D0C75106566B; Fri, 8 Jan 2010 00:30:13 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id A773F8FC1C; Fri, 8 Jan 2010 00:30:13 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id o080UD6N060088; Fri, 8 Jan 2010 00:30:13 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id o080UDwR060078; Fri, 8 Jan 2010 00:30:13 GMT (envelope-from edwin) Date: Fri, 8 Jan 2010 00:30:13 GMT Message-Id: <201001080030.o080UDwR060078@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, openoffice@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/142452: [patch] editors/openoffice.org-3-devel use $SUB_FILES & $SUB_LIST to dynamically adjust pkg-message 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, 08 Jan 2010 00:30:13 -0000 Synopsis: [patch] editors/openoffice.org-3-devel use $SUB_FILES & $SUB_LIST to dynamically adjust pkg-message Responsible-Changed-From-To: freebsd-ports-bugs->openoffice Responsible-Changed-By: edwin Responsible-Changed-When: Fri Jan 8 00:30:13 UTC 2010 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=142452 From owner-freebsd-openoffice@FreeBSD.ORG Fri Jan 8 02:41:19 2010 Return-Path: Delivered-To: openoffice@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 197F7106566B for ; Fri, 8 Jan 2010 02:41:19 +0000 (UTC) (envelope-from jonathan@kc8onw.net) Received: from mail.kc8onw.net (kc8onw.net [206.55.209.81]) by mx1.freebsd.org (Postfix) with ESMTP id E8B278FC12 for ; Fri, 8 Jan 2010 02:41:18 +0000 (UTC) Received: from [10.70.3.187] (c-98-223-164-104.hsd1.in.comcast.net [98.223.164.104]) by mail.kc8onw.net (Postfix) with ESMTPSA id 18BB01C989 for ; Thu, 7 Jan 2010 21:22:34 -0500 (EST) Message-ID: <4B4696D8.3090405@kc8onw.net> Date: Thu, 07 Jan 2010 21:22:16 -0500 From: Jonathan User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9.1.5) Gecko/20091204 Thunderbird/3.0 MIME-Version: 1.0 To: openoffice@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: Subject: Jail for package building offer 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, 08 Jan 2010 02:41:19 -0000 I have a dual socket Xeon X5550 system that is largely idle and would like to contribute something back to FreeBSD. I cannot give root access to the host system because I do use the system for my email and the like but I can set up a full jail. The system spends almost all of it's time idle which seems like a waste to me. dmesg can be found here http://jonathan.kc8onw.net/dmesg.boot Jonathan