xinput-calibrator: add systemd service

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
This commit is contained in:
Martin Jansa
2011-11-30 00:27:16 +01:00
committed by Koen Kooi
parent 2bbed5ec03
commit be2ae063d1
2 changed files with 19 additions and 3 deletions
@@ -0,0 +1,11 @@
[Unit]
Description=Loads xinput calibration data
ConditionPathExists=/etc/pointercal.xinput
Requires=xserver-nodm.service
After=xserver-nodm.service
[Service]
ExecStart=/usr/bin/xinput_calibrator_once.sh
[Install]
WantedBy=multi-user.target
@@ -4,12 +4,14 @@ LICENSE = "MIT-X"
LIC_FILES_CHKSUM = "file://src/calibrator.cpp;endline=22;md5=998e238a7638a7446eaeb02398f691fc"
DEPENDS = "virtual/libx11 libxi"
PR = "r3"
PR = "r4"
inherit autotools
inherit autotools systemd
SRC_URI = "http://github.com/downloads/tias/xinput_calibrator/xinput_calibrator-${PV}.tar.gz \
file://0001-xinput_calibrator_pointercal.sh-specify-output-type-.patch"
file://0001-xinput_calibrator_pointercal.sh-specify-output-type-.patch \
file://xinput-calibrator.service \
"
SRC_URI[md5sum] = "20da0a2055a5a75962add8c6b44f60fa"
SRC_URI[sha256sum] = "baa4ddca49ec94c27ba4c715bfa26692fec1132103e927213c3169e475d3d971"
@@ -23,5 +25,8 @@ do_install_append() {
install -m 0755 scripts/xinput_calibrator_pointercal.sh ${D}${bindir}/xinput_calibrator_once.sh
}
SYSTEMD_PACKAGES = "${PN}-systemd"
SYSTEMD_SERVICE = "${PN}.service"
RDEPENDS_${PN} = "xinput"
RRECOMMENDS_${PN} = "pointercal-xinput"