diff options
author | Larry Hajali <larryhaja[at]gmail[dot]com> | 2010-09-17 04:41:43 -0400 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2010-09-21 22:09:37 -0500 |
commit | 51ddce634e8a98c0342e1173fa2d32a0c975529f (patch) | |
tree | c3efe529d66a07d78e20a857798786a527c908e2 /games/glestae | |
parent | 9795bb800a5c3992e8ba4501d50016efce8ee0fe (diff) | |
download | slackbuilds-51ddce634e8a98c0342e1173fa2d32a0c975529f.tar.gz |
games/glestae: Added (Glest Advanced Engine)
Signed-off-by: dsomero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'games/glestae')
-rw-r--r-- | games/glestae/README | 8 | ||||
-rw-r--r-- | games/glestae/doinst.sh | 3 | ||||
-rw-r--r-- | games/glestae/glestae.SlackBuild | 98 | ||||
-rw-r--r-- | games/glestae/glestae.info | 10 | ||||
-rw-r--r-- | games/glestae/slack-desc | 19 |
5 files changed, 138 insertions, 0 deletions
diff --git a/games/glestae/README b/games/glestae/README new file mode 100644 index 0000000000..a7454962fa --- /dev/null +++ b/games/glestae/README @@ -0,0 +1,8 @@ +Glest Advanced Engine is a community driven project which extends and +improves on Glest. It aims to provide features and tools that help people +develop higher quality 3D real-time strategy games for all major platforms. + +This requires lua, OpenAL and physfs. + +Optionally glestae can use wxGTK/wxPython and cppunit. wxGTK/wxPython will +build the optional gae_mapeditor, gae_g3dviewer, and glest_configurator. diff --git a/games/glestae/doinst.sh b/games/glestae/doinst.sh new file mode 100644 index 0000000000..5fb28930db --- /dev/null +++ b/games/glestae/doinst.sh @@ -0,0 +1,3 @@ +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/glestae/glestae.SlackBuild b/games/glestae/glestae.SlackBuild new file mode 100644 index 0000000000..d162b7317f --- /dev/null +++ b/games/glestae/glestae.SlackBuild @@ -0,0 +1,98 @@ +#!/bin/sh + +# Slackware build script for glestae + +# Copyright 2009-2010 Larry Hajali <larryhaja[at]gmail[dot]com> +# 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 ''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=glestae +VERSION=0.3 +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-src-$VERSION +tar xvf $CWD/$PRGNAM-src-$VERSION.tar.bz2 +cd $PRGNAM-src-$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 {} \; + +# This is the new cmake install. New in version 0.3. +mkdir -p build +cd build + cmake -G "Unix Makefiles" \ + -DCMAKE_INSTALL_PREFIX:PATH=/usr \ + -DCMAKE_C_FLAGS:STRING="$SLKCFLAGS" \ + -DCMAKE_CXX_FLAGS:STRING="$SLKCFLAGS" \ + -DGAE_USE_PHYSFS=ON \ + -DBUILD_TYPE=Release .. + + make VERBOSE=1 + make install DESTDIR=$PKG +cd .. + +find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ + | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a docs/* $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/glestae/glestae.info b/games/glestae/glestae.info new file mode 100644 index 0000000000..5b079633fa --- /dev/null +++ b/games/glestae/glestae.info @@ -0,0 +1,10 @@ +PRGNAM="glestae" +VERSION="0.3" +HOMEPAGE="http://sourceforge.net/apps/trac/glestae/" +DOWNLOAD="http://downloads.sourceforge.net/glestae/glestae-src-0.3.tar.bz2" +MD5SUM="3ec2002b9745d9e8f415c1d084705ff0" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" +MAINTAINER="Larry Hajali" +EMAIL="larryhaja[at]gmail[dot]com" +APPROVED="dsomero" diff --git a/games/glestae/slack-desc b/games/glestae/slack-desc new file mode 100644 index 0000000000..e9c59e14b6 --- /dev/null +++ b/games/glestae/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 ':'. + + |-----handy-ruler------------------------------------------------------| +glestae: glestae (Glest Advanced Engine) +glestae: +glestae: Glest Advanced Engine is a community driven project which extends and +glestae: improves on Glest. It aims to provide features and tools that help +glestae: people develop higher quality 3D real-time strategy games for all +glestae: major platforms. +glestae: +glestae: Homepage: http://sourceforge.net/projects/glestae/ +glestae: +glestae: +glestae: |