aboutsummaryrefslogtreecommitdiff
path: root/security/plasma5-kscreenlocker
diff options
context:
space:
mode:
authorTobias C. Berner <tcberner@FreeBSD.org>2018-12-31 06:38:42 +0000
committerTobias C. Berner <tcberner@FreeBSD.org>2018-12-31 06:38:42 +0000
commit2e3fc151da1bf33ec7aa8f6ec1c1081bbbcf26fa (patch)
treeb9b891b5ab13ddfcd2938ac4617b1ccdf9fda5db /security/plasma5-kscreenlocker
parent0313569a0a71b9ac67aa2c53f957cb7d0839f348 (diff)
downloadports-2e3fc151da1bf33ec7aa8f6ec1c1081bbbcf26fa.tar.gz
ports-2e3fc151da1bf33ec7aa8f6ec1c1081bbbcf26fa.zip
Update KDE Plasma Desktop to 5.14.4
Notes
Notes: svn path=/head/; revision=488757
Diffstat (limited to 'security/plasma5-kscreenlocker')
-rw-r--r--security/plasma5-kscreenlocker/Makefile8
-rw-r--r--security/plasma5-kscreenlocker/distinfo6
-rw-r--r--security/plasma5-kscreenlocker/files/ck-unlock-session.in25
-rw-r--r--security/plasma5-kscreenlocker/files/patch-abstractlocker.cpp21
-rw-r--r--security/plasma5-kscreenlocker/pkg-plist3
5 files changed, 5 insertions, 58 deletions
diff --git a/security/plasma5-kscreenlocker/Makefile b/security/plasma5-kscreenlocker/Makefile
index 691ad0228249..9270ae7e680f 100644
--- a/security/plasma5-kscreenlocker/Makefile
+++ b/security/plasma5-kscreenlocker/Makefile
@@ -2,7 +2,6 @@
PORTNAME= kscreenlocker
DISTVERSION= ${KDE_PLASMA_VERSION}
-PORTREVISION= 2
CATEGORIES= security kde kde-plasma
MAINTAINER= kde@FreeBSD.org
@@ -27,11 +26,4 @@ USE_XORG= ice sm x11 xcb xcursor xext xi
SHEBANG_FILES= updaters/ksreenlocker_5_3_separate_autologin.pl
-# Install a generic console kit based program to unlock the screen in the event
-# of a failure.
-SUB_FILES= ck-unlock-session
-
-post-install:
- ${INSTALL_SCRIPT} ${WRKDIR}/ck-unlock-session ${STAGEDIR}${PREFIX}/bin
-
.include <bsd.port.mk>
diff --git a/security/plasma5-kscreenlocker/distinfo b/security/plasma5-kscreenlocker/distinfo
index 6a75d06dbeed..7383f9135868 100644
--- a/security/plasma5-kscreenlocker/distinfo
+++ b/security/plasma5-kscreenlocker/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1540111456
-SHA256 (KDE/plasma/5.12.7/kscreenlocker-5.12.7.tar.xz) = 93292b0a70827136bc5886f9a24d7923f1a75fbe9e2440aba8980081bf3feb3a
-SIZE (KDE/plasma/5.12.7/kscreenlocker-5.12.7.tar.xz) = 119484
+TIMESTAMP = 1543442735
+SHA256 (KDE/plasma/5.14.4/kscreenlocker-5.14.4.tar.xz) = e2731b79f26910dda11c281705d0eb4db404f8a9610e20da3099862644b3f3ba
+SIZE (KDE/plasma/5.14.4/kscreenlocker-5.14.4.tar.xz) = 122128
diff --git a/security/plasma5-kscreenlocker/files/ck-unlock-session.in b/security/plasma5-kscreenlocker/files/ck-unlock-session.in
deleted file mode 100644
index ef25383b8a5f..000000000000
--- a/security/plasma5-kscreenlocker/files/ck-unlock-session.in
+++ /dev/null
@@ -1,25 +0,0 @@
-#!/bin/sh
-# This helper script unlocks the Plasma5 screenlocker of the session given by argument,
-# should the locker ever crash.
-#
-# Requirements: consolekit & dbus-send
-#
-
-# list running sesions
-list_sessions ()
-{
- %%PREFIX%%/bin/ck-list-sessions | grep -oE '^Session[^:]*'
-}
-
-# unlock_session <session_name>
-unlock_session ()
-{
- %%PREFIX%%/bin/dbus-send --system --print-reply --dest="org.freedesktop.ConsoleKit" "/org/freedesktop/ConsoleKit/$1" org.freedesktop.ConsoleKit.Session.Unlock
-}
-
-if [ $# -ne 1 ] ; then
- list_sessions
-else
- unlock_session $1
-fi
-
diff --git a/security/plasma5-kscreenlocker/files/patch-abstractlocker.cpp b/security/plasma5-kscreenlocker/files/patch-abstractlocker.cpp
deleted file mode 100644
index b942a6ee64db..000000000000
--- a/security/plasma5-kscreenlocker/files/patch-abstractlocker.cpp
+++ /dev/null
@@ -1,21 +0,0 @@
-Modify the explanation on the crashed lock screen to our situation.
-That is, to use ck-unlock-session.
-
---- abstractlocker.cpp.orig 2017-09-14 11:49:05 UTC
-+++ abstractlocker.cpp
-@@ -51,11 +51,11 @@ void BackgroundWindow::paintEvent(QPaintEvent* )
- if (m_greeterFailure) {
- auto text = ki18n("The screen locker is broken and unlocking is not possible anymore.\n"
- "In order to unlock switch to a virtual terminal (e.g. Ctrl+Alt+F2),\n"
-- "log in and execute the command:\n\n"
-- "loginctl unlock-session %1\n\n"
-+ "log in as root and execute the command:\n\n"
-+ "# ck-unlock-session <session-name>\n\n"
-+ "The <session-name> can be obtained by running the command:\n\n:"
-+ "# ck-unlock-session\n\n"
- "Afterwards switch back to the running session (Ctrl+Alt+F%2).");
-- text = text.subs(QString::fromLocal8Bit(qgetenv("XDG_SESSION_ID")));
-- text = text.subs(QString::fromLocal8Bit(qgetenv("XDG_VTNR")));
- p.setPen(Qt::white);
- QFont f = p.font();
- f.setBold(true);
diff --git a/security/plasma5-kscreenlocker/pkg-plist b/security/plasma5-kscreenlocker/pkg-plist
index 56215f545d64..4dbeb75a44d9 100644
--- a/security/plasma5-kscreenlocker/pkg-plist
+++ b/security/plasma5-kscreenlocker/pkg-plist
@@ -14,6 +14,7 @@ lib/libKScreenLocker.so.%%KDE_PLASMA_VERSION%%
lib/libexec/kscreenlocker_greet
%%QT_PLUGINDIR%%/screenlocker_kcm.so
share/dbus-1/interfaces/kf5_org.freedesktop.ScreenSaver.xml
+share/dbus-1/interfaces/org.kde.screensaver.xml
share/kconf_update/kscreenlocker.upd
share/kconf_update/ksreenlocker_5_3_separate_autologin.pl
share/knotifications5/ksmserver.notifyrc
@@ -78,8 +79,8 @@ share/locale/hu/LC_MESSAGES/screenlocker_kcm.mo
share/locale/ia/LC_MESSAGES/kscreenlocker.mo
share/locale/ia/LC_MESSAGES/kscreenlocker_greet.mo
share/locale/ia/LC_MESSAGES/screenlocker_kcm.mo
-share/locale/id/LC_MESSAGES/kscreenlocker_greet.mo
share/locale/id/LC_MESSAGES/kscreenlocker.mo
+share/locale/id/LC_MESSAGES/kscreenlocker_greet.mo
share/locale/id/LC_MESSAGES/screenlocker_kcm.mo
share/locale/it/LC_MESSAGES/kscreenlocker.mo
share/locale/it/LC_MESSAGES/kscreenlocker_greet.mo