diff options
Diffstat (limited to 'graphics/pcb/pcb.SlackBuild')
-rw-r--r-- | graphics/pcb/pcb.SlackBuild | 62 |
1 files changed, 0 insertions, 62 deletions
diff --git a/graphics/pcb/pcb.SlackBuild b/graphics/pcb/pcb.SlackBuild deleted file mode 100644 index 2a9a115fcc..0000000000 --- a/graphics/pcb/pcb.SlackBuild +++ /dev/null @@ -1,62 +0,0 @@ -#!/bin/sh - -# Slackware build script for pcb -# Written by Kyle Guinn - -# Modified by the SlackBuilds.org project - -PRGNAM=pcb -VERSION=20070208p1 -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 xvf $CWD/$PRGNAM-$VERSION.tar.gz || exit 1 -cd $PRGNAM-$VERSION || exit 1 -chown -R root:root . -chmod -R u+w,go+r-w,a-s . - -CFLAGS="$SLKCFLAGS" \ -./configure \ - --prefix=/usr \ - --sysconfdir=/etc \ - --localstatedir=/var \ - --with-gui=gtk \ - || exit 1 - -make || exit 1 -make install-strip DESTDIR=$PKG || exit 1 - -rm -rf $PKG/usr/info/dir -gzip -9 $PKG/usr/info/* -gzip -9 $PKG/usr/man/man1/pcb.1 - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a AUTHORS COPYING ChangeLog INSTALL NEWS README \ - $PKG/usr/doc/$PRGNAM-$VERSION -cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild - -# The package installs many docs to /usr/share/pcb, but all of the files in -# that directory are not documentation. I'm not extremely happy about this -# idea, but it's the best one I have at the moment... -( cd $PKG/usr/doc/$PRGNAM-$VERSION ; ln -s ../../share/pcb OTHER_DOCS ) - -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 |