diff options
Diffstat (limited to 'meta-moblin/packages/mutter-moblin/mutter-moblin_git.bb')
-rw-r--r-- | meta-moblin/packages/mutter-moblin/mutter-moblin_git.bb | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/meta-moblin/packages/mutter-moblin/mutter-moblin_git.bb b/meta-moblin/packages/mutter-moblin/mutter-moblin_git.bb index bb19f5b140..394117c864 100644 --- a/meta-moblin/packages/mutter-moblin/mutter-moblin_git.bb +++ b/meta-moblin/packages/mutter-moblin/mutter-moblin_git.bb | |||
@@ -3,13 +3,15 @@ SECTION = "x11/wm" | |||
3 | LICENSE = "GPLv3" | 3 | LICENSE = "GPLv3" |
4 | DEPENDS = "nbtk mutter gnome-menus mojito libjana anerley clutter-mozembed bickley" | 4 | DEPENDS = "nbtk mutter gnome-menus mojito libjana anerley clutter-mozembed bickley" |
5 | PV = "2.25.2+git${SRCPV}" | 5 | PV = "2.25.2+git${SRCPV}" |
6 | PR = "r6" | 6 | PR = "r8" |
7 | 7 | ||
8 | SRC_URI = "git://git.moblin.org/${PN}.git;protocol=git \ | 8 | SRC_URI = "git://git.moblin.org/${PN}.git;protocol=git \ |
9 | file://startup-notify.patch;patch=1 \ | 9 | file://startup-notify.patch;patch=1 \ |
10 | file://88mutter-panelapps.sh \ | ||
10 | file://background-tile.png" | 11 | file://background-tile.png" |
11 | 12 | ||
12 | FILES_${PN} += "\ | 13 | FILES_${PN} += "\ |
14 | ${sysconfdir}/X11 \ | ||
13 | ${libdir}/metacity/plugins/clutter/*.so* \ | 15 | ${libdir}/metacity/plugins/clutter/*.so* \ |
14 | ${libdir}/mutter/plugins/*.so* \ | 16 | ${libdir}/mutter/plugins/*.so* \ |
15 | ${datadir}/mutter-moblin-netbook-plugin \ | 17 | ${datadir}/mutter-moblin-netbook-plugin \ |
@@ -32,6 +34,12 @@ do_configure_prepend () { | |||
32 | cp ${WORKDIR}/background-tile.png ${S}/data/theme/panel/ | 34 | cp ${WORKDIR}/background-tile.png ${S}/data/theme/panel/ |
33 | } | 35 | } |
34 | 36 | ||
37 | do_install_append () { | ||
38 | install -d ${D}${sysconfdir}/X11/Xsession.d/ | ||
39 | install ${WORKDIR}/88mutter-panelapps.sh ${D}${sysconfdir}/X11/Xsession.d/ | ||
40 | } | ||
41 | |||
42 | |||
35 | pkg_postinst_${PN} () { | 43 | pkg_postinst_${PN} () { |
36 | #!/bin/sh -e | 44 | #!/bin/sh -e |
37 | if [ "x$D" != "x" ]; then | 45 | if [ "x$D" != "x" ]; then |
@@ -41,4 +49,6 @@ fi | |||
41 | . ${sysconfdir}/init.d/functions | 49 | . ${sysconfdir}/init.d/functions |
42 | 50 | ||
43 | gconftool-2 --config-source=xml::$D${sysconfdir}/gconf/gconf.xml.defaults --direct --type list --list-type string --set /apps/metacity/general/clutter_plugins '[moblin-netbook]' | 51 | gconftool-2 --config-source=xml::$D${sysconfdir}/gconf/gconf.xml.defaults --direct --type list --list-type string --set /apps/metacity/general/clutter_plugins '[moblin-netbook]' |
44 | } | 52 | |
53 | nbtk-create-image-cache ${datadir}/mutter-moblin/theme | ||
54 | } | ||