diff options
author | Ross Burton <ross@openedhand.com> | 2005-10-14 08:54:23 +0000 |
---|---|---|
committer | Ross Burton <ross@openedhand.com> | 2005-10-14 08:54:23 +0000 |
commit | 70f1fb9c4d9d6783be1d1dad37cb1f4992af7404 (patch) | |
tree | c8adc9f7ae9ef54542562fbf15e3fc2abc850776 /openembedded/packages/matchbox-poky/matchbox-poky_0.1.bb | |
parent | 11c91fb9bb24ed5f6504ef32da514aafdebeb421 (diff) | |
download | poky-70f1fb9c4d9d6783be1d1dad37cb1f4992af7404.tar.gz |
Set gconf key for theme name on install
git-svn-id: https://svn.o-hand.com/repos/poky@137 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'openembedded/packages/matchbox-poky/matchbox-poky_0.1.bb')
-rw-r--r-- | openembedded/packages/matchbox-poky/matchbox-poky_0.1.bb | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/openembedded/packages/matchbox-poky/matchbox-poky_0.1.bb b/openembedded/packages/matchbox-poky/matchbox-poky_0.1.bb index 12febdb31b..72024355e6 100644 --- a/openembedded/packages/matchbox-poky/matchbox-poky_0.1.bb +++ b/openembedded/packages/matchbox-poky/matchbox-poky_0.1.bb | |||
@@ -2,7 +2,7 @@ DESCRIPTION = "Custom MB session files for poky" | |||
2 | LICENSE = "GPL" | 2 | LICENSE = "GPL" |
3 | SECTION = "x11" | 3 | SECTION = "x11" |
4 | RDEPENDS = "matchbox matchbox-applet-startup-monitor gtk-theme-clearlooks" | 4 | RDEPENDS = "matchbox matchbox-applet-startup-monitor gtk-theme-clearlooks" |
5 | PR = "r10" | 5 | PR = "r11" |
6 | 6 | ||
7 | SRC_URI = "file://etc" | 7 | SRC_URI = "file://etc" |
8 | S = ${WORKDIR} | 8 | S = ${WORKDIR} |
@@ -11,3 +11,8 @@ do_install() { | |||
11 | cp -R ${S}/etc ${D}/etc | 11 | cp -R ${S}/etc ${D}/etc |
12 | chmod -R 755 ${D}/etc | 12 | chmod -R 755 ${D}/etc |
13 | } | 13 | } |
14 | |||
15 | pkg_postinst_matchbox-poky () { | ||
16 | #!/bin/sh -e | ||
17 | gconftool --config-source=xml::${IMAGE_ROOTFS}/${sysconfdir}/gconf/gconf.xml.defaults --direct --type string --set /desktop/poky/theme Clearlooks | ||
18 | } | ||