aboutsummaryrefslogtreecommitdiffstats
path: root/meta-oe/classes
diff options
context:
space:
mode:
authorAndreas Müller <schnitzeltony@googlemail.com>2013-02-11 22:49:38 +0000
committerMartin Jansa <Martin.Jansa@gmail.com>2013-02-16 05:52:37 +0100
commitba5d70b0d5d6d365310b995ea2544255c49e9e66 (patch)
tree375c03a86d88a4c687d1d35e75b9f3582a80411c /meta-oe/classes
parent20d6d3163b31d9f7099f24f4aaedb19c660fb7af (diff)
downloadmeta-openembedded-contrib-ba5d70b0d5d6d365310b995ea2544255c49e9e66.tar.gz
update-fonts.bbclass: remove - we now use oe-core's fontcache.bbclass
Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-oe/classes')
-rw-r--r--meta-oe/classes/update-fonts.bbclass40
1 files changed, 0 insertions, 40 deletions
diff --git a/meta-oe/classes/update-fonts.bbclass b/meta-oe/classes/update-fonts.bbclass
deleted file mode 100644
index db2e814a4f..0000000000
--- a/meta-oe/classes/update-fonts.bbclass
+++ /dev/null
@@ -1,40 +0,0 @@
-
-update_fonts_postinst() {
- if [ -z "$D" ]; then
- update-fonts
- fi
-}
-
-# the same but keep it separate for now
-update_fonts_postrm() {
- if [ -z "$D" ]; then
- update-fonts
- fi
-}
-
-python populate_packages_append () {
- update_fonts_pkgs = d.getVar('UPDATE_FONTS_PACKAGES', True).split()
-
- for pkg in update_fonts_pkgs:
- postinst = d.getVar('pkg_postinst_%s' % pkg, True) or d.getVar('pkg_postinst', True)
- if not postinst:
- postinst = '#!/bin/sh\n'
- postinst += d.getVar('update_fonts_postinst', True)
- d.setVar('pkg_postinst_%s' % pkg, postinst)
-
- postrm = d.getVar('pkg_postrm_%s' % pkg, True) or d.getVar('pkg_postrm', True)
- if not postrm:
- postrm = '#!/bin/sh\n'
- postrm += d.getVar('update_fonts_postrm', True)
- d.setVar('pkg_postrm_%s' % pkg, postrm)
-
- d.appendVar('RDEPENDS_%s' % pkg, ' font-update-common')
-}
-
-python __anonymous() {
- if not bb.data.inherits_class('native', d) and not bb.data.inherits_class('cross', d):
- updatefonts_check = d.getVar('UPDATE_FONTS_PACKAGES')
- if not updatefonts_check:
- bb_filename = d.getVar('FILE')
- raise bb.build.FuncFailed, "\n\n\nERROR: %s inherits update-fonts but doesn't set UPDATE_FONTS_PACKAGES" % bb_filename
-}