diff options
author | David Melik <dchmelik@gmail.com> | 2017-05-22 16:16:09 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2017-05-27 07:30:45 +0700 |
commit | ae342414f16bfb757ae217b2dc0bad3cf4896e88 (patch) | |
tree | 650f7729f8362f8470a35a85c462bbc882eacfc6 | |
parent | 969e85c89888fdf169a536a54cbfc187690bf6a4 (diff) | |
download | slackbuilds-ae342414f16bfb757ae217b2dc0bad3cf4896e88.tar.gz |
games/mangband: Added (graphical dungeon adventure game).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
-rw-r--r-- | games/mangband/README | 2 | ||||
-rw-r--r-- | games/mangband/doinst.sh | 26 | ||||
-rw-r--r-- | games/mangband/mangband.SlackBuild | 135 | ||||
-rw-r--r-- | games/mangband/mangband.desktop | 8 | ||||
-rw-r--r-- | games/mangband/mangband.info | 10 | ||||
-rw-r--r-- | games/mangband/mangband.png | bin | 0 -> 603 bytes | |||
-rw-r--r-- | games/mangband/mangband.sh | 32 | ||||
-rw-r--r-- | games/mangband/slack-desc | 19 |
8 files changed, 232 insertions, 0 deletions
diff --git a/games/mangband/README b/games/mangband/README new file mode 100644 index 0000000000..19014778fc --- /dev/null +++ b/games/mangband/README @@ -0,0 +1,2 @@ +MAngband is a free online multiplayer real-time roguelike game, derived from +the single player game Angband. diff --git a/games/mangband/doinst.sh b/games/mangband/doinst.sh new file mode 100644 index 0000000000..72f1167f20 --- /dev/null +++ b/games/mangband/doinst.sh @@ -0,0 +1,26 @@ +if [ -x /usr/bin/update-desktop-database ]; then + /usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1 +fi + +config() { + NEW="$1" + OLD="$(dirname $NEW)/$(basename $NEW .new)" + if [ ! -r $OLD ]; then + mv $NEW $OLD + elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then + rm $NEW + fi +} + +config /usr/share/games/mangband/lib/data/scores.raw.new +config /usr/share/games/mangband/lib/edit/artifact.txt.new +config /usr/share/games/mangband/lib/edit/ego_item.txt.new +config /usr/share/games/mangband/lib/edit/flavor.txt.new +config /usr/share/games/mangband/lib/edit/limits.txt.new +config /usr/share/games/mangband/lib/edit/monster.txt.new +config /usr/share/games/mangband/lib/edit/object.txt.new +config /usr/share/games/mangband/lib/edit/p_class.txt.new +config /usr/share/games/mangband/lib/edit/p_hist.txt.new +config /usr/share/games/mangband/lib/edit/p_race.txt.new +config /usr/share/games/mangband/lib/edit/terrain.txt.new +config /usr/share/games/mangband/lib/edit/vault.txt.new diff --git a/games/mangband/mangband.SlackBuild b/games/mangband/mangband.SlackBuild new file mode 100644 index 0000000000..c32fc39d30 --- /dev/null +++ b/games/mangband/mangband.SlackBuild @@ -0,0 +1,135 @@ +#!/bin/sh + +# Slackware build script for mangband + +# Copyright 2017, 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=mangband +VERSION=${VERSION:-1.1.3} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} + +if [ -z "$ARCH" ]; then + case "$( uname -m )" in + i?86) ARCH=i586 ;; + arm*) ARCH=arm ;; + *) ARCH=$( uname -m ) ;; + esac +fi + +set -e + +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 + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +rm -rf $TMP/$PRGNAM-$VERSION +cd $TMP +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 {} \; + +cd src +CFLAGS="$SLKCFLAGS" \ +#Remove --with-sdl=no SDL when bugs fixed +./configure \ + --prefix=/usr \ + --with-libpath=/usr/share/games/mangband \ + --sysconfdir=/etc \ + --localstatedir=/var \ + --with-setgid=games \ + --build=$ARCH-slackware-linux \ + --with-sdl=no + +make +make install DESTDIR=$PKG + +#the real 'make install:' +mkdir -p $PKG/usr/share/games +mkdir -p $PKG/usr/games + +cd $PKG/usr/games +ln -fs /usr/share/games/mangband/mangband.sh mangband +ln -fs /usr/share/games/mangband/mangband.sh mangband.server +cd $TMP/$PRGNAM-$VERSION + +cd .. +rm $PRGNAM-$VERSION/src/server/*.o +rm $PRGNAM-$VERSION/src/common/*.o +rm $PRGNAM-$VERSION/src/client/*.o +mv $PRGNAM-$VERSION/ $PKG/usr/share/games/$PRGNAM +cp $CWD/mangband.sh $PKG/usr/share/games/mangband +chmod a+x $PKG/usr/share/games/mangband/mangband.sh + +find $PKG -name "delete.me" -exec rm -f {} \; || true + +mv $PKG/usr/share/games/mangband/lib/data/scores.raw \ + $PKG/usr/share/games/mangband/lib/data/scores.raw.new +for i in \ + artifact ego_item flavor limits monster object p_class p_hist p_race \ + terrain vault ; + do mv $PKG/usr/share/games/mangband/lib/edit/$i.txt \ + $PKG/usr/share/games/mangband/lib/edit/$i.txt.new ; +done +mkdir -p $PKG/usr/share/games/mangband/{cores,logs} + +mkdir -p $PKG/usr/share/{applications,pixmaps} +cp $CWD/mangband.png $PKG/usr/share/pixmaps +cp $CWD/mangband.desktop $PKG/usr/share/applications + +cd $PKG +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a \ + $PKG/usr/share/games/mangband/lib/help \ + $PKG/usr/share/games/mangband/LICENSE \ + $PKG/usr/doc/$PRGNAM-$VERSION +find $PKG/usr/doc/$PRGNAM-$VERSION/ -type f -exec chmod 644 {} \; +cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$APP.SlackBuild +rm -f $PKG/usr/doc/$PRGNAM-$VERSION/help/.depend* + +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/mangband/mangband.desktop b/games/mangband/mangband.desktop new file mode 100644 index 0000000000..3e066f524d --- /dev/null +++ b/games/mangband/mangband.desktop @@ -0,0 +1,8 @@ +[Desktop Entry] +Name=Mangband +Comment=Dive into Arda and defeat Morgoth +Exec=mangclient +Terminal=true +Type=Application +Categories=Game; +Icon=tome diff --git a/games/mangband/mangband.info b/games/mangband/mangband.info new file mode 100644 index 0000000000..d1f6d5f7ef --- /dev/null +++ b/games/mangband/mangband.info @@ -0,0 +1,10 @@ +PRGNAM="mangband" +VERSION="1.1.3" +HOMEPAGE="http://mangband.org/" +DOWNLOAD="http://mangband.org/download/mangband-1.1.3.tar.gz" +MD5SUM="f1cc146cc1cddcfb09c2a30f7936c165" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" +REQUIRES="%README%" +MAINTAINER="David Melik" +EMAIL="dchmelik@gmail.com" diff --git a/games/mangband/mangband.png b/games/mangband/mangband.png Binary files differnew file mode 100644 index 0000000000..ee931a91ee --- /dev/null +++ b/games/mangband/mangband.png diff --git a/games/mangband/mangband.sh b/games/mangband/mangband.sh new file mode 100644 index 0000000000..717bc06fae --- /dev/null +++ b/games/mangband/mangband.sh @@ -0,0 +1,32 @@ +# #!/bin/sh + +GAMES_MANGBAND=/usr/share/games/mangband + +if [ ! -e ${HOME}/.mangband ]; then + mkdir -p ${HOME}/.mangband + + # Make a copy of the lib directory for the user + cp -R ${GAMES_MANGBAND}/lib ${HOME}/.mangband/ + + # Server configuration files + cp ${GAMES_MANGBAND}/mangband.cfg ${HOME}/.mangband/ + + # Create an account file + #touch ${HOME}/.mangband/mangband.acc + + # Create links for running the server in ${HOME}/.mangband +fi + +cd ${HOME}/.mangband + +# Point $MANGBAND_PATH to the local lib directory +export MANGBAND_PATH=${HOME}/.mangband/lib + +case $(basename $0) in + mangband) + exec ${GAMES_MANGBAND}/mangclient "$@" + ;; + mangband.server) + exec ${GAMES_MANGBAND}/runserv "$@" + ;; + esac diff --git a/games/mangband/slack-desc b/games/mangband/slack-desc new file mode 100644 index 0000000000..f2fe81e165 --- /dev/null +++ b/games/mangband/slack-desc @@ -0,0 +1,19 @@ +# 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------------------------------------------------------| +mangband: mangband (graphical dungeon adventure game) +mangband: +mangband: MAngband is a free online multiplayer real-time roguelike game, +mangband: derived from the single player game Angband. +mangband: +mangband: homepage: http://mangband.org/ +mangband: forum: http://angband.oook.cz/forum/ +mangband: Usenet newsgroup: nntp://rec.games.roguelike.angband +mangband: +mangband: +mangband: |