summaryrefslogtreecommitdiffstats
path: root/games
diff options
context:
space:
mode:
author B. Watson <yalhcru@gmail.com>2014-09-12 01:47:09 +0700
committer Willy Sudiarto Raharjo <willysr@slackbuilds.org>2014-09-12 01:47:09 +0700
commit22555f0baf770b0e7075e6e3b57bd1fd2e55c8bb (patch)
tree9d373fc964e97b658f1a94966275148ab34d0535 /games
parentdc8f4fc2b8673c27e4509b094f551337e365e2bf (diff)
downloadslackbuilds-22555f0baf770b0e7075e6e3b57bd1fd2e55c8bb.tar.gz
slackbuilds-22555f0baf770b0e7075e6e3b57bd1fd2e55c8bb.tar.xz
games/openyahtzee: Don't trust wx-config.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'games')
-rw-r--r--games/openyahtzee/openyahtzee.SlackBuild17
1 files changed, 15 insertions, 2 deletions
diff --git a/games/openyahtzee/openyahtzee.SlackBuild b/games/openyahtzee/openyahtzee.SlackBuild
index 0952178d78..f3202f796e 100644
--- a/games/openyahtzee/openyahtzee.SlackBuild
+++ b/games/openyahtzee/openyahtzee.SlackBuild
@@ -6,9 +6,14 @@
# Licensed under the WTFPL. See http://www.wtfpl.net/txt/copying/ for details.
+# 20140909 bkw: if wx(Widgets|Python) 2.x and wxGTK 3.x are installed, in that
+# order, the symlink at /usr/bin/wx-config will point to the 3.x config script.
+# openyahtzee won't build against wx 3, so this script now uses the 2.x script
+# explicitly.
+
PRGNAM=openyahtzee
VERSION=${VERSION:-1.9.1}
-BUILD=${BUILD:-1}
+BUILD=${BUILD:-2}
TAG=${TAG:-_SBo}
if [ -z "$ARCH" ]; then
@@ -40,6 +45,14 @@ fi
set -e
+# We can't trust the /usr/bin/wx-config symlink.
+# Find the correct wx-config, if it exists. User can override by setting WXVER
+# in the env, or by setting WXCONFIG to the full path.
+WXVER=${WXVER:-2.8}
+WXMAYBE="$( ls /usr/lib$LIBDIRSUFFIX/wx/config/*-$WXVER 2>/dev/null | head -1 )"
+WXCONFIG=${WXCONFIG:-$WXMAYBE}
+WXCONFIG=${WXCONFIG:-/usr/bin/wx-config}
+
rm -rf $PKG
mkdir -p $TMP $PKG $OUTPUT
cd $TMP
@@ -51,7 +64,7 @@ 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 640 -o -perm 600 -o -perm 444 \
- -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
+ -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
CFLAGS="$SLKCFLAGS" \
CXXFLAGS="$SLKCFLAGS" \