]> code.ossystems Code Review - openembedded-core.git/commitdiff
libsoup-2.4: make libsoup-gnome optional
authorAndreas Oberritter <obi@opendreambox.org>
Thu, 7 Mar 2013 17:42:08 +0000 (18:42 +0100)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Sat, 9 Mar 2013 06:28:47 +0000 (06:28 +0000)
* Weakens dependency on libgnome-keyring and sqlite3
* Defaults to no if x11 is in DISTRO_FEATURES

Signed-off-by: Andreas Oberritter <obi@opendreambox.org>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/recipes-support/libsoup/libsoup-2.4_2.40.2.bb

index 9274f8c0467b5921b62667fbf9ac4fc88ea53a81..53807af3e564cf13595b96eb1a0c700a34bbf5b6 100644 (file)
@@ -5,11 +5,14 @@ BUGTRACKER = "https://bugzilla.gnome.org/"
 LICENSE = "LGPLv2"
 LIC_FILES_CHKSUM = "file://COPYING;md5=5f30f0716dfdd0d91eb439ebec522ec2"
 
-PR = "r0"
+PR = "r1"
 
 SECTION = "x11/gnome/libs"
 
-DEPENDS = "glib-2.0 gnutls libxml2 libproxy sqlite3 libgnome-keyring"
+DEPENDS = "glib-2.0 gnutls libxml2 libproxy"
+
+PACKAGECONFIG ??= "${@base_contains('DISTRO_FEATURES', 'x11', 'gnome', '', d)}"
+PACKAGECONFIG[gnome] = "--with-gnome,--without-gnome,libgnome-keyring sqlite3"
 
 SHRT_VER = "${@bb.data.getVar('PV',d,1).split('.')[0]}.${@bb.data.getVar('PV',d,1).split('.')[1]}"
 SRC_URI = "${GNOME_MIRROR}/libsoup/${SHRT_VER}/libsoup-${PV}.tar.xz"