diff options
| author | Phil Blundell <pb@pbcl.net> | 2014-01-13 12:41:17 +0000 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-01-14 11:33:55 +0000 |
| commit | 90e8429de68ca288e9a6554e7d6e8ac1473334e7 (patch) | |
| tree | 7632935fa39f0dfc63f31d9302dec2b5ecbd820c /meta/recipes-support/libproxy/libproxy_0.4.11.bb | |
| parent | a90fb7b7329d8fdda53dc573349f1fc06b093c13 (diff) | |
| download | poky-90e8429de68ca288e9a6554e7d6e8ac1473334e7.tar.gz | |
libproxy: Update to 0.4.11
Delete patches that have been applied upstream or are no longer necessary.
Update LIC_FILES_CHKSUM to match new COPYING (whitespace changes only).
(From OE-Core rev: 7c3b070b9cdd8b1d564d8900858cd31d11b20e6f)
Signed-off-by: Phil Blundell <pb@pbcl.net>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support/libproxy/libproxy_0.4.11.bb')
| -rw-r--r-- | meta/recipes-support/libproxy/libproxy_0.4.11.bb | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/meta/recipes-support/libproxy/libproxy_0.4.11.bb b/meta/recipes-support/libproxy/libproxy_0.4.11.bb new file mode 100644 index 0000000000..aecb7b5a82 --- /dev/null +++ b/meta/recipes-support/libproxy/libproxy_0.4.11.bb | |||
| @@ -0,0 +1,35 @@ | |||
| 1 | SUMMARY = "Library providing automatic proxy configuration management" | ||
| 2 | HOMEPAGE = "http://code.google.com/p/libproxy/" | ||
| 3 | BUGTRACKER = "http://code.google.com/p/libproxy/issues/list" | ||
| 4 | SECTION = "libs" | ||
| 5 | LICENSE = "LGPLv2.1+" | ||
| 6 | LIC_FILES_CHKSUM = "file://COPYING;md5=4fbd65380cdd255951079008b364516c \ | ||
| 7 | file://utils/proxy.c;beginline=1;endline=18;md5=55152a1006d7dafbef32baf9c30a99c0" | ||
| 8 | |||
| 9 | DEPENDS = "gconf glib-2.0" | ||
| 10 | |||
| 11 | SRC_URI = "http://libproxy.googlecode.com/files/libproxy-${PV}.zip \ | ||
| 12 | " | ||
| 13 | |||
| 14 | SRC_URI[md5sum] = "06be230b8b612e64997f8f15af6373aa" | ||
| 15 | SRC_URI[sha256sum] = "3175abcb49c0b37fd82c697927783bf7d53de3884a8559bc594e59caa09bdb04" | ||
| 16 | |||
| 17 | inherit cmake pkgconfig | ||
| 18 | |||
| 19 | EXTRA_OECMAKE = "-DWITH_WEBKIT=no -DWITH_GNOME=yes -DWITH_KDE4=no \ | ||
| 20 | -DWITH_PYTHON=no -DWITH_PERL=no -DWITH_MOZJS=no -DWITH_NM=no -DLIB_INSTALL_DIR=${libdir} -DLIBEXEC_INSTALL_DIR=${libexecdir}" | ||
| 21 | |||
| 22 | FILES_${PN} += "${libdir}/${BPN}/${PV}/modules" | ||
| 23 | FILES_${PN}-dev += "${datadir}/cmake" | ||
| 24 | FILES_${PN}-dbg += "${libdir}/${BPN}/${PV}/plugins/.debug/ ${libdir}/${BPN}/${PV}/modules/.debug/" | ||
| 25 | |||
| 26 | do_configure_prepend() { | ||
| 27 | export HOST_SYS=${HOST_SYS} | ||
| 28 | export BUILD_SYS=${BUILD_SYS} | ||
| 29 | } | ||
| 30 | |||
| 31 | python() { | ||
| 32 | if base_contains("INCOMPATIBLE_LICENSE", "GPLv3", "x", "", d) == "x" or base_contains("DISTRO_FEATURES", "x11", "x", "", d) == "": | ||
| 33 | d.setVar("EXTRA_OECMAKE", d.getVar("EXTRA_OECMAKE").replace("-DWITH_GNOME=yes", "-DWITH_GNOME=no")) | ||
| 34 | d.setVar("DEPENDS", " ".join(i for i in d.getVar("DEPENDS").split() if i != "gconf")) | ||
| 35 | } | ||
