diff options
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 | } | ||
