get-scripts annotate openoffice3 @ rev 34

Add sublime-text-3
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Mar 23 08:59:52 2015 +0100 (2015-03-23)
parents 8b66f6a75a05
children 1b30389a08fc
rev   line source
pascal@34 1 SHORT_DESC="Productivity suite."
pascal@34 2 WEB_SITE="http://www.openoffice.org"
pascal@34 3 # end of get.list data
pascal@4 4 #!/bin/sh
pascal@4 5 # get-OpenOffice3, install everything for OpenOffice.org exept KDE/Gnome integration and testsuite.
pascal@4 6 #
pascal@4 7 # (C) 2008 SliTaz - GNU General Public License v3.
pascal@4 8 #
pascal@4 9 # Author : Eric Joseph-Alexandre <erjo@slitaz.org>
pascal@4 10
pascal@4 11 PACKAGE="OpenOffice3"
pascal@7 12 LICENSE="Apache"
pascal@4 13 PATTERN="Linux_x86_install-rpm"
pascal@4 14
pascal@4 15 for MIRROR in \
pascal@4 16 http://mirror.switch.ch/ftp/mirror/OpenOffice \
pascal@4 17 http://openoffice.cict.fr \
pascal@4 18 http://wwwftp.ciril.fr/pub/openoffice \
pascal@4 19 http://artfiles.org/openoffice.org \
pascal@4 20 http://vesta.informatik.rwth-aachen.de/ftp/pub/mirror/OpenOffice \
pascal@4 21 http://ftp.ntua.gr/pub/OpenOffice \
pascal@4 22 http://ftp.iitm.ac.in/openoffice \
pascal@4 23 http://www.ring.gr.jp/archives/misc/openoffice \
pascal@4 24 http://ftp.nluug.nl/pub/office/openoffice \
pascal@4 25
pascal@4 26 do
pascal@4 27 wget -O - $MIRROR/ 2> /dev/null | grep -q localized || continue
pascal@4 28 DIR="stable"
pascal@4 29 LOC=$(wget -O - $MIRROR/localized/ 2> /dev/null | \
pascal@4 30 grep -E ">$LANG/|>${LANG/_/-}/|>${LANG%_*}/" | \
pascal@4 31 head -1 | sed 's/.*href=\"\(.*\)\/\".*/\1/')
pascal@4 32 [ -n "$LOC" ] && DIR="localized/$LOC"
pascal@4 33 VERSION="$(basename $(wget -O - $MIRROR/$DIR/ 2> /dev/null | grep \
pascal@4 34 href=\"[0-9] | tail -1 | sed 's/.*href=\"\(.*\)\".*/\1/') 2> /dev/null)"
pascal@4 35 [ -n "$VERSION" ] && break
pascal@4 36 done
pascal@4 37
pascal@4 38 if [ -z "$VERSION" ]; then
pascal@4 39 abort_package "Can't find VERSION. Abort."
pascal@4 40 fi
pascal@4 41 echo "Selecting $DIR version $VERSION ..."
pascal@4 42 TARBALL="$(wget -O - $MIRROR/$DIR/$VERSION/ \
pascal@4 43 2> /dev/null | grep $PATTERN | tail -1 | sed 's/.*href=\"\(.*\)\".*/\1/')"
pascal@4 44 echo "Archive is $TARBALL ..."
pascal@4 45 WGET_URL=$MIRROR/$DIR/$VERSION/$TARBALL
pascal@4 46
pascal@4 47 TEMP_DIR="/tmp/$PACKAGE.$$"
pascal@4 48 CUR_DIR=$(pwd)
pascal@4 49 SOURCE_DIR="/tmp/src.$$"
pascal@4 50 EXCLUDE="kde|gnome|test"
pascal@4 51 LOG="/tmp/$(basename $0 .sh).log"
pascal@4 52
pascal@4 53 # Check if we have the tarball before.
pascal@4 54 if [ ! -f $SOURCE_DIR/$TARBALL ]; then
pascal@4 55 echo "Downloading OppenOffice.org tarball (it's time to have a break)... "
pascal@4 56 #Check if $SOURCE_DIR exist
pascal@4 57 test -d $SOURCE_DIR || mkdir -p $SOURCE_DIR
pascal@4 58 # Get the file.
pascal@4 59 wget -c $WGET_URL -O $SOURCE_DIR/$TARBALL
pascal@4 60 status
pascal@4 61 fi
pascal@4 62 if [ ! -f $SOURCE_DIR/$TARBALL ]; then
pascal@4 63 rm -rf $SOURCE_DIR
pascal@4 64 abort_package "Could not download $TARBALL. Exiting."
pascal@4 65 fi
pascal@4 66
pascal@4 67 # Creates TEMP_DIR and extract tarball
pascal@4 68 mkdir -p $TEMP_DIR
pascal@4 69 echo -n "Extract files from archive..."
pascal@4 70 tar xvzf $SOURCE_DIR/$TARBALL -C $TEMP_DIR > $LOG 2>&1 ||
pascal@4 71 abort_package "Failed to extract $TARBALL"
pascal@4 72 status
pascal@4 73
pascal@4 74 # extracted pkg can be removed: Save RAM
pascal@4 75 rm -rf $SOURCE_DIR
pascal@4 76
pascal@4 77 cd $TEMP_DIR/*/RPMS
pascal@4 78
pascal@4 79 # Extract everything from RPMS
pascal@4 80 for i in *.rpm
pascal@4 81 do
pascal@4 82 if (! echo $i | egrep -qi $EXCLUDE); then
pascal@4 83 (rpm2cpio $i | cpio -id >> $LOG 2>&1 ) && rm -f $i
pascal@4 84 fi
pascal@4 85 done
pascal@4 86 rpm2cpio desktop-integration/*freedesktop*.rpm | cpio -id >> $LOG 2>&1
pascal@4 87
pascal@4 88 # extracted pkg can be removed: Save RAM
pascal@4 89 rm -f desktop-integration/*freedesktop*.rpm
pascal@4 90
pascal@4 91
pascal@4 92 # Make the package
pascal@4 93 mkdir -p $PACKAGE-$VERSION/fs/usr/lib/openoffice \
pascal@4 94 $PACKAGE-$VERSION/fs/usr/share
pascal@4 95
pascal@4 96 # use mv instead of 'cp -a' to save RAM
pascal@4 97 mv opt/openoffice* $PACKAGE-$VERSION/fs/usr/lib/openoffice
pascal@4 98 mv usr/share/mime $PACKAGE-$VERSION/fs/usr/share
pascal@4 99 mv usr/share/icons $PACKAGE-$VERSION/fs/usr/share
pascal@4 100 mv usr/bin $PACKAGE-$VERSION/fs/usr
pascal@4 101
pascal@4 102 # relocalized OOo libexec directory
pascal@4 103 sed -i 's#/opt/#/usr/lib/openoffice/#' $PACKAGE-$VERSION/fs/usr/bin/openoffice*
pascal@4 104
pascal@4 105 # Create receipt
pascal@4 106 cat > $PACKAGE-$VERSION/receipt <<EOT
pascal@4 107 # SliTaz package receipt.
pascal@4 108
pascal@4 109 PACKAGE="$PACKAGE"
pascal@4 110 VERSION="$VERSION"
pascal@4 111 CATEGORY="office"
pascal@34 112 SHORT_DESC="$SHORT_DESC"
pascal@4 113 DEPENDS="java-jre"
pascal@34 114 WEB_SITE="$WEB_SITE"
pascal@4 115
pascal@4 116 post_install()
pascal@4 117 {
pascal@4 118 cd \$1/usr/share/applications
pascal@4 119 ln -s /usr/lib/openoffice/openoffice.org3/share/xdg/base.desktop openoffice.org3-base.desktop
pascal@4 120 ln -s /usr/lib/openoffice/openoffice.org3/share/xdg/impress.desktop openoffice.org3-impress.desktop
pascal@4 121 ln -s /usr/lib/openoffice/openoffice.org3/share/xdg/writer.desktop openoffice.org3-writer.desktop
pascal@4 122 ln -s /usr/lib/openoffice/openoffice.org3/share/xdg/calc.desktop openoffice.org3-calc.desktop
pascal@4 123 ln -s /usr/lib/openoffice/openoffice.org3/share/xdg/math.desktop openoffice.org3-math.desktop
pascal@4 124 ln -s /usr/lib/openoffice/openoffice.org3/share/xdg/draw.desktop openoffice.org3-draw.desktop
pascal@4 125 ln -s /usr/lib/openoffice/openoffice.org3/share/xdg/printeradmin.desktop openoffice.org3-printeradmin.desktop
pascal@4 126
pascal@4 127 cd \$1/usr/bin
pascal@4 128 ln -sf /usr/lib/openoffice/openoffice.org3/program/soffice
pascal@4 129 }
pascal@4 130
pascal@4 131 post_remove()
pascal@4 132 {
pascal@4 133 rm -f \$1/usr/share/applications/openoffice.org3-*
pascal@4 134 }
pascal@4 135
pascal@4 136 EOT
pascal@4 137
pascal@4 138 fake_install()
pascal@4 139 {
pascal@4 140 mkdir -p $ROOT/var/lib/tazpkg/installed/$PACKAGE
pascal@4 141 echo "00000000000000000000000000000000 $PACKAGE-$VERSION.tazpkg" >> \
pascal@4 142 $ROOT/var/lib/tazpkg/installed.md5
pascal@4 143 [ -s $1/description.txt $ROOT/var/lib/tazpkg/installed/$PACKAGE
pascal@4 144 ( cd fs ; find *) | sed 's|^|/|' > \
pascal@4 145 $ROOT/var/lib/tazpkg/installed/$PACKAGE/files.list
pascal@4 146 if grep -q ^CONFIG_FILES= $1/receipt ; then
pascal@4 147 cd fs
pascal@4 148 find $( . ./receipt ; echo " $CONFIG_FILES" | sed 's| /| |g') |\
pascal@4 149 cpio -o -H newc | gzip -9 > \
pascal@4 150 $ROOT/var/lib/tazpkg/installed/$PACKAGE/volatile.cpio.gz
pascal@4 151 for i in $( . ./receipt ; echo $CONFIG_FILES) ; do
pascal@4 152 [ -e $ROOT$i ] && rm -rf .$i
pascal@4 153 done
pascal@4 154 cd ..
pascal@4 155 fi
pascal@4 156 sed -i "s/^PACKAGE=/UNPACKED_SIZE=\"$(du -chs $1 | sed '$!d;s/.total//')\"\n&/" \
pascal@4 157 $1/receipt
pascal@4 158 cp $1/receipt $ROOT/var/lib/tazpkg/installed/$PACKAGE
pascal@4 159 echo "Compute md5sum..."
pascal@4 160 find fs -type f | xargs md5sum | sed 's| fs/| /|' > \
pascal@4 161 $ROOT/var/lib/tazpkg/installed/$PACKAGE/md5sum
pascal@4 162 echo "Move files..."
pascal@4 163 ( cd $1/fs ; find ) | while read file ; do
pascal@4 164 [ -e $1/fs/$file -a ! -e $ROOT/$file ] &&
pascal@4 165 mv $1/fs/$file $(dirname $ROOT/$file)
pascal@4 166 done
pascal@4 167 }
pascal@4 168 set +e