diff options
author | Koen Kooi <koen@openembedded.org> | 2010-01-06 10:29:04 +0100 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2010-01-06 11:50:30 +0100 |
commit | dfa3508bef22563a0ff372913d566a64df326860 (patch) | |
tree | c1f96123bd6a36f842e91f382822aad56ab84fd9 /recipes/tasks | |
parent | dee31a7eccef412dfdffb5c600af3a2c8e04002d (diff) |
angstrom-task-gnome: move xserver around a bit to allow prototyping on new platforms
Diffstat (limited to 'recipes/tasks')
-rw-r--r-- | recipes/tasks/angstrom-task-gnome.bb | 19 |
1 files changed, 15 insertions, 4 deletions
diff --git a/recipes/tasks/angstrom-task-gnome.bb b/recipes/tasks/angstrom-task-gnome.bb index a947ccdd9a..681aef130f 100644 --- a/recipes/tasks/angstrom-task-gnome.bb +++ b/recipes/tasks/angstrom-task-gnome.bb @@ -2,6 +2,9 @@ DESCRIPTION = "Task for a GNOME based image" inherit task +# Most of these tasks are arch independant +PACKAGE_ARCH = "all" + XSERVER ?= "xserver-xorg \ xf86-input-evdev \ xf86-input-mouse \ @@ -9,9 +12,9 @@ XSERVER ?= "xserver-xorg \ xf86-input-keyboard \ " -PR = "r2" +PR = "r3" -PACKAGES += "task-gnome-apps task-gnome-fonts task-gnome task-gnome-gstreamer task-gnome-perl task-gnome-pulseaudio task-gnome-themes task-gnome-totem task-gnome-xserver-base" +PACKAGES += "task-gnome-apps task-gnome-fonts task-gnome task-gnome-gstreamer task-gnome-perl task-gnome-pulseaudio task-gnome-themes task-gnome-totem task-gnome-xserver-base task-gnome-xserver" DEPENDS = "gst-plugins-ugly" @@ -36,6 +39,7 @@ RDEPENDS_task-gnome-apps = " \ x11vnc angstrom-x11vnc-xinit \ xmms \ xterm \ + eog \ " RDEPENDS_task-gnome-fonts = " \ @@ -168,7 +172,6 @@ RDEPENDS_task-gnome-totem = " \ " RDEPENDS_task-gnome-xserver-base = " \ - ${XSERVER} \ dbus-x11 \ desktop-file-utils \ iso-codes \ @@ -186,8 +189,12 @@ RDEPENDS_task-gnome-xserver-base = " \ xset \ xvinfo \ " -PACKAGE_ARCH_task-gnome-xserver-base = "${MACHINE_ARCH}" +task-gnome-xserver = " \ + ${XSERVER} \ +" + +PACKAGE_ARCH_task-gnome-xserver = "${MACHINE_ARCH}" RDEPENDS_${PN} = " \ task-gnome-apps \ @@ -202,3 +209,7 @@ RDEPENDS_${PN} = " \ task-gnome-xserver-base \ " +RRECOMMENDS_${PN} = " \ + task-gnome-xserver \ +" + |