summaryrefslogtreecommitdiffstats
path: root/misc
diff options
context:
space:
mode:
author Heinz Wiesinger <pprkut@slackbuilds.org>2010-05-13 00:08:23 +0200
committer Heinz Wiesinger <pprkut@slackbuilds.org>2010-05-13 00:08:23 +0200
commit1726808fe76a76f7a72e6a337373f6b413da6f0e (patch)
tree2ed74bcbf2e09d101a40741e521dec8ec568d03c /misc
parent33ee321aa54aa1cf6d9a27db197f831b3927683f (diff)
downloadslackbuilds-1726808fe76a76f7a72e6a337373f6b413da6f0e.tar.gz
slackbuilds-1726808fe76a76f7a72e6a337373f6b413da6f0e.tar.xz
misc/qstat: Removed from 13.0 repository
Diffstat (limited to 'misc')
-rw-r--r--misc/qstat/README4
-rw-r--r--misc/qstat/doinst.sh15
-rw-r--r--misc/qstat/qstat.SlackBuild93
-rw-r--r--misc/qstat/qstat.info8
-rw-r--r--misc/qstat/slack-desc19
5 files changed, 0 insertions, 139 deletions
diff --git a/misc/qstat/README b/misc/qstat/README
deleted file mode 100644
index b354e7a94c..0000000000
--- a/misc/qstat/README
+++ /dev/null
@@ -1,4 +0,0 @@
-QStat is a command-line utility for collecting real-time statistics
-from on-line game servers. The games supported are generally limited
-to the first-person-shooter genre (Quake, Half-Life, Unreal, etc).
-Statistics may be output in a variety of form
diff --git a/misc/qstat/doinst.sh b/misc/qstat/doinst.sh
deleted file mode 100644
index df4e1c9549..0000000000
--- a/misc/qstat/doinst.sh
+++ /dev/null
@@ -1,15 +0,0 @@
-# Handle configuration files
-config() {
- NEW="$1"
- OLD="`dirname $NEW`/`basename $NEW .new`"
- # If there's no config file by that name, mv it over:
- if [ ! -r $OLD ]; then
- mv $NEW $OLD
- elif [ "`cat $OLD | md5sum`" = "`cat $NEW | md5sum`" ]; then # toss the redundant copy
- rm $NEW
- fi
- # Otherwise, we leave the .new copy for the admin to consider...
-}
-# List of configuration files (they should end in .new)
-
-config etc/qstat.cfg.new
diff --git a/misc/qstat/qstat.SlackBuild b/misc/qstat/qstat.SlackBuild
deleted file mode 100644
index 4e349d3457..0000000000
--- a/misc/qstat/qstat.SlackBuild
+++ /dev/null
@@ -1,93 +0,0 @@
-#!/bin/sh
-# Slackware build script for qstat
-
-# Copyright 2007 David Somero <dsomero@hotmail.com>
-# All rights reserved.
-#
-# Redistribution and use of this script, with or without modification, is
-# permitted provided that the following conditions are met:
-#
-# 1. Redistributions of this script must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#
-# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ''AS IS'' AND ANY EXPRESS OR IMPLIED
-# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
-# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
-# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
-# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
-# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
-# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
-# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
-# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-# Modified by SlackBuilds.org
-
-set -e
-
-PRGNAM=qstat
-VERSION=2.11
-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
-rm -rf $PRGNAM-$VERSION
-tar -xvf $CWD/$PRGNAM-$VERSION.tar.gz
-
-cd $PRGNAM-$VERSION
-chown -R root:root .
-chmod -R a-s,u+w,go+r-w .
-
-CFLAGS="${SLKCFLAGS}" \
-CXXFLAGS="${SLKCFLAGS}" \
-./configure \
- --prefix=/usr \
- --sysconfdir=/etc \
- --localstatedir=/var \
- --mandir=/usr/man \
- --program-prefix="" \
- --program-suffix="" \
- --with-docdir=/usr/doc/$PRGNAM-$VERSION
-
-make
-make install DESTDIR=$PKG
-
-( 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
-)
-
-# If there are docs in /usr/share, move them:
-if [ -d $PKG/usr/share/doc ]; then
- mkdir -p $PKG/usr/doc/
- mv $PKG/usr/share/doc/* $PKG/usr/doc
- rmdir $PKG/usr/share/doc
-fi
-
-# Don't clobber existing config
-mv $PKG/etc/qstat.cfg $PKG/etc/qstat.cfg.new
-
-mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
-cp -a LICENSE.txt CHANGES.txt ChangeLog COMPILE.txt $PKG/usr/doc/$PRGNAM-$VERSION
-cat $CWD/qstat.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/qstat.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.tgz
diff --git a/misc/qstat/qstat.info b/misc/qstat/qstat.info
deleted file mode 100644
index b5ffc4ee8d..0000000000
--- a/misc/qstat/qstat.info
+++ /dev/null
@@ -1,8 +0,0 @@
-PRGNAM="qstat"
-VERSION="2.11"
-HOMEPAGE="http://sourceforge.net/projects/qstat/"
-DOWNLOAD="http://downloads.sourceforge.net/qstat/qstat-2.11.tar.gz"
-MD5SUM="26c09831660ef9049fe74b786b80d091"
-MAINTAINER="David Somero"
-EMAIL="dsomero@hotmail.com"
-APPROVED="Erik Hanson"
diff --git a/misc/qstat/slack-desc b/misc/qstat/slack-desc
deleted file mode 100644
index 5fbd24039c..0000000000
--- a/misc/qstat/slack-desc
+++ /dev/null
@@ -1,19 +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--------------------------------------------------------|
-qstat: QStat (Real-time game server stats)
-qstat:
-qstat: QStat is a command-line utility for collecting real-time statistics
-qstat: from on-line game servers.The games supported are generally limited to
-qstat: the first-person-shooter genre (Quake, Half-Life, Unreal, etc).
-qstat:
-qstat:
-qstat:
-qstat:
-qstat:
-qstat: