diff options
author | Steve Sakoman <steve@sakoman.com> | 2009-10-13 20:01:05 -0700 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2009-10-14 14:09:49 +0200 |
commit | 42e5ebf75aeecff10e6cf34932b260f27bfe8c5e (patch) | |
tree | 6980aaa65b604f9d3362c8f4d16fc2e555f6e6de /recipes/gnome | |
parent | b7057abc73021352857275114d6564383a6de95e (diff) |
gnome-session: add 2.28.0
Diffstat (limited to 'recipes/gnome')
-rw-r--r-- | recipes/gnome/gnome-session_2.28.0.bb | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/recipes/gnome/gnome-session_2.28.0.bb b/recipes/gnome/gnome-session_2.28.0.bb new file mode 100644 index 0000000000..65d6765bad --- /dev/null +++ b/recipes/gnome/gnome-session_2.28.0.bb @@ -0,0 +1,23 @@ +DESCRIPTION = "Gnome session manager" +LICENSE = "GPL" +SECTION = "x11/gnome" +DEPENDS = "devicekit-power libwnck gnome-keyring libgnomeui startup-notification gtk+ gconf gdk-pixbuf-csource-native" + +inherit gnome + +EXTRA_OECONF = " ac_cv_path_GCONF_SANITY_CHECK=set " + +do_configure_append() { + for i in $(find ${S} -name "Makefile") ; do + sed -i -e s:"GCONFTOOL = .*/usr/bin/gconftool-2":"GCONFTOOL = /usr/bin/gconftool-2":g $i + sed -i -e s:"GCONF_SANITY_CHECK = set":"GCONF_SANITY_CHECK = /usr/libexec/gconf-sanity-check-2":g $i + done +} + +do_stage () { + autotools_stage_all +} + +FILES_${PN} += "${datadir}/xsessions ${datadir}/icons ${datadir}/gnome ${libdir}/gnome-session/helpers" +FILES_${PN}-dbg += "${libdir}/gnome-session/helpers/.debug" + |