diff options
author | Irina Patru <irina.patru@intel.com> | 2014-01-08 14:53:19 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-01-10 15:16:49 +0000 |
commit | a8a711cecce646b3b98346d9676f2ca21d7263e2 (patch) | |
tree | fb35f7abf0e84c29dc7d0925bd5c214be33c06f7 /meta/recipes-support/libsoup/libsoup-2.4_2.45.3.bb | |
parent | afa7db3d8b2eb73027f392f06595b19dcb8e8c28 (diff) | |
download | poky-a8a711cecce646b3b98346d9676f2ca21d7263e2.tar.gz |
libsoup-2.4: upgrade to 2.45.3
(From OE-Core rev: f0399233b8489363d58b3d3302cdb9aa6d7190be)
Signed-off-by: Irina Patru <irina.patru@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support/libsoup/libsoup-2.4_2.45.3.bb')
-rw-r--r-- | meta/recipes-support/libsoup/libsoup-2.4_2.45.3.bb | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/meta/recipes-support/libsoup/libsoup-2.4_2.45.3.bb b/meta/recipes-support/libsoup/libsoup-2.4_2.45.3.bb new file mode 100644 index 0000000000..ea062c7a97 --- /dev/null +++ b/meta/recipes-support/libsoup/libsoup-2.4_2.45.3.bb | |||
@@ -0,0 +1,28 @@ | |||
1 | SUMMARY = "An HTTP library implementation in C" | ||
2 | HOMEPAGE = "http://www.gnome.org/" | ||
3 | BUGTRACKER = "https://bugzilla.gnome.org/" | ||
4 | |||
5 | LICENSE = "LGPLv2" | ||
6 | LIC_FILES_CHKSUM = "file://COPYING;md5=5f30f0716dfdd0d91eb439ebec522ec2" | ||
7 | |||
8 | SECTION = "x11/gnome/libs" | ||
9 | |||
10 | DEPENDS = "glib-2.0 gnutls libxml2 libproxy sqlite3 intltool-native" | ||
11 | |||
12 | # libsoup-gnome is entirely deprecated and just stubs in 2.42 onwards. Enable | ||
13 | # by default but let it be easily disabled. | ||
14 | PACKAGECONFIG ??= "gnome" | ||
15 | PACKAGECONFIG[gnome] = "--with-gnome,--without-gnome" | ||
16 | |||
17 | SHRT_VER = "${@bb.data.getVar('PV',d,1).split('.')[0]}.${@bb.data.getVar('PV',d,1).split('.')[1]}" | ||
18 | SRC_URI = "${GNOME_MIRROR}/libsoup/${SHRT_VER}/libsoup-${PV}.tar.xz" | ||
19 | |||
20 | SRC_URI[md5sum] = "fe7ec04784c6b97c5f8ea963c8542f59" | ||
21 | SRC_URI[sha256sum] = "6ac317b931efd2cff9cdea7122987acb3ecb0c32564a9441ba72e5cce021aa12" | ||
22 | |||
23 | S = "${WORKDIR}/libsoup-${PV}" | ||
24 | |||
25 | inherit autotools pkgconfig | ||
26 | |||
27 | # glib-networking is needed for SSL, proxies, etc. | ||
28 | RRECOMMENDS_${PN} = "glib-networking" | ||