diff options
author | Alexander Kanavin <alex@linutronix.de> | 2025-09-11 10:51:22 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2025-09-15 17:57:23 +0100 |
commit | 9061704a742b22f1cfae7d0eb2fc8020eccbb7f1 (patch) | |
tree | 0d4301d5f736ca160ca95412bb22a118db7f73f2 | |
parent | c1664bf36bdd658504b33fd343976a4108d37c60 (diff) | |
download | poky-9061704a742b22f1cfae7d0eb2fc8020eccbb7f1.tar.gz |
xkeyboard-config: update 2.44 -> 2.45
License-update: disclaimer and copyright clarifications per
https://gitlab.freedesktop.org/xkeyboard-config/xkeyboard-config/-/merge_requests/821
Replace manual symlink creation with a meson option.
Drop no-op autoconf options.
Adjust packaging as this is where upstream installs now.
(From OE-Core rev: 44c12d01577e9394e38a0c7c90904855f643bad3)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-graphics/xorg-lib/xkeyboard-config_2.45.bb (renamed from meta/recipes-graphics/xorg-lib/xkeyboard-config_2.44.bb) | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/meta/recipes-graphics/xorg-lib/xkeyboard-config_2.44.bb b/meta/recipes-graphics/xorg-lib/xkeyboard-config_2.45.bb index 52d074fd5e..857ccc7516 100644 --- a/meta/recipes-graphics/xorg-lib/xkeyboard-config_2.44.bb +++ b/meta/recipes-graphics/xorg-lib/xkeyboard-config_2.45.bb | |||
@@ -10,23 +10,18 @@ HOMEPAGE = "http://freedesktop.org/wiki/Software/XKeyboardConfig" | |||
10 | BUGTRACKER = "https://bugs.freedesktop.org/enter_bug.cgi?product=xkeyboard-config" | 10 | BUGTRACKER = "https://bugs.freedesktop.org/enter_bug.cgi?product=xkeyboard-config" |
11 | 11 | ||
12 | LICENSE = "MIT & MIT" | 12 | LICENSE = "MIT & MIT" |
13 | LIC_FILES_CHKSUM = "file://COPYING;md5=8fc8ae699974c360e2e2e883a63ce264" | 13 | LIC_FILES_CHKSUM = "file://COPYING;md5=faa756e04053029ddc602caf99e5ef1d" |
14 | 14 | ||
15 | SRC_URI = "${XORG_MIRROR}/individual/data/xkeyboard-config/${BPN}-${PV}.tar.xz" | 15 | SRC_URI = "${XORG_MIRROR}/individual/data/xkeyboard-config/${BPN}-${PV}.tar.xz" |
16 | SRC_URI[sha256sum] = "54d2c33eeebb031d48fa590c543e54c9bcbd0f00386ebc6489b2f47a0da4342a" | 16 | SRC_URI[sha256sum] = "169e075a92d957a57787c199e84e359df2931b7196c1c5b4a3d576ee6235a87c" |
17 | 17 | ||
18 | SECTION = "x11/libs" | 18 | SECTION = "x11/libs" |
19 | DEPENDS = "util-macros libxslt-native" | 19 | DEPENDS = "util-macros libxslt-native" |
20 | 20 | ||
21 | EXTRA_OECONF = "--with-xkb-rules-symlink=xorg --disable-runtime-deps" | 21 | FILES:${PN} += "${datadir}/X11/xkb ${datadir}/xkeyboard-config-2" |
22 | |||
23 | FILES:${PN} += "${datadir}/X11/xkb" | ||
24 | 22 | ||
25 | inherit meson pkgconfig gettext python3native | 23 | inherit meson pkgconfig gettext python3native |
26 | 24 | ||
27 | do_install:append () { | 25 | EXTRA_OEMESON += "-Dxorg-rules-symlinks=true" |
28 | install -d ${D}${datadir}/X11/xkb/compiled | ||
29 | cd ${D}${datadir}/X11/xkb/rules && ln -sf base xorg | ||
30 | } | ||
31 | 26 | ||
32 | BBCLASSEXTEND += "native" | 27 | BBCLASSEXTEND += "native" |