summaryrefslogtreecommitdiff
path: root/network/arora/arora.SlackBuild
diff options
context:
space:
mode:
authordsomero <xgizzmo@gmail.com>2010-05-19 21:56:33 -0400
committerDavid Somero <xgizzmo@slackbuilds.org>2010-05-20 23:36:16 -0500
commit1bdf4b84edc3cd09ce9d4c3b887c6410166ac8e0 (patch)
treea6c40447d1b286dda86293dd0e207de18a6ed519 /network/arora/arora.SlackBuild
parent965d3d0995b9b16243081884f477a89e0ef375f9 (diff)
downloadslackbuilds-1bdf4b84edc3cd09ce9d4c3b887c6410166ac8e0.tar.gz
network/arora: Removed (build failure)
This appears to be due to a too-new qt version (or perhaps too old arora version) :-)
Diffstat (limited to 'network/arora/arora.SlackBuild')
-rw-r--r--network/arora/arora.SlackBuild67
1 files changed, 0 insertions, 67 deletions
diff --git a/network/arora/arora.SlackBuild b/network/arora/arora.SlackBuild
deleted file mode 100644
index f64944f916..0000000000
--- a/network/arora/arora.SlackBuild
+++ /dev/null
@@ -1,67 +0,0 @@
-#!/bin/sh
-#
-# Slackware build script for arora
-#
-# Written by Luciano Tropea <luxiano.a2000@gmail.com> Rio Grande, Tierra del Fuego, Argentina
-
-PRGNAM=arora
-VERSION=${VERSION:-0.10.1}
-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"
- LIBDIRSUFFIX=""
-elif [ "$ARCH" = "i686" ]; then
- SLKCFLAGS="-O2 -march=i686 -mtune=i686"
- LIBDIRSUFFIX=""
-elif [ "$ARCH" = "x86_64" ]; then
- SLKCFLAGS="-O2 -fPIC"
- LIBDIRSUFFIX="64"
-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 {} \;
-
-qmake arora.pro PREFIX=/usr
-
-CFLAGS="$SLKCFLAGS" \
-CXXFLAGS="$SLKCFLAGS" \
-make
-make INSTALL_ROOT=$PKG install
-
-find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \
- | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
-
-mv $PKG/usr/share/man $PKG/usr/man
-
-mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
-cp -a \
- AUTHORS ChangeLog LICENSE.GPL2 LICENSE.GPL3 README \
- $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
-cat $CWD/doinst.sh > $PKG/install/doinst.sh
-
-cd $PKG
-/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}