From: Chris Lord Date: Thu, 27 Jul 2006 18:00:52 +0000 (+0000) Subject: Add gconf schema for settings-daemon that sets the default theme X-Git-Tag: 2011-1~12831 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=30c97f3d173d476670fcdc24d049bd52af396843;p=openembedded-core.git 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 --- diff --git a/meta/packages/settings-daemon/files/settings-daemon.schemas b/meta/packages/settings-daemon/files/settings-daemon.schemas new file mode 100644 index 0000000000..05b06c2022 --- /dev/null +++ b/meta/packages/settings-daemon/files/settings-daemon.schemas @@ -0,0 +1,17 @@ + + + + + /schemas/desktop/poky/interface/theme + /desktop/poky/interface/theme + string + settings-daemon + Clearlooks + + Palmtop theme + The theme name for Matchbox and GTK+ to use. + + + + + diff --git a/meta/packages/settings-daemon/settings-daemon_svn.bb b/meta/packages/settings-daemon/settings-daemon_svn.bb index 097f6abb57..1624aa625e 100644 --- a/meta/packages/settings-daemon/settings-daemon_svn.bb +++ b/meta/packages/settings-daemon/settings-daemon_svn.bb @@ -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/ } +