[oe-commits] Koen Kooi : gst-plugins: blacklist -static for meta packages as well

git version control git at git.openembedded.org
Mon Nov 2 20:24:44 UTC 2009


Module: openembedded.git
Branch: org.openembedded.dev
Commit: e8af03d37bac3596997f82931829d93b759ba934
URL:    http://gitweb.openembedded.net/?p=openembedded.git&a=commit;h=e8af03d37bac3596997f82931829d93b759ba934

Author: Koen Kooi <koen at openembedded.org>
Date:   Mon Nov  2 21:20:12 2009 +0100

gst-plugins: blacklist -static for meta packages as well

---

 recipes/gstreamer/gst-plugins.inc |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/recipes/gstreamer/gst-plugins.inc b/recipes/gstreamer/gst-plugins.inc
index 5d72eb8..9b69f3a 100644
--- a/recipes/gstreamer/gst-plugins.inc
+++ b/recipes/gstreamer/gst-plugins.inc
@@ -3,7 +3,7 @@ DESCRIPTION = "Plugins for GStreamer"
 DEPENDS = "gstreamer libmikmod liboil libogg tremor libvorbis"
 DEPENDS += "${@base_conditional('ENTERPRISE_DISTRO', '1', '', 'libmad libid3tag', d)}"
 
-INC_PR = "r6"
+INC_PR = "r7"
 
 PACKAGES_DYNAMIC = "gst-plugin-*"
 
@@ -35,7 +35,7 @@ python populate_packages_prepend () {
 	metapkg_rdepends = []
 	packages = bb.data.getVar('PACKAGES', d, 1).split()
 	for pkg in packages[1:]:
-		if not pkg in blacklist and not pkg in metapkg_rdepends and not pkg.endswith('-dev') and not pkg.count('locale'):
+		if not pkg in blacklist and not pkg in metapkg_rdepends and not pkg.endswith('-dev') and not pkg.count('locale') and not pkg.count('-static'):
 			metapkg_rdepends.append(pkg)
 	bb.data.setVar('RDEPENDS_' + metapkg, ' '.join(metapkg_rdepends), d)
 	bb.data.setVar('DESCRIPTION_' + metapkg, pn + ' meta package', d)





More information about the Openembedded-commits mailing list