From 26bcd5c4b53be98263cf7036f0b0ec032685f5a0 Mon Sep 17 00:00:00 2001 From: David Melik Date: Sun, 12 Aug 2012 12:50:49 -0400 Subject: games/rogue: Added (visual CRT based fantasy game) Signed-off-by: dsomero --- games/rogue/README | 4 ++ games/rogue/doinst.sh | 11 ++++++ games/rogue/rogue.SlackBuild | 88 ++++++++++++++++++++++++++++++++++++++++++++ games/rogue/rogue.info | 10 +++++ games/rogue/slack-desc | 19 ++++++++++ 5 files changed, 132 insertions(+) create mode 100644 games/rogue/README create mode 100644 games/rogue/doinst.sh create mode 100644 games/rogue/rogue.SlackBuild create mode 100644 games/rogue/rogue.info create mode 100644 games/rogue/slack-desc (limited to 'games/rogue') diff --git a/games/rogue/README b/games/rogue/README new file mode 100644 index 0000000000..0820d90f09 --- /dev/null +++ b/games/rogue/README @@ -0,0 +1,4 @@ +Rogue is a visual CRT based fantasy game which runs under the UNIX +timesharing system. + +NOTE: User must be in the games group to save score. diff --git a/games/rogue/doinst.sh b/games/rogue/doinst.sh new file mode 100644 index 0000000000..fe289c71a2 --- /dev/null +++ b/games/rogue/doinst.sh @@ -0,0 +1,11 @@ +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 var/games/rogue/rogue54.scr.new diff --git a/games/rogue/rogue.SlackBuild b/games/rogue/rogue.SlackBuild new file mode 100644 index 0000000000..6ceaf8068e --- /dev/null +++ b/games/rogue/rogue.SlackBuild @@ -0,0 +1,88 @@ +#!/bin/sh + +# Slackware build script for Rogue + +# Written by David Melik + +PRGNAM=rogue +VERSION=${VERSION:-5.4.4} +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 + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP +rm -rf $PRGNAM$VERSION +tar xvf $CWD/$PRGNAM$VERSION-src.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 {} \; + +CFLAGS="$SLKCFLAGS" \ +CXXFLAGS="$SLKCFLAGS" \ +./configure \ + --bindir=/usr/games \ + --prefix=/usr \ + --mandir=/usr/man \ + --docdir=/usr/doc/$PRGNAM-$VERSION \ + --enable-scorefile=/var/games/rogue/rogue54.scr \ + --build=$ARCH-slackware-linux + +make +make install DESTDIR=$PKG + +# Fix permissions on the score file so users in games +# group can have score saved. +chown -R root:games $PKG/var/games/rogue +chmod 0775 $PKG/var/games/rogue +chmod 0664 $PKG/var/games/rogue/rogue54.scr +mv $PKG/var/games/rogue/rogue54.scr \ + $PKG/var/games/rogue/rogue54.scr.new + +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 || 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 + +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/rogue/rogue.info b/games/rogue/rogue.info new file mode 100644 index 0000000000..877276c18c --- /dev/null +++ b/games/rogue/rogue.info @@ -0,0 +1,10 @@ +PRGNAM="rogue" +VERSION="5.4.4" +HOMEPAGE="http://rogue.rogueforge.net/" +DOWNLOAD="http://rogue.rogueforge.net/files/rogue5.4/rogue5.4.4-src.tar.gz" +MD5SUM="033288f46444b06814c81ea69d96e075" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" +MAINTAINER="David Melik" +EMAIL="dchmelik@gmail.com" +APPROVED="dsomero" diff --git a/games/rogue/slack-desc b/games/rogue/slack-desc new file mode 100644 index 0000000000..ee818e23da --- /dev/null +++ b/games/rogue/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------------------------------------------------------| +rogue: Rogue (visual CRT based fantasy game) +rogue: +rogue: Rogue is a visual CRT based fantasy game which runs under the UNIX +rogue: timesharing system. +rogue: +rogue: homepage: http://rogue.rogueforge.net/ +rogue: Usenet newsgroup: nntp://rec.games/roguelike.rogue +rogue: +rogue: +rogue: +rogue: -- cgit v1.2.3