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 | |
parent | f6b43728da82bd7f19c868f27ce5b3c7a35444df (diff) | |
download | slackbuilds-3310be787a8a6d1587ddc9de3c4e67bc71c96ce1.tar.gz |
libraries/gnustep-gui: Added to 12.2 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, 101 insertions, 0 deletions
diff --git a/libraries/gnustep-gui/README b/libraries/gnustep-gui/README new file mode 100644 index 0000000000..0eac499673 --- /dev/null +++ b/libraries/gnustep-gui/README @@ -0,0 +1,5 @@ +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 new file mode 100644 index 0000000000..6dcd404832 --- /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 diff --git a/libraries/gnustep-gui/gnustep-gui.info b/libraries/gnustep-gui/gnustep-gui.info new file mode 100644 index 0000000000..db0d46a986 --- /dev/null +++ b/libraries/gnustep-gui/gnustep-gui.info @@ -0,0 +1,8 @@ +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 new file mode 100644 index 0000000000..6e73fb4001 --- /dev/null +++ b/libraries/gnustep-gui/slack-desc @@ -0,0 +1,19 @@ +# 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: |