summaryrefslogtreecommitdiffstats
path: root/games
diff options
context:
space:
mode:
author B. Watson2021-12-16 19:15:04 +0100
committer Willy Sudiarto Raharjo2021-12-27 10:20:26 +0100
commited9683c825bf1d2691db487d21acdbbba7699560 (patch)
tree2c5c5f47fe234fe8959ce98b10f5efc8ad12f3a9 /games
parent040a9fd77cb8e116b5c8ea6730dc6dcb1eff29f0 (diff)
downloadslackbuilds-ed9683c825bf1d2691db487d21acdbbba7699560.tar.gz
games/wmquake: Removed (dead project; dumb idea anyway).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'games')
-rw-r--r--games/wmquake/README22
-rw-r--r--games/wmquake/slack-desc19
-rw-r--r--games/wmquake/wmquake.SlackBuild123
-rw-r--r--games/wmquake/wmquake.info10
-rw-r--r--games/wmquake/wmquake.sh12
5 files changed, 0 insertions, 186 deletions
diff --git a/games/wmquake/README b/games/wmquake/README
deleted file mode 100644
index 438d4c3a8e..0000000000
--- a/games/wmquake/README
+++ /dev/null
@@ -1,22 +0,0 @@
-wmquake (Quake as a windowmaker dockapp)
-
-Run id Software's legendary Quake inside a dockapp! Play full on software
-Quake, mods, or let it play demos. Fixed by Eukos for newer systems.
-
-You need at least the shareware data files from Quake, available on SBo
-as quake_shareware_data. If you have the full version, copy or link its
-.pak files into "/usr/share/games/quake/id1".
-
-Notes:
-
-This program will not work correctly on x86_64! You can try it, maybe
-you'll have better results than I did, but don't send me a bug report
-about 64-bit unless it includes a patch.
-
-Sound will not work because it uses a very old method. It MAY work on
-a system with ALSA's OSS emulation enabled (/etc/rc.d/rc.alsa-oss). The
-OSS version on SBo (OSS4) will NOT work with this game and neither will
-aoss for ALSA users.
-
-If you're looking for wmquake's config file, it's stored in
-"~/.wmquake/id1/config.cfg".
diff --git a/games/wmquake/slack-desc b/games/wmquake/slack-desc
deleted file mode 100644
index aad346111e..0000000000
--- a/games/wmquake/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 ':' except on otherwise blank lines.
-
- |-----handy-ruler------------------------------------------------------|
-wmquake: wmquake (Quake DockApp)
-wmquake:
-wmquake: Run id Software's legendary Quake inside a dockapp! Play full on
-wmquake: software Quake, mods, or let it play demos. Fixed by Eukos for newer
-wmquake: systems.
-wmquake:
-wmquake: Homepage: http://bloodbathsoftworks.com/eukara/
-wmquake:
-wmquake:
-wmquake:
-wmquake:
diff --git a/games/wmquake/wmquake.SlackBuild b/games/wmquake/wmquake.SlackBuild
deleted file mode 100644
index c9cdeffb5d..0000000000
--- a/games/wmquake/wmquake.SlackBuild
+++ /dev/null
@@ -1,123 +0,0 @@
-#!/bin/bash
-
-# Slackware build script for wmquake
-#
-# Copyright 2015 Gethyn ThomasQuail <email removed>
-# All rights reserved.
-#
-# Based on:
-# SBo's cmake-template
-#
-# 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.
-
-# Now maintained by B. Watson <yalhcru@gmail.com>
-
-# 20160818 bkw:
-# - take over maintenance
-# - BUILD=2
-# - i486 => i586
-# - document the fact that this doesn't work on x86_64
-# - actually use SLKCFLAGS
-# - install binary stripped
-# - install binary in /usr/libexec, *not /usr/share*! Dammit!
-# - fix wrapper script to run in user's homedir
-
-cd $(dirname $0) ; CWD=$(pwd)
-
-PRGNAM=wmquake
-VERSION=${VERSION:-1.1}
-BUILD=${BUILD:-2}
-TAG=${TAG:-_SBo}
-PKGTYPE=${PKGTYPE:-tgz}
-
-if [ -z "$ARCH" ]; then
- case "$( uname -m )" in
- i?86) ARCH=i586 ;;
- arm*) ARCH=arm ;;
- *) ARCH=$( uname -m ) ;;
- esac
-fi
-
-# If the variable PRINT_PACKAGE_NAME is set, then this script will report what
-# the name of the created package would be, and then exit. This information
-# could be useful to other scripts.
-if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then
- echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE"
- exit 0
-fi
-
-TMP=${TMP:-/tmp/SBo}
-PKG=$TMP/package-$PRGNAM
-OUTPUT=${OUTPUT:-/tmp}
-
-if [ "$ARCH" = "i586" ]; then
- SLKCFLAGS="-O2 -march=i586 -mtune=i686"
- LIBDIRSUFFIX=""
-elif [ "$ARCH" = "i686" ]; then
- SLKCFLAGS="-O2 -march=i686 -mtune=i686"
- LIBDIRSUFFIX=""
-elif [ "$ARCH" = "x86_64" ]; then
- SLKCFLAGS="-O2 -fPIC"
- LIBDIRSUFFIX="64"
-cat <<EOF
- WARNING: $PRGNAM is known to segfault on $ARCH. Press ^C within
- 10 seconds to abort this build, or press Enter (or wait 10 sec)
- to continue.
-EOF
- read -t 10 junk
-else
- SLKCFLAGS="-O2"
- LIBDIRSUFFIX=""
-cat <<EOF
- WARNING: $PRGNAM is untested on $ARCH and probably won't work. Press ^C
- within 10 seconds to abort this build, or press Enter (or wait 10 sec)
- to continue.
-EOF
- read -t 10 junk
-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 -L . \
- \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \
- -o -perm 511 \) -exec chmod 755 {} \; -o \
- \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
- -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
-
-make CFLAGS="$SLKCFLAGS"
-
-mkdir -p $PKG/usr/libexec/$PRGNAM $PKG/usr/games
-install -s -m0755 $PRGNAM $PKG/usr/libexec/$PRGNAM
-install -m0755 $CWD/$PRGNAM.sh $PKG/usr/games/$PRGNAM
-
-mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
-cp -a 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
-
-cd $PKG
-/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE
diff --git a/games/wmquake/wmquake.info b/games/wmquake/wmquake.info
deleted file mode 100644
index 5ba570ffd7..0000000000
--- a/games/wmquake/wmquake.info
+++ /dev/null
@@ -1,10 +0,0 @@
-PRGNAM="wmquake"
-VERSION="1.1"
-HOMEPAGE="http://www.bleusoftware.com/Linux/download-WMQuake-10006838.htm"
-DOWNLOAD="http://download.salixos.org/x86_64/extra-14.2/source/games/wmquake/wmquake-1.1.tar.gz"
-MD5SUM="e84db45c669efd6bbfced8121512245b"
-DOWNLOAD_x86_64=""
-MD5SUM_x86_64=""
-REQUIRES=""
-MAINTAINER="B. Watson"
-EMAIL="yalhcru@gmail.com"
diff --git a/games/wmquake/wmquake.sh b/games/wmquake/wmquake.sh
deleted file mode 100644
index 888c0ea461..0000000000
--- a/games/wmquake/wmquake.sh
+++ /dev/null
@@ -1,12 +0,0 @@
-#!/bin/bash
-
-mkdir -p ~/.wmquake
-if ! cd ~/.wmquake; then
- echo "Can't create ~/.wmquake" 2>&1
- exit 1
-fi
-if [ ! -e id1 ]; then
- mkdir -p id1
- ln -s /usr/share/games/quake/id1/* id1/
-fi
-exec /usr/libexec/wmquake/wmquake "$@"