forked from brl/citadel
Bruce Leidl
4c3baa433b
Updated Recipes * dash-to-panel 40 * dconf 0.38.0 * gdm 3.38.0 * glib 2.66.1 * gjs 1.66.0 * gnome-autoar 0.2.4 * gnome-backgrounds 3.38.0 * gnome-bluetooth 3.34.3 * gnome-control-center 3.38.1 * gnome-screenshot 3.38.0 * gnome-shell 3.38.1 * gnome-session 3.38.0 * gnome-settings-daemon 3.38.0 * gnome-terminal 3.38.0 * gnome-usage 3.38.0 * graphene 1.10.2 * gsettings-desktop-schema 3.38.0 * gvfs 1.46.1 * iwd 1.9 * libgee 0.20.3 * libgtop 2.40.0 * libgweather 3.36.1 * mkpasswd 5.5.7 * mozjs 78.0.1 * mutter 3.38.1 * nautilus 3.38.1 * networkmanager 1.26.4 * polkit 0.118 * tracker 3.0.1 * vte 0.62.0 Removed because recipes exist in poky with adequate version * atk, at-spi * clutter * clutter-gtk * cogl * ell * gcr * itstool * libinput * pango Other removed recipes * systemd-initrd No longer using a separate systemd recipe for initramfs * caribou What even is this * gnome-tweaks Not used * mozjs Polkit no longer requires an ancient mozjs * mozjs68 Upgraded to mozjs78
60 lines
1.7 KiB
BlitzBasic
60 lines
1.7 KiB
BlitzBasic
LICENSE = "GPLv2"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
|
|
|
|
GNOMEBASEBUILDCLASS = "meson"
|
|
|
|
inherit gnomebase gsettings gettext gobject-introspection gobject-introspection-data features_check bash-completion
|
|
|
|
REQUIRED_DISTRO_FEATURES = "x11 systemd pam"
|
|
|
|
WARN_QA_remove = "unknown-configure-option"
|
|
|
|
SRC_URI[archive.md5sum] = "a12f98e36f4cfc4b4f968c35edc6f778"
|
|
SRC_URI[archive.sha256sum] = "b789e3296463c4cbfa329ad1724df38439c3e6d7537a01025cd8f2fec8c90bb4"
|
|
|
|
SRC_URI = "${GNOME_MIRROR}/${GNOMEBN}/${@gnome_verdir("${PV}")}/${GNOMEBN}-${PV}.tar.${GNOME_COMPRESS_TYPE};name=archive \
|
|
file://0001-Disabled-calendar-events-from-user-session.patch \
|
|
file://0001-do-not-use-python-path-from-build-environment.patch \
|
|
file://0001-Remove-calendar-server-fix-build.patch \
|
|
"
|
|
|
|
DEPENDS = " \
|
|
libxml2-native \
|
|
sassc-native \
|
|
gtk+3 \
|
|
mutter \
|
|
gcr \
|
|
gjs \
|
|
mozjs78 \
|
|
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 \
|
|
"
|
|
|
|
do_configure_append () {
|
|
MUTTER_DIR="/usr/lib/mutter"
|
|
sed --in-place=.old1 "s;=${MUTTER_DIR};=${PKG_CONFIG_SYSROOT_DIR}${MUTTER_DIR};" ${B}/build.ninja
|
|
}
|
|
|
|
EXTRA_OEMESON += "-Dman=false -Dsystemd=true -Dnetworkmanager=true -Dextensions_app=false"
|