[dev] Newbe

2010-09-05 Thread Alan Griffiths
Hi,

Have some programming background from way back yonder (Fortran, C,
Pascal, C++, VBA) and would like to help - although very rusty!

Have just built OpenOffice under Ubuntu, but have run out of knowledge
in how to install it (not a Linux guru).  Will continue to peruse the
docs out there..

May take some time for me to get up to speed, although I have plenty
time at the moment..


-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.org
For additional commands, e-mail: dev-h...@openoffice.org



[dev] Installing OOo (ex.Re: [dev] Newbe)

2010-09-05 Thread Camillem

 On 04/09/2010 20:11, Alan Griffiths wrote:

Hi,

Hi Alan,

Have some programming background from way back yonder (Fortran, C,
Pascal, C++, VBA) and would like to help - although very rusty!

Have just built OpenOffice under Ubuntu, but have run out of knowledge
in how to install it (not a Linux guru).  Will continue to peruse the
docs out there..

If you set

export PKGFORMAT=installed

before starting your build, you can have the working result directly 
installed in


your source 
directory/instsetoo_native/unxlngi6.pro/OpenOffice/installed/install/en-US/


the executable files (scalc, swriter, etc.) being installed at

your source 
directory/instsetoo_native/unxlngi6.pro/OpenOffice/installed/install/en-US/openoffice.org3/program


More details in the building guide :

http://wiki.services.openoffice.org/wiki/Documentation/Building_Guide/Building_on_Linux#cite_note-Foot6-4

HTH,
Camille

-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.org
For additional commands, e-mail: dev-h...@openoffice.org



Re: [dev] Newbe

2010-09-05 Thread Konstantin Tokarev
Have just built OpenOffice under Ubuntu, but have run out of knowledgein how 
to install it (not a Linux guru).

make install doesn't work for you?
-- 
Regards,
Konstantin

-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.org
For additional commands, e-mail: dev-h...@openoffice.org



Re: [dev] Newbe

2010-09-05 Thread eric b


Le 4 sept. 10 à 20:11, Alan Griffiths a écrit :


Hi,




Hi,



Have some programming background from way back yonder (Fortran, C,
Pascal, C++, VBA) and would like to help - although very rusty!



So far, C++ is ~ 90% of OOo source code.


Have just built OpenOffice under Ubuntu, but have run out of  
knowledge in how to install it (not a Linux guru).



You'll find everything in instsetoo_native

cd instsetoo_native
find . -name *.tar.gz

= there will be one archive containing all the .deb

1) create a folder
2) put the .tar.gz inside
3) decompress the archive
4) cd in the dir containing all the .deb

cp desktop-integration/*  .# notice the .

sudo dpkg -i  *.deb

And you should be done





Will continue to peruse the docs out there..

May take some time for me to get up to speed, although I have  
plenty time at the moment..




If you are interested to dive into OOo code, and fix some bugs, or  
implement new features, I invite you to have a look on the OOo wiki.


Search for education project (see the links below)


Regards,
Eric Bachard

--
qɔᴉɹə
Education Project:
http://wiki.services.openoffice.org/wiki/Education_Project
Projet OOo4Kids : http://wiki.ooo4kids.org/index.php/Main_Page
L'association EducOOo : http://www.educoo.org
Blog : http://eric.bachard.org/news







[dev] no module named uno error

2010-09-05 Thread Soohong Min
Hello,

I've built Openoffice 3.2.1.4 and install it /opt/openoffice/.
After building, I wanna test some scripts for openoffice using Python.
When I test my script, I got error message

import uno, unohelper
Import Error: No module named uno.

After install package for Openoffice 3.2.1.4 on Ubuntu, I tried these
scripts on Ubuntru, I run it successfully.
But after building Openoffice, I cannot run it. (Openoffice is running well)
How can I fix this?

Any help is appreciated.
Thanks

-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.org
For additional commands, e-mail: dev-h...@openoffice.org



Re: [dev] no module named uno error

2010-09-05 Thread Rene Engelhard
On Sun, Sep 05, 2010 at 03:44:00PM -0700, Soohong Min wrote:
 import uno, unohelper
 Import Error: No module named uno.

Jup.

 After install package for Openoffice 3.2.1.4 on Ubuntu, I tried these
 scripts on Ubuntru, I run it successfully.

Because Ubuntus OOo puts uno.py etc. in the system python path (and uses
system python)

 But after building Openoffice, I cannot run it. (Openoffice is running well)

But a vanilla OpenOffice.org install doesn't do that. And the only
way (unless you put all the .pys and the needed .so files into pythons
site-packages) way to do that is to include OpenOffice.orgs internal python
copy.

Yes, counterintuitive and (IMHO) broken, so distros of course use system-python.

Grüße/Regards,

René

-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.org
For additional commands, e-mail: dev-h...@openoffice.org