Bruce Leidl
be34ea65f3
- removed layers meta-rust and meta-clang - added new dependencies to Makefile - changed override syntax across all recipe files - updated conf files from hardknott to kirkstone - SRC_URI git URLS fixed to always include branch and protocol - LICENSE fields updated with new naming convention - updated citadel-tools dependencies - upgraded mozjs to mozjs-91 No longer needed because poky includes newer version (or new enough): - glib-2.0 - libgudev - xorgproto - libxfixes - libinput - wayland-protocols - vte
46 lines
1.3 KiB
BlitzBasic
46 lines
1.3 KiB
BlitzBasic
SUMMARY = "GNOME session"
|
|
LICENSE = "GPL-2.0-only"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
|
|
|
|
DEPENDS = " \
|
|
glib-2.0-native \
|
|
libxslt-native \
|
|
xmlto-native \
|
|
xtrans \
|
|
libice \
|
|
libsm \
|
|
virtual/libx11 \
|
|
gtk+3 \
|
|
gnome-desktop \
|
|
gsettings-desktop-schemas \
|
|
json-glib \
|
|
"
|
|
|
|
GNOMEBASEBUILDCLASS = "meson"
|
|
|
|
inherit gnomebase gettext gsettings upstream-version-is-even features_check
|
|
|
|
REQUIRED_DISTRO_FEATURES = "x11 systemd pam gobject-introspection-data"
|
|
|
|
def gnome_verdir(v):
|
|
return oe.utils.trim_version(v, 1)
|
|
|
|
SRC_URI = "${GNOME_MIRROR}/${GNOMEBN}/${@gnome_verdir("${PV}")}/${GNOMEBN}-${PV}.tar.${GNOME_COMPRESS_TYPE};name=archive"
|
|
|
|
SRC_URI[archive.sha256sum] = "9c787829ee32e13e1508b9aee2b1d9ba42a02c48e6c8094e34f3e7f92af4df82"
|
|
SRC_URI += " \
|
|
file://0001-Patch-locking-logout-so-it-does-not-disable-shutting.patch \
|
|
file://0001-Disable-sharing-and-usb-protection-add-systemd-to-de.patch \
|
|
"
|
|
|
|
EXTRA_OEMESON += "-Dsystemd=true -Dsystemd_journal=true -Ddocbook=false -Dman=false"
|
|
FILES:${PN} += " \
|
|
${bindir}/gnome-session \
|
|
${libexecdir}/gnome-session-ctl \
|
|
${datadir}/xsessions \
|
|
${datadir}/wayland-sessions \
|
|
${systemd_user_unitdir} \
|
|
"
|
|
|
|
RDEPENDS:${PN} += "gnome-shell gnome-settings-daemon gsettings-desktop-schemas"
|