summaryrefslogtreecommitdiffstats
path: root/meta/classes/gconf.bbclass
diff options
context:
space:
mode:
Diffstat (limited to 'meta/classes/gconf.bbclass')
-rw-r--r--meta/classes/gconf.bbclass70
1 files changed, 70 insertions, 0 deletions
diff --git a/meta/classes/gconf.bbclass b/meta/classes/gconf.bbclass
new file mode 100644
index 0000000000..e9076b2779
--- /dev/null
+++ b/meta/classes/gconf.bbclass
@@ -0,0 +1,70 @@
1DEPENDS += "gconf gconf-native"
2
3# These are for when gconftool is used natively and the prefix isn't necessarily
4# the sysroot. TODO: replicate the postinst logic for -native packages going
5# into sysroot as they won't be running their own install-time schema
6# registration (disabled below) nor the postinst script (as they don't happen).
7export GCONF_SCHEMA_INSTALL_SOURCE = "xml:merged:${STAGING_DIR_NATIVE}${sysconfdir}/gconf/gconf.xml.defaults"
8export GCONF_BACKEND_DIR = "${STAGING_LIBDIR_NATIVE}/GConf/2"
9
10# Disable install-time schema registration as we're a packaging system so this
11# happens in the postinst script, not at install time. Set both the configure
12# script option and the traditional envionment variable just to make sure.
13EXTRA_OECONF += "--disable-schemas-install"
14export GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL = "1"
15
16gconf_postinst() {
17if [ "x$D" != "x" ]; then
18 export GCONF_CONFIG_SOURCE="xml::$D${sysconfdir}/gconf/gconf.xml.defaults"
19else
20 export GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source`
21fi
22
23SCHEMA_LOCATION=$D/etc/gconf/schemas
24for SCHEMA in ${SCHEMA_FILES}; do
25 if [ -e $SCHEMA_LOCATION/$SCHEMA ]; then
26 HOME=$D/root gconftool-2 \
27 --makefile-install-rule $SCHEMA_LOCATION/$SCHEMA > /dev/null
28 fi
29done
30}
31
32gconf_prerm() {
33SCHEMA_LOCATION=/etc/gconf/schemas
34for SCHEMA in ${SCHEMA_FILES}; do
35 if [ -e $SCHEMA_LOCATION/$SCHEMA ]; then
36 HOME=/root GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source` \
37 gconftool-2 \
38 --makefile-uninstall-rule $SCHEMA_LOCATION/$SCHEMA > /dev/null
39 fi
40done
41}
42
43python populate_packages_append () {
44 import re
45 packages = d.getVar('PACKAGES', True).split()
46 pkgdest = d.getVar('PKGDEST', True)
47
48 for pkg in packages:
49 schema_dir = '%s/%s/etc/gconf/schemas' % (pkgdest, pkg)
50 schemas = []
51 schema_re = re.compile(".*\.schemas$")
52 if os.path.exists(schema_dir):
53 for f in os.listdir(schema_dir):
54 if schema_re.match(f):
55 schemas.append(f)
56 if schemas != []:
57 bb.note("adding gconf postinst and prerm scripts to %s" % pkg)
58 d.setVar('SCHEMA_FILES', " ".join(schemas))
59 postinst = d.getVar('pkg_postinst_%s' % pkg, True)
60 if not postinst:
61 postinst = '#!/bin/sh\n'
62 postinst += d.getVar('gconf_postinst', True)
63 d.setVar('pkg_postinst_%s' % pkg, postinst)
64 prerm = d.getVar('pkg_prerm_%s' % pkg, True)
65 if not prerm:
66 prerm = '#!/bin/sh\n'
67 prerm += d.getVar('gconf_prerm', True)
68 d.setVar('pkg_prerm_%s' % pkg, prerm)
69 d.appendVar("RDEPENDS_%s" % pkg, ' ' + d.getVar('MLPREFIX') + 'gconf')
70}