diff options
author | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2017-05-25 16:09:53 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2017-05-27 07:30:56 +0700 |
commit | 7488cc00a83f3ef867db30058d57229ad8be7d14 (patch) | |
tree | 947f28d864f721a318744cb0a73f4ac49b65fc4f | |
parent | c007c0abaed137015f9543ccfdb85951edb8d3ad (diff) | |
download | slackbuilds-7488cc00a83f3ef867db30058d57229ad8be7d14.tar.gz |
games/tome: Removed (use tome4 or tome-ah).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
-rw-r--r-- | games/tome/README | 9 | ||||
-rw-r--r-- | games/tome/doinst.sh | 3 | ||||
-rw-r--r-- | games/tome/slack-desc | 19 | ||||
-rw-r--r-- | games/tome/tome.SlackBuild | 113 | ||||
-rw-r--r-- | games/tome/tome.desktop | 8 | ||||
-rw-r--r-- | games/tome/tome.info | 10 | ||||
-rw-r--r-- | games/tome/tome.png | bin | 603 -> 0 bytes | |||
-rw-r--r-- | games/tome/tome.sh | 5 |
8 files changed, 0 insertions, 167 deletions
diff --git a/games/tome/README b/games/tome/README deleted file mode 100644 index 8e0b972f93..0000000000 --- a/games/tome/README +++ /dev/null @@ -1,9 +0,0 @@ -ToME is a game that emphasizes intricate, challenging, and varied gameplay over -graphics. Hundreds of different monsters in randomly-generated, unpredictable -dungeons will strive to slay you by various means, and you counter - if you -survive - by developing the skills of your choice and wielding mighty -artifacts. - -forum homepage: http://te4.org/ -Usenet newsgroup: nntp://rec.games.roguelike.angband - diff --git a/games/tome/doinst.sh b/games/tome/doinst.sh deleted file mode 100644 index 5fb28930db..0000000000 --- a/games/tome/doinst.sh +++ /dev/null @@ -1,3 +0,0 @@ -if [ -x /usr/bin/update-desktop-database ]; then - /usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1 -fi diff --git a/games/tome/slack-desc b/games/tome/slack-desc deleted file mode 100644 index 1671b3f0bb..0000000000 --- a/games/tome/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------------------------------------------------------| -tome: tome (Tales of Middle Earth - a fantasy adventure game) -tome: -tome: ToME is a game that emphasizes intricate, challenging, and varied -tome: gameplay over graphics. Hundreds of different monsters in randomly- -tome: generated, unpredictable dungeons will strive to slay you by various -tome: means, and you counter - if you survive - by developing the skills of -tome: your choice and wielding mighty artifacts. -tome: -tome: forum homepage: http://te4.org/ -tome: Usenet newsgroup: nntp://rec.games.roguelike.angband -tome: diff --git a/games/tome/tome.SlackBuild b/games/tome/tome.SlackBuild deleted file mode 100644 index 1d28a6ddf2..0000000000 --- a/games/tome/tome.SlackBuild +++ /dev/null @@ -1,113 +0,0 @@ -#!/bin/sh - -# Slackware build script for ToME - -# Copyright 2013, SlackBuilds.org Project, David Melik, Spokane, WA, USA -# 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. - -PRGNAM=tome -VERSION=${VERSION:-v2.3.11_ah} -BUILD=${BUILD:-2} -TAG=${TAG:-_SBo} - -SRCVER=$(echo $VERSION | tr _ -) - -if [ -z "$ARCH" ]; then - case "$( uname -m )" in - i?86) ARCH=i586 ;; - arm*) ARCH=arm ;; - *) ARCH=$( uname -m ) ;; - esac -fi - -CWD=$(pwd) -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" -else - SLKCFLAGS="-O2" - LIBDIRSUFFIX="" -fi - -set -e - -rm -rf $PKG -mkdir -p $TMP $PKG $OUTPUT -cd $TMP -rm -rf tome2-tome2 -tar xvf $CWD/tome2-tome2-$SRCVER.tar.gz -cd tome2-tome2 -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 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ - -exec chmod 644 {} \; - -mkdir -p build -cd build - cmake \ - -DCMAKE_C_FLAGS:STRING="$SLKCFLAGS" \ - -DCMAKE_CXX_FLAGS:STRING="$SLKCFLAGS" \ - -DCMAKE_INSTALL_PREFIX=/usr/share/games/$PRGNAM \ - -DLIB_SUFFIX=/var/games/$PRGNAM \ - -DCMAKE_BUILD_TYPE=Release \ - -DSYSTEM_INSTALL:BOOL=true .. - make - make install DESTDIR=$PKG -cd - - -find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \ - | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null - -install -m 0755 $CWD/$PRGNAM.sh $PKG/usr/share/games/$PRGNAM/bin/$PRGNAM.sh -mkdir -p $PKG/usr/games -ln -fs /usr/share/games/$PRGNAM/bin/$PRGNAM.sh $PKG/usr/games/$PRGNAM - -find $PKG -name "delete.me" | xargs rm -f -find $PKG -name ".cvsignore" | xargs rm -f - -install -m 0644 -D $CWD/$PRGNAM.png \ - $PKG/usr/share/pixmaps/$PRGNAM.png -install -m 0644 -D $CWD/$PRGNAM.desktop \ - $PKG/usr/share/applications/$PRGNAM.desktop - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a BUGS.txt changes.txt credits.txt \ - $PKG/usr/share/games/$PRGNAM/lib/$PRGNAM/help \ - $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} diff --git a/games/tome/tome.desktop b/games/tome/tome.desktop deleted file mode 100644 index 1ef47ed0d9..0000000000 --- a/games/tome/tome.desktop +++ /dev/null @@ -1,8 +0,0 @@ -[Desktop Entry] -Name=ToME -Comment=Dive into Arda and defeat Morgoth -Exec=tome -Terminal=true -Type=Application -Categories=Game; -Icon=tome diff --git a/games/tome/tome.info b/games/tome/tome.info deleted file mode 100644 index fb612e162d..0000000000 --- a/games/tome/tome.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="tome" -VERSION="v2.3.11_ah" -HOMEPAGE="http://www.te4.org" -DOWNLOAD="http://ponce.cc/slackware/sources/repo/tome2-tome2-v2.3.11-ah.tar.gz" -MD5SUM="ae6d649600fb2d4eed09b46e4203af76" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -REQUIRES="" -MAINTAINER="David Melik" -EMAIL="dchmelik@gmail.com" diff --git a/games/tome/tome.png b/games/tome/tome.png Binary files differdeleted file mode 100644 index ee931a91ee..0000000000 --- a/games/tome/tome.png +++ /dev/null diff --git a/games/tome/tome.sh b/games/tome/tome.sh deleted file mode 100644 index b26faef8a7..0000000000 --- a/games/tome/tome.sh +++ /dev/null @@ -1,5 +0,0 @@ -#!/bin/sh - -GAMES_TOME=/usr/share/games/tome/bin - -exec ${GAMES_TOME}/tome "$@" |