summaryrefslogtreecommitdiffstats
path: root/games/desmume/desmume.SlackBuild
diff options
context:
space:
mode:
author Larry Hajali2015-05-09 08:19:02 +0200
committer Willy Sudiarto Raharjo2015-05-09 08:19:02 +0200
commitde2474de319d1595dfe101811239b74a08dc2b0a (patch)
treea66e7b7ac5f92089f8ea738335769e7b3309653e /games/desmume/desmume.SlackBuild
parent7853d92468641b04840401ad851221b86cc35920 (diff)
downloadslackbuilds-de2474de319d1595dfe101811239b74a08dc2b0a.tar.gz
games/desmume: Updated for version 0.9.11.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'games/desmume/desmume.SlackBuild')
-rw-r--r--games/desmume/desmume.SlackBuild28
1 files changed, 15 insertions, 13 deletions
diff --git a/games/desmume/desmume.SlackBuild b/games/desmume/desmume.SlackBuild
index 0328af7223..4e5fec368b 100644
--- a/games/desmume/desmume.SlackBuild
+++ b/games/desmume/desmume.SlackBuild
@@ -2,7 +2,7 @@
# Slackware build script for desmume
-# Copyright 2009-2013 Larry Hajali <larryhaja[at]gmail[dot]com>
+# Copyright 2009-2015 Larry Hajali <larryhaja[at]gmail[dot]com>
# All rights reserved.
#
# Redistribution and use of this script, with or without modification, is
@@ -23,7 +23,7 @@
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
PRGNAM=desmume
-VERSION=${VERSION:-0.9.10}
+VERSION=${VERSION:-0.9.11}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
@@ -64,19 +64,21 @@ tar xvf $CWD/$PRGNAM-$VERSION.tar.gz
cd $PRGNAM-$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 {} \;
+ \( -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 {} \;
# Fix end-of-line encoding.
-sed -i 's/\r//' AUTHORS
+for i in AUTHORS; do
+ cp -a $i ${i}.new
+ sed -i 's/\r//' ${i}.new
+ touch -r $i ${i}.new
+ mv ${i}.new $i
+done
-# From upstream.
-# http://sourceforge.net/p/desmume/code/4907/
-# http://sourceforge.net/p/desmume/code/4919/
-patch -p3 < $CWD/glx_3Demu.cpp.patch
-patch -p3 < $CWD/glx_3Demu.h.patch
+# Fix missing header.
+patch -p1 < $CWD/osmesa-header-fix.patch
CFLAGS="$SLKCFLAGS" \
CXXFLAGS="$SLKCFLAGS" \
@@ -97,7 +99,7 @@ CXXFLAGS="$SLKCFLAGS" \
make
make install DESTDIR=$PKG
-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
find $PKG/usr/man -type f -exec gzip -9 {} \;