diff options
author | Paul Eggleton <paul.eggleton@linux.intel.com> | 2012-08-29 11:38:34 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-09-04 12:52:55 +0100 |
commit | 272cb74d70686cb7f72005dc25e02f38b46ecd57 (patch) | |
tree | 3a5e4cb0c9a2e407b2d04c78b1eb51d0f429ca64 /meta/recipes-sato/packagegroups | |
parent | f1df3f828bfc9e70bf8cf5a7c2e2cf216944785a (diff) | |
download | poky-272cb74d70686cb7f72005dc25e02f38b46ecd57.tar.gz |
Rename task to packagegroup
"Package group" is a much more appropriate name for these than task,
since we use the word task to describe units of work executed by
BitBake.
(From OE-Core rev: 424dcf7046e4ad09dcc664eb1992201195247fcf)
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-sato/packagegroups')
3 files changed, 155 insertions, 0 deletions
diff --git a/meta/recipes-sato/packagegroups/packagegroup-core-x11-mini.bb b/meta/recipes-sato/packagegroups/packagegroup-core-x11-mini.bb new file mode 100644 index 0000000000..4f3bb47000 --- /dev/null +++ b/meta/recipes-sato/packagegroups/packagegroup-core-x11-mini.bb | |||
@@ -0,0 +1,45 @@ | |||
1 | # | ||
2 | # Copyright (C) 2011 Intel Corporation | ||
3 | # | ||
4 | |||
5 | DESCRIPTION = "Tasks for core X11 applications" | ||
6 | LICENSE = "MIT" | ||
7 | LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58 \ | ||
8 | file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420" | ||
9 | PR = "r1" | ||
10 | |||
11 | PACKAGES = "\ | ||
12 | packagegroup-core-x11-mini \ | ||
13 | packagegroup-core-x11-mini-dbg \ | ||
14 | packagegroup-core-x11-mini-dev \ | ||
15 | " | ||
16 | |||
17 | PACKAGE_ARCH = "${MACHINE_ARCH}" | ||
18 | |||
19 | XSERVER ?= "xserver-xorg xf86-video-fbdev xf86-input-evdev" | ||
20 | |||
21 | ALLOW_EMPTY = "1" | ||
22 | |||
23 | ROOTLESS_X = "1" | ||
24 | |||
25 | # xserver-common, x11-common | ||
26 | VIRTUAL-RUNTIME_xserver_common ?= "x11-common" | ||
27 | |||
28 | # elsa, xserver-nodm-init | ||
29 | VIRTUAL-RUNTIME_graphical_init_manager ?= "xserver-nodm-init" | ||
30 | |||
31 | |||
32 | RDEPENDS_packagegroup-core-x11-mini = "\ | ||
33 | dbus \ | ||
34 | pointercal \ | ||
35 | matchbox-terminal \ | ||
36 | matchbox-wm \ | ||
37 | mini-x-session \ | ||
38 | ${XSERVER} \ | ||
39 | ${VIRTUAL-RUNTIME_xserver_common} \ | ||
40 | ${VIRTUAL-RUNTIME_graphical_init_manager} \ | ||
41 | liberation-fonts \ | ||
42 | xauth \ | ||
43 | xhost \ | ||
44 | xset \ | ||
45 | xrandr" | ||
diff --git a/meta/recipes-sato/packagegroups/packagegroup-core-x11-sato.bb b/meta/recipes-sato/packagegroups/packagegroup-core-x11-sato.bb new file mode 100644 index 0000000000..380584e223 --- /dev/null +++ b/meta/recipes-sato/packagegroups/packagegroup-core-x11-sato.bb | |||
@@ -0,0 +1,42 @@ | |||
1 | # | ||
2 | # Copyright (C) 2007-2008 OpenedHand Ltd. | ||
3 | # | ||
4 | |||
5 | DESCRIPTION = "Sato Tasks for Poky" | ||
6 | LICENSE = "MIT" | ||
7 | LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58 \ | ||
8 | file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420" | ||
9 | PR = "r32" | ||
10 | |||
11 | PACKAGES = "\ | ||
12 | packagegroup-core-x11-sato \ | ||
13 | packagegroup-core-x11-sato-dbg \ | ||
14 | packagegroup-core-x11-sato-dev \ | ||
15 | " | ||
16 | |||
17 | PACKAGE_ARCH = "${MACHINE_ARCH}" | ||
18 | |||
19 | ALLOW_EMPTY = "1" | ||
20 | |||
21 | NETWORK_MANAGER ?= "connman-gnome" | ||
22 | NETWORK_MANAGER_libc-uclibc = "" | ||
23 | |||
24 | WEB ?= "" | ||
25 | #WEB = "web-webkit" | ||
26 | |||
27 | RDEPENDS_packagegroup-core-x11-sato = "\ | ||
28 | matchbox-desktop \ | ||
29 | matchbox-session-sato \ | ||
30 | matchbox-keyboard \ | ||
31 | matchbox-stroke \ | ||
32 | matchbox-config-gtk \ | ||
33 | xcursor-transparent-theme \ | ||
34 | sato-icon-theme \ | ||
35 | settings-daemon \ | ||
36 | gtk-sato-engine \ | ||
37 | gthumb \ | ||
38 | x11vnc \ | ||
39 | libsdl \ | ||
40 | gaku \ | ||
41 | ${WEB} \ | ||
42 | ${NETWORK_MANAGER}" | ||
diff --git a/meta/recipes-sato/packagegroups/packagegroup-core-x11.bb b/meta/recipes-sato/packagegroups/packagegroup-core-x11.bb new file mode 100644 index 0000000000..4c16c461a3 --- /dev/null +++ b/meta/recipes-sato/packagegroups/packagegroup-core-x11.bb | |||
@@ -0,0 +1,68 @@ | |||
1 | # | ||
2 | # Copyright (C) 2011 Intel Corporation | ||
3 | # | ||
4 | |||
5 | DESCRIPTION = "Tasks for core X11 applications" | ||
6 | LICENSE = "MIT" | ||
7 | LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58 \ | ||
8 | file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420" | ||
9 | PR = "r36" | ||
10 | |||
11 | PACKAGES = "\ | ||
12 | packagegroup-core-apps-x11-core \ | ||
13 | packagegroup-core-apps-x11-core-dbg \ | ||
14 | packagegroup-core-apps-x11-core-dev \ | ||
15 | packagegroup-core-apps-x11-games \ | ||
16 | packagegroup-core-apps-x11-games-dbg \ | ||
17 | packagegroup-core-apps-x11-games-dev \ | ||
18 | packagegroup-core-x11-base \ | ||
19 | packagegroup-core-x11-base-dbg \ | ||
20 | packagegroup-core-x11-base-dev \ | ||
21 | " | ||
22 | |||
23 | PACKAGE_ARCH = "${MACHINE_ARCH}" | ||
24 | |||
25 | XSERVER ?= "xserver-xorg xf86-video-fbdev xf86-input-evdev" | ||
26 | |||
27 | ALLOW_EMPTY = "1" | ||
28 | |||
29 | # pcmanfm doesn't work on mips/powerpc | ||
30 | FILEMANAGER ?= "pcmanfm" | ||
31 | FILEMANAGER_mips ?= "" | ||
32 | |||
33 | # xserver-common, x11-common | ||
34 | VIRTUAL-RUNTIME_xserver_common ?= "x11-common" | ||
35 | |||
36 | # elsa, xserver-nodm-init | ||
37 | VIRTUAL-RUNTIME_graphical_init_manager ?= "xserver-nodm-init" | ||
38 | |||
39 | |||
40 | RDEPENDS_packagegroup-core-x11-base = "\ | ||
41 | dbus \ | ||
42 | pointercal \ | ||
43 | matchbox-wm \ | ||
44 | matchbox-keyboard \ | ||
45 | matchbox-keyboard-applet \ | ||
46 | matchbox-keyboard-im \ | ||
47 | matchbox-panel-2 \ | ||
48 | matchbox-desktop \ | ||
49 | matchbox-session \ | ||
50 | ${XSERVER} \ | ||
51 | ${VIRTUAL-RUNTIME_xserver_common} \ | ||
52 | ${VIRTUAL-RUNTIME_graphical_init_manager} \ | ||
53 | liberation-fonts \ | ||
54 | xauth \ | ||
55 | xhost \ | ||
56 | xset \ | ||
57 | xrandr" | ||
58 | |||
59 | |||
60 | RDEPENDS_packagegroup-core-apps-x11-core = "\ | ||
61 | leafpad \ | ||
62 | ${FILEMANAGER} \ | ||
63 | matchbox-terminal \ | ||
64 | sato-screenshot" | ||
65 | |||
66 | |||
67 | RDEPENDS_packagegroup-core-apps-x11-games = "\ | ||
68 | oh-puzzles" | ||