summaryrefslogtreecommitdiffstats
path: root/meta-xfce/recipes-xfce
diff options
context:
space:
mode:
authorMarkus Volk <f_l_k@t-online.de>2026-01-15 17:15:25 +0100
committerKhem Raj <raj.khem@gmail.com>2026-01-16 09:36:22 -0800
commit121b5f89c870ba9f47fc21d4d4c46076d8e6e5df (patch)
tree83593aada894ddda8ec8bdc14f0b14f9016126c6 /meta-xfce/recipes-xfce
parent24e14063f58b5b88adb79ada768f742d0b8f917b (diff)
downloadmeta-openembedded-121b5f89c870ba9f47fc21d4d4c46076d8e6e5df.tar.gz
libbxfce4windowing: switch to meson buildsystem
Motivation for this is to get vapi files created which are required to e.g. build the budgie desktop -Add PACKAGECONFIG for x11 and build depending on DISTRO_FEATURES -Build vala by default Signed-off-by: Markus Volk <f_l_k@t-online.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-xfce/recipes-xfce')
-rw-r--r--meta-xfce/recipes-xfce/libxfce4windowing/libxfce4windowing_4.20.5.bb20
1 files changed, 8 insertions, 12 deletions
diff --git a/meta-xfce/recipes-xfce/libxfce4windowing/libxfce4windowing_4.20.5.bb b/meta-xfce/recipes-xfce/libxfce4windowing/libxfce4windowing_4.20.5.bb
index 764254eb10..59374d7947 100644
--- a/meta-xfce/recipes-xfce/libxfce4windowing/libxfce4windowing_4.20.5.bb
+++ b/meta-xfce/recipes-xfce/libxfce4windowing/libxfce4windowing_4.20.5.bb
@@ -4,22 +4,18 @@ SECTION = "x11/libs"
4LICENSE = "LGPL-2.1-only" 4LICENSE = "LGPL-2.1-only"
5LIC_FILES_CHKSUM = "file://COPYING;md5=435ed639f84d4585d93824e7da3d85da" 5LIC_FILES_CHKSUM = "file://COPYING;md5=435ed639f84d4585d93824e7da3d85da"
6 6
7DEPENDS = "xfce4-dev-tools-native libdisplay-info libwnck3" 7DEPENDS = "xfce4-dev-tools-native glib-2.0 gtk+3"
8 8
9XFCEBASEBUILDCLASS = "meson"
9SRC_URI[sha256sum] = "6b4e19a66db650c9c8a88f00bbf266e9ced0070b7dbc0aaeea05be0fc6a2eb4d" 10SRC_URI[sha256sum] = "6b4e19a66db650c9c8a88f00bbf266e9ced0070b7dbc0aaeea05be0fc6a2eb4d"
10 11
11inherit features_check gobject-introspection gtk-doc xfce 12inherit features_check gobject-introspection gtk-doc xfce vala gettext
12 13
13# Currently, X11 is fully supported. Wayland is partially supported 14# Currently, X11 is fully supported. Wayland is partially supported
14REQUIRED_DISTRO_FEATURES = "x11" 15ANY_OF_DISTRO_FEATURES = "wayland x11"
15 16
16PACKAGECONFIG ??= "${@bb.utils.filter('DISTRO_FEATURES', 'wayland', d)}" 17PACKAGECONFIG ??= "${@bb.utils.filter('DISTRO_FEATURES', 'wayland x11', d)}"
17PACKAGECONFIG[wayland] = "--enable-wayland, --disable-wayland, wayland-native" 18PACKAGECONFIG[x11] = "-Dx11=enabled, -Dx11=disabled, libx11 libdisplay-info libwnck3 xrandr"
19PACKAGECONFIG[wayland] = "-Dwayland=enabled, -Dwayland=disabled, wayland wayland-native wayland-protocols"
18 20
19EXTRA_OECONF = "--enable-x11 \ 21GTKDOC_MESON_OPTION = "gtk-doc"
20 WAYLAND_SCANNER=${STAGING_BINDIR_NATIVE}/wayland-scanner \
21 "
22
23do_compile:prepend() {
24 export GIR_EXTRA_LIBS_PATH=${B}/libxfce4windowing/.libs
25}