mirror of
https://git.yoctoproject.org/poky
synced 2026-06-11 10:53:47 +02:00
Since "conf: Use xf86-input-libinput by default" [1] there are reports [2] of xinput-calibrator failing because it expects xf86-input-evdev and with the above patch xf86-input-libinput takes precedence. Fix this issue by using a branch of xinput calibrator which supports xf86-input-libinput. [1] https://git.openembedded.org/openembedded-core/commit/meta/recipes-graphics/xorg-xserver/xserver-xorg.inc?id=2d005faff6341a81a2afae28860101ba9db51ae8 [2] https://www.yoctoproject.org/pipermail/yocto/2018-December/043487.html (From OE-Core rev: d3b2302bcc1594e663183134793cf4aca8f4df41) Signed-off-by: Steve Sakoman <steve@sakoman.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
40 lines
1.5 KiB
BlitzBasic
40 lines
1.5 KiB
BlitzBasic
SUMMARY = "Touchscreen calibration program for X11"
|
|
HOMEPAGE = "http://www.freedesktop.org/wiki/Software/xinput_calibrator"
|
|
LICENSE = "MIT-X"
|
|
LIC_FILES_CHKSUM = "file://src/calibrator.cpp;endline=22;md5=1bcba08f67cdb56f34021557898e4b5a"
|
|
DEPENDS = "virtual/libx11 libxi libxrandr"
|
|
|
|
PV = "0.7.5+git${SRCPV}"
|
|
PR = "r6"
|
|
|
|
inherit autotools pkgconfig features_check
|
|
# depends on virtual/libx11
|
|
REQUIRED_DISTRO_FEATURES = "x11"
|
|
|
|
SRCREV = "18ec53f1cada39f905614ebfaffed5c7754ecf46"
|
|
SRC_URI = "git://github.com/kreijack/xinput_calibrator.git;branch=libinput \
|
|
file://30xinput_calibrate.sh \
|
|
file://Allow-xinput_calibrator_pointercal.sh-to-be-run-as-n.patch \
|
|
file://0001-calibrator.hh-Include-string-to-get-std-string.patch \
|
|
"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
# force native X11 ui as we don't have gtk+ in DEPENDS
|
|
EXTRA_OECONF += "--with-gui=x11"
|
|
|
|
do_install_append() {
|
|
install -d ${D}${bindir}
|
|
install -m 0755 ${S}/scripts/xinput_calibrator_pointercal.sh ${D}${bindir}/xinput_calibrator_once.sh
|
|
|
|
install -d ${D}${sysconfdir}/X11/Xsession.d/
|
|
install -m 0755 ${WORKDIR}/30xinput_calibrate.sh ${D}${sysconfdir}/X11/Xsession.d/
|
|
|
|
install -d ${D}${sysconfdir}/xdg/autostart
|
|
sed -e 's,^Exec=.*,Exec=${bindir}/xinput_calibrator_once.sh,' ${S}/scripts/xinput_calibrator.desktop > ${D}${sysconfdir}/xdg/autostart/xinput_calibrator.desktop
|
|
}
|
|
|
|
FILES_${PN} += "${sysconfdir}/xdg/autostart"
|
|
RDEPENDS_${PN} = "xinput formfactor"
|
|
RRECOMMENDS_${PN} = "pointercal-xinput"
|