LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware
User Name
Password
Slackware This Forum is for the discussion of Slackware Linux.

Notices


Reply
  Search this Thread
Old 10-23-2010, 07:02 AM   #31
maxmiorim
Member
 
Registered: Sep 2010
Location: Brazil
Distribution: Slackware
Posts: 43

Rep: Reputation: 8

@gargamel
Indeed, the UI needs some work.

I'd kill for an UI better designed for widescreen monitors, for example.

Seriously, it's not hard to fit two pages side by side on a 24" LCD but both get cut somewhere near the bottom/top because there are 2-4 toolbars, a menu bar and the window border.

Last edited by maxmiorim; 10-23-2010 at 07:09 AM. Reason: rabble rabble rabble
 
Old 10-23-2010, 07:36 AM   #32
samac
Senior Member
 
Registered: Mar 2004
Location: Kirkwall, Orkney
Distribution: Linux Mint 20.3 - Cinnamon
Posts: 1,425

Rep: Reputation: 139Reputation: 139
Quote:
Has anyone installed a language package?
How would I go about it? Download the 20 MB tar ball with a dozen RPM files in it, then rpm2tgz and installpkg?

LibreOffice language packs
Yes the language packs work just fine but you have to play around with the default install directories. The RPM's install to /opt/libreoffice3 and Alien Bob's package installs to /usr/lib/libreoffice

I did it like this
Code:
mkdir ~/pkg
mkdir ~/tmp

# download the language tar.gz to ~/tmp
cd ~/tmp
tar -xvzf LibO-xxx-xx.tgz
cd en_GB/RPMS
rpm2tgz *.rpm
rm *.rpm
installpkg --root ~/pkg *.tgz
rm ~/pkg/var/log/packages/*
cd  ~/pkg
mkdir usr
mkdir usr/lib
cd opt/
mv libreoffice3 ../usr/lib
cd ..
rmdir opt/
cd usr/lib
mv libreoffice3 libreoffice
cd ~/pkg
makepkg ../libreoffice-en_GB-samac-i486-1.tgz
Do all this as root and substitute your own language and name into the package that you have made and install your package as normal. Once you start libreoffice you will have to change your language settings in options.

samac

Last edited by samac; 10-23-2010 at 11:52 AM.
 
1 members found this post helpful.
Old 10-23-2010, 07:56 AM   #33
niels.horn
Senior Member
 
Registered: Mar 2007
Location: Rio de Janeiro - Brazil
Distribution: Slackware64-current
Posts: 1,004

Rep: Reputation: 91
@samac: I did something very similar, just letting it install in /opt, as I use the binaries from TDF with my SlackBuild.

I might (if time allows) write a simple SlackBuild that uses one variable for the language and another for choosing the destination of the files (like /opt for the binary version, /lib for Eric's version).
 
Old 10-23-2010, 08:07 AM   #34
Lufbery
Senior Member
 
Registered: Aug 2006
Location: Harrisburg, PA
Distribution: Slackware 64 14.2
Posts: 1,180
Blog Entries: 29

Rep: Reputation: 135Reputation: 135
FWIW, (and I know this is a beta), I'm getting crashes with Libreoffice's writer every time I try to dock the navigator panel.
 
Old 10-23-2010, 08:14 AM   #35
niels.horn
Senior Member
 
Registered: Mar 2007
Location: Rio de Janeiro - Brazil
Distribution: Slackware64-current
Posts: 1,004

Rep: Reputation: 91
Quote:
Originally Posted by Lufbery View Post
FWIW, (and I know this is a beta), I'm getting crashes with Libreoffice's writer every time I try to dock the navigator panel.
uhm, I haven't had a single crash yet (but I'm not really a heavy "Writer" user, I use Calc a lot more).
Can you reproduce this with a few simple steps?
Any error messages? (If you can reproduce it, start Writer from the command line to see possible output when crashing)
 
Old 10-23-2010, 09:28 AM   #36
hemp4fuel
Member
 
Registered: Jun 2003
Location: Topeka, KS
Distribution: Slackware
Posts: 193

Rep: Reputation: 45
Quote:
Originally Posted by repo View Post
I have removed openoffice and installed libreoffice.
There is no ooffice

Kind regards
I did the same with alienbob's package and there is both.
 
Old 10-23-2010, 09:35 AM   #37
brixtoncalling
Member
 
Registered: Jul 2008
Location: British Columbia
Distribution: Slackware current
Posts: 403

Rep: Reputation: 67
Quote:
Originally Posted by Lufbery View Post
FWIW, (and I know this is a beta), I'm getting crashes with Libreoffice's writer every time I try to dock the navigator panel.
Strange. It docks fine for me...
 
Old 10-23-2010, 11:39 AM   #38
kite
Member
 
Registered: Aug 2003
Location: Shenzhen, China
Distribution: Slackware
Posts: 306

Rep: Reputation: 47
Quote:
Originally Posted by samac View Post
installpkg --root ~/pkg *.tgz
above step will create a ~/pkg/var/log/ there. Since we are going to combine all the small tgz into one tgz, var/log should be deleted.
 
1 members found this post helpful.
Old 10-23-2010, 11:54 AM   #39
samac
Senior Member
 
Registered: Mar 2004
Location: Kirkwall, Orkney
Distribution: Linux Mint 20.3 - Cinnamon
Posts: 1,425

Rep: Reputation: 139Reputation: 139
Quote:
above step will create a ~/pkg/var/log/ there. Since we are going to combine all the small tgz into one tgz, var/log should be deleted
I have edited the sequence and added this command
Quote:
rm ~/pkg/var/log/packages/*
I haven't tested it, but I reckon it should be OK.

samac
 
Old 10-23-2010, 11:56 AM   #40
gargamel
Senior Member
 
Registered: May 2003
Distribution: Slackware, OpenSuSE
Posts: 1,839

Rep: Reputation: 242Reputation: 242Reputation: 242
Quote:
Originally Posted by samac View Post
Yes the language packs work just fine but you have to play around with the default install directories. The RPM's install to /opt/libreoffice3 and Alien Bob's package installs to /usr/lib/libreoffice

I did it like this
Code:
mkdir ~/pkg
mkdir ~/tmp

# download the language tar.gz to ~/tmp
cd ~/tmp
tar -xvzf LibO-xxx-xx.tgz
cd en_GB/RPMS
rpm2tgz *.rpm
rm *.rpm
installpkg --root ~/pkg *.tgz
cd  ~/pkg
mkdir usr
mkdir usr/lib
cd opt/
mv libreoffice3 ../usr/lib
cd ..
rmdir opt/
cd usr/lib
mv libreoffice3 libreoffice
cd ~/pkg
makepkg ../libreoffice-en_GB-samac-i486-1.tgz
Do all this as root and substitute your own language and name into the package that you have made and install your package as normal. Once you start libreoffice you will have to change your language settings in options.

samac
Thanks a lot, however, I get:

Code:
# rpm2tgz *.rpm
ERROR:  rpm2cpio failed.  (maybe libobasis3.3-de-3.3.0-1.x86_64.rpm is not an RPM?)
ERROR:  rpm2cpio failed.  (maybe libobasis3.3-de-base-3.3.0-1.x86_64.rpm is not an RPM?)
ERROR:  rpm2cpio failed.  (maybe libobasis3.3-de-binfilter-3.3.0-1.x86_64.rpm is not an RPM?)
ERROR:  rpm2cpio failed.  (maybe libobasis3.3-de-calc-3.3.0-1.x86_64.rpm is not an RPM?)
ERROR:  rpm2cpio failed.  (maybe libobasis3.3-de-draw-3.3.0-1.x86_64.rpm is not an RPM?)
ERROR:  rpm2cpio failed.  (maybe libobasis3.3-de-help-3.3.0-1.x86_64.rpm is not an RPM?)
ERROR:  rpm2cpio failed.  (maybe libobasis3.3-de-impress-3.3.0-1.x86_64.rpm is not an RPM?)
ERROR:  rpm2cpio failed.  (maybe libobasis3.3-de-math-3.3.0-1.x86_64.rpm is not an RPM?)
ERROR:  rpm2cpio failed.  (maybe libobasis3.3-de-res-3.3.0-1.x86_64.rpm is not an RPM?)
ERROR:  rpm2cpio failed.  (maybe libobasis3.3-de-writer-3.3.0-1.x86_64.rpm is not an RPM?)
ERROR:  rpm2cpio failed.  (maybe libreoffice3-de-3.3.0-1.x86_64.rpm is not an RPM?)
But with src2pkg I was able to create .tgz files. In the end it worked, and I have LibO with a UI in my language. Thanks a lot!

gargamel
 
Old 10-24-2010, 08:40 PM   #41
niels.horn
Senior Member
 
Registered: Mar 2007
Location: Rio de Janeiro - Brazil
Distribution: Slackware64-current
Posts: 1,004

Rep: Reputation: 91
Hi,

I built a SlackBuild script for the language packs. It's currently in the pending queue at SBo, but if you want to try it before it gets approval, feel free to download it from here.

Get your language packs from here (for 32-bits) or here (for 64-bits).

It takes two variables:
- LOLANG as the "locale" (default = en_GB)
- ALIEN to choose "/usr/lib" as the base directory instead of "/opt" (default = no)

So, simply run it as:
Code:
# LOLANG=pt-BR ./libreoffice-langpack.SlackBuild
for the Brazilian Portuguese language pack that will install in /opt

or:
Code:
# LOLANG=nl ALIEN=yes ./libreoffice-langpack.SlackBuild
for the Dutch language pack that will install in /usr/lib, for Eric's packages.
 
1 members found this post helpful.
Old 10-25-2010, 02:23 AM   #42
Martinezio
Member
 
Registered: May 2009
Location: Warsaw, Poland
Distribution: Slackware64-current
Posts: 191

Rep: Reputation: 32
Niels: does this option ALIEN=yes work also for Slack-64 (main library path is /usr/lib64 )?

Can anyone prepare some patches, that swich the source building process to use git repository via http protocol?
 
Old 10-25-2010, 04:18 AM   #43
niels.horn
Senior Member
 
Registered: Mar 2007
Location: Rio de Janeiro - Brazil
Distribution: Slackware64-current
Posts: 1,004

Rep: Reputation: 91
Quote:
Originally Posted by Martinezio View Post
Niels: does this option ALIEN=yes work also for Slack-64 (main library path is /usr/lib64 )?
Ehh... well, now it does! (just uploaded a corrected version.)
 
Old 10-25-2010, 06:58 AM   #44
Lufbery
Senior Member
 
Registered: Aug 2006
Location: Harrisburg, PA
Distribution: Slackware 64 14.2
Posts: 1,180
Blog Entries: 29

Rep: Reputation: 135Reputation: 135
Quote:
Originally Posted by brixtoncalling View Post
Strange. It docks fine for me...
Are you using Alien Bob's package?
 
Old 11-01-2010, 06:38 AM   #45
H_TeXMeX_H
LQ Guru
 
Registered: Oct 2005
Location: $RANDOM
Distribution: slackware64
Posts: 12,928
Blog Entries: 2

Rep: Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301
I installed it manually and it seems to work fine (extracted rpms and copied to somewhere locally). It's actually faster than go-oo now.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
LXer: How to install libreoffice in Ubuntu using PPA LXer Syndicated Linux News 1 10-05-2010 06:05 AM
LXer: How to Install LibreOffice in Ubuntu LXer Syndicated Linux News 1 10-03-2010 10:47 AM
LXer: Libreoffice will set free OpenOffice LXer Syndicated Linux News 0 10-03-2010 05:41 AM
LXer: Goodbye OpenOffice. LibreOffice, Here I Come! LXer Syndicated Linux News 0 09-30-2010 01:50 AM
LXer: LibreOffice Is The New OpenOffice.org LXer Syndicated Linux News 5 09-29-2010 05:25 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware

All times are GMT -5. The time now is 11:05 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration