diff options
author | Xiaofeng Yan <xiaofeng.yan@windriver.com> | 2011-12-12 19:28:47 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-12-13 12:28:11 +0000 |
commit | d6860b2127f692b6e368c81db988fc153cb5291d (patch) | |
tree | 642f55558bee19d1059e3925a53302460baf3569 | |
parent | c9b1fed76353fd7c89e9ddf16aa6f1fa46727e9d (diff) | |
download | poky-d6860b2127f692b6e368c81db988fc153cb5291d.tar.gz |
task-core-gtk-directfb.bb: Add task list to run gtk over directfb
Add task-core-gtk-directfb.bb to OE core for running gtk over directfb.
[YOCTO #1674]
(From OE-Core rev: ad2737079a78e1bfa0edce5bd8f4daf61ee791e4)
Signed-off-by: Xiaofeng Yan <xiaofeng.yan@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-graphics/tasks/task-core-gtk-directfb.bb | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/meta/recipes-graphics/tasks/task-core-gtk-directfb.bb b/meta/recipes-graphics/tasks/task-core-gtk-directfb.bb new file mode 100644 index 0000000000..239e0c1984 --- /dev/null +++ b/meta/recipes-graphics/tasks/task-core-gtk-directfb.bb | |||
@@ -0,0 +1,26 @@ | |||
1 | DESCRIPTION = "gkt+ over directfb without x11" | ||
2 | PR = "r0" | ||
3 | LICENSE = "MIT" | ||
4 | |||
5 | LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58 \ | ||
6 | file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420" | ||
7 | |||
8 | inherit task | ||
9 | |||
10 | TOUCH = ' ${@base_contains("MACHINE_FEATURES", "touchscreen", "tslib tslib-calibrate tslib-tests", "",d)}' | ||
11 | |||
12 | PACKAGES += " \ | ||
13 | ${PN}-base \ | ||
14 | " | ||
15 | |||
16 | RDEPENDS_${PN}-base = " \ | ||
17 | directfb \ | ||
18 | directfb-examples \ | ||
19 | pango \ | ||
20 | pango-modules \ | ||
21 | fontconfig \ | ||
22 | gtk+ \ | ||
23 | gtk-demo \ | ||
24 | dropbear \ | ||
25 | ${TOUCH} \ | ||
26 | " | ||