diff options
author | Ross Burton <ross.burton@intel.com> | 2013-04-24 15:29:46 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-05-08 15:40:53 +0100 |
commit | 3f093e24e78cc8a553bebc03ec9f3a32700981e6 (patch) | |
tree | eb599ad3acb1e0ddf186bd24c39238ff0176f092 /meta/recipes-support/libsoup/libsoup-2.4_2.42.1.bb | |
parent | 8e2df16e9ab7433a868da2a3db4a25441b92d0ed (diff) | |
download | openembedded-core-3f093e24e78cc8a553bebc03ec9f3a32700981e6.tar.gz openembedded-core-3f093e24e78cc8a553bebc03ec9f3a32700981e6.tar.bz2 openembedded-core-3f093e24e78cc8a553bebc03ec9f3a32700981e6.zip |
libsoup: upgrade to 2.42.1
Upgrade to the latest stable release, and fix the dependencies.
gnome-keyring use has been removed from libsoup, and sqlite3 is now a hard
dependency. The optional libsoup-gnome library is now a small stub, so enable
it by default but allow it to be disabled via PACKAGECONFIG.
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Diffstat (limited to 'meta/recipes-support/libsoup/libsoup-2.4_2.42.1.bb')
-rw-r--r-- | meta/recipes-support/libsoup/libsoup-2.4_2.42.1.bb | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/meta/recipes-support/libsoup/libsoup-2.4_2.42.1.bb b/meta/recipes-support/libsoup/libsoup-2.4_2.42.1.bb new file mode 100644 index 0000000000..ef8d43914c --- /dev/null +++ b/meta/recipes-support/libsoup/libsoup-2.4_2.42.1.bb @@ -0,0 +1,28 @@ +DESCRIPTION = "An HTTP library implementation in C" +HOMEPAGE = "http://www.gnome.org/" +BUGTRACKER = "https://bugzilla.gnome.org/" + +LICENSE = "LGPLv2" +LIC_FILES_CHKSUM = "file://COPYING;md5=5f30f0716dfdd0d91eb439ebec522ec2" + +SECTION = "x11/gnome/libs" + +DEPENDS = "glib-2.0 gnutls libxml2 libproxy sqlite3" + +# libsoup-gnome is entirely deprecated and just stubs in 2.42 onwards. Enable +# by default but let it be easily disabled. +PACKAGECONFIG ??= "gnome" +PACKAGECONFIG[gnome] = "--with-gnome,--without-gnome" + +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" + +SRC_URI[md5sum] = "aaccd590a8002b69716f885fa8589887" +SRC_URI[sha256sum] = "20bd5365bb3e7de70fade91ac82c9dea31636318df90b8c26bc4cde2523a8c91" + +S = "${WORKDIR}/libsoup-${PV}" + +inherit autotools pkgconfig + +# glib-networking is needed for SSL, proxies, etc. +RRECOMMENDS_${PN} = "glib-networking" |