#!/bin/sh CWD=`pwd` TMP=/tmp PKG=$TMP/package-koffice # Set the config option variables if they are not already set: if [ -r ../KDE.options ]; then . ../KDE.options fi # The global options may be overridden here (if needed): if [ -r ./local.options ]; then . ./local.options fi rm -rf $PKG mkdir -p $PKG/opt/kde # Avoid a version number in .la files: if [ -d /usr/lib/qt ]; then QTDIR=/usr/lib/qt fi cd $TMP echo "Building koffice-$VERSION.tar.bz2..." tar xjvf $CWD/koffice-$VERSION.tar.bz2 cd koffice-$VERSION cat $CWD/post-1.3.5-koffice.diff | patch -p1 --verbose || exit cat $CWD/post-koffice-1.3.5-rtfimport.diff | patch -p0 --verbose || exit chown -R root.root . find . -perm 664 -exec chmod 644 {} \; CFLAGS=$CPUOPT \ CXXFLAGS=$CPUOPT \ ./configure \ --prefix=/opt/kde \ --with-xinerama \ --disable-debug \ --program-prefix="" \ --program-suffix="" \ $TARGET-slackware-linux make $NUMJOBS make install DESTDIR=$PKG mkdir -p $PKG/usr/doc/koffice-$VERSION cp -a AUTHORS COPYING COPYING.LIB ChangeLog NEWS PROFILING INSTALL README $PKG/usr/doc/koffice-$VERSION mkdir -p $PKG/install cat $CWD/slack-desc > $PKG/install/slack-desc ( cd $PKG find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null ) if [ -d $PKG/opt/kde/man ]; then gzip -9 $PKG/opt/kde/man/man?/* fi cd $PKG makepkg -l y -c n ../koffice-$PKVER-$ARCH-$BUILD.tgz