forked from brl/citadel
David McKinney
c08e51c9ae
- Added citadel-setpassword.service and shell script to set a default password of 'citadel' in install mode, does not run in any other mode or if a password is already set - Re-implement disable logging out of Gnome: * Lock preventing log outs in gsettings override * Patched gnome-session so that locking log outs does not lock shutting down * Patched gnome-shell to remove 'Log Out' from status label - Added keyboard shortcut for Citadel Realms UI (gtk) to gnome-shell: * Added gsetting for the shortcut * Separated inital realm dconf database and Citadel dconf databases to use different settings for each * Added Ctrl+Alt+c as the keyboard shortcut for launching Citadel Realms UI to the citadel dconf database - Added neovim init.vim to realms skel since neovim is now default vim in realms
42 lines
1.2 KiB
BlitzBasic
42 lines
1.2 KiB
BlitzBasic
SUMMARY = "GNOME session"
|
|
LICENSE = "GPLv2"
|
|
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"
|
|
|
|
SRC_URI[archive.md5sum] = "736024b46e2542b9b68adaa43f754f49"
|
|
SRC_URI[archive.sha256sum] = "7bcc0eb2cdba4b3f6d1b459b3a30873b7bb65b383c1f6a5f63c3e3b5c7943d67"
|
|
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"
|