diff options
author | Robby Workman <rw@rlworkman.net> | 2010-05-11 14:28:22 +0200 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2010-05-11 14:28:22 +0200 |
commit | 00081138bfc9039e998eebfe38899a1862ad55d6 (patch) | |
tree | 1074c4728e776ef8e4780b8eac523094e3424044 /games | |
parent | a4ae8d60d257e3bb72f537dabfee93c307d35361 (diff) | |
download | slackbuilds-00081138bfc9039e998eebfe38899a1862ad55d6.tar.gz |
games/ppracer: Initial import
Diffstat (limited to 'games')
-rw-r--r-- | games/ppracer/README | 7 | ||||
-rw-r--r-- | games/ppracer/ppracer.SlackBuild | 76 | ||||
-rw-r--r-- | games/ppracer/ppracer.info | 8 | ||||
-rw-r--r-- | games/ppracer/slack-desc | 9 |
4 files changed, 100 insertions, 0 deletions
diff --git a/games/ppracer/README b/games/ppracer/README new file mode 100644 index 0000000000..0a9472f9ce --- /dev/null +++ b/games/ppracer/README @@ -0,0 +1,7 @@ +PlanetPenguin Racer is an OpenGL racing game featuring Tux, the Linux +mascot. The goal of the game is to slide down a snow- and ice-covered +mountain as quickly as possible. It is based on the GPL version of +TuxRacer. + +You'll need accelerated OpenGL (proprietary ati/nvidia drivers and such) +for this to be usable... diff --git a/games/ppracer/ppracer.SlackBuild b/games/ppracer/ppracer.SlackBuild new file mode 100644 index 0000000000..b93176d13c --- /dev/null +++ b/games/ppracer/ppracer.SlackBuild @@ -0,0 +1,76 @@ +#!/bin/sh + +# Slackware build script for ppracer + +# Copyright 2006 Robby Workman (http://rlworkman.net) +# 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 the SlackBuilds.org project + +PRGNAM=ppracer +VERSION=0.3.1 +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/usr $OUTPUT +cd $TMP || exit 1 +rm -rf $PRGNAM-$VERSION +tar -xjvf $CWD/$PRGNAM-$VERSION.tar.bz2 || exit 1 +cd $PRGNAM-$VERSION || exit 1 +chown -R root:root . +chmod -R a-s,u+w,go-w+r . + +CFLAGS="$SLKCFLAGS" \ +CXXFLAGS="$SLKCFLAGS" \ +./configure \ + --prefix=/usr \ + --with-x \ + || exit 1 + +make || exit 1 +make install DESTDIR=$PKG || exit 1 + +( cd $PKG + find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null + find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null +) + +gzip -9 $PKG/usr/man/man?/* +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a AUTHORS COPYING ChangeLog INSTALL NEWS 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.tgz diff --git a/games/ppracer/ppracer.info b/games/ppracer/ppracer.info new file mode 100644 index 0000000000..6d29626f6d --- /dev/null +++ b/games/ppracer/ppracer.info @@ -0,0 +1,8 @@ +PRGNAM="ppracer" +VERSION="0.3.1" +HOMEPAGE="http://projects.planetpenguin.de/racer/" +DOWNLOAD="http://download.berlios.de/ppracer/ppracer-0.3.1.tar.bz2" +MD5SUM="fa80d5dc1e4b63edf05d27b2e86637ec" +MAINTAINER="Robby Workman" +EMAIL="rw@rlworkman.net" +APPROVED="robw810" diff --git a/games/ppracer/slack-desc b/games/ppracer/slack-desc new file mode 100644 index 0000000000..2418a3be7d --- /dev/null +++ b/games/ppracer/slack-desc @@ -0,0 +1,9 @@ +ppracer: PlanetPenguin Racer +ppracer: +ppracer: PlanetPenguin Racer is an OpenGL racing game featuring Tux, the Linux +ppracer: mascot. The goal of the game is to slide down a snow- and ice-covered +ppracer: mountain as quickly as possible. It is based on the GPL version of +ppracer: TuxRacer. +ppracer: +ppracer: Homepage: http://projects.planetpenguin.de/racer/ +ppracer: |