diff options
author | Heinz Wiesinger <pprkut@slackbuilds.org> | 2010-05-13 00:08:00 +0200 |
---|---|---|
committer | Heinz Wiesinger <pprkut@slackbuilds.org> | 2010-05-13 00:08:00 +0200 |
commit | 1326296c14bf3a1abb1b6bc295bf0a1ce55dee48 (patch) | |
tree | 5ee715a76c456e04d4c0b3e661da8e75a7e0aadb /libraries | |
parent | 1ce2226fd547634228513ab94ccec56f822febd0 (diff) | |
download | slackbuilds-1326296c14bf3a1abb1b6bc295bf0a1ce55dee48.tar.gz |
libraries/gnustep-gui: Removed from 13.0 repository
Diffstat (limited to 'libraries')
-rw-r--r-- | libraries/gnustep-gui/README | 5 | ||||
-rw-r--r-- | libraries/gnustep-gui/gnustep-gui.SlackBuild | 69 | ||||
-rw-r--r-- | libraries/gnustep-gui/gnustep-gui.info | 8 | ||||
-rw-r--r-- | libraries/gnustep-gui/slack-desc | 19 |
4 files changed, 0 insertions, 101 deletions
diff --git a/libraries/gnustep-gui/README b/libraries/gnustep-gui/README deleted file mode 100644 index 0eac499673..0000000000 --- a/libraries/gnustep-gui/README +++ /dev/null @@ -1,5 +0,0 @@ -gnustep-gui implements the ApplicationKit from the OpenStep -specification and is equivalent to Apple Cocoa's Application -Kit framework. - -Requires: gnustep-make and gnustep-base diff --git a/libraries/gnustep-gui/gnustep-gui.SlackBuild b/libraries/gnustep-gui/gnustep-gui.SlackBuild deleted file mode 100644 index 6dcd404832..0000000000 --- a/libraries/gnustep-gui/gnustep-gui.SlackBuild +++ /dev/null @@ -1,69 +0,0 @@ -#!/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 diff --git a/libraries/gnustep-gui/gnustep-gui.info b/libraries/gnustep-gui/gnustep-gui.info deleted file mode 100644 index db0d46a986..0000000000 --- a/libraries/gnustep-gui/gnustep-gui.info +++ /dev/null @@ -1,8 +0,0 @@ -PRGNAM="gnustep-gui" -VERSION="0.16.0" -HOMEPAGE="http://www.gnustep.org" -DOWNLOAD="ftp://ftp.gnustep.org/pub/gnustep/core/gnustep-gui-0.16.0.tar.gz" -MD5SUM="464b80094e438fe0cc8e6ae691b3384c" -MAINTAINER="Stefan Bidigaray" -EMAIL="teco.sb@gmail.com" -APPROVED="rworkman" diff --git a/libraries/gnustep-gui/slack-desc b/libraries/gnustep-gui/slack-desc deleted file mode 100644 index 6e73fb4001..0000000000 --- a/libraries/gnustep-gui/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---------------------------------------------------| -gnustep-gui: gnustep-gui (GNUstep GUI library) -gnustep-gui: -gnustep-gui: GNUstep is a cross-platform, object-oriented framework for desktop -gnustep-gui: applicaiton development. It is based on the OPENSTEP specification -gnustep-gui: originally published by NeXT (now Apple). -gnustep-gui: The GNUstep GUI library includes all needed classes to construct -gnustep-gui: advanced graphical applications. It is GNUstep's equivalent to -gnustep-gui: Apple's Cocoa Application Kit framework. -gnustep-gui: -gnustep-gui: Homepage: http://www.gnustep.org -gnustep-gui: |