mirror of
https://git.yoctoproject.org/poky
synced 2026-05-01 15:32:12 +02:00
Although libsoup did use to support direct usage of libproxy, it hasn't done so for some time. Worse, if libsoup depends on libproxy then it is impossible to build libproxy against webkit since webkit itself depends on libsoup in some configurations. Fix this by removing the extraneous entry from DEPENDS. (From OE-Core rev: e588ba009402be27c643f2596acea0f178d4e42f) Signed-off-by: Phil Blundell <pb@pbcl.net> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
29 lines
974 B
BlitzBasic
29 lines
974 B
BlitzBasic
SUMMARY = "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 sqlite3 intltool-native"
|
|
|
|
# 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] = "fe7ec04784c6b97c5f8ea963c8542f59"
|
|
SRC_URI[sha256sum] = "6ac317b931efd2cff9cdea7122987acb3ecb0c32564a9441ba72e5cce021aa12"
|
|
|
|
S = "${WORKDIR}/libsoup-${PV}"
|
|
|
|
inherit autotools pkgconfig
|
|
|
|
# glib-networking is needed for SSL, proxies, etc.
|
|
RRECOMMENDS_${PN} = "glib-networking"
|