xinput-calibrator: add xinput to RDEPENDS and script to calibrate only once and store...
authorMartin Jansa <Martin.Jansa@gmail.com>
Sun, 31 Jan 2010 00:44:14 +0000 (01:44 +0100)
committerMartin Jansa <Martin.Jansa@gmail.com>
Sun, 31 Jan 2010 01:03:08 +0000 (02:03 +0100)
* xinput is used when we want to make the changes permanent (xinput is
  called with every Xorg start
* xinput_calibrator_once.sh can be used from Xsession.d
* calibration data are stored in /etc/pointercal.xinput
* whole log from last run in /etc/pointercal.xinput.log
* script needs tee and sed (busybox variants are enough)

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
recipes/xinput-calibrator/xinput-calibrator-0.5.0/xinput_calibrator_once.sh [new file with mode: 0644]
recipes/xinput-calibrator/xinput-calibrator_0.5.0.bb

diff --git a/recipes/xinput-calibrator/xinput-calibrator-0.5.0/xinput_calibrator_once.sh b/recipes/xinput-calibrator/xinput-calibrator-0.5.0/xinput_calibrator_once.sh
new file mode 100644 (file)
index 0000000..82fcfc6
--- /dev/null
@@ -0,0 +1,11 @@
+#!/bin/sh
+if [ -e /etc/pointercal.xinput ] ; then
+  echo Using calibration data stored in /etc/pointercal.xinput
+  . /etc/pointercal.xinput
+else
+  CAL=`/usr/bin/xinput_calibrator | tee /etc/pointercal.xinput.log | grep xinput| sed 's/^ //g; s/$/;/g'`
+  if [ ! -z "$CAL" ] ; then
+    echo $CAL > /etc/pointercal.xinput
+    echo Calibration data stored in /etc/pointercal.xinput
+  fi
+fi
index 43f77ee..8390b30 100644 (file)
@@ -1,17 +1,20 @@
 DEPENDS = "virtual/libx11 libxi"
+RDEPENDS = "xinput"
 
 SRCREV  = "1c715824334c5d33085dba02f195c9720c2883b5"
 SRC_URI = "git://github.com/tias/xinput_calibrator.git;protocol=git \
            file://xinput-calibrator.desktop \
+           file://xinput_calibrator_once.sh \
 "
 
-PR = "r3"
+PR = "r4"
 inherit autotools
 S = "${WORKDIR}/git/"
 
 do_install() {
        install -d ${D}${bindir}
        install -m 0755 src/xinput_calibrator_x11 ${D}${bindir}/xinput_calibrator
+       install -m 0755 ${WORKDIR}/xinput_calibrator_once.sh ${D}${bindir}/xinput_calibrator_once.sh
        install -d ${D}${datadir}/applications/ 
        install -m 0755 ${WORKDIR}/xinput-calibrator.desktop ${D}${datadir}/applications/xinput-calibrator.desktop      
 }