diff options
Diffstat (limited to 'meta-oe/recipes-graphics/tslib/tslib_1.21.bb')
| -rw-r--r-- | meta-oe/recipes-graphics/tslib/tslib_1.21.bb | 82 |
1 files changed, 82 insertions, 0 deletions
diff --git a/meta-oe/recipes-graphics/tslib/tslib_1.21.bb b/meta-oe/recipes-graphics/tslib/tslib_1.21.bb new file mode 100644 index 0000000000..2bc40d9391 --- /dev/null +++ b/meta-oe/recipes-graphics/tslib/tslib_1.21.bb | |||
| @@ -0,0 +1,82 @@ | |||
| 1 | SUMMARY = "An abstraction layer for touchscreen panel events" | ||
| 2 | DESCRIPTION = "Tslib is an abstraction layer for touchscreen panel \ | ||
| 3 | events, as well as a filter stack for the manipulation of those events. \ | ||
| 4 | Tslib is generally used on embedded devices to provide a common user \ | ||
| 5 | space interface to touchscreen functionality." | ||
| 6 | HOMEPAGE = "http://tslib.org/" | ||
| 7 | |||
| 8 | AUTHOR = "Martin Kepplinger <martink@posteo.de>" | ||
| 9 | SECTION = "base" | ||
| 10 | LICENSE = "LGPLv2+ & GPLv2+" | ||
| 11 | LIC_FILES_CHKSUM = "\ | ||
| 12 | file://COPYING;md5=fc178bcd425090939a8b634d1d6a9594 \ | ||
| 13 | file://tests/COPYING;md5=a23a74b3f4caf9616230789d94217acb \ | ||
| 14 | " | ||
| 15 | |||
| 16 | SRC_URI = "https://github.com/kergoth/tslib/releases/download/${PV}/tslib-${PV}.tar.xz;downloadfilename=tslib-${PV}.tar.xz \ | ||
| 17 | file://ts.conf \ | ||
| 18 | file://tslib.sh \ | ||
| 19 | " | ||
| 20 | SRC_URI[md5sum] = "b2b20d3ed520128513f8d3135b42e142" | ||
| 21 | SRC_URI[sha256sum] = "d2a57b823ea59e53a3b130eef05dfed1190b857854f886eec764e1ca1957cf56" | ||
| 22 | |||
| 23 | UPSTREAM_CHECK_URI = "https://github.com/kergoth/tslib/releases" | ||
| 24 | |||
| 25 | inherit autotools pkgconfig | ||
| 26 | |||
| 27 | PACKAGECONFIG ??= "debounce dejitter iir linear median pthres skip lowpass invert variance input touchkit waveshare" | ||
| 28 | PACKAGECONFIG[debounce] = "--enable-debounce,--disable-debounce" | ||
| 29 | PACKAGECONFIG[dejitter] = "--enable-dejitter,--disable-dejitter" | ||
| 30 | PACKAGECONFIG[iir] = "--enable-iir,--disable-iir" | ||
| 31 | PACKAGECONFIG[linear] = "--enable-linear,--disable-linear" | ||
| 32 | PACKAGECONFIG[median] = "--enable-median,--disable-median" | ||
| 33 | PACKAGECONFIG[pthres] = "--enable-pthres,--disable-pthres" | ||
| 34 | PACKAGECONFIG[skip] = "--enable-skip,--disable-skip" | ||
| 35 | PACKAGECONFIG[lowpass] = "--enable-lowpass,--disable-lowpass" | ||
| 36 | PACKAGECONFIG[invert] = "--enable-invert,--disable-invert" | ||
| 37 | PACKAGECONFIG[variance] = "--enable-variance,--disable-variance" | ||
| 38 | PACKAGECONFIG[input] = "--enable-input,--disable-input" | ||
| 39 | PACKAGECONFIG[tatung] = "--enable-tatung,--disable-tatung" | ||
| 40 | PACKAGECONFIG[touchkit] = "--enable-touchkit,--disable-touchkit" | ||
| 41 | PACKAGECONFIG[waveshare] = "--enable-waveshare,--disable-waveshare" | ||
| 42 | PACKAGECONFIG[ucb1x00] = "--enable-ucb1x00,--disable-ucb1x00" | ||
| 43 | PACKAGECONFIG[mk712] = "--enable-mk712,--disable-mk712" | ||
| 44 | PACKAGECONFIG[h3600] = "--enable-h3600,--disable-h3600" | ||
| 45 | PACKAGECONFIG[dmc] = "--enable-dmc,--disable-dmc" | ||
| 46 | PACKAGECONFIG[linear-h2200] = "--enable-linear-h2200,--disable-linear-h2200" | ||
| 47 | PACKAGECONFIG[corgi] = "--enable-corgi,--disable-corgi" | ||
| 48 | PACKAGECONFIG[collie] = "--enable-collie,--disable-collie" | ||
| 49 | PACKAGECONFIG[arctic2] = "--enable-arctic2,--disable-arctic2" | ||
| 50 | PACKAGECONFIG[dmc_dus3000] = "--enable-dmc_dus3000,--disable-dmc_dus3000" | ||
| 51 | PACKAGECONFIG[cy8mrln-palmpre] = "--enable-cy8mrln-palmpre,--disable-cy8mrln-palmpre" | ||
| 52 | PACKAGECONFIG[galax] = "--enable-galax,--disable-galax" | ||
| 53 | PACKAGECONFIG[debug] = "--enable-debug,--disable-debug" | ||
| 54 | |||
| 55 | do_install_prepend() { | ||
| 56 | install -m 0644 ${WORKDIR}/ts.conf ${S}/etc/ts.conf | ||
| 57 | } | ||
| 58 | |||
| 59 | do_install_append() { | ||
| 60 | install -d ${D}${sysconfdir}/profile.d/ | ||
| 61 | install -m 0755 ${WORKDIR}/tslib.sh ${D}${sysconfdir}/profile.d/ | ||
| 62 | } | ||
| 63 | |||
| 64 | RPROVIDES_tslib-conf = "libts-0.0-conf" | ||
| 65 | |||
| 66 | PACKAGES =+ "tslib-conf tslib-tests tslib-calibrate tslib-uinput" | ||
| 67 | DEBIAN_NOAUTONAME_tslib-conf = "1" | ||
| 68 | DEBIAN_NOAUTONAME_tslib-tests = "1" | ||
| 69 | DEBIAN_NOAUTONAME_tslib-calibrate = "1" | ||
| 70 | DEBIAN_NOAUTONAME_tslib-uinput = "1" | ||
| 71 | |||
| 72 | RDEPENDS_${PN} = "tslib-conf" | ||
| 73 | RRECOMMENDS_${PN} = "pointercal" | ||
| 74 | |||
| 75 | FILES_${PN}-dev += "${libdir}/ts/*.la" | ||
| 76 | FILES_tslib-conf = "${sysconfdir}/ts.conf ${sysconfdir}/profile.d/tslib.sh ${datadir}/tslib" | ||
| 77 | FILES_${PN} = "${libdir}/*.so.* ${libdir}/ts/*.so*" | ||
| 78 | FILES_tslib-calibrate += "${bindir}/ts_calibrate" | ||
| 79 | FILES_tslib-uinput += "${bindir}/ts_uinput" | ||
| 80 | |||
| 81 | FILES_tslib-tests = "${bindir}/ts_harvest ${bindir}/ts_print ${bindir}/ts_print_raw ${bindir}/ts_print_mt \ | ||
| 82 | ${bindir}/ts_test ${bindir}/ts_test_mt ${bindir}/ts_verify ${bindir}/ts_finddev ${bindir}/ts_conf" | ||
