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
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.sha256sum] = "5345b418cb12a972955ce5cceaed6662480027336b5c51daea5730575b621ced"
|
|
|
|
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 \
|
|
file://0001-Remove-log-out-label-from-power-off-in-status-UI.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"
|