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 | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/meta-moblin/packages/mutter-moblin/mutter-moblin_git.bb b/meta-moblin/packages/mutter-moblin/mutter-moblin_git.bb new file mode 100644 index 0000000000..37d5b2158b --- /dev/null +++ b/meta-moblin/packages/mutter-moblin/mutter-moblin_git.bb | |||
@@ -0,0 +1,37 @@ | |||
1 | DESCRIPTION = "A Moblin specific plugin for the Mutter composite window manager" | ||
2 | SECTION = "x11/wm" | ||
3 | LICENSE = "GPLv3" | ||
4 | DEPENDS = "nbtk mutter gnome-menus mojito libjana anerley clutter-mozembed" | ||
5 | PV = "2.25.2+git${SRCPV}" | ||
6 | PR = "r3" | ||
7 | |||
8 | SRC_URI = "git://git.moblin.org/${PN}.git;protocol=git \ | ||
9 | file://startup-notify.patch;patch=1 \ | ||
10 | file://background-tile.png" | ||
11 | |||
12 | FILES_${PN} += "${libdir}/metacity/plugins/clutter/*.so* ${datadir}/mutter-moblin-netbook-plugin" | ||
13 | FILES_${PN}-dbg += "${libdir}/metacity/plugins/clutter/.debug/*" | ||
14 | |||
15 | S = "${WORKDIR}/git" | ||
16 | |||
17 | ASNEEDED = "" | ||
18 | |||
19 | EXTRA_OECONF = "--enable-ahoghill --enable-netpanel --enable-people" | ||
20 | |||
21 | inherit autotools_stage | ||
22 | |||
23 | do_configure_prepend () { | ||
24 | rm -f ${S}/build/autotools/gtk-doc.m4 | ||
25 | cp ${WORKDIR}/background-tile.png ${S}/data/theme/panel/ | ||
26 | } | ||
27 | |||
28 | pkg_postinst_${PN} () { | ||
29 | #!/bin/sh -e | ||
30 | if [ "x$D" != "x" ]; then | ||
31 | exit 1 | ||
32 | fi | ||
33 | |||
34 | . ${sysconfdir}/init.d/functions | ||
35 | |||
36 | 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]' | ||
37 | } | ||