From 03211015e58a068510801194b6ac0185eeb153e4 Mon Sep 17 00:00:00 2001 From: Niels Horn Date: Sun, 28 Nov 2010 13:49:42 -0600 Subject: office/libreoffice: Updated for version 3.3.0_beta3. Signed-off-by: Robby Workman --- office/libreoffice/README | 4 +-- office/libreoffice/libreoffice.SlackBuild | 49 +++++++++++++++++-------------- office/libreoffice/libreoffice.info | 10 +++---- 3 files changed, 33 insertions(+), 30 deletions(-) (limited to 'office/libreoffice') diff --git a/office/libreoffice/README b/office/libreoffice/README index 73367f0ee2..07f98d1d66 100644 --- a/office/libreoffice/README +++ b/office/libreoffice/README @@ -9,6 +9,4 @@ satisfied by a normal installation. Be sure to look at the script for some optional things you can do when building. -NOTE: -This is for the BETA version, that does *not* include the language packs yet! -So no spell-checker etc. for now. +NOTE: See the separate SlackBuild script for the language packs. diff --git a/office/libreoffice/libreoffice.SlackBuild b/office/libreoffice/libreoffice.SlackBuild index 78f3b0802e..d7edc19227 100644 --- a/office/libreoffice/libreoffice.SlackBuild +++ b/office/libreoffice/libreoffice.SlackBuild @@ -26,15 +26,15 @@ # OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -# Modified by Niels Horn for LibreOffice -# Revision date: 2010/09/30 +# Modified by Niels Horn +# Revision date: 2010/11/24 PRGNAM=libreoffice -VERSION="3.3.0_beta1" +VERSION="3.3.0_beta3" BUILD=${BUILD:-1} TAG=${TAG:-_SBo} -SRCVERSION=${VERSION//_/-} +SRCVERSION=$(echo $VERSION | cut -f1 -d_) if [ -z "$ARCH" ]; then case "$( uname -m )" in @@ -83,13 +83,22 @@ else PKGARCH="i586" fi -# Ignore this - it's just to get the toplevel directory name of the -# extracted tarball archive if [ $WJRE != no ]; then - SOURCEDIR=$(tar tzf $CWD/LO_${SRCVERSION}_Linux_${SRCARCH}_install-rpm-wJRE_${LOLANG}.tar.gz 2>/dev/null | head -n 1 | tr -d \/) + TARJRE="-wJRE" else - SOURCEDIR=$(tar tzf $CWD/LO_${SRCVERSION}_Linux_${SRCARCH}_install-rpm_${LOLANG}.tar.gz 2>/dev/null | head -n 1 | tr -d \/) + TARJRE="" +fi + +# We have all the variables, construct the name of the tarball +TARNAME="LibO_${SRCVERSION}_Linux_${SRCARCH}_install-rpm${TARJRE}_${LOLANG}.tar.gz" +if [ ! -r $TARBALL ]; then + echo "$TARBALL not found" + exit 1 fi + +# Ignore this - it's just to get the toplevel directory name of the +# extracted tarball archive +SOURCEDIR=$(tar tzf $CWD/$TARNAME 2>/dev/null | head -n 1 | tr -d \/) # If the above operation failed for some reason, unset SOURCEDIR so that # the "set -eu" below will cause us to bail out with an error [ -z $SOURCEDIR ] && unset SOURCEDIR @@ -100,12 +109,8 @@ rm -rf $PKG mkdir -p $TMP $PKG $OUTPUT rm -rf $TMP/$SOURCEDIR -# Handle the tarballs that include a bundled JRE -if [ $WJRE != no ]; then - tar xvf $CWD/LO_${SRCVERSION}_Linux_${SRCARCH}_install-rpm-wJRE_${LOLANG}.tar.gz -C $TMP -else - tar xvf $CWD/LO_${SRCVERSION}_Linux_${SRCARCH}_install-rpm_${LOLANG}.tar.gz -C $TMP -fi +# Extract tarball +tar xvf $CWD/$TARNAME -C $TMP # We'll remove this regardless of whether we're using the jre tarball... rm -rf $TMP/$SOURCEDIR/{JavaSetup.jar,installdata,setup} @@ -114,7 +119,7 @@ rm -rf $TMP/$SOURCEDIR/RPMS/{userland,jre-*-linux-*.rpm} cd $TMP/$SOURCEDIR/RPMS/ # Yes, I know there is a Slackware integration file in the desktop-integration # directory, but it's worthless to us. I'd prefer to do things correctly. -mv desktop-integration/libreoffice3.3-freedesktop-menus-3.3-9526.noarch.rpm . +mv desktop-integration/libreoffice3.3-freedesktop-menus-3.3-2.noarch.rpm . # No, I don't want to update our packaged files after the fact rm -f *onlineupdate*.rpm # We don't want this @@ -132,25 +137,25 @@ cd $PKG/usr/bin for FILE in \ sbase scalc sdraw simpress smath soffice spadmin swriter unopkg ; do rm -f $FILE - ln -sf ../../opt/libreoffice3/program/$FILE $FILE ; + ln -sf ../../opt/libreoffice/program/$FILE $FILE ; done cd - # Remove DejaVu and Liberation fonts - these are included in other packages -rm -f opt/libreoffice/basis3.3/share/fonts/truetype/[DL]*.ttf +rm -f opt/libreoffice/basis3.3/share/fonts/truetype/{DejaVu,Liberation}*.ttf # Fix Exec commands in the desktop files # See http://bugzilla.xfce.org/show_bug.cgi?id=2430 -cd $PKG//opt/libreoffice3/share/xdg/ +cd $PKG//opt/libreoffice/share/xdg/ for APP in base calc draw impress math writer; do - sed -i 's%Exec=libreoffice3 -%Exec=s%' $APP.desktop ; + sed -i 's%Exec=libreoffice -%Exec=/opt/libreoffice/program/s%' $APP.desktop ; done cd - ## Install extensions ### --> TODO: Doesn't work for now <-- ### -#UNOPKG_BIN=$PKG/opt/libreoffice3/program/unopkg -#DICT_DIR=$PKG/opt/libreoffice3/share/extension/install +#UNOPKG_BIN=$PKG/opt/libreoffice/program/unopkg +#DICT_DIR=$PKG/opt/libreoffice/share/extension/install #if [ -x "$UNOPKG_BIN" ]; then # UNOPKG_TMP=$TMP/$$$$$$ # find $DICT_DIR -type f -name "*.oxt" \ @@ -161,7 +166,7 @@ cd - # Move docs to their expected locations mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cd $PKG/opt/libreoffice3 +cd $PKG/opt/libreoffice mv README* *LICENSE* readmes licenses $PKG/usr/doc/$PRGNAM-$VERSION cd - cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild diff --git a/office/libreoffice/libreoffice.info b/office/libreoffice/libreoffice.info index a3c386f170..9b5cf790cf 100644 --- a/office/libreoffice/libreoffice.info +++ b/office/libreoffice/libreoffice.info @@ -1,10 +1,10 @@ PRGNAM="libreoffice" -VERSION="3.3.0_beta1" +VERSION="3.3.0_beta3" HOMEPAGE="http://www.documentfoundation.org" -DOWNLOAD="http://download.documentfoundation.org/libreoffice/testing/LO_3.3.0-beta1_Linux_x86_install-rpm_en-US.tar.gz" -MD5SUM="9adffa1804e7695a3946fa946090bfd4" -DOWNLOAD_x86_64="http://download.documentfoundation.org/libreoffice/testing/LO_3.3.0-beta1_Linux_x86-64_install-rpm_en-US.tar.gz" -MD5SUM_x86_64="f22ca22c872d2d1a9b791433bf7dd162" +DOWNLOAD="http://download.documentfoundation.org/libreoffice/testing/3.3.0-beta3/rpm/x86/LibO_3.3.0_Linux_x86_install-rpm_en-US.tar.gz" +MD5SUM="712d2ec29a6c6f89511d82a40dbf9d4c" +DOWNLOAD_x86_64="http://download.documentfoundation.org/libreoffice/testing/3.3.0-beta3/rpm/x86_64/LibO_3.3.0_Linux_x86-64_install-rpm_en-US.tar.gz" +MD5SUM_x86_64="f0abb53d6a85343b0c0b23ba9db27753" MAINTAINER="Niels Horn" EMAIL="niels.horn@gmail.com" APPROVED="rworkman" -- cgit v1.2.3