summaryrefslogtreecommitdiffstats
path: root/openembedded/packages/tslib/tslib_cvs.bb
diff options
context:
space:
mode:
authorRichard Purdie <richard@openedhand.com>2005-10-10 10:41:35 +0000
committerRichard Purdie <richard@openedhand.com>2005-10-10 10:41:35 +0000
commitcbf3ef91305558fb8a59e19c5987a9e9ca22013a (patch)
treef7142e57734a8b2fac92ff758a6617d4464a82f9 /openembedded/packages/tslib/tslib_cvs.bb
parent562d4d35878bb644cbe2b9f23ef407fd6e1e38e2 (diff)
downloadpoky-cbf3ef91305558fb8a59e19c5987a9e9ca22013a.tar.gz
Merge changes from mainline OE to try and keep us in sync.
git-svn-id: https://svn.o-hand.com/repos/poky@127 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'openembedded/packages/tslib/tslib_cvs.bb')
-rw-r--r--openembedded/packages/tslib/tslib_cvs.bb16
1 files changed, 12 insertions, 4 deletions
diff --git a/openembedded/packages/tslib/tslib_cvs.bb b/openembedded/packages/tslib/tslib_cvs.bb
index 5c52147e1c..0a79a492a3 100644
--- a/openembedded/packages/tslib/tslib_cvs.bb
+++ b/openembedded/packages/tslib/tslib_cvs.bb
@@ -1,7 +1,7 @@
1SECTION = "base" 1SECTION = "base"
2DESCRIPTION = "tslib is a touchscreen access library." 2DESCRIPTION = "tslib is a touchscreen access library."
3PV = "0.0cvs${CVSDATE}" 3PV = "0.0cvs${CVSDATE}"
4PR = "r31" 4PR = "r32"
5 5
6SRC_URI_OVERRIDES_PACKAGE_ARCH = "0" 6SRC_URI_OVERRIDES_PACKAGE_ARCH = "0"
7PACKAGE_ARCH_tslib-conf = "${MACHINE}" 7PACKAGE_ARCH_tslib-conf = "${MACHINE}"
@@ -9,8 +9,9 @@ PACKAGE_ARCH_mnci = "${MACHINE}"
9 9
10SRC_URI = "cvs://cvs:@pubcvs.arm.linux.org.uk/mnt/src/cvsroot;module=tslib \ 10SRC_URI = "cvs://cvs:@pubcvs.arm.linux.org.uk/mnt/src/cvsroot;module=tslib \
11 file://ts.conf \ 11 file://ts.conf \
12 file://ts.conf-h3600 file://ts.conf-h3600-2.4 file://ts.conf-h2200 file://ts.conf-h6300 \ 12 file://ts.conf-h3600 file://ts.conf-h3600-2.4 file://ts.conf-h6300 \
13 file://ts.conf-corgi file://ts.conf-corgi-2.4 \ 13 file://ts.conf-corgi file://ts.conf-corgi-2.4 \
14 file://ts.conf-simpad file://ts.conf-simpad-2.4 \
14 file://tslib.sh" 15 file://tslib.sh"
15SRC_URI_append_mnci += " file://devfs.patch;patch=1" 16SRC_URI_append_mnci += " file://devfs.patch;patch=1"
16SRC_URI_append_mnci += " file://event1.patch;patch=1" 17SRC_URI_append_mnci += " file://event1.patch;patch=1"
@@ -40,9 +41,9 @@ do_install_append() {
40 install -d ${D}${sysconfdir}/profile.d/ 41 install -d ${D}${sysconfdir}/profile.d/
41 install -m 0755 ${WORKDIR}/tslib.sh ${D}${sysconfdir}/profile.d/ 42 install -m 0755 ${WORKDIR}/tslib.sh ${D}${sysconfdir}/profile.d/
42 case ${MACHINE} in 43 case ${MACHINE} in
43 h3600 | h3900 | h1940 | h6300 | ipaq-pxa270) 44 h3600 | h3900 | h1940 | h6300 | h2200 | ipaq-pxa270)
44 install -d ${D}${datadir}/tslib 45 install -d ${D}${datadir}/tslib
45 for f in ts.conf-h3600 ts.conf-h3600-2.4 ts.conf-h2200 ts.conf-h6300; do 46 for f in ts.conf-h3600 ts.conf-h3600-2.4 ts.conf-h6300; do
46 install -m 0644 ${WORKDIR}/$f ${D}${datadir}/tslib/ 47 install -m 0644 ${WORKDIR}/$f ${D}${datadir}/tslib/
47 done 48 done
48 rm -f ${D}${sysconfdir}/ts.conf 49 rm -f ${D}${sysconfdir}/ts.conf
@@ -54,6 +55,13 @@ do_install_append() {
54 done 55 done
55 rm -f ${D}${sysconfdir}/ts.conf 56 rm -f ${D}${sysconfdir}/ts.conf
56 ;; 57 ;;
58 simpad )
59 install -d ${D}${datadir}/tslib
60 for f in ts.conf-simpad ts.conf-simpad-2.4; do
61 install -m 0644 ${WORKDIR}/$f ${D}${datadir}/tslib/
62 done
63 rm -f ${D}${sysconfdir}/ts.conf
64 ;;
57 *) 65 *)
58 ;; 66 ;;
59 esac 67 esac