mirror of
https://git.yoctoproject.org/poky
synced 2026-06-27 11:13:38 +02:00
A lot of our recipes had short one-line DESCRIPTION values and no SUMMARY value set. In this case it's much better to just set SUMMARY since DESCRIPTION is defaulted from SUMMARY anyway and then the SUMMARY is at least useful. I also took the opportunity to fix up a lot of the new SUMMARY values, making them concisely explain the function of the recipe / package where possible. (From OE-Core rev: b8feee3cf21f70ba4ec3b822d2f596d4fc02a292) Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
32 lines
1.0 KiB
BlitzBasic
32 lines
1.0 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"
|
|
|
|
PV = "0.7.5+git${SRCPV}"
|
|
PR = "r6"
|
|
|
|
inherit autotools
|
|
|
|
SRCREV = "c01c5af807cb4b0157b882ab07a893df9a810111"
|
|
SRC_URI = "git://github.com/tias/xinput_calibrator.git \
|
|
file://30xinput_calibrate.sh \
|
|
file://Allow-xinput_calibrator_pointercal.sh-to-be-run-as-n.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 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/
|
|
}
|
|
|
|
RDEPENDS_${PN} = "xinput formfactor"
|
|
RRECOMMENDS_${PN} = "pointercal-xinput"
|