diff options
author | Heinz Wiesinger <pprkut@slackbuilds.org> | 2010-05-13 00:07:00 +0200 |
---|---|---|
committer | Heinz Wiesinger <pprkut@slackbuilds.org> | 2010-05-13 00:07:00 +0200 |
commit | 372e623d26d78d2100dc4d69fd3fb13e64735031 (patch) | |
tree | 7b116fd64f62e3971795651e0a0485040a3369c8 /development/cupsddk/cupsddk.SlackBuild | |
parent | f534b1ca5bb2db5245287ef47e47a242eb0f23ef (diff) |
development/cupsddk: Removed from 13.0 repository
Diffstat (limited to 'development/cupsddk/cupsddk.SlackBuild')
-rw-r--r-- | development/cupsddk/cupsddk.SlackBuild | 64 |
1 files changed, 0 insertions, 64 deletions
diff --git a/development/cupsddk/cupsddk.SlackBuild b/development/cupsddk/cupsddk.SlackBuild deleted file mode 100644 index 2dfbdfe5d9d6f..0000000000000 --- a/development/cupsddk/cupsddk.SlackBuild +++ /dev/null @@ -1,64 +0,0 @@ -#!/bin/sh - -# Slackware build script for cupsddk -# Written by Iskar Enev <iskar.enev[@]gmail.com> - -PRGNAM=cupsddk -VERSION=1.2.2 -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 - -rm -rf $PKG -mkdir -p $TMP $PKG $OUTPUT -cd $TMP || exit 1 -rm -rf $PRGNAM-$VERSION -tar -xjvf $CWD/$PRGNAM-$VERSION-source.tar.bz2 || exit 1 -cd $PRGNAM-$VERSION || exit 1 -chown -R root:root . -chmod -R u+w,go+r-w,a-s . - -# foo-fr.po is missing while it's needed at compile time and later for testing purposes. -( cd ppdc ; ln -sf ../po/fr.po foo-fr.po ) - -CFLAGS="$SLKCFLAGS" \ -CXXFLAGS="$SLKCFLAGS" \ -./configure \ - --prefix=/usr \ - --sysconfdir=/etc \ - --localstatedir=/var \ - --mandir=/usr/man \ - --with-docdir=/usr/doc/$PRGNAM-$VERSION \ - || exit 1 - -make || exit 1 -make BUILDROOT=$PKG install || exit 1 - -( 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 -) - -mkdir -p $PKG/usr/share/pixmaps/$PRGNAM -cp -a icons/* $PKG/usr/share/pixmaps/$PRGNAM - -cp -a *.txt *.html doc/*.html doc/*.xml doc/*.pdf doc/*.book doc/images \ - $PKG/usr/doc/$PRGNAM-$VERSION -cp -a examples/* $PKG/usr/doc/$PRGNAM-$VERSION/examples -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 -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.tgz |