Vejam o slackbuilds.org que é a melhor fonte de slackbuilds que conheço. Procurem em repository:Office pelos builds do openoffice-2.4 e do langpack-pt_BR. Todos partem dos RPM's. Vejam referencia quanto à integração no README. Para o langpack nosso há que fazer uma pequena alteração no SlackBuild porque o nome do nosso source é diferente dos outros. Eu usava um SlackBuild que havia desenvolvido para isso mas esse do slackbuilds.org é melhor e passei a usá-lo. Anexo a modificação que fiz caso venha a ser do seu interesse ( Changing broffice to openoffice). Alterem 2.3 para 2.4 de modo a compilar a ultima versão. As fontes estão em openoffice.osuosl.org. Procurem o openoffice em stable e o langpack em localized. Tudo funciona muito bem, em portugues brasileiro, e dentro dos standards do slackware. Gilcio
Em 11/04/08 03:38, Julio Tomaschitz escreveu: > > hmm então talvez seja problema mesmo do BrOffice e não da instalação. > Minha versão é a 2.4, mas desde a 2.0 eu to fuçando na net atrás dessa > solução. Vou baixar a versão em inglês para ver o que é que dá. > valeu pela atenção! > > On 10 abr, 08:57, max <[EMAIL PROTECTED]> wrote: > > 2008/4/6 Julio Tomaschitz <[EMAIL PROTECTED]>: > > > > > > > > > Olá a todos. > > > Acabei de baixar o BrOffice 2.4, como era RPM converti para TGZ com o > > > rpm2tgz e instalei tudo. > > > Como uso o KDE, também instalei o kde-integration, contudo quando > > > preciso abrir algum arquivo, ele abre com o diálogo próprio do > > > BrOffice que é muito complicado. Procurando pela internet parece que > > > fiz tudo certo, e só precisava ativar essa integração selecionando uma > > > caixa em Ferramentas - Opções - BrOffice.org - Geral. O problema é que > > > não tenho essa opção! Simplesmente não aparece. > > > Alguém poderia me ajudar ou tem alguma idéia? > > > Grato, > > > Julio > > > > Até onde eu sei o "kde-integration" são apenas ícones e "atalhos" do > > OOo p/ o KDE. > > > > Eu uso o OOo 2.3, em inglês, e tenho esta opçao: fica em Tools > > (Ferramentas) > Options (Opções) > OpenOffice.org > General (Geral). > > Fica bem no meio da tela, no label Open/Save Dialog (Diálogos de > > carregar/salvar - PS: que tradução literal porca :P). > > > > --~--~---------~--~----~------------~-------~--~----~ GUS-BR - Grupo de Usuários de Slackware Brasil http://www.slackwarebrasil.org/ http://groups.google.com/group/slack-users-br -~----------~----~----~----~------~----~------~--~---
#!/bin/bash # # Slackware build script of openoffice.org language pack (binary repackaging) # Copyright 2006-2007 Robby Workman (http://rlworkman.net) # All rights reserved. # # Redistribution and use of this script, with or without modification, is # permitted provided that the following conditions are met: # # 1. Redistributions of this script must retain the above copyright # notice, this list of conditions and the following disclaimer. # # THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED # WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF # MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO # EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, # PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; # OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, # WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR # OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. # Thanks to Sandman1, Larhzu, and MacIver for early assistance. # Thanks to Fred Emmott (http://slamd64.com) for some better code in a few # places and ideas to include the Optimization Solver and disable javaldx. # Thanks to eroc for the idea to include support for other languages. # Edited by Jan Herrygers to make it a Slackware build script of # openoffice.org language packs. 10 july 2007 PRGNAM=openoffice.org-langpack VERSION=2.3.1 ARCH=noarch BUILD=${BUILD:-1} TAG=${TAG:-_SBo12.0} CWD=$(pwd) TMP=${TMP:-/tmp/SBo} PKG=$TMP/package-$PRGNAM OUTPUT=${OUTPUT:-/tmp} # This should allow you to either pass a different value of OOLANG when you # run the script or change it in this script. Note that you will need to # have the correct tarball in the build directory for this to work... OOLANG=${OOLANG:-pt-BR} PKG_LANG=$(echo $OOLANG | sed s/-/_/) # Leave this alone # Require the script to exit if any command fails set -e # Ignore this - it's just to get the toplevel directory name of the # extracted tarball archive SOURCEDIR=$(tar -tzf $CWD/BrOo_${VERSION}_LinuxIntel_langpack_${OOLANG}.tar.gz | head -1 | tr -d \/) rm -rf $PKG mkdir -p $TMP $PKG $OUTPUT cd $TMP rm -rf $SOURCEDIR tar -xzf $CWD/BrOo_${VERSION}_LinuxIntel_langpack_${OOLANG}.tar.gz || exit 1 cd $SOURCEDIR/RPMS/ for FILE in *.rpm ; do rpm2cpio < $FILE | cpio -imdv ; done mv opt $PKG cd $PKG #Changing broffice to openoffice ( cd $PKG/opt; mv broffice.org2.3 openoffice.org2.3 ) # Move docs to their correct locations mkdir -p $PKG/usr/doc/$PRGNAM-${VERSION}_${PKG_LANG} for i in readmes licenses ; do mv $PKG/opt/openoffice.org2.3/$i \ $PKG/usr/doc/$PRGNAM-${VERSION}_${PKG_LANG}/$i ; done cat $CWD/$PRGNAM.SlackBuild > \ $PKG/usr/doc/$PRGNAM-${VERSION}_${PKG_LANG}.SlackBuild mkdir -p $PKG/install cat $CWD/slack-desc > $PKG/install/slack-desc # Fix ownership and permissions and make the package chown -R root:root . find . -type d -exec chmod 755 {} \; chmod -R u+rw,go+r-w,a-s . /sbin/makepkg -c n -l y $OUTPUT/$PRGNAM-${VERSION}_${PKG_LANG}-$ARCH-$BUILD$TAG.tgz

