2020-07-08 14:42:25 +00:00
|
|
|
LICENSE = "GPLv2"
|
|
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
|
|
|
|
|
2021-05-05 12:45:55 +00:00
|
|
|
REQUIRED_DISTRO_FEATURES = "x11 systemd pam"
|
2020-07-08 14:42:25 +00:00
|
|
|
|
2021-05-05 12:45:55 +00:00
|
|
|
ERROR_QA_remove = "unknown-configure-option"
|
2020-07-08 14:42:25 +00:00
|
|
|
|
2021-12-16 15:19:43 +00:00
|
|
|
SRCREV = "d85bd654a3c830a8c3982286c1876321c96faf7d"
|
2020-07-08 14:42:25 +00:00
|
|
|
|
2021-12-16 15:19:43 +00:00
|
|
|
EXTERNAL_TREE_VAR="CITADEL_GNOME_SHELL_PATH"
|
|
|
|
GIT_URI = "gitsm://github.com/brl/gnome-shell.git;branch=citadel;protocol=https"
|
2020-07-08 14:42:25 +00:00
|
|
|
|
2021-12-16 15:19:43 +00:00
|
|
|
GNOMEBASEBUILDCLASS = "meson"
|
2020-07-08 14:42:25 +00:00
|
|
|
|
2021-12-16 15:19:43 +00:00
|
|
|
inherit gnomebase gsettings gettext gobject-introspection gobject-introspection-data features_check bash-completion external-tree
|
2020-07-08 14:42:25 +00:00
|
|
|
|
2021-05-05 12:45:55 +00:00
|
|
|
|
|
|
|
|
2020-07-08 14:42:25 +00:00
|
|
|
DEPENDS = " \
|
|
|
|
libxml2-native \
|
|
|
|
sassc-native \
|
2021-05-05 12:45:55 +00:00
|
|
|
gtk4 \
|
2020-07-08 14:42:25 +00:00
|
|
|
mutter \
|
|
|
|
gcr \
|
|
|
|
gjs \
|
2020-10-30 18:55:28 +00:00
|
|
|
mozjs78 \
|
2020-07-08 14:42:25 +00:00
|
|
|
network-manager-applet \
|
|
|
|
gnome-autoar \
|
|
|
|
polkit \
|
|
|
|
libcroco \
|
|
|
|
startup-notification \
|
|
|
|
ibus \
|
|
|
|
gsettings-desktop-schemas \
|
|
|
|
"
|
|
|
|
|
|
|
|
RDEPENDS_${PN} = "gsettings-desktop-schemas librsvg-gtk"
|
|
|
|
|
|
|
|
FILES_${PN} += "\
|
|
|
|
${datadir}/dbus-1 \
|
|
|
|
${datadir}/xdg-desktop-portal \
|
|
|
|
${datadir}/gnome-control-center \
|
|
|
|
${datadir}/bash-completion/completions/gnome-extensions \
|
|
|
|
${systemd_user_unitdir} \
|
|
|
|
"
|
|
|
|
|
|
|
|
PACKAGES =+ "${PN}-tools"
|
|
|
|
FILES_${PN}-tools += "\
|
|
|
|
/usr/bin/gnome-shell-perf-tool \
|
|
|
|
/usr/bin/gnome-shell-extension-tool \
|
|
|
|
"
|
|
|
|
|
2021-10-06 19:27:34 +00:00
|
|
|
do_compile_prepend() {
|
|
|
|
rm -f ${B}/data/theme/*.css
|
|
|
|
}
|
|
|
|
|
2020-07-08 14:42:25 +00:00
|
|
|
do_configure_append () {
|
|
|
|
MUTTER_DIR="/usr/lib/mutter"
|
|
|
|
sed --in-place=.old1 "s;=${MUTTER_DIR};=${PKG_CONFIG_SYSROOT_DIR}${MUTTER_DIR};" ${B}/build.ninja
|
|
|
|
}
|
|
|
|
|
2021-10-06 19:27:34 +00:00
|
|
|
EXTRA_OEMESON += "-Dman=false -Dsystemd=true -Dnetworkmanager=true -Dextensions_app=false -Dtests=false"
|