r7823 - in packages/trunk/rott/debian: . patches

Fabian Greffrath fabian-guest at alioth.debian.org
Tue Jul 22 07:34:59 UTC 2008


Author: fabian-guest
Date: 2008-07-22 07:34:59 +0000 (Tue, 22 Jul 2008)
New Revision: 7823

Added:
   packages/trunk/rott/debian/patches/german-eszett-as-backslash.patch
Modified:
   packages/trunk/rott/debian/changelog
   packages/trunk/rott/debian/patches/series
   packages/trunk/rott/debian/rott.postinst
Log:
* debian/patches/german-eszett-as-backslash.patch:
+ New patch, accept the German eszett as a backslash key.
* debian/rott.postinst:
+ Change data file permissions to 0644.



Modified: packages/trunk/rott/debian/changelog
===================================================================
--- packages/trunk/rott/debian/changelog	2008-07-21 22:13:02 UTC (rev 7822)
+++ packages/trunk/rott/debian/changelog	2008-07-22 07:34:59 UTC (rev 7823)
@@ -16,12 +16,16 @@
   * debian/patches/rott-1.1-registered-version.patch:
     + Updated from the previous rott-1.0-registered.patch,
       disabled in debian/patches/series.
+  * debian/patches/german-eszett-as-backslash.patch:
+    + New patch, accept the German eszett as a backslash key.
   * debian/README.Debian, debian/patches/series:
     + Changed to reflect new patch names.
   * debian/README.Debian, debian/rules:
     + Removed get-orig-source rule.
   * debian/rott.docs, debian/rott.install, debian/rott.manpages:
     + Adopted to new source directory structure.
+  * debian/rott.postinst:
+    + Change data file permissions to 0644.
   * debian/rules:
     + Set DEB_BUILDDIR := rott.
 

Added: packages/trunk/rott/debian/patches/german-eszett-as-backslash.patch
===================================================================
--- packages/trunk/rott/debian/patches/german-eszett-as-backslash.patch	                        (rev 0)
+++ packages/trunk/rott/debian/patches/german-eszett-as-backslash.patch	2008-07-22 07:34:59 UTC (rev 7823)
@@ -0,0 +1,11 @@
+--- rott-1.1.orig/rott/rt_in.c
++++ rott-1.1/rott/rt_in.c
+@@ -1083,6 +1083,8 @@
+     scancodes[SDLK_LSHIFT]          = sc_RShift; /* sc_LShift */
+     
+     scancodes[SDLK_BACKSLASH]       = 0x2B;
++    /* Accept the German eszett as a backslash key */
++    scancodes[SDLK_WORLD_63]        = 0x2B;
+     scancodes[SDLK_z]               = sc_Z;
+     scancodes[SDLK_x]               = sc_X;
+     scancodes[SDLK_c]               = sc_C;


Property changes on: packages/trunk/rott/debian/patches/german-eszett-as-backslash.patch
___________________________________________________________________
Name: svn:mergeinfo
   + 

Modified: packages/trunk/rott/debian/patches/series
===================================================================
--- packages/trunk/rott/debian/patches/series	2008-07-21 22:13:02 UTC (rev 7822)
+++ packages/trunk/rott/debian/patches/series	2008-07-22 07:34:59 UTC (rev 7823)
@@ -1,2 +1,3 @@
 #rott-1.1-disable-audiolib.patch
 #rott-1.1-registered-version.patch
+german-eszett-as-backslash.patch

Modified: packages/trunk/rott/debian/rott.postinst
===================================================================
--- packages/trunk/rott/debian/rott.postinst	2008-07-21 22:13:02 UTC (rev 7822)
+++ packages/trunk/rott/debian/rott.postinst	2008-07-22 07:34:59 UTC (rev 7823)
@@ -42,6 +42,7 @@
 				if [ "$(md5sum $SHAREDIR/$SHAREZIP | cut -f1 -d' ')" = "$SHAREMD5" ]; then
 					unzip -o ${SHAREDIR}/${SHAREZIP} -d ${SHAREDIR} > /dev/null && \
 					unzip -o ${SHAREDIR}/ROTTSW13.SHR -d ${SHAREDIR} > /dev/null && \
+					chmod -f 0644 ${SHAREDIR}/* && \
 					rm -f ${SHAREDIR}/ROTTSW13.SHR ${SHAREDIR}/INSTALL.EXE ${SHAREDIR}/FILE_ID.DIZ && \
 					ln -sf ${SHAREDIR}/VENDOR.DOC ${DOCDIR}/vendor.doc && \
 					SUCCESS=1




More information about the Pkg-games-commits mailing list