diff options
Diffstat (limited to 'meta-gnome/recipes-gnome/gnome-shell/gnome-shell_45.1.bb')
| -rw-r--r-- | meta-gnome/recipes-gnome/gnome-shell/gnome-shell_45.1.bb | 87 |
1 files changed, 87 insertions, 0 deletions
diff --git a/meta-gnome/recipes-gnome/gnome-shell/gnome-shell_45.1.bb b/meta-gnome/recipes-gnome/gnome-shell/gnome-shell_45.1.bb new file mode 100644 index 0000000000..472c3bdb82 --- /dev/null +++ b/meta-gnome/recipes-gnome/gnome-shell/gnome-shell_45.1.bb | |||
| @@ -0,0 +1,87 @@ | |||
| 1 | SUMMARY = "GNOME Shell is the graphical shell of the GNOME desktop environment" | ||
| 2 | LICENSE = "GPL-2.0-only" | ||
| 3 | LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263" | ||
| 4 | |||
| 5 | GNOMEBASEBUILDCLASS = "meson" | ||
| 6 | |||
| 7 | DEPENDS = " \ | ||
| 8 | libxml2-native \ | ||
| 9 | gtk4 \ | ||
| 10 | mutter \ | ||
| 11 | evolution-data-server \ | ||
| 12 | gcr \ | ||
| 13 | geocode-glib \ | ||
| 14 | gjs \ | ||
| 15 | gnome-autoar \ | ||
| 16 | gnome-desktop \ | ||
| 17 | polkit \ | ||
| 18 | pipewire \ | ||
| 19 | libsoup-3.0 \ | ||
| 20 | ${@bb.utils.contains('DISTRO_FEATURES', 'wayland', '', 'startup-notification', d)} \ | ||
| 21 | ibus \ | ||
| 22 | gsettings-desktop-schemas \ | ||
| 23 | " | ||
| 24 | |||
| 25 | inherit gnomebase gsettings gettext gobject-introspection gtk-icon-cache features_check bash-completion | ||
| 26 | |||
| 27 | REQUIRED_DISTRO_FEATURES = "x11 polkit systemd pam" | ||
| 28 | |||
| 29 | GTKIC_VERSION = "4" | ||
| 30 | GTKDOC_MESON_OPTION = "gtk_doc" | ||
| 31 | GIR_MESON_OPTION = "" | ||
| 32 | |||
| 33 | # gobject-introspection is mandatory and cannot be configured | ||
| 34 | REQUIRED_DISTRO_FEATURES += "gobject-introspection-data" | ||
| 35 | |||
| 36 | SRC_URI[archive.sha256sum] = "15fca4bd6129a8b3f990197fbd1ee58d74b641510afaaf0882a7fa36634fc5f2" | ||
| 37 | SRC_URI += "file://0001-Introduce-options-gjs_path-to-optionally-set-path-to.patch" | ||
| 38 | |||
| 39 | PACKAGECONFIG ??= "bluetooth nm ${@bb.utils.filter('DISTRO_FEATURES', 'systemd', d)}" | ||
| 40 | PACKAGECONFIG[bluetooth] = ",,gnome-bluetooth" | ||
| 41 | PACKAGECONFIG[nm] = "-Dnetworkmanager=true, -Dnetworkmanager=false,networkmanager libsecret,networkmanager" | ||
| 42 | PACKAGECONFIG[systemd] = "-Dsystemd=true, -Dsystemd=false, systemd" | ||
| 43 | |||
| 44 | EXTRA_OEMESON = " \ | ||
| 45 | -Dgjs_path=${bindir}/gjs \ | ||
| 46 | -Dextensions-app:gjs_path=${bindir}/gjs \ | ||
| 47 | -Dtests=false \ | ||
| 48 | -Dman=false \ | ||
| 49 | " | ||
| 50 | |||
| 51 | do_install:append() { | ||
| 52 | # fix shebangs | ||
| 53 | for tool in `find ${D}${bindir} -name '*-tool'`; do | ||
| 54 | sed -i 's:#!${PYTHON}:#!${bindir}/${PYTHON_PN}:' $tool | ||
| 55 | done | ||
| 56 | } | ||
| 57 | |||
| 58 | GSETTINGS_PACKAGE = "${PN}-gsettings" | ||
| 59 | |||
| 60 | FILES:${PN} += " \ | ||
| 61 | ${datadir}/metainfo \ | ||
| 62 | ${datadir}/dbus-1 \ | ||
| 63 | ${datadir}/gnome-control-center \ | ||
| 64 | ${datadir}/xdg-desktop-portal \ | ||
| 65 | ${systemd_user_unitdir} \ | ||
| 66 | " | ||
| 67 | |||
| 68 | RDEPENDS:${PN} += " \ | ||
| 69 | accountsservice \ | ||
| 70 | adwaita-icon-theme \ | ||
| 71 | adwaita-icon-theme-cursors \ | ||
| 72 | gdm-base \ | ||
| 73 | gnome-control-center \ | ||
| 74 | gnome-backgrounds \ | ||
| 75 | gnome-bluetooth \ | ||
| 76 | gnome-desktop \ | ||
| 77 | gnome-session \ | ||
| 78 | gnome-settings-daemon \ | ||
| 79 | gnome-shell-gsettings \ | ||
| 80 | gsettings-desktop-schemas \ | ||
| 81 | librsvg-gtk \ | ||
| 82 | " | ||
| 83 | |||
| 84 | PACKAGES =+ "${PN}-tools ${PN}-gsettings" | ||
| 85 | FILES:${PN}-tools = "${bindir}/*-tool" | ||
| 86 | RDEPENDS:${PN}-tools = "python3-core" | ||
| 87 | |||
