diff options
Diffstat (limited to 'meta/recipes-sato/matchbox-sato')
-rw-r--r-- | meta/recipes-sato/matchbox-sato/matchbox-session-sato/matchbox-session-sato.schemas | 53 | ||||
-rw-r--r-- | meta/recipes-sato/matchbox-sato/matchbox-session-sato_0.1.bb | 21 |
2 files changed, 60 insertions, 14 deletions
diff --git a/meta/recipes-sato/matchbox-sato/matchbox-session-sato/matchbox-session-sato.schemas b/meta/recipes-sato/matchbox-sato/matchbox-session-sato/matchbox-session-sato.schemas new file mode 100644 index 0000000000..f5b770b62f --- /dev/null +++ b/meta/recipes-sato/matchbox-sato/matchbox-session-sato/matchbox-session-sato.schemas | |||
@@ -0,0 +1,53 @@ | |||
1 | <?xml version="1.0"?> | ||
2 | <gconfschemafile> | ||
3 | <schemalist> | ||
4 | |||
5 | <schema> | ||
6 | <key>/schemas/desktop/poky/interface/theme</key> | ||
7 | <applyto>/desktop/poky/interface/theme</applyto> | ||
8 | <type>string</type> | ||
9 | <owner>matchbox-session-sato</owner> | ||
10 | <default>Sato</default> | ||
11 | <locale name="C"> | ||
12 | <short>Desktop theme</short> | ||
13 | <long>The theme name for Matchbox and Sato to use.</long> | ||
14 | </locale> | ||
15 | </schema> | ||
16 | |||
17 | <schema> | ||
18 | <key>/schemas/desktop/poky/interface/icon_theme</key> | ||
19 | <applyto>/desktop/poky/interface/icon_theme</applyto> | ||
20 | <type>string</type> | ||
21 | <owner>matchbox-session-sato</owner> | ||
22 | <default>Sato</default> | ||
23 | <locale name="C"> | ||
24 | <short>Desktop icon theme</short> | ||
25 | <long>The icon theme name for Matchbox and Sato.</long> | ||
26 | </locale> | ||
27 | </schema> | ||
28 | |||
29 | <schema> | ||
30 | <key>/schemas/desktop/poky/interface/touchscreen</key> | ||
31 | <applyto>/desktop/poky/interface/touchscreen</applyto> | ||
32 | <type>bool</type> | ||
33 | <owner>matchbox-session-sato</owner> | ||
34 | <default>true</default> | ||
35 | <locale name="C"> | ||
36 | <short>Activate touchscreen</short> | ||
37 | </locale> | ||
38 | </schema> | ||
39 | |||
40 | <schema> | ||
41 | <key>/schemas/desktop/poky/interface/font_name</key> | ||
42 | <applyto>/desktop/poky/interface/font_name</applyto> | ||
43 | <type>string</type> | ||
44 | <owner>matchbox-session-sato</owner> | ||
45 | <default>Sans 9</default> | ||
46 | <locale name="C"> | ||
47 | <short>Font name</short> | ||
48 | </locale> | ||
49 | </schema> | ||
50 | |||
51 | </schemalist> | ||
52 | </gconfschemafile> | ||
53 | |||
diff --git a/meta/recipes-sato/matchbox-sato/matchbox-session-sato_0.1.bb b/meta/recipes-sato/matchbox-sato/matchbox-session-sato_0.1.bb index 10fd5b42c5..2d34754281 100644 --- a/meta/recipes-sato/matchbox-sato/matchbox-session-sato_0.1.bb +++ b/meta/recipes-sato/matchbox-sato/matchbox-session-sato_0.1.bb | |||
@@ -16,7 +16,9 @@ PR = "r29" | |||
16 | # based on the machine architecture. | 16 | # based on the machine architecture. |
17 | PACKAGE_ARCH = "${MACHINE_ARCH}" | 17 | PACKAGE_ARCH = "${MACHINE_ARCH}" |
18 | 18 | ||
19 | SRC_URI = "file://session" | 19 | SRC_URI = "file://session \ |
20 | file://matchbox-session-sato.schemas \ | ||
21 | " | ||
20 | S = "${WORKDIR}" | 22 | S = "${WORKDIR}" |
21 | 23 | ||
22 | do_install() { | 24 | do_install() { |
@@ -34,18 +36,9 @@ do_install() { | |||
34 | install -d ${D}/${sysconfdir}/matchbox | 36 | install -d ${D}/${sysconfdir}/matchbox |
35 | sed -f "$SCRIPT" ${S}/session > ${D}/${sysconfdir}/matchbox/session | 37 | sed -f "$SCRIPT" ${S}/session > ${D}/${sysconfdir}/matchbox/session |
36 | chmod +x ${D}/${sysconfdir}/matchbox/session | 38 | chmod +x ${D}/${sysconfdir}/matchbox/session |
37 | } | ||
38 | |||
39 | pkg_postinst_${PN} () { | ||
40 | #!/bin/sh -e | ||
41 | if [ "x$D" != "x" ]; then | ||
42 | exit 1 | ||
43 | fi | ||
44 | 39 | ||
45 | . ${sysconfdir}/init.d/functions | 40 | install -d ${D}/${sysconfdir}/gconf/schemas |
46 | 41 | install -m 664 ${S}/matchbox-session-sato.schemas ${D}/${sysconfdir}/gconf/schemas | |
47 | gconftool-2 --config-source=xml::$D${sysconfdir}/gconf/gconf.xml.defaults --direct --type string --set /desktop/poky/interface/theme Sato | ||
48 | gconftool-2 --config-source=xml::$D${sysconfdir}/gconf/gconf.xml.defaults --direct --type string --set /desktop/poky/interface/icon_theme Sato | ||
49 | gconftool-2 --config-source=xml::$D${sysconfdir}/gconf/gconf.xml.defaults --direct --type bool --set /desktop/poky/interface/touchscreen true | ||
50 | gconftool-2 --config-source=xml::$D${sysconfdir}/gconf/gconf.xml.defaults --direct --type string --set /desktop/poky/interface/font_name "Sans 9" | ||
51 | } | 42 | } |
43 | |||
44 | inherit gconf | ||