aboutsummaryrefslogtreecommitdiff
path: root/games/noteye/sbo.diff
diff options
context:
space:
mode:
authorB. Watson <yalhcru@gmail.com>2014-09-05 06:59:14 +0700
committerWilly Sudiarto Raharjo <willysr@slackbuilds.org>2014-09-06 00:02:52 +0700
commit699c963fde9fd3f1ef871678631e7fe1af196be9 (patch)
tree9caa4b51812c1edd740562723bdf495e816363cc /games/noteye/sbo.diff
parent8557e772da342593f0858610a907a8d99d196b33 (diff)
games/noteye: Added (roguelike frontend).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'games/noteye/sbo.diff')
-rw-r--r--games/noteye/sbo.diff43
1 files changed, 43 insertions, 0 deletions
diff --git a/games/noteye/sbo.diff b/games/noteye/sbo.diff
new file mode 100644
index 0000000000000..50f65b5800b38
--- /dev/null
+++ b/games/noteye/sbo.diff
@@ -0,0 +1,43 @@
+diff -Naur noteye/src/rogue.sh noteye.patched/src/rogue.sh
+--- noteye/src/rogue.sh 2014-03-06 00:54:36.000000000 -0500
++++ noteye.patched/src/rogue.sh 2014-09-02 14:18:35.000000000 -0400
+@@ -5,31 +5,31 @@
+
+ if test -e rogue.save
+ then
+- rogue rogue.save
++ ./rogue rogue.save
+ else
+- rogue
++ ./rogue
+ fi
+
+-elif [ -n "`which rogue`" ]
++elif [ -x /usr/games/rogue ]
+ then
+
+ cd $NOTEYECONFIG
+ if test -e rogue.save
+ then
+- rogue rogue.save
++ /usr/games/rogue rogue.save
+ else
+- rogue
++ /usr/games/rogue
+ fi
+
+ else
+
+ echo Rogue not found on your system.
+ echo
+-echo Make sure that it can be run as \'$2\' or \'./$2\'.
++echo Make sure that it can be run as \'/usr/games/rogue\' or \'./$2\'.
+ echo
+-echo For example, in Ubuntu you can install Rogue with:
++echo For example, in Slackware you can install Rogue with:
+ echo
+-echo sudo apt-get install bsdgames-nonfree
++echo sbopkg -i rogue
+ echo
+ echo Otherwise, you can also run it manually from the prompt below.
+ echo