diff options
author | Martin Jansa <Martin.Jansa@gmail.com> | 2010-06-02 15:04:25 +0200 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2010-06-03 07:33:27 +0200 |
commit | d4276bed389b7db06db58c7acebb83f92bff86a5 (patch) | |
tree | 2386574b6ab0c36a58a314a24d31f6b5c9291a65 /recipes/images | |
parent | 823aa270059259ca619e21a5d9b22e86afb12f3b (diff) |
recipes: conform to OE packaging guidelines with RDEPENDS/RRECOMMENDS
* there is probably very few cases when it's needed without _${PN},
if you find one in attached patch, please enlighten me
* usually we want those only for ${PN} not for all ${PACKAGES} ie ${PN}-dev, ${PN)-doc etc
* there is a check for this in recipe-sanity.bclass
* there is maybe few possible fixes also in bbclasses
cpan-base.bbclass:RDEPENDS += "${@["perl", ""][(bb.data.inherits_class('native', d))]}"
distutils-base.bbclass:RDEPENDS += "python-core"
gtk-icon-cache.bbclass:RDEPENDS += "hicolor-icon-theme"
image.bbclass:RDEPENDS += "${IMAGE_INSTALL} ${IMAGE_BOOT}"
module.bbclass:RDEPENDS += "kernel (${KERNEL_VERSION}) update-modules"
?opie_i18n.bbclass: rdepends = bb.data.getVar("RDEPENDS", d, 1)
?opie_i18n.bbclass: bb.data.setVar('RDEPENDS_%s' % x[0].lower(), pn, d)
?opie_i18n.bbclass: bb.data.setVar('RDEPENDS', rdepends, d)
rubyextension.bbclass:RDEPENDS += "ruby"
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Acked-by: Koen Kooi <k-kooi@ti.com>
Diffstat (limited to 'recipes/images')
-rw-r--r-- | recipes/images/shr-image.bb | 2 | ||||
-rw-r--r-- | recipes/images/shr-image.inc | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/recipes/images/shr-image.bb b/recipes/images/shr-image.bb index 3d72ca0b53..7a01460066 100644 --- a/recipes/images/shr-image.bb +++ b/recipes/images/shr-image.bb @@ -3,7 +3,7 @@ require shr-image.inc IMAGE_BASENAME = "full" DEPENDS += "task-shr" -RDEPENDS += "\ +RDEPENDS_${PN} += "\ task-shr-apps \ task-shr-games \ task-shr-gtk \ diff --git a/recipes/images/shr-image.inc b/recipes/images/shr-image.inc index 160593b77f..f369a8e120 100644 --- a/recipes/images/shr-image.inc +++ b/recipes/images/shr-image.inc @@ -8,7 +8,7 @@ PR = "r13" DEPENDS += "task-shr-minimal" -RDEPENDS += "\ +RDEPENDS_${PN} += "\ task-shr-minimal-base \ task-shr-minimal-cli \ task-shr-minimal-fso \ |