xserver-common: move patches back into their own dir, xserver-common is not part...
authorPhilipp Zabel <philipp.zabel@gmail.com>
Sat, 2 Sep 2006 12:12:11 +0000 (12:12 +0000)
committerPhilipp Zabel <philipp.zabel@gmail.com>
Sat, 2 Sep 2006 12:12:11 +0000 (12:12 +0000)
packages/xorg-xserver/files/.mtn2git_empty [deleted file]
packages/xorg-xserver/files/calibrate_zaurusd.patch [deleted file]
packages/xorg-xserver/files/poodle-xmodmap-2.6.patch [deleted file]
packages/xorg-xserver/files/setDPI.sh [deleted file]
packages/xserver-common/files/.mtn2git_empty [new file with mode: 0644]
packages/xserver-common/files/calibrate_zaurusd.patch [new file with mode: 0644]
packages/xserver-common/files/poodle-xmodmap-2.6.patch [new file with mode: 0644]
packages/xserver-common/files/setDPI.sh [new file with mode: 0644]

diff --git a/packages/xorg-xserver/files/.mtn2git_empty b/packages/xorg-xserver/files/.mtn2git_empty
deleted file mode 100644 (file)
index e69de29..0000000
diff --git a/packages/xorg-xserver/files/calibrate_zaurusd.patch b/packages/xorg-xserver/files/calibrate_zaurusd.patch
deleted file mode 100644 (file)
index 6a7e3b0..0000000
+++ /dev/null
@@ -1,12 +0,0 @@
---- xserver-common-1.8/X11/Xinit.d/30xTs_Calibrate.orig        2006-04-09 15:12:16.167950472 +0200
-+++ xserver-common-1.8/X11/Xinit.d/30xTs_Calibrate     2006-04-09 15:14:51.511334688 +0200
-@@ -2,4 +2,9 @@
- if [ ! -f /etc/pointercal ]; then
-     /usr/bin/run-calibrate.sh
-+    
-+    if [ -x /etc/init.d/zaurusd ]; then
-+      /etc/init.d/zaurusd stop
-+      /etc/init.d/zaurusd start
-+    fi
- fi
diff --git a/packages/xorg-xserver/files/poodle-xmodmap-2.6.patch b/packages/xorg-xserver/files/poodle-xmodmap-2.6.patch
deleted file mode 100644 (file)
index 73cf3f6..0000000
+++ /dev/null
@@ -1,42 +0,0 @@
-diff -Nur xserver-common-1.8.orig/X11/Xinit.d/12keymap xserver-common-1.8/X11/Xinit.d/12keymap
---- xserver-common-1.8.orig/X11/Xinit.d/12keymap       2006-05-17 12:02:52.645201000 +0200
-+++ xserver-common-1.8/X11/Xinit.d/12keymap    2006-05-17 12:03:49.401573648 +0200
-@@ -9,6 +9,9 @@
-       "SHARP Akita" | "SHARP Borzoi" | "SHARP Spitz")
-               xmodmap - < /etc/X11/slcXXXX.xmodmap
-               ;;                              
-+      "SHARP Poodle")
-+              xmodmap - < /etc/X11/poodle.xmodmap
-+              ;;
-         "Sharp-Collie")
-                 xmodmap - < /etc/X11/collie.xmodmap
-                 ;;
-diff -Nur xserver-common-1.8.orig/X11/poodle.xmodmap xserver-common-1.8/X11/poodle.xmodmap
---- xserver-common-1.8.orig/X11/poodle.xmodmap 1970-01-01 01:00:00.000000000 +0100
-+++ xserver-common-1.8/X11/poodle.xmodmap      2006-05-18 13:42:45.711264920 +0200
-@@ -0,0 +1,25 @@
-+keycode 37 = Control_L
-+keycode 64 = Alt_L
-+
-+
-+keycode 50 = Shift_L
-+keycode 62 = Shift_R
-+keycode 75 = Mode_switch
-+
-+
-+
-+clear control
-+clear shift
-+clear lock
-+clear mod4
-+clear mod1
-+
-+add control = Control_L
-+add shift = Shift_L Shift_R
-+add lock = Caps_Lock
-+
-+! This is AltGr
-+add mod4 = Mode_switch
-+
-+add mod1 = Alt_L
-+
diff --git a/packages/xorg-xserver/files/setDPI.sh b/packages/xorg-xserver/files/setDPI.sh
deleted file mode 100644 (file)
index 04a2edd..0000000
+++ /dev/null
@@ -1,92 +0,0 @@
-#! /bin/sh
-#
-# Copyright Matthias Hentges <devel@hentges.net> (c) 2006
-# License: GPL (see http://www.gnu.org/licenses/gpl.txt for a copy of the license)
-#
-# Filename: setDPI.sh
-# Date: 09-Apr-06
-
-# This script configures Xft.dpi dependent on your screens DPI. This insures that the same font-size
-# setting of 7 can be used on all machines.
-
-
-XDEFAULTS="/etc/X11/Xdefaults"
-
-
-
-set_dpi() {
-       
-       CURRENT_SETTING="`cat ${XDEFAULTS} | sed -n "/Xft.dpi\:/s/.*\:\(.*\)/\1/p" | sed -n "s/\ //p"`" 
-
-       if test "$CURRENT_SETTING" != "$1"
-       then
-               echo "Using Xft.dpi of $SET_SCREEN_DPI for your $SCREEN_DPI DPI screen"
-               
-               if grep -q "Xft.dpi" "$XDEFAULTS"
-               then
-                       cat "${XDEFAULTS}" | sed "s/^Xft.dpi\:.*/Xft.dpi\: $SET_SCREEN_DPI/" > "${XDEFAULTS}_"
-                       mv "${XDEFAULTS}_" "${XDEFAULTS}"
-               else
-                       echo -e "Xft.dpi: $SET_SCREEN_DPI\n" >> "$XDEFAULTS"
-               fi
-       else
-               echo "Your $SCREEN_DPI DPI screen is already configured."
-       fi
-}
-
-set_rxvt_font() {
-
-       CURRENT_SETTING="`cat ${XDEFAULTS} | sed  -n "/Rxvt\*font/s/\(.*\pixelsize=\)\(.*\)/\2/p"`"
-
-       if test "$1" -gt 100
-       then
-       
-               # Configure the rxvt font-size for your screen here:
-               test "$1" -gt 180 -a "$1" -lt "221" && RXVT_FONT_SIZE=16
-               
-               if test -z "$RXVT_FONT_SIZE"
-               then
-                       echo "WARNING: No rxvt font-size configured for a $SCREEN_DPI DPI screen!"
-                       echo "Defaulting to size 9"
-                       RXVT_FONT_SIZE=9
-               fi
-               
-               if test "$CURRENT_SETTING" != "$RXVT_FONT_SIZE"
-               then
-                       echo "Using a rxvt font-size of $RXVT_FONT_SIZE"
-                       cat ${XDEFAULTS} | sed "/Rxvt\*font/s/\(.*\pixelsize\)\(=*.*\)/\1=$RXVT_FONT_SIZE/" > ${XDEFAULTS}_
-                       mv ${XDEFAULTS}_ ${XDEFAULTS}
-               else
-                       echo "The rxvt font-size is already configured"
-               fi 
-       fi
-}
-
-if test -z "$DISPLAY"
-then
-       echo "DISPLAY is not set, aborting..."
-       exit 0
-fi
-
-SCREEN_DPI="`/usr/bin/xdpyinfo | grep "dots per inch" | awk '{print $2}'| sed -n "s/\(.*\)x\(.*\)/\2/p"`"
-
-if test -z "$SCREEN_DPI"
-then
-       echo "WARNING: Couldn't read your screens DPI, defaulting to 100"
-       SCREEN_DPI=100
-fi
-
-# Configure your screen here:
-test "$SCREEN_DPI" -gt 180 -a "$SCREEN_DPI" -lt "221" && SET_SCREEN_DPI=160
-test "$SCREEN_DPI" -gt 90 -a "$SCREEN_DPI" -lt "121" && SET_SCREEN_DPI=100
-
-
-if test -z "$SET_SCREEN_DPI"
-then
-       echo "WARNING: No default configuration found for your $SCREEN_DPI DPI screen!"
-       echo "Using 100 DPI"
-       SET_SCREEN_DPI=100
-fi
-
-set_dpi "$SET_SCREEN_DPI"
-set_rxvt_font "$SCREEN_DPI"
diff --git a/packages/xserver-common/files/.mtn2git_empty b/packages/xserver-common/files/.mtn2git_empty
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/packages/xserver-common/files/calibrate_zaurusd.patch b/packages/xserver-common/files/calibrate_zaurusd.patch
new file mode 100644 (file)
index 0000000..6a7e3b0
--- /dev/null
@@ -0,0 +1,12 @@
+--- xserver-common-1.8/X11/Xinit.d/30xTs_Calibrate.orig        2006-04-09 15:12:16.167950472 +0200
++++ xserver-common-1.8/X11/Xinit.d/30xTs_Calibrate     2006-04-09 15:14:51.511334688 +0200
+@@ -2,4 +2,9 @@
+ if [ ! -f /etc/pointercal ]; then
+     /usr/bin/run-calibrate.sh
++    
++    if [ -x /etc/init.d/zaurusd ]; then
++      /etc/init.d/zaurusd stop
++      /etc/init.d/zaurusd start
++    fi
+ fi
diff --git a/packages/xserver-common/files/poodle-xmodmap-2.6.patch b/packages/xserver-common/files/poodle-xmodmap-2.6.patch
new file mode 100644 (file)
index 0000000..73cf3f6
--- /dev/null
@@ -0,0 +1,42 @@
+diff -Nur xserver-common-1.8.orig/X11/Xinit.d/12keymap xserver-common-1.8/X11/Xinit.d/12keymap
+--- xserver-common-1.8.orig/X11/Xinit.d/12keymap       2006-05-17 12:02:52.645201000 +0200
++++ xserver-common-1.8/X11/Xinit.d/12keymap    2006-05-17 12:03:49.401573648 +0200
+@@ -9,6 +9,9 @@
+       "SHARP Akita" | "SHARP Borzoi" | "SHARP Spitz")
+               xmodmap - < /etc/X11/slcXXXX.xmodmap
+               ;;                              
++      "SHARP Poodle")
++              xmodmap - < /etc/X11/poodle.xmodmap
++              ;;
+         "Sharp-Collie")
+                 xmodmap - < /etc/X11/collie.xmodmap
+                 ;;
+diff -Nur xserver-common-1.8.orig/X11/poodle.xmodmap xserver-common-1.8/X11/poodle.xmodmap
+--- xserver-common-1.8.orig/X11/poodle.xmodmap 1970-01-01 01:00:00.000000000 +0100
++++ xserver-common-1.8/X11/poodle.xmodmap      2006-05-18 13:42:45.711264920 +0200
+@@ -0,0 +1,25 @@
++keycode 37 = Control_L
++keycode 64 = Alt_L
++
++
++keycode 50 = Shift_L
++keycode 62 = Shift_R
++keycode 75 = Mode_switch
++
++
++
++clear control
++clear shift
++clear lock
++clear mod4
++clear mod1
++
++add control = Control_L
++add shift = Shift_L Shift_R
++add lock = Caps_Lock
++
++! This is AltGr
++add mod4 = Mode_switch
++
++add mod1 = Alt_L
++
diff --git a/packages/xserver-common/files/setDPI.sh b/packages/xserver-common/files/setDPI.sh
new file mode 100644 (file)
index 0000000..04a2edd
--- /dev/null
@@ -0,0 +1,92 @@
+#! /bin/sh
+#
+# Copyright Matthias Hentges <devel@hentges.net> (c) 2006
+# License: GPL (see http://www.gnu.org/licenses/gpl.txt for a copy of the license)
+#
+# Filename: setDPI.sh
+# Date: 09-Apr-06
+
+# This script configures Xft.dpi dependent on your screens DPI. This insures that the same font-size
+# setting of 7 can be used on all machines.
+
+
+XDEFAULTS="/etc/X11/Xdefaults"
+
+
+
+set_dpi() {
+       
+       CURRENT_SETTING="`cat ${XDEFAULTS} | sed -n "/Xft.dpi\:/s/.*\:\(.*\)/\1/p" | sed -n "s/\ //p"`" 
+
+       if test "$CURRENT_SETTING" != "$1"
+       then
+               echo "Using Xft.dpi of $SET_SCREEN_DPI for your $SCREEN_DPI DPI screen"
+               
+               if grep -q "Xft.dpi" "$XDEFAULTS"
+               then
+                       cat "${XDEFAULTS}" | sed "s/^Xft.dpi\:.*/Xft.dpi\: $SET_SCREEN_DPI/" > "${XDEFAULTS}_"
+                       mv "${XDEFAULTS}_" "${XDEFAULTS}"
+               else
+                       echo -e "Xft.dpi: $SET_SCREEN_DPI\n" >> "$XDEFAULTS"
+               fi
+       else
+               echo "Your $SCREEN_DPI DPI screen is already configured."
+       fi
+}
+
+set_rxvt_font() {
+
+       CURRENT_SETTING="`cat ${XDEFAULTS} | sed  -n "/Rxvt\*font/s/\(.*\pixelsize=\)\(.*\)/\2/p"`"
+
+       if test "$1" -gt 100
+       then
+       
+               # Configure the rxvt font-size for your screen here:
+               test "$1" -gt 180 -a "$1" -lt "221" && RXVT_FONT_SIZE=16
+               
+               if test -z "$RXVT_FONT_SIZE"
+               then
+                       echo "WARNING: No rxvt font-size configured for a $SCREEN_DPI DPI screen!"
+                       echo "Defaulting to size 9"
+                       RXVT_FONT_SIZE=9
+               fi
+               
+               if test "$CURRENT_SETTING" != "$RXVT_FONT_SIZE"
+               then
+                       echo "Using a rxvt font-size of $RXVT_FONT_SIZE"
+                       cat ${XDEFAULTS} | sed "/Rxvt\*font/s/\(.*\pixelsize\)\(=*.*\)/\1=$RXVT_FONT_SIZE/" > ${XDEFAULTS}_
+                       mv ${XDEFAULTS}_ ${XDEFAULTS}
+               else
+                       echo "The rxvt font-size is already configured"
+               fi 
+       fi
+}
+
+if test -z "$DISPLAY"
+then
+       echo "DISPLAY is not set, aborting..."
+       exit 0
+fi
+
+SCREEN_DPI="`/usr/bin/xdpyinfo | grep "dots per inch" | awk '{print $2}'| sed -n "s/\(.*\)x\(.*\)/\2/p"`"
+
+if test -z "$SCREEN_DPI"
+then
+       echo "WARNING: Couldn't read your screens DPI, defaulting to 100"
+       SCREEN_DPI=100
+fi
+
+# Configure your screen here:
+test "$SCREEN_DPI" -gt 180 -a "$SCREEN_DPI" -lt "221" && SET_SCREEN_DPI=160
+test "$SCREEN_DPI" -gt 90 -a "$SCREEN_DPI" -lt "121" && SET_SCREEN_DPI=100
+
+
+if test -z "$SET_SCREEN_DPI"
+then
+       echo "WARNING: No default configuration found for your $SCREEN_DPI DPI screen!"
+       echo "Using 100 DPI"
+       SET_SCREEN_DPI=100
+fi
+
+set_dpi "$SET_SCREEN_DPI"
+set_rxvt_font "$SCREEN_DPI"