summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobby Workman <rworkman@slackbuilds.org>2011-03-14 17:25:03 -0500
committerRobby Workman <rworkman@slackbuilds.org>2011-03-14 17:25:03 -0500
commit840e9e14740b2ffa90986ab7be5451013615debd (patch)
tree9c3c147c434110faf9416b8a02201d14a4105ea9
parent75c5ce139096ca78e1c20551df407f51cfece927 (diff)
downloadslackbuilds-840e9e14740b2ffa90986ab7be5451013615debd.tar.gz
system/bar: Removed (unmaintained)
Reference: http://lists.slackbuilds.org/pipermail/slackbuilds-users/2010-October/006570.html Signed-off-by: Heinz Wiesinger <pprkut@slackbuilds.org> Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
-rw-r--r--system/bar/README9
-rw-r--r--system/bar/bar.SlackBuild88
-rw-r--r--system/bar/bar.info10
-rw-r--r--system/bar/slack-desc20
4 files changed, 0 insertions, 127 deletions
diff --git a/system/bar/README b/system/bar/README
deleted file mode 100644
index c5a4500cf2..0000000000
--- a/system/bar/README
+++ /dev/null
@@ -1,9 +0,0 @@
-Command Line Progress Bar - show information about a data transfer.
-
-Bar is a simple tool to copy a stream of data and print a display for the
-user on stderr showing (a) the amount of data passed, (b) the throughput
-of the data transfer, and (c) the transfer time.
-
-Or, if the total size of the data stream is known: the estimated time
-remaining, what percentage of the data transfer has been completed, and
-a progress bar.
diff --git a/system/bar/bar.SlackBuild b/system/bar/bar.SlackBuild
deleted file mode 100644
index ae3161ba6e..0000000000
--- a/system/bar/bar.SlackBuild
+++ /dev/null
@@ -1,88 +0,0 @@
-#!/bin/sh
-
-# Slackware build script for Bar
-
-# Written by Menno Duursma <druiloor@zonnet.nl>
-
-# This program is free software. It comes without any warranty.
-# Granted WTFPL, Version 2, as published by Sam Hocevar. See
-# http://sam.zoy.org/wtfpl/COPYING for more details.
-
-PRGNAM=bar
-VERSION=${VERSION:-1.11.0}
-BUILD=${BUILD:-1}
-TAG=${TAG:-_SBo}
-
-if [ -z "$ARCH" ]; then
- case "$( uname -m )" in
- i?86) ARCH=i486 ;;
- arm*) ARCH=arm ;;
- *) ARCH=$( uname -m ) ;;
- esac
-fi
-
-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"
-else
- SLKCFLAGS="-O2"
- LIBDIRSUFFIX=""
-fi
-
-set -e # Exit on most errors
-
-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 {} \;
-
-# --disable-use-m64 - to prevent use of -m64 flag
-CFLAGS="$SLKCFLAGS" \
-CXXFLAGS="$SLKCFLAGS" \
-./configure \
- --prefix=/usr \
- --libdir=/usr/lib${LIBDIRSUFFIX} \
- --sysconfdir=/etc \
- --localstatedir=/var \
- --mandir=/usr/man \
- --docdir=/usr/doc/$PRGNAM-$VERSION \
- --build=$ARCH-slackware-linux
-
-make
-make install-strip DESTDIR=$PKG
-
-find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \
- | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
-
-find $PKG/usr/man -type f -exec gzip -9 {} \;
-for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done
-
-mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
-cp -a AUTHORS COPYING INSTALL TODO TROUBLESHOOTING \
- $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 -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}
diff --git a/system/bar/bar.info b/system/bar/bar.info
deleted file mode 100644
index e59f4d4d1b..0000000000
--- a/system/bar/bar.info
+++ /dev/null
@@ -1,10 +0,0 @@
-PRGNAM="bar"
-VERSION="1.11.0"
-HOMEPAGE="http://clpbar.sourceforge.net/"
-DOWNLOAD="http://downloads.sourceforge.net/clpbar/bar_1.11.0.tar.gz"
-MD5SUM="601a6451e531c3833416b984c08802af"
-DOWNLOAD_x86_64=""
-MD5SUM_x86_64=""
-MAINTAINER="Menno Duursma"
-EMAIL="druiloor@zonnet.nl"
-APPROVED="Erik Hanson"
diff --git a/system/bar/slack-desc b/system/bar/slack-desc
deleted file mode 100644
index 9ec2f66d0f..0000000000
--- a/system/bar/slack-desc
+++ /dev/null
@@ -1,20 +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-----------------------------------------------------|
-bar: bar (Command Line Progress Bar)
-bar:
-bar: A program to show information about a data transfer. Bar is a simple
-bar: tool to copy a stream of data and print a progress display for the
-bar: user on stderr.
-bar:
-bar: bar was wtitten by Michael Peek
-bar:
-bar:
-bar:
-bar:
-bar: