mirror of
https://git.yoctoproject.org/poky
synced 2026-09-13 00:49:33 +02:00
recipes: Add missing pkgconfig inherit
Various recipes were missing a pkgconfig inherit or pkgconfig-native dependency despite using pkgconfig. Add the inherit to igt-gpu-tools/gdb/libmodulemd/libwpe/xwayland/waffle shaderc/iputils/wpebackend-fdo/lttng-ust/cargo. (From OE-Core rev: 777d9744570c2dc119dc5d04985896bbb1da5885) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
@@ -16,7 +16,7 @@ S = "${RUSTSRC}/src/tools/cargo"
|
|||||||
CARGO_VENDORING_DIRECTORY = "${RUSTSRC}/vendor"
|
CARGO_VENDORING_DIRECTORY = "${RUSTSRC}/vendor"
|
||||||
EXCLUDE_FROM_WORLD = "1"
|
EXCLUDE_FROM_WORLD = "1"
|
||||||
|
|
||||||
inherit cargo
|
inherit cargo pkgconfig
|
||||||
|
|
||||||
do_cargo_setup_snapshot () {
|
do_cargo_setup_snapshot () {
|
||||||
${WORKDIR}/rust-snapshot-components/${CARGO_SNAPSHOT}/install.sh --prefix="${WORKDIR}/${CARGO_SNAPSHOT}" --disable-ldconfig
|
${WORKDIR}/rust-snapshot-components/${CARGO_SNAPSHOT}/install.sh --prefix="${WORKDIR}/${CARGO_SNAPSHOT}" --disable-ldconfig
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
inherit cross-canadian
|
inherit cross-canadian
|
||||||
inherit python3-dir
|
inherit python3-dir
|
||||||
|
inherit pkgconfig
|
||||||
|
|
||||||
SUMMARY = "GNU debugger (cross-canadian gdb for ${TARGET_ARCH} target)"
|
SUMMARY = "GNU debugger (cross-canadian gdb for ${TARGET_ARCH} target)"
|
||||||
PN = "gdb-cross-canadian-${TRANSLATED_TARGET_ARCH}"
|
PN = "gdb-cross-canadian-${TRANSLATED_TARGET_ARCH}"
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ require gdb-common.inc
|
|||||||
|
|
||||||
DEPENDS = "expat-native ncurses-native flex-native bison-native"
|
DEPENDS = "expat-native ncurses-native flex-native bison-native"
|
||||||
|
|
||||||
inherit python3native
|
inherit python3native pkgconfig
|
||||||
|
|
||||||
# Overrides PACKAGECONFIG variables in gdb-common.inc
|
# Overrides PACKAGECONFIG variables in gdb-common.inc
|
||||||
PACKAGECONFIG ??= "python readline ${@bb.utils.filter('DISTRO_FEATURES', 'debuginfod', d)}"
|
PACKAGECONFIG ??= "python readline ${@bb.utils.filter('DISTRO_FEATURES', 'debuginfod', d)}"
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
require gdb-common.inc
|
require gdb-common.inc
|
||||||
|
|
||||||
inherit gettext
|
inherit gettext pkgconfig
|
||||||
|
|
||||||
#LDFLAGS:append = " -s"
|
#LDFLAGS:append = " -s"
|
||||||
#export CFLAGS:append=" -L${STAGING_LIBDIR}"
|
#export CFLAGS:append=" -L${STAGING_LIBDIR}"
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ SRCREV = "1a032da198333ee77bdbe4be65e60eb4115ea73f"
|
|||||||
|
|
||||||
S = "${WORKDIR}/git"
|
S = "${WORKDIR}/git"
|
||||||
|
|
||||||
inherit meson gobject-introspection
|
inherit meson gobject-introspection pkgconfig
|
||||||
|
|
||||||
EXTRA_OEMESON = "-Dwith_py3=false -Dwith_docs=false -Drpmio=disabled -Dlibmagic=disabled -Dwith_manpages=disabled -Dgobject_overrides_dir_py3=${PYTHON_SITEPACKAGES_DIR}/gi/overrides"
|
EXTRA_OEMESON = "-Dwith_py3=false -Dwith_docs=false -Drpmio=disabled -Dlibmagic=disabled -Dwith_manpages=disabled -Dgobject_overrides_dir_py3=${PYTHON_SITEPACKAGES_DIR}/gi/overrides"
|
||||||
|
|
||||||
|
|||||||
@@ -37,7 +37,7 @@ PACKAGECONFIG[tftpd] = "-DBUILD_TFTPD=true, -DBUILD_TFTPD=false,"
|
|||||||
PACKAGECONFIG[traceroute6] = "-DBUILD_TRACEROUTE6=true,-DBUILD_TRACEROUTE6=false,"
|
PACKAGECONFIG[traceroute6] = "-DBUILD_TRACEROUTE6=true,-DBUILD_TRACEROUTE6=false,"
|
||||||
PACKAGECONFIG[docs] = "-DBUILD_HTML_MANS=true -DBUILD_MANS=true,-DBUILD_HTML_MANS=false -DBUILD_MANS=false, libxslt"
|
PACKAGECONFIG[docs] = "-DBUILD_HTML_MANS=true -DBUILD_MANS=true,-DBUILD_HTML_MANS=false -DBUILD_MANS=false, libxslt"
|
||||||
|
|
||||||
inherit meson systemd update-alternatives
|
inherit meson systemd update-alternatives pkgconfig
|
||||||
|
|
||||||
EXTRA_OEMESON += "--prefix=${root_prefix}/ -DSKIP_TESTS=true"
|
EXTRA_OEMESON += "--prefix=${root_prefix}/ -DSKIP_TESTS=true"
|
||||||
|
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=67bfee4df38fa6ecbe3a675c552d4c08"
|
|||||||
|
|
||||||
LICENSE = "MIT"
|
LICENSE = "MIT"
|
||||||
|
|
||||||
inherit meson
|
inherit meson pkgconfig
|
||||||
|
|
||||||
SRCREV = "203def046b466fb2da67f9f15552d84e1c0b41f2"
|
SRCREV = "203def046b466fb2da67f9f15552d84e1c0b41f2"
|
||||||
PV = "1.26"
|
PV = "1.26"
|
||||||
|
|||||||
@@ -14,7 +14,7 @@ SRC_URI = "git://github.com/google/shaderc.git;protocol=https;branch=main \
|
|||||||
UPSTREAM_CHECK_GITTAGREGEX = "^v(?P<pver>\d+(\.\d+)+)$"
|
UPSTREAM_CHECK_GITTAGREGEX = "^v(?P<pver>\d+(\.\d+)+)$"
|
||||||
S = "${WORKDIR}/git"
|
S = "${WORKDIR}/git"
|
||||||
|
|
||||||
inherit cmake python3native
|
inherit cmake python3native pkgconfig
|
||||||
|
|
||||||
DEPENDS = "spirv-headers spirv-tools glslang"
|
DEPENDS = "spirv-headers spirv-tools glslang"
|
||||||
|
|
||||||
|
|||||||
@@ -15,7 +15,7 @@ SRC_URI[sha256sum] = "31565649ff0e2d8dff1b8f7f2264ab7a78452063c7e04adfc4ce03e64b
|
|||||||
|
|
||||||
UPSTREAM_CHECK_URI = "http://www.waffle-gl.org/releases.html"
|
UPSTREAM_CHECK_URI = "http://www.waffle-gl.org/releases.html"
|
||||||
|
|
||||||
inherit meson features_check lib_package bash-completion
|
inherit meson features_check lib_package bash-completion pkgconfig
|
||||||
|
|
||||||
DEPENDS:append = " python3"
|
DEPENDS:append = " python3"
|
||||||
|
|
||||||
|
|||||||
@@ -14,7 +14,7 @@ SRC_URI[sha256sum] = "b81cbdd5ad60b8b7ad8c3ecc7ec2a28c9bf021448670735cebb501f08b
|
|||||||
|
|
||||||
UPSTREAM_CHECK_REGEX = "xwayland-(?P<pver>\d+(\.(?!90\d)\d+)+)\.tar"
|
UPSTREAM_CHECK_REGEX = "xwayland-(?P<pver>\d+(\.(?!90\d)\d+)+)\.tar"
|
||||||
|
|
||||||
inherit meson features_check
|
inherit meson features_check pkgconfig
|
||||||
REQUIRED_DISTRO_FEATURES = "x11 opengl"
|
REQUIRED_DISTRO_FEATURES = "x11 opengl"
|
||||||
|
|
||||||
DEPENDS += "xorgproto xtrans pixman libxkbfile libxfont2 wayland wayland-native wayland-protocols libdrm libepoxy"
|
DEPENDS += "xorgproto xtrans pixman libxkbfile libxfont2 wayland wayland-native wayland-protocols libdrm libepoxy"
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ PYTHON_OPTION = "am_cv_python_pyexecdir='${PYTHON_SITEPACKAGES_DIR}' \
|
|||||||
PYTHON_INCLUDE='-I${STAGING_INCDIR}/python${PYTHON_BASEVERSION}${PYTHON_ABI}' \
|
PYTHON_INCLUDE='-I${STAGING_INCDIR}/python${PYTHON_BASEVERSION}${PYTHON_ABI}' \
|
||||||
"
|
"
|
||||||
|
|
||||||
inherit autotools lib_package manpages python3native
|
inherit autotools lib_package manpages python3native pkgconfig
|
||||||
|
|
||||||
include lttng-platforms.inc
|
include lttng-platforms.inc
|
||||||
|
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ LICENSE = "BSD-2-Clause"
|
|||||||
LIC_FILES_CHKSUM = "file://COPYING;md5=371a616eb4903c6cb79e9893a5f615cc"
|
LIC_FILES_CHKSUM = "file://COPYING;md5=371a616eb4903c6cb79e9893a5f615cc"
|
||||||
DEPENDS = "virtual/egl libxkbcommon"
|
DEPENDS = "virtual/egl libxkbcommon"
|
||||||
|
|
||||||
inherit cmake features_check
|
inherit cmake features_check pkgconfig
|
||||||
|
|
||||||
REQUIRED_DISTRO_FEATURES = "opengl"
|
REQUIRED_DISTRO_FEATURES = "opengl"
|
||||||
|
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ DEPENDS = "glib-2.0 libxkbcommon wayland virtual/egl libwpe libepoxy"
|
|||||||
|
|
||||||
DEPENDS:append:class-target = " wayland-native"
|
DEPENDS:append:class-target = " wayland-native"
|
||||||
|
|
||||||
inherit meson features_check
|
inherit meson features_check pkgconfig
|
||||||
|
|
||||||
REQUIRED_DISTRO_FEATURES = "opengl"
|
REQUIRED_DISTRO_FEATURES = "opengl"
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user