mirror of
https://git.yoctoproject.org/poky
synced 2026-02-12 11:43:04 +01:00
determinism.patch
removed since it's included in 0.4.18.
Changelog:
=========
build: Allow configuration of sysconfig module
config_envvar: Add environment variable for pacrunner debugging
build: disable mozjs by default
python: Support Python 3.10 and above
Add Duktape pacrunner module
config_kde: Compute list of config file locations ourselves
cpmfog_gnome3: Add gnome-wayland to permitted DESKTOP_SESSION
(From OE-Core rev: 07ffff9422c5832e977d0f525735c6768a7959fe)
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
42 lines
1.5 KiB
BlitzBasic
42 lines
1.5 KiB
BlitzBasic
SUMMARY = "Library providing automatic proxy configuration management"
|
|
DESCRIPTION = "libproxy provides interfaces to get the proxy that will be \
|
|
used to access network resources. It uses various plugins to get proxy \
|
|
configuration via different mechanisms (e.g. environment variables or \
|
|
desktop settings)."
|
|
HOMEPAGE = "https://github.com/libproxy/libproxy"
|
|
BUGTRACKER = "https://github.com/libproxy/libproxy/issues"
|
|
SECTION = "libs"
|
|
LICENSE = "LGPL-2.1-or-later"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=4fbd65380cdd255951079008b364516c \
|
|
file://utils/proxy.c;beginline=1;endline=18;md5=55152a1006d7dafbef32baf9c30a99c0"
|
|
|
|
DEPENDS = "glib-2.0"
|
|
|
|
SRC_URI = "https://github.com/${BPN}/${BPN}/releases/download/${PV}/${BP}.tar.xz"
|
|
SRC_URI[sha256sum] = "69b5856e9ea42c38ac77e6b8c92ffc86a71d341fef74e77bef85f9cc6c47a4b1"
|
|
|
|
UPSTREAM_CHECK_URI = "https://github.com/libproxy/libproxy/releases"
|
|
UPSTREAM_CHECK_REGEX = "libproxy-(?P<pver>.*)\.tar"
|
|
|
|
inherit cmake pkgconfig
|
|
|
|
PACKAGECONFIG ?= "${@bb.utils.contains('DISTRO_FEATURES', 'x11', 'gnome', '', d)} gnome3"
|
|
PACKAGECONFIG[gnome] = "-DWITH_GNOME=yes,-DWITH_GNOME=no,gconf"
|
|
PACKAGECONFIG[gnome3] = "-DWITH_GNOME3=yes,-DWITH_GNOME3=no"
|
|
|
|
EXTRA_OECMAKE += " \
|
|
-DWITH_KDE=no \
|
|
-DWITH_MOZJS=no \
|
|
-DWITH_NM=no \
|
|
-DWITH_PERL=no \
|
|
-DWITH_PYTHON2=no \
|
|
-DWITH_PYTHON3=no \
|
|
-DWITH_WEBKIT=no \
|
|
-DWITH_SYSCONFIG=no \
|
|
-DLIB_INSTALL_DIR=${libdir} \
|
|
-DLIBEXEC_INSTALL_DIR=${libexecdir} \
|
|
"
|
|
SECURITY_PIE_CFLAGS:remove = "-fPIE -pie"
|
|
|
|
FILES:${PN} += "${libdir}/${BPN}/${PV}/modules"
|