aboutsummaryrefslogtreecommitdiffstats
path: root/classes/mime.bbclass
diff options
context:
space:
mode:
authorKoen Kooi <koen@dominion.thruhere.net>2011-03-17 21:41:22 +0100
committerKoen Kooi <koen@dominion.thruhere.net>2011-03-17 21:41:22 +0100
commitc58cc7d3796dcee6e93885c835ed04cb566abeb2 (patch)
tree3eea4d4ef6a4ef79e0f4e025d7012c1a5cc38835 /classes/mime.bbclass
parenteec6ab97f712e06eb52c9f7c99e19ffab3ce9d74 (diff)
downloadmeta-openembedded-contrib-c58cc7d3796dcee6e93885c835ed04cb566abeb2.tar.gz
move layer into meta-oe in preparation for future splits
As per TSC decision Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
Diffstat (limited to 'classes/mime.bbclass')
-rw-r--r--classes/mime.bbclass56
1 files changed, 0 insertions, 56 deletions
diff --git a/classes/mime.bbclass b/classes/mime.bbclass
deleted file mode 100644
index b9cdd7becd..0000000000
--- a/classes/mime.bbclass
+++ /dev/null
@@ -1,56 +0,0 @@
-DEPENDS += "shared-mime-info-native shared-mime-info"
-
-mime_postinst() {
-if [ "$1" = configure ]; then
- if [ -x ${bindir}/update-mime-database ] ; then
- echo "Updating MIME database... this may take a while."
- update-mime-database $D${datadir}/mime
- else
- echo "Missing ${bindir}/update-mime-database, update of mime database failed!"
- exit 1
- fi
-fi
-}
-
-mime_postrm() {
-if [ "$1" = remove ] || [ "$1" = upgrade ]; then
- if [ -x ${bindir}/update-mime-database ] ; then
- echo "Updating MIME database... this may take a while."
- update-mime-database $D${datadir}/mime
- else
- echo "Missing ${bindir}/update-mime-database, update of mime database failed!"
- exit 1
- fi
-fi
-}
-
-python ppopulate_packages_append () {
- import os.path, re
- packages = bb.data.getVar('PACKAGES', d, 1).split()
- pkgdest = bb.data.getVar('PKGDEST', d, 1)
-
- for pkg in packages:
- mime_dir = '%s/%s/usr/share/mime/packages' % (pkgdest, 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 postrm 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)
- postrm = bb.data.getVar('pkg_postrm_%s' % pkg, d, 1) or bb.data.getVar('pkg_postrm', d, 1)
- if not postrm:
- postrm = '#!/bin/sh\n'
- postrm += bb.data.getVar('mime_postrm', d, 1)
- bb.data.setVar('pkg_postrm_%s' % pkg, postrm, d)
- bb.note("adding freedesktop-mime-info dependency to %s" % pkg)
- rdepends = explode_deps(bb.data.getVar('RDEPENDS_' + pkg, d, 0) or bb.data.getVar('RDEPENDS', d, 0) or "")
- rdepends.append("freedesktop-mime-info")
- bb.data.setVar('RDEPENDS_' + pkg, " " + " ".join(rdepends), d)
-}