mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-01-08 10:15:23 +01:00
Update xfce4-screensaver from 4.16.0 to 4.18.1 * rebase fix-cross-compile.patch Release notes for 4.18.1 ======================== This release is to fix a build issue on BSD systems - Refactor spawn_make_environment_for_display() Release notes for 4.18.0 ======================== - Add copyright notice to configure.ac - Make missing GNOME Keyring PAM module warning quiet (Fixes #46) - build: Fix --disable-locking (Fixes #83) - Remove duplicated lines in README (Fixes #109) - savers: Fix critical warnings on exit - savers: Fix critical warnings from GSThemeWindow on "realize" - Do not redirect stderr for our own commands - Round the user picture on lock dialog. - build: Do not warn if PAM prefix is correct - Improve lightdm detection (Fixes #39) - build: Fix -Wunused-value compiler warning - build: Fix -Wdeclaration-after-statement compiler warning - build: Fix -Wsign-compare compiler warning - build: Use XDT_FEATURE_DEBUG - Fix use-after-free crash in xfce4-screensaver-dialog - Fix D-Bus sleep inhibit when screen locker is disabled - Complete previous commit - Fix Xfconf memory management - build: Set GLib macros via XDT_CHECK_PACKAGE - autogen.sh: Do not `mkdir m4` - Fix crash when XDG_PICTURES_DIR is not set (Fixes #86) - Fix build warning from Clang - --with-password-helper expects full pathname of password helper - Add missing zeroing of timeout_id in dialog_timed_out() timer handler - Fix wrong signal name for GtkSpinButton - Remove ENABLE_NLS ifdefs and use xfce_textdomain() - build: Fix intltool lock file problem during make distcheck - Fix compilation warnings - autoconf: Some updates - Translation Updates: Albanian, Armenian (Armenia), Basque, Belarusian, Bulgarian, Catalan, Chinese (China), Chinese (Taiwan), Danish, Dutch, Eastern Armenian, English (Australia), Estonian, Finnish, French, Galician, German, Hebrew, Hungarian, Icelandic, Indonesian, Italian, Japanese, Kabyle, Korean, Lithuanian, Malay, Norwegian Bokmål, Polish, Portuguese, Portuguese (Brazil), Russian, Serbian, Slovak, Slovenian, Spanish, Swedish, Thai, Ukrainian Signed-off-by: Kai Kang <kai.kang@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
25 lines
992 B
BlitzBasic
25 lines
992 B
BlitzBasic
SUMMARY = "Xfce screensaver Application"
|
|
DESCRIPTION = "Xfce screensaver is a screen saver and locker that aims to have simple, sane, secure defaults and be well integrated with the desktop."
|
|
HOMEPAGE = "https://git.xfce.org/apps/xfce4-screensaver/about/"
|
|
SECTION = "x11/application"
|
|
|
|
LICENSE = "GPL-2.0-or-later & LGPL-2.0-or-later "
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263 \
|
|
file://COPYING.LGPL;md5=4fbd65380cdd255951079008b364516c \
|
|
"
|
|
|
|
DEPENDS = "dbus-glib garcon gtk+3 libxklavier libxscrnsaver virtual/libx11 xfconf libwnck3"
|
|
|
|
inherit xfce-app
|
|
|
|
SRC_URI:append = " file://fix-cross-compile.patch"
|
|
SRC_URI[sha256sum] = "b731e8abd68a18cc5d3b523351aa8f9f293c9f63290c1781c9155259deb04a5c"
|
|
|
|
do_install:append() {
|
|
install -D -m 0644 ${S}/data/xfce4-screensaver.common-auth ${D}${sysconfdir}/pam.d/xfce4-screensaver
|
|
}
|
|
|
|
FILES:${PN} += "${datadir}/dbus-1 ${datadir}/desktop-directories"
|
|
|
|
RDEPENDS:${PN} += "python3-core"
|