2022-05-28 11:20:07 -04:00
|
|
|
LICENSE = "GPL-2.0-only"
|
2020-07-08 10:42:25 -04:00
|
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
|
|
|
|
|
2021-05-05 08:45:55 -04:00
|
|
|
REQUIRED_DISTRO_FEATURES = "x11 systemd pam"
|
2020-07-08 10:42:25 -04:00
|
|
|
|
2022-05-28 11:20:07 -04:00
|
|
|
GIR_MESON_OPTION = ""
|
2022-05-29 14:18:27 -04:00
|
|
|
GTKIC_VERSION = "4"
|
2020-07-08 10:42:25 -04:00
|
|
|
|
2024-05-08 11:00:03 -04:00
|
|
|
SRCREV = "fdacdf5cc80a94e04549d864f2d4dbac5f15f4bc"
|
2020-07-08 10:42:25 -04:00
|
|
|
|
2021-12-16 10:19:43 -05:00
|
|
|
EXTERNAL_TREE_VAR="CITADEL_GNOME_SHELL_PATH"
|
2024-05-21 13:29:21 -04:00
|
|
|
GIT_URI = "gitsm://git.subgraph.com/brl/gnome-shell.git;branch=citadel-46.0;protocol=https"
|
2020-07-08 10:42:25 -04:00
|
|
|
|
|
|
|
DEPENDS = " \
|
|
|
|
libxml2-native \
|
|
|
|
sassc-native \
|
2021-05-05 08:45:55 -04:00
|
|
|
gtk4 \
|
2020-07-08 10:42:25 -04:00
|
|
|
mutter \
|
2023-09-29 12:46:16 -04:00
|
|
|
gcr \
|
2020-07-08 10:42:25 -04:00
|
|
|
gjs \
|
|
|
|
network-manager-applet \
|
|
|
|
gnome-autoar \
|
|
|
|
polkit \
|
2023-09-29 12:46:16 -04:00
|
|
|
libsoup-3.0 \
|
2020-07-08 10:42:25 -04:00
|
|
|
startup-notification \
|
|
|
|
ibus \
|
|
|
|
gsettings-desktop-schemas \
|
2024-05-08 11:00:03 -04:00
|
|
|
pipewire \
|
2020-07-08 10:42:25 -04:00
|
|
|
"
|
|
|
|
|
2022-05-29 14:18:27 -04:00
|
|
|
inherit gnomebase gsettings gettext gobject-introspection gtk-icon-cache features_check external-tree
|
|
|
|
|
2024-05-08 11:00:03 -04:00
|
|
|
RDEPENDS:${PN} = "gsettings-desktop-schemas librsvg-gtk tecla libjxl pipewire"
|
2020-07-08 10:42:25 -04:00
|
|
|
|
2022-05-28 11:20:07 -04:00
|
|
|
FILES:${PN} += "\
|
2020-07-08 10:42:25 -04:00
|
|
|
${datadir}/dbus-1 \
|
|
|
|
${datadir}/xdg-desktop-portal \
|
|
|
|
${datadir}/gnome-control-center \
|
|
|
|
${datadir}/bash-completion/completions/gnome-extensions \
|
|
|
|
${systemd_user_unitdir} \
|
|
|
|
"
|
|
|
|
|
|
|
|
PACKAGES =+ "${PN}-tools"
|
2022-05-28 11:20:07 -04:00
|
|
|
FILES:${PN}-tools += "\
|
2020-07-08 10:42:25 -04:00
|
|
|
/usr/bin/gnome-shell-perf-tool \
|
|
|
|
/usr/bin/gnome-shell-extension-tool \
|
|
|
|
"
|
|
|
|
|
2022-05-28 11:20:07 -04:00
|
|
|
do_compile:prepend() {
|
2021-10-06 15:27:34 -04:00
|
|
|
rm -f ${B}/data/theme/*.css
|
|
|
|
}
|
|
|
|
|
2022-05-28 11:20:07 -04:00
|
|
|
do_configure:append () {
|
2020-07-08 10:42:25 -04:00
|
|
|
MUTTER_DIR="/usr/lib/mutter"
|
|
|
|
sed --in-place=.old1 "s;=${MUTTER_DIR};=${PKG_CONFIG_SYSROOT_DIR}${MUTTER_DIR};" ${B}/build.ninja
|
|
|
|
}
|
|
|
|
|
2023-09-29 12:46:16 -04:00
|
|
|
EXTRA_OEMESON += "-Dman=false -Dsystemd=true -Dnetworkmanager=true -Dextensions_app=false -Dtests=false -Dcamera_monitor=false"
|