diff options
author | Manuel Mantilla <mannynix@megared.net.mx> | 2010-05-12 17:39:29 +0200 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-12 17:39:29 +0200 |
commit | b83ce72c6d64732bda70202c0f472a3f600e264c (patch) | |
tree | d8fe125b3df3a9c17f9304f5d530eb94ca1c59c1 /games/prboom/prboom.SlackBuild | |
parent | 567c1f271018debc6be7bca603dfe89ffd8ce456 (diff) | |
download | slackbuilds-b83ce72c6d64732bda70202c0f472a3f600e264c.tar.gz |
games/prboom: Updated for version 2.5.0
Diffstat (limited to 'games/prboom/prboom.SlackBuild')
-rw-r--r-- | games/prboom/prboom.SlackBuild | 47 |
1 files changed, 37 insertions, 10 deletions
diff --git a/games/prboom/prboom.SlackBuild b/games/prboom/prboom.SlackBuild index 9caa6928de..06c73952af 100644 --- a/games/prboom/prboom.SlackBuild +++ b/games/prboom/prboom.SlackBuild @@ -1,13 +1,33 @@ #!/bin/sh -# Slackware build script for prboom -# Written by mannyslack (quakemanxs@yahoo.com) +# Slackware build script for: prboom + +# Copyright 2009 Manuel Mantilla, Veracruz, Mexico +# 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=prboom -VERSION=2.4.7 +VERSION=2.5.0 ARCH=${ARCH:-i486} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} + CWD=$(pwd) TMP=${TMP:-/tmp/SBo} PKG=$TMP/package-$PRGNAM @@ -17,6 +37,8 @@ if [ "$ARCH" = "i486" ]; then SLKCFLAGS="-O2 -march=i486 -mtune=i686" elif [ "$ARCH" = "i686" ]; then SLKCFLAGS="-O2 -march=i686 -mtune=i686" +elif [ "$ARCH" = "x86_64" ]; then + SLKCFLAGS="-O2 -fPIC" fi rm -rf $PKG @@ -26,17 +48,24 @@ rm -rf $PRGNAM-$VERSION tar -xvf $CWD/$PRGNAM-$VERSION.tar.gz || exit 1 cd $PRGNAM-$VERSION || exit 1 chown -R root:root . -chmod -R u+w,go+r-w,a-s . +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 {} \; +# --enable-gl allows to launch game with: prboom -vidmode gl +# default is software video mode. CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" \ ./configure \ --prefix=/usr \ --sysconfdir=/etc \ --localstatedir=/var \ - --enable-gl \ - || exit 1 -# --enable-gl seems to have no effect, any ideas? + --mandir=/usr/man \ + --docdir=/usr/doc/$PRGNAM-$VERSION \ + --build=$ARCH-slackware-linux \ + --enable-gl || exit 1 make DESTDIR=$PKG || exit 1 make install-strip DESTDIR=$PKG || exit 1 @@ -46,9 +75,7 @@ make install-strip DESTDIR=$PKG || exit 1 for i in $(find . -type l) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done ) -rm -f $PKG/usr/info/dir -gzip -9 $PKG/usr/info/*.info* - +mv $PKG/usr/share/doc $PKG/usr mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION cp -a AUTHORS COPYING TODO INSTALL NEWS README $PKG/usr/doc/$PRGNAM-$VERSION cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild |