#!/bin/sh # Heavily based on the Slackware 13.0 SlackBuild # http://wmi.math.u-szeged.hu/xaos/doku.php?id=main # http://www.slacky.eu # # Required gsl # # Exit on most errors set -e CWD=`pwd` TMP=${TMP:-/tmp/txz} NAME=xaos PKG=$TMP/package/$NAME VERSION=3.5 ARCH=${ARCH:-i486} BUILD=5hrp SOURCE=http://downloads.sourceforge.net/project/xaos/XaoS/$VERSION/$NAME-$VERSION.tar.gz if [ ! -e $NAME-$VERSION.tar.gz ]; then wget -c $SOURCE fi if [ "$ARCH" = "i486" ]; then SLKCFLAGS="-O2 -march=i486 -mtune=i686"; SLKLDFLAGS=""; LIBDIRSUFFIX=""; CHOST=i486 elif [ "$ARCH" = "i686" ]; then SLKCFLAGS="-O2 -march=i686 -mtune=i686"; SLKLDFLAGS=""; LIBDIRSUFFIX=""; CHOST=i486 elif [ "$ARCH" = "x86_64" ]; then SLKCFLAGS="-O2 -fPIC"; SLKLDFLAGS="-L/usr/lib64"; LIBDIRSUFFIX="64" fi if [ ! -d $TMP ]; then mkdir -p $TMP fi if [ ! -d $PKG ]; then mkdir -p $PKG fi cd $TMP tar xvzf $CWD/$NAME-$VERSION.tar.gz echo -e "\E[0;32m+-----------------------+\E[0;0m" echo -e "\E[0;32m| Start SlackBuild XaoS |\E[0;0m" echo -e "\E[0;32m+-----------------------+\E[0;0m" cd $NAME-$VERSION find . -perm 666 -exec chmod 644 {} \; find . -perm 664 -exec chmod 644 {} \; find . -perm 600 -exec chmod 644 {} \; find . -perm 444 -exec chmod 644 {} \; find . -perm 400 -exec chmod 644 {} \; find . -perm 440 -exec chmod 644 {} \; find . -perm 777 -exec chmod 755 {} \; find . -perm 775 -exec chmod 755 {} \; find . -perm 511 -exec chmod 755 {} \; find . -perm 711 -exec chmod 755 {} \; find . -perm 555 -exec chmod 755 {} \; chown -R root:root . LDFLAGS="$SLKLDFLAGS" \ CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" \ ./configure --prefix=/usr \ --sysconfdir=/etc \ --localstatedir=/var \ --libdir=/usr/lib${LIBDIRSUFFIX} \ --disable-static \ --mandir=/usr/man \ --infodir=/usr/info \ --docdir=/usr/doc/$NAME-$VERSION \ --program-prefix= \ --program-suffix= \ --build=$ARCH-slackware-linux read make make install DESTDIR=$PKG mkdir -p $PKG/usr/doc/$NAME-$VERSION/SlackBuild cp -a AUTHORS ChangeLog* COPYING INSTALL NEWS README TODO $PKG/usr/doc/$NAME-$VERSION mkdir -p $PKG/install cat $CWD/slack-desc > $PKG/install/slack-desc cat $CWD/slack-desc > $PKG/usr/doc/$NAME-$VERSION/SlackBuild/slack-desc cat $CWD/$NAME.SlackBuild > $PKG/usr/doc/$NAME-$VERSION/SlackBuild/$NAME.SlackBuild install -m 644 -p -D $CWD/xaos.desktop $PKG/usr/share/applications/xaos.desktop install -m 644 -p -D $CWD/xaos.png $PKG/usr/share/pixmaps/xaos.png echo "if [ -x /usr/bin/update-desktop-database ]; then /usr/bin/update-desktop-database &> /dev/null fi" >> $PKG/install/doinst.sh echo "" >> $PKG/install/doinst.sh echo "if [ -x /usr/bin/gtk-update-icon-cache ]; then /usr/bin/gtk-update-icon-cache -f -q /usr/share/icons/hicolor &> /dev/null fi" >> $PKG/install/doinst.sh echo "" >> $PKG/install/doinst.sh rm $PKG/usr/info/dir find $PKG/usr/man -type f -exec gzip -9 {} \; find $PKG/usr/info -type f -exec gzip -9 {} \; strip --strip-unneeded $PKG/usr/bin/* cd $PKG requiredbuilder -y -v -s $CWD $PKG makepkg -l y -c n $CWD/$NAME-$VERSION-$ARCH-$BUILD.txz if [ "$1" = "--cleanup" ]; then rm -rf $TMP fi