diff options
author | Koen Kooi <koen@dominion.thruhere.net> | 2011-08-01 13:08:42 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-08-04 15:01:17 +0100 |
commit | 229ba02322ce49d13e2d64eff6bb637f23f1f16b (patch) | |
tree | 0c65793540eba34a23d354338785f0f5cd1ab870 | |
parent | 344d5789e688bcbc566ae336f1f821110a2e4feb (diff) | |
download | openembedded-core-229ba02322ce49d13e2d64eff6bb637f23f1f16b.tar.gz openembedded-core-229ba02322ce49d13e2d64eff6bb637f23f1f16b.tar.bz2 openembedded-core-229ba02322ce49d13e2d64eff6bb637f23f1f16b.zip |
gtk-icon-cache bbclass: only add runtime dependencies on hicolor-icon-theme when installing icons
Tested with gnome-icon-theme and libsoup recipes on angstrom.
Signed-off-by: Koen Kooi <koen@openembedded.org>
-rw-r--r-- | meta/classes/gtk-icon-cache.bbclass | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/meta/classes/gtk-icon-cache.bbclass b/meta/classes/gtk-icon-cache.bbclass index dcabaf5442..d9b5d1bdd6 100644 --- a/meta/classes/gtk-icon-cache.bbclass +++ b/meta/classes/gtk-icon-cache.bbclass @@ -1,5 +1,4 @@ FILES_${PN} += "${datadir}/icons/hicolor" -RDEPENDS += "hicolor-icon-theme" # This could run on the host as icon cache files are architecture independent, # but there is no gtk-update-icon-cache built natively. @@ -34,7 +33,12 @@ python populate_packages_append () { icon_dir = '%s/%s/%s/icons' % (pkgdest, pkg, bb.data.getVar('datadir', d, 1)) if not os.path.exists(icon_dir): continue - + + bb.note("adding hicolor-icon-theme dependency to %s" % pkg) + rdepends = bb.data.getVar('RDEPENDS', d, 1) + rdepends += "hicolor-icon-theme" + bb.data.setVar('RDEPENDS', rdepends, d) + bb.note("adding gtk-icon-cache 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) |