games/supertuxkart: Updated for version 0.8.1 + new maintainer.

Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
Ryan P.C. McQuen 2014-08-07 09:44:25 +07:00 committed by Willy Sudiarto Raharjo
parent 48e1bd52de
commit 295ae40e04
3 changed files with 13 additions and 33 deletions

View file

@ -2,6 +2,8 @@
# Slackware build script for supertuxkart
# Ryan P.C. McQuen | Everett, WA | ryan.q@linux.com
# Copyright 2009-2011 Larry Hajali <larryhaja[at]gmail[dot]com>
# Copyright 2011-2013 Niels Horn, Rio de Janeiro, RJ, Brazil
# All rights reserved.
@ -23,10 +25,8 @@
# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
# revision date: 2013/03/28
PRGNAM=supertuxkart
VERSION=${VERSION:-0.8}
VERSION=${VERSION:-0.8.1}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
@ -69,15 +69,10 @@ tar xvf $CWD/$PRGNAM-$VERSION-src.tar.bz2
cd $UNTARRED-$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 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
-exec chmod 644 {} \;
# The Makefile's don't respect directory variables given to configure.
# Let's fix that with a few other additional cleanups.
patch -p1 < $CWD/translations.patch
sed -i 's|\/games|\/bin|g' data/${PRGNAM}_desktop.template
\( -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 {} \;
# First build the Irrlicht (static) library.
# Note: This is a forked, modfied copy of irrlicht-1.8
@ -102,7 +97,7 @@ cd build
make install DESTDIR=$PKG
cd ..
find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \
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
mkdir -p $PKG/usr/man/man6

View file

@ -1,10 +1,10 @@
PRGNAM="supertuxkart"
VERSION="0.8"
VERSION="0.8.1"
HOMEPAGE="http://supertuxkart.sourceforge.net/"
DOWNLOAD="http://downloads.sourceforge.net/supertuxkart/supertuxkart-0.8-src.tar.bz2"
MD5SUM="0b939ce601374758938119e0b0dd1fec"
DOWNLOAD="http://sourceforge.net/projects/supertuxkart/files/SuperTuxKart/0.8.1/supertuxkart-0.8.1-src.tar.bz2"
MD5SUM="aa31ecf883dc35859eec76c667f1a6d6"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
REQUIRES="OpenAL"
MAINTAINER="Niels Horn"
EMAIL="niels.horn@gmail.com"
MAINTAINER="Ryan P.C. McQuen"
EMAIL="ryan.q@linux.com"

View file

@ -1,15 +0,0 @@
--- supertuxkart-0.7.3/src/io/file_manager.cpp 2011-11-01 22:04:13.000000000 -0200
+++ supertuxkart-0.7.3_patched/src/io/file_manager.cpp 2011-12-09 16:54:27.000000000 -0200
@@ -442,7 +442,12 @@
*/
std::string FileManager::getTranslationDir() const
{
+#if !defined(TRANSLATION_DIR) && !defined(__APPLE__) && !defined(WIN32)
+#define TRANSLATION_DIR "/usr/share/locale"
+ return TRANSLATION_DIR;
+#else
return m_root_dir+"/data/po";
+#endif
} // getTranslationDir
//-----------------------------------------------------------------------------