From d4276bed389b7db06db58c7acebb83f92bff86a5 Mon Sep 17 00:00:00 2001 From: Martin Jansa Date: Wed, 2 Jun 2010 15:04:25 +0200 Subject: 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 Acked-by: Koen Kooi --- recipes/orinoco/orinoco-conf_1.0.bb | 2 +- recipes/orinoco/orinoco-modules_0.15rc1.bb | 2 +- recipes/orinoco/orinoco-modules_0.15rc2.bb | 2 +- recipes/orinoco/orinoco-modules_cvs.bb | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) (limited to 'recipes/orinoco') diff --git a/recipes/orinoco/orinoco-conf_1.0.bb b/recipes/orinoco/orinoco-conf_1.0.bb index 0062e870a6..a37b25e29e 100644 --- a/recipes/orinoco/orinoco-conf_1.0.bb +++ b/recipes/orinoco/orinoco-conf_1.0.bb @@ -2,7 +2,7 @@ DESCRIPTION = "PCMCIA-cs configuration files for Hermes (Orinoco) wireless LAN c SECTION = "kernel/modules" PRIORITY = "optional" LICENSE = "GPL" -RDEPENDS = "update-modules" +RDEPENDS_${PN} = "update-modules" PACKAGE_ARCH = "all" PR = "r3" diff --git a/recipes/orinoco/orinoco-modules_0.15rc1.bb b/recipes/orinoco/orinoco-modules_0.15rc1.bb index 6188ee6aec..881725f83d 100644 --- a/recipes/orinoco/orinoco-modules_0.15rc1.bb +++ b/recipes/orinoco/orinoco-modules_0.15rc1.bb @@ -1,7 +1,7 @@ require orinoco-modules.inc DEPENDS = "orinoco-conf spectrum-fw" -RDEPENDS += "orinoco-conf" +RDEPENDS_${PN} += "orinoco-conf" RDEPENDS_orinoco-modules-cs += "orinoco-modules spectrum-fw" PR = "r8" diff --git a/recipes/orinoco/orinoco-modules_0.15rc2.bb b/recipes/orinoco/orinoco-modules_0.15rc2.bb index 1af5dca656..d1ae67e109 100644 --- a/recipes/orinoco/orinoco-modules_0.15rc2.bb +++ b/recipes/orinoco/orinoco-modules_0.15rc2.bb @@ -1,7 +1,7 @@ require orinoco-modules.inc DEPENDS = "orinoco-conf spectrum-fw" -RDEPENDS += "orinoco-conf" +RDEPENDS_${PN} += "orinoco-conf" RDEPENDS_orinoco-modules-cs += "orinoco-modules spectrum-fw" PR = "r10" diff --git a/recipes/orinoco/orinoco-modules_cvs.bb b/recipes/orinoco/orinoco-modules_cvs.bb index 2939b5dc16..6467c4d6c2 100644 --- a/recipes/orinoco/orinoco-modules_cvs.bb +++ b/recipes/orinoco/orinoco-modules_cvs.bb @@ -1,7 +1,7 @@ require orinoco-modules.inc DEPENDS = "orinoco-conf spectrum-fw" -RDEPENDS += "orinoco-conf" +RDEPENDS_${PN} += "orinoco-conf" RDEPENDS_orinoco-modules-cs = "orinoco-modules spectrum-fw" PR = "r3" -- cgit 1.2.3-korg