]> code.ossystems Code Review - openembedded-core.git/commitdiff
packagegroup-core-lsb: treat qt4 packages same as qt3 packages
authorAlexander Kanavin <alexander.kanavin@linux.intel.com>
Fri, 27 Nov 2015 14:01:45 +0000 (16:01 +0200)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Thu, 7 Jan 2016 13:33:59 +0000 (13:33 +0000)
This means issuing a warning about adding a separate layer if
it is not configured.

Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
meta/recipes-extended/packagegroups/packagegroup-core-lsb.bb

index ce823858ce355694b06557f8e4be46f2e7a709a5..be08c580ebcf871afd12e1f3ef0bda2172369ffa 100644 (file)
@@ -225,6 +225,16 @@ QT4PKGS = " \
 QT4PKGS_mips64 = ""
 QT4PKGS_mips64n32 = ""
 
+def get_libqt4(d):
+    if 'linuxstdbase' in d.getVar('DISTROOVERRIDES', False) or "":
+        if 'qt4' in d.getVar('BBFILE_COLLECTIONS', False) or "":
+            return d.getVar('QT4PKGS', False)
+
+        bb.warn('The meta-qt4 layer should be added, this layer provides Qt 4.x' \
+                'libraries. Its intended use is for passing LSB tests as Qt4 is' \
+                'a requirement for LSB.')
+    return ''
+
 SUMMARY_packagegroup-core-lsb-desktop = "LSB Desktop"
 DESCRIPTION_packagegroup-core-lsb-desktop = "Packages required to support libraries \
     specified in the LSB Desktop specification"
@@ -245,7 +255,7 @@ RDEPENDS_packagegroup-core-lsb-desktop = "\
     gtk+ \
     atk \
     libasound \
-    ${QT4PKGS} \
+    ${@get_libqt4(d)} \
     ${@get_libqt3(d)} \
 "