summaryrefslogtreecommitdiff
path: root/debian/patches/debian.patch
diff options
context:
space:
mode:
Diffstat (limited to 'debian/patches/debian.patch')
-rw-r--r--debian/patches/debian.patch44
1 files changed, 44 insertions, 0 deletions
diff --git a/debian/patches/debian.patch b/debian/patches/debian.patch
new file mode 100644
index 0000000..5b550ea
--- /dev/null
+++ b/debian/patches/debian.patch
@@ -0,0 +1,44 @@
+Last-Update: 2012-12-31
+Author: Dmitry Smirnov <onlyjob@member.fsf.org>
+Forwarded: not-needed
+Description: set prefix and path to game data file
+
+--- a/SConstruct
++++ b/SConstruct
+@@ -14,10 +14,10 @@
+ D2XMICRO = 3
+ VERSION_STRING = ' v' + str(D2XMAJOR) + '.' + str(D2XMINOR) + '.' + str(D2XMICRO)
+
+ # installation path
+-PREFIX = str(ARGUMENTS.get('prefix', '/usr/local'))
+-BIN_SUBDIR = '/bin'
++PREFIX = str(ARGUMENTS.get('prefix', '/usr'))
++BIN_SUBDIR = '/games'
+ DATA_SUBDIR = '/share/games/d2x-rebirth'
+ BIN_DIR = PREFIX + BIN_SUBDIR
+ DATA_DIR = PREFIX + DATA_SUBDIR
+
+@@ -451,9 +451,9 @@
+ Type 'scons -c' to clean up.
+
+ Extra options (add them to command line, like 'scons extraoption=value'):
+
+- 'sharepath=[DIR]' (non-Mac OS *NIX only) use [DIR] for shared game data. [default: /usr/local/share/games/d2x-rebirth]
++ 'sharepath=[DIR]' (non-Mac OS *NIX only) use [DIR] for shared game data. [default: /usr/share/games/d2x-rebirth]
+ 'opengl=[0/1]' build with OpenGL support [default: 1]
+ 'opengles=[0/1]' build with OpenGL ES support [default: 0]
+ 'sdlmixer=[0/1]' build with SDL_Mixer support for sound and music (includes external music support) [default: 1]
+ 'asm=[0/1]' build with ASSEMBLER code (only with opengl=0, requires NASM and x86) [default: 0]
+--- a/INSTALL.txt
++++ b/INSTALL.txt
+@@ -101,9 +101,9 @@
+ =========================
+
+ *NIX
+ ----
+- The Sharepath (/usr/local/share/games/d1x-rebirth/ by default - if not reconfigured via SCons) or
++ The Sharepath (/usr/share/games/d2x-rebirth/ by default - if not reconfigured via SCons) or
+ ~/.d1x-rebirth or
+ another directory specified by -hogdir via d1x.ini
+
+ MacOS
bgstack15