summaryrefslogtreecommitdiffstats
path: root/games
diff options
context:
space:
mode:
author B. Watson <yalhcru@gmail.com>2016-10-17 21:38:31 -0400
committer Willy Sudiarto Raharjo <willysr@slackbuilds.org>2016-10-22 08:47:29 +0700
commitead7da872a36cf5180acef0eddd837665255a512 (patch)
tree66738a0d7877ac52b97d545db43e268ccf746018 /games
parent82d864dbfc0bb33ac47eda86fb93570b0274d6a4 (diff)
downloadslackbuilds-ead7da872a36cf5180acef0eddd837665255a512.tar.gz
slackbuilds-ead7da872a36cf5180acef0eddd837665255a512.tar.xz
games/xarchon: Remove non-functional Adept game.
Diffstat (limited to 'games')
-rw-r--r--games/xarchon/patches/no_adept.diff23
-rw-r--r--games/xarchon/xarchon.SlackBuild8
2 files changed, 30 insertions, 1 deletions
diff --git a/games/xarchon/patches/no_adept.diff b/games/xarchon/patches/no_adept.diff
new file mode 100644
index 0000000000..d751f4c60c
--- /dev/null
+++ b/games/xarchon/patches/no_adept.diff
@@ -0,0 +1,23 @@
+diff -Naur xarchon-0.60/src/qt/qtguiwidget.cpp xarchon-0.60.patched/src/qt/qtguiwidget.cpp
+--- xarchon-0.60/src/qt/qtguiwidget.cpp 2002-01-09 13:34:33.000000000 -0500
++++ xarchon-0.60.patched/src/qt/qtguiwidget.cpp 2016-10-17 21:34:55.885894979 -0400
+@@ -31,8 +31,8 @@
+
+ menubar->insertItem("gameArchon", popup, "New Game of Archon",
+ this, SLOT(gameArchon()));
+- menubar->insertItem("gameAdept", popup, "New Game of Adept",
+- this, SLOT(gameAdept()));
++ // menubar->insertItem("gameAdept", popup, "New Game of Adept",
++ // this, SLOT(gameAdept()));
+ menubar->insertItem("gameUnpause", popup, "Un&pause",
+ this, SLOT(gameUnpause()), Qt::Key_Escape);
+ menubar->insertItem("gameStop", popup, "&Stop",
+@@ -121,7 +121,7 @@
+ void QtGuiWidget::setSensitiveOptions(bool game_active)
+ {
+ menubar->setEnabled("gameArchon", !game_active);
+- menubar->setEnabled("gameAdept", !game_active);
++ // menubar->setEnabled("gameAdept", !game_active);
+ menubar->setEnabled("gameStop", game_active);
+ menubar->setEnabled("settingsPlayers", !game_active);
+ menubar->setEnabled("settingsTheme", !game_active);
diff --git a/games/xarchon/xarchon.SlackBuild b/games/xarchon/xarchon.SlackBuild
index c8f3c27bb9..018998ca5a 100644
--- a/games/xarchon/xarchon.SlackBuild
+++ b/games/xarchon/xarchon.SlackBuild
@@ -10,9 +10,12 @@
# Adept game is complete or correct, because I never could understand
# how to play it, even as a video-game-obsessed kid in the 1980s.
+# further note, written later: no, Adept is nowhere near complete or
+# playable. So I'm patching the game to remove the menu option for it.
+
PRGNAM=xarchon
VERSION=${VERSION:-0.60}
-BUILD=${BUILD:-1}
+BUILD=${BUILD:-2}
TAG=${TAG:-_SBo}
if [ -z "$ARCH" ]; then
@@ -57,6 +60,9 @@ find -L . \
\( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
-o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
+# disable Adept menu option, since it's non-playable.
+patch -p1 < $CWD/patches/no_adept.diff
+
# hammer old C++ code into building on gcc-5.3, plus autoconf fixes
# to get qt3 detected & linked properly.
patch -p1 < $CWD/patches/compilefix.diff