From e67ceaea03500fe50a6a795c32a852b633857834 Mon Sep 17 00:00:00 2001 From: Robby Workman Date: Mon, 14 Mar 2011 12:54:41 -0500 Subject: office/openoffice.org: Removed (unmaintained) Consider LibreOffice as the replacement. Signed-off-by: Robby Workman --- office/openoffice.org/README | 11 -- office/openoffice.org/doinst.sh | 16 --- office/openoffice.org/openoffice.org.SlackBuild | 181 ------------------------ office/openoffice.org/openoffice.org.info | 10 -- office/openoffice.org/slack-desc | 19 --- 5 files changed, 237 deletions(-) delete mode 100644 office/openoffice.org/README delete mode 100644 office/openoffice.org/doinst.sh delete mode 100644 office/openoffice.org/openoffice.org.SlackBuild delete mode 100644 office/openoffice.org/openoffice.org.info delete mode 100644 office/openoffice.org/slack-desc (limited to 'office') diff --git a/office/openoffice.org/README b/office/openoffice.org/README deleted file mode 100644 index e3222d589d..0000000000 --- a/office/openoffice.org/README +++ /dev/null @@ -1,11 +0,0 @@ -OpenOffice.org is a full-featured open-source office suite that is compatible -with all other major office software. - -This script builds a Slackware package from the official binary (RPM's) -distributed by openoffice.org. Everything needed by the application should -be built statically into it, so there aren't any dependencies not satisfied -by a normal installation. A java runtime environment (jre) is suggested by -openoffice.org, but it is not required (note that jre is part of a standard -installation of Slackware). - -Be sure to look at the script for some optional things you can do when building. diff --git a/office/openoffice.org/doinst.sh b/office/openoffice.org/doinst.sh deleted file mode 100644 index 88ab9f58ff..0000000000 --- a/office/openoffice.org/doinst.sh +++ /dev/null @@ -1,16 +0,0 @@ -if [ -x /usr/bin/update-desktop-database ]; then - /usr/bin/update-desktop-database -q usr/share/applications -fi - -if [ -x /usr/bin/update-mime-database ]; then - /usr/bin/update-mime-database usr/share/mime >/dev/null 2>&1 -fi - -if [ -x /usr/bin/gtk-update-icon-cache ]; then - for theme in gnome locolor hicolor ; do - if [ -e usr/share/icons/$theme/icon-theme.cache ]; then - /usr/bin/gtk-update-icon-cache usr/share/icons/$theme >/dev/null 2>&1 - fi - done -fi - diff --git a/office/openoffice.org/openoffice.org.SlackBuild b/office/openoffice.org/openoffice.org.SlackBuild deleted file mode 100644 index 4969a8bbe7..0000000000 --- a/office/openoffice.org/openoffice.org.SlackBuild +++ /dev/null @@ -1,181 +0,0 @@ -#!/bin/sh - -# Slackware build script for OpenOffice.org - -# Copyright 2006,2007,2008,2009,2010 Robby Workman, Northport, Alabama, ASA -# 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 for some better code in a few places and ideas -# to include the Optimization Solver and disable javaldx. -# Thanks to hba for the idea to include support for other languages. -# Thanks to Nille Akerstrom for the diff to support w/JRE tarballs -# Thanks to ivo@linvo.org for hints on installing extensions -# Thsnks to necropresto for better x86_64 support - -PRGNAM=openoffice.org -VERSION=3.2.1 -BUILD=${BUILD:-1} -TAG=${TAG:-_SBo} - -# Automatically determine the architecture we're building on: -if [ -z "$ARCH" ]; then - case "$( uname -m )" in - i?86) ARCH=i486 ;; - arm*) ARCH=arm ;; - # Unless $ARCH is already set, use uname -m for all other archs: - *) ARCH=$( uname -m ) ;; - esac -fi - -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 (OOLANG=pt-BR ./openoffice.org.SlackBuild for example) or -# change it in this script. Note that you will need to have the correct -# tarball in the build directory for this to work... -# You can get localized tarballs from the following location: -# ftp://ftp.free.fr/mirrors/ftp.openoffice.org/localized/$OOLANG/$VERSION/ -# Thanks to Niki Kovacs for finding this :-) -OOLANG=${OOLANG:-en-US} -PKG_LANG=${OOLANG//-/_} # Leave this alone -# Some localized versions only ship with a bundled JRE, and we'd like this -# script to work on those as well... More importantly, the non-jre tarballs -# don't seem to hang around on the mirrors for the last two releases, so I'm -# just going to use the jre-bundled tarballs. -WJRE=${WJRE:-yes} - -# If you want to disable java support by removing executable permissions -# form OOo's java loader (this will not affect other apps), set this -# variable to "YES" Default is "NO" -DISABLE_JAVA=${DISABLE_JAVA:-NO} - -# Change source package name -if [ "$ARCH" = "x86_64" ]; then - SRCARCH="x86-64" - PKGARCH="$ARCH" -elif [ "$ARCH" = "arm" ]; then - printf "\n$ARCH is unsupported for OOo...\n\n" - exit 1 -else - SRCARCH="x86" - 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/OOo_${VERSION}_Linux_${SRCARCH}_install-rpm-wJRE_${OOLANG}.tar.gz 2>/dev/null | head -n 1 | tr -d \/) -else - SOURCEDIR=$(tar tzf $CWD/OOo_${VERSION}_Linux_${SRCARCH}_install-rpm_${OOLANG}.tar.gz 2>/dev/null | head -n 1 | tr -d \/) -fi -# 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 - -set -eu - -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/OOo_${VERSION}_Linux_${SRCARCH}_install-rpm-wJRE_${OOLANG}.tar.gz -C $TMP -else - tar xvf $CWD/OOo_${VERSION}_Linux_${SRCARCH}_install-rpm_${OOLANG}.tar.gz -C $TMP -fi - -# We'll remove this regardless of whether we're using the jre tarball... -rm -rf $TMP/$SOURCEDIR/{JavaSetup.jar,installdata,setup} -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/openoffice.org3.2-freedesktop-menus-3.2-9502.noarch.rpm . - -# No, I don't want to update our packaged files after the fact -rm -f *onlineupdate*.rpm # We don't want this - -for FILE in *.rpm ; do rpm2cpio < $FILE | cpio -imdv ; done -rm -rf desktop-integration *.rpm -mv opt usr $PKG -cd $PKG - -# Kill a broken symlink -rm -f $PKG/usr/share/applications/openoffice.org3-startcenter.desktop - -# Create symlinks in /usr/bin to actual binaries -cd $PKG/usr/bin - for FILE in \ - sbase scalc sdraw simpress smath soffice spadmin swriter unopkg ; do - rm -f $FILE - ln -sf ../../opt/openoffice.org3/program/$FILE $FILE ; - done -cd - - -# Remove DejaVu and Liberation fonts - these are included in other packages -rm -f opt/openoffice.org/basis3.2/share/fonts/truetype/[DL]*.ttf - -# Fix Exec commands in the desktop files -# See http://bugzilla.xfce.org/show_bug.cgi?id=2430 -cd $PKG//opt/openoffice.org3/share/xdg/ - for APP in base calc draw impress math writer; do - sed -i 's%Exec=openoffice.org3 -%Exec=s%' $APP.desktop ; - done -cd - - -# Install extensions -UNOPKG_BIN=$PKG/opt/openoffice.org3/program/unopkg -DICT_DIR=$PKG/opt/openoffice.org3/share/extension/install -if [ -x "$UNOPKG_BIN" ]; then - UNOPKG_TMP=$TMP/$$$$$$ - find $DICT_DIR -type f -name "*.oxt" \ - -exec $UNOPKG_BIN add --shared {} \ - "-env:UserInstallation=file:///$UNOPKG_TMP" \; - rm -rf $UNOPKG_TMP # Clean up after ourselves -fi - -# Move docs to their expected locations -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cd $PKG/opt/openoffice.org3 - mv README* *LICENSE* readmes licenses $PKG/usr/doc/$PRGNAM-$VERSION -cd - -cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild - -# Disable Java support if desired (see above) -if [ "$DISABLE_JAVA" = "YES" ]; then - chmod -x $PKG/opt/openoffice.org/ure/bin/javaldx -fi - -mkdir -p $PKG/install -cat $CWD/slack-desc > $PKG/install/slack-desc -cat $CWD/doinst.sh > $PKG/install/doinst.sh - -# 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}-$PKGARCH-$BUILD$TAG.${PKGTYPE:-tgz} diff --git a/office/openoffice.org/openoffice.org.info b/office/openoffice.org/openoffice.org.info deleted file mode 100644 index 2ef2540ea9..0000000000 --- a/office/openoffice.org/openoffice.org.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="openoffice.org" -VERSION="3.2.1" -HOMEPAGE="http://openoffice.org" -DOWNLOAD="http://download.services.openoffice.org/files/stable/3.2.1/OOo_3.2.1_Linux_x86_install-rpm-wJRE_en-US.tar.gz" -MD5SUM="ae1cd777d5e06676dceae0901cab7185" -DOWNLOAD_x86_64="http://download.services.openoffice.org/files/stable/3.2.1/OOo_3.2.1_Linux_x86-64_install-rpm-wJRE_en-US.tar.gz" -MD5SUM_x86_64="c5acb46e8c288942829fceebd2c8ec72" -MAINTAINER="Robby Workman" -EMAIL="rw@rlworkman.net" -APPROVED="michiel" diff --git a/office/openoffice.org/slack-desc b/office/openoffice.org/slack-desc deleted file mode 100644 index c2bb3eebb4..0000000000 --- a/office/openoffice.org/slack-desc +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' -# on the right side marks the last column you can put a character in. You must -# make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':'. - - |-----handy-ruler-------------------------------------------------------| -openoffice.org: OpenOffice.org (a full-featured open-source office suite) -openoffice.org: -openoffice.org: OpenOffice.org is a full-featured open-source office suite that is -openoffice.org: compatible with all other major office software. -openoffice.org: -openoffice.org: This is a repackaging of the official OpenOffice.org binary RPM's -openoffice.org: distributed by the upstream developers. -openoffice.org: -openoffice.org: Homepage: http://openoffice.org -openoffice.org: -openoffice.org: -- cgit v1.2.3