diff options
author | Stefan Bidigaray <teco.sb@gmail.com> | 2010-05-12 23:30:18 +0200 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2010-05-12 23:30:18 +0200 |
commit | 3310be787a8a6d1587ddc9de3c4e67bc71c96ce1 (patch) | |
tree | 3dd48efd080f802218ee64f8156bac6bbb91bb28 /libraries/gnustep-gui/gnustep-gui.SlackBuild | |
parent | f6b43728da82bd7f19c868f27ce5b3c7a35444df (diff) |
libraries/gnustep-gui: Added to 12.2 repository
Diffstat (limited to 'libraries/gnustep-gui/gnustep-gui.SlackBuild')
-rw-r--r-- | libraries/gnustep-gui/gnustep-gui.SlackBuild | 69 |
1 files changed, 69 insertions, 0 deletions
diff --git a/libraries/gnustep-gui/gnustep-gui.SlackBuild b/libraries/gnustep-gui/gnustep-gui.SlackBuild new file mode 100644 index 0000000000000..6dcd404832aa1 --- /dev/null +++ b/libraries/gnustep-gui/gnustep-gui.SlackBuild @@ -0,0 +1,69 @@ +#!/bin/sh + +# Slackware build script for GNUstep's GUI library. + +# Written by Stefan Bidigaray + +PRGNAM=gnustep-gui +VERSION=0.16.0 +ARCH=${ARCH:-i486} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} + +CWD=$(pwd) +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +if [ "$ARCH" = "i486" ]; then + SLKCFLAGS="-O2 -march=i486 -mtune=i686" +elif [ "$ARCH" = "i686" ]; then + SLKCFLAGS="-O2 -march=i686 -mtune=i686" +fi + +set -e + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP +rm -rf $PRGNAM-$VERSION +tar xvf $CWD/$PRGNAM-$VERSION.tar.gz +cd $PRGNAM-$VERSION +chown -R root:root . +find . \ + \( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \ + -exec chmod 755 {} \; -o \ + \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ + -exec chmod 644 {} \; + +export GNUSTEP_INSTALLATION_DOMAIN=SYSTEM +CFLAGS="$SLKCFLAGS" \ +CXXFLAGS="$SLKCLAGS" \ +./configure \ + --enable-jpeg \ + --enable-libgif \ + --enable-ungif \ + --enable-png \ + --enable-gsnd \ + --enable-aspell \ + --with-x +make +make DESTDIR=$PKG install +unset GNUSTEP_INSTALLATION_DOMAIN + +( cd $PKG + find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | \ + xargs strip --strip unneeded 2> /dev/null || true + find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | \ + xargs strip --strip-unneeded 2> /dev/null +) + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a COPYING* README NEWS $PKG/usr/doc/$PRGNAM-$VERSION +cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild + +mkdir -p $PKG/install +cat $CWD/slack-desc > $PKG/install/slack-desc + +cd $PKG +/sbin/makepkg -c n -l y $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.tgz |