diff options
author | Koen Kooi <koen@openembedded.org> | 2008-11-20 14:57:59 +0100 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2008-11-20 14:57:59 +0100 |
commit | aaf739e6a8f76ca2cb2ed51cf12734951d0f167b (patch) | |
tree | 27a0497f4a025c3ed116d130b5eea8e068818df7 /classes/mime.bbclass | |
parent | 349ba907d5d5f0991f4f5ec10ae79f6a66e65090 (diff) |
mime.bbclass: new class that detects if an package install a file in /usr/share/mime/applications/ and adds the appropriate postinst/prerm magic
* the postinst were designed to run off-line as well
gnome.bbclass: use mime.bbclass
Diffstat (limited to 'classes/mime.bbclass')
-rw-r--r-- | classes/mime.bbclass | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/classes/mime.bbclass b/classes/mime.bbclass new file mode 100644 index 0000000000..791fbceb14 --- /dev/null +++ b/classes/mime.bbclass @@ -0,0 +1,41 @@ +DEPENDS += "shared-mime-info-native shared-mime-info" + +mime_postinst() { +if [ "$1" = configure ]; then + update-mime-database $D${datadir}/mime +fi +} + +mime_prerm() { +if [ "$1" = remove ] || [ "$1" = upgrade ]; then + update-mime-database $D${datadir}/mime +fi +} + +python populate_packages_append () { + import os.path, re + packages = bb.data.getVar('PACKAGES', d, 1).split() + workdir = bb.data.getVar('WORKDIR', d, 1) + + for pkg in packages: + mime_dir = '%s/install/%s/usr/share/mime/packages' % (workdir, pkg) + mimes = [] + mime_re = re.compile(".*\.xml$") + if os.path.exists(mime_dir): + for f in os.listdir(mime_dir): + if mime_re.match(f): + mimes.append(f) + if mimes != []: + bb.note("adding mime postinst and prerm scripts to %s" % pkg) + postinst = bb.data.getVar('pkg_postinst_%s' % pkg, d, 1) or bb.data.getVar('pkg_postinst', d, 1) + if not postinst: + postinst = '#!/bin/sh\n' + postinst += bb.data.getVar('mime_postinst', d, 1) + bb.data.setVar('pkg_postinst_%s' % pkg, postinst, d) + prerm = bb.data.getVar('pkg_prerm_%s' % pkg, d, 1) or bb.data.getVar('pkg_prerm', d, 1) + if not prerm: + prerm = '#!/bin/sh\n' + prerm += bb.data.getVar('mime_prerm', d, 1) + bb.data.setVar('pkg_prerm_%s' % pkg, prerm, d) + +} |