Add gconf schema for settings-daemon that sets the default theme

git-svn-id: https://svn.o-hand.com/repos/poky/trunk@564 311d38ba-8fff-0310-9ca6-ca027cbcb966
This commit is contained in:
Chris Lord 2006-07-27 18:00:52 +00:00
parent 754b301af1
commit 30c97f3d17
2 changed files with 23 additions and 2 deletions

View File

@ -0,0 +1,17 @@
<gconfschemafile>
<schemalist>
<schema>
<key>/schemas/desktop/poky/interface/theme</key>
<applyto>/desktop/poky/interface/theme</applyto>
<type>string</type>
<owner>settings-daemon</owner>
<default>Clearlooks</default>
<locale name="C">
<short>Palmtop theme</short>
<long>The theme name for Matchbox and GTK+ to use.</long>
</locale>
</schema>
</schemalist>
</gconfschemafile>

View File

@ -4,15 +4,19 @@ DEPENDS = "gconf glib-2.0"
SECTION = "gpe"
SRC_URI = "svn://svn.o-hand.com/repos/matchbox/trunk;module=${PN};proto=http \
file://70settings-daemon"
file://70settings-daemon \
file://settings-daemon.schemas"
S = "${WORKDIR}/${PN}"
inherit autotools pkgconfig gettext
inherit autotools pkgconfig gettext gconf
FILES_${PN} = "${bindir} ${sysconfdir}"
do_install_append () {
install -d ${D}/${sysconfdir}/X11/Xsession.d
install -d ${D}/${sysconfdir}/gconf/schemas
install -m 755 ${WORKDIR}/70settings-daemon ${D}/${sysconfdir}/X11/Xsession.d/
install -m 644 ${WORKDIR}/settings-daemon.schemas ${D}/${sysconfdir}/gconf/schemas/
}