diff options
author | Richard Purdie <richard@openedhand.com> | 2006-11-20 16:53:27 +0000 |
---|---|---|
committer | Richard Purdie <richard@openedhand.com> | 2006-11-20 16:53:27 +0000 |
commit | 173b999d9585d61890bdabc4d26a784bc7758ec4 (patch) | |
tree | dff2a3fd9997cfee3178f611032423cf60f7ad16 | |
parent | c4f7ddc546efde9ffb53d2be4604150ba2737aca (diff) | |
download | poky-173b999d9585d61890bdabc4d26a784bc7758ec4.tar.gz |
Drop cvs tslib
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@891 311d38ba-8fff-0310-9ca6-ca027cbcb966
-rw-r--r-- | meta/packages/tslib/tslib_cvs.bb | 81 |
1 files changed, 0 insertions, 81 deletions
diff --git a/meta/packages/tslib/tslib_cvs.bb b/meta/packages/tslib/tslib_cvs.bb deleted file mode 100644 index 98d01f1637..0000000000 --- a/meta/packages/tslib/tslib_cvs.bb +++ /dev/null | |||
@@ -1,81 +0,0 @@ | |||
1 | SECTION = "base" | ||
2 | DESCRIPTION = "tslib is a touchscreen access library." | ||
3 | PV = "0.0+cvs${SRCDATE}" | ||
4 | PR = "r38" | ||
5 | |||
6 | SRC_URI_OVERRIDES_PACKAGE_ARCH = "0" | ||
7 | PACKAGE_ARCH_tslib-conf = "${MACHINE_ARCH}" | ||
8 | PACKAGE_ARCH_mnci = "${MACHINE_ARCH}" | ||
9 | |||
10 | SRC_URI = "cvs://cvs:@pubcvs.arm.linux.org.uk/mnt/src/cvsroot;module=tslib \ | ||
11 | file://usec_fix.patch;patch=1 \ | ||
12 | file://ts.conf file://ts-2.6.conf \ | ||
13 | file://ts.conf-h3600-2.4 file://ts.conf-simpad-2.4 \ | ||
14 | file://ts.conf-corgi-2.4 file://ts.conf-collie-2.4 \ | ||
15 | file://tslib.sh" | ||
16 | SRC_URI_append_mnci += " file://devfs.patch;patch=1" | ||
17 | SRC_URI_append_mnci += " file://event1.patch;patch=1" | ||
18 | S = "${WORKDIR}/tslib" | ||
19 | LICENSE = "LGPL" | ||
20 | CONFFILES_${PN} = "${sysconfdir}/ts.conf" | ||
21 | |||
22 | inherit autotools pkgconfig | ||
23 | |||
24 | PACKAGES = "tslib-conf libts libts-dev tslib-tests tslib-calibrate" | ||
25 | EXTRA_OECONF = "--enable-shared" | ||
26 | EXTRA_OECONF_mnci = "--enable-shared --disable-h3600 --enable-input --disable-corgi --disable-collie --disable-mk712 --disable-arctic2 --disable-ucb1x00 " | ||
27 | EXTRA_OECONF_beagle = "--enable-shared --enable-h3600 --disable-input --disable-corgi --disable-collie --disable-mk712 --disable-arctic2 --disable-ucb1x00 " | ||
28 | |||
29 | do_stage () { | ||
30 | autotools_stage_all | ||
31 | } | ||
32 | |||
33 | do_install_prepend () { | ||
34 | install -m 0644 ${WORKDIR}/ts.conf ${S}/etc/ts.conf | ||
35 | } | ||
36 | |||
37 | do_install_append() { | ||
38 | install -d ${D}${sysconfdir}/profile.d/ | ||
39 | install -m 0755 ${WORKDIR}/tslib.sh ${D}${sysconfdir}/profile.d/ | ||
40 | case ${MACHINE} in | ||
41 | h3600 | h3900 | h1940 | h6300 | h2200 | ipaq-pxa270 | blueangel) | ||
42 | install -d ${D}${datadir}/tslib | ||
43 | for f in ts-2.6.conf ts.conf-h3600-2.4; do | ||
44 | install -m 0644 ${WORKDIR}/$f ${D}${datadir}/tslib/ | ||
45 | done | ||
46 | rm -f ${D}${sysconfdir}/ts.conf | ||
47 | ;; | ||
48 | c7x0 | spitz | akita | tosa ) | ||
49 | install -d ${D}${datadir}/tslib | ||
50 | for f in ts-2.6.conf ts.conf-corgi-2.4; do | ||
51 | install -m 0644 ${WORKDIR}/$f ${D}${datadir}/tslib/ | ||
52 | done | ||
53 | rm -f ${D}${sysconfdir}/ts.conf | ||
54 | ;; | ||
55 | collie | poodle ) | ||
56 | install -d ${D}${datadir}/tslib | ||
57 | for f in ts-2.6.conf ts.conf-collie-2.4; do | ||
58 | install -m 0644 ${WORKDIR}/$f ${D}${datadir}/tslib/ | ||
59 | done | ||
60 | rm -f ${D}${sysconfdir}/ts.conf | ||
61 | ;; | ||
62 | |||
63 | simpad ) | ||
64 | install -d ${D}${datadir}/tslib | ||
65 | for f in ts-2.6.conf ts.conf-simpad-2.4; do | ||
66 | install -m 0644 ${WORKDIR}/$f ${D}${datadir}/tslib/ | ||
67 | done | ||
68 | rm -f ${D}${sysconfdir}/ts.conf | ||
69 | ;; | ||
70 | *) | ||
71 | ;; | ||
72 | esac | ||
73 | } | ||
74 | |||
75 | RDEPENDS_libts = "tslib-conf" | ||
76 | |||
77 | FILES_tslib-conf = "${sysconfdir}/ts.conf ${sysconfdir}/profile.d/tslib.sh ${datadir}/tslib" | ||
78 | FILES_libts = "${libdir}/*.so.* ${libdir}/ts/*.so*" | ||
79 | FILES_libts-dev = "${FILES_tslib-dev}" | ||
80 | FILES_tslib-calibrate += "${bindir}/ts_calibrate" | ||
81 | FILES_tslib-tests = "${bindir}/ts_harvest ${bindir}/ts_print ${bindir}/ts_print_raw ${bindir}/ts_test" | ||