Hello community,

here is the log from the commit of package kauth for openSUSE:Factory checked 
in at 2014-07-10 14:55:52
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kauth (Old)
 and      /work/SRC/openSUSE:Factory/.kauth.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kauth"

Changes:
--------
--- /work/SRC/openSUSE:Factory/kauth/kauth.changes      2014-06-23 
09:23:48.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.kauth.new/kauth.changes 2014-07-10 
14:56:15.000000000 +0200
@@ -1,0 +2,12 @@
+Tue Jul  1 21:36:06 UTC 2014 - [email protected]
+
+- Update to 5.0.0
+  * Final release of KDE Frameworks 5
+  * API improvements and cleanups
+  * Buildsystem fixes
+  * For more details please see:
+    http://www.kde.org/announcements/kde-frameworks-5.0.php
+- Added 0001-Pass-trailing-slash-to-searched-backend-helper-plugi.patch,
+  fixes helper/backend plugin loading
+
+-------------------------------------------------------------------

Old:
----
  kauth-4.100.0.tar.xz

New:
----
  0001-Pass-trailing-slash-to-searched-backend-helper-plugi.patch
  kauth-5.0.0.tar.xz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ kauth.spec ++++++
--- /var/tmp/diff_new_pack.grM4wM/_old  2014-07-10 14:56:16.000000000 +0200
+++ /var/tmp/diff_new_pack.grM4wM/_new  2014-07-10 14:56:16.000000000 +0200
@@ -18,10 +18,10 @@
 
 %define lname   libKF5Auth5
 Name:           kauth
-Version:        4.100.0
+Version:        5.0.0
 Release:        0
 BuildRequires:  cmake >= 2.8.12
-BuildRequires:  extra-cmake-modules >= 0.0.14
+BuildRequires:  extra-cmake-modules >= 1.0.0
 BuildRequires:  fdupes
 BuildRequires:  kcoreaddons-devel >= %{_kf5_version}
 BuildRequires:  kf5-filesystem
@@ -33,10 +33,12 @@
 License:        LGPL-2.1+
 Group:          System/GUI/KDE
 Url:            http://www.kde.org
-Source:         
http://download.kde.org/unstable/frameworks/%{version}/%{name}-%{version}.tar.xz
+Source:         
http://download.kde.org/stable/frameworks/%{version}/%{name}-%{version}.tar.xz
 Source1:        baselibs.conf
 # PATCH-FIX-UPSTREAM polkit-qt5-support.patch -- add support for polkit-qt-1 
Qt5 port, https://git.reviewboard.kde.org/r/118264/
 Patch0:         polkit-qt5-support.patch
+# PATCH-FIX-UPSTREAM 
0001-Pass-trailing-slash-to-searched-backend-helper-plugi.patch
+Patch1:         0001-Pass-trailing-slash-to-searched-backend-helper-plugi.patch
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 
 %description
@@ -66,6 +68,7 @@
 %prep
 %setup -q
 %patch0 -p1
+%patch1 -p1
 
 %build
   %cmake_kf5 -d build -- -DSYSCONF_INSTALL_DIR=%{_kf5_sysconfdir}

++++++ 0001-Pass-trailing-slash-to-searched-backend-helper-plugi.patch ++++++
>From f900d7d4798503479b88346a2689ec6bee417193 Mon Sep 17 00:00:00 2001
From: Hrvoje Senjan <[email protected]>
Date: Wed, 2 Jul 2014 09:32:23 +0200
Subject: [PATCH 1/1] Pass trailing slash to searched backend/helper plugin dir
 Unbreaks plugin loading

CCMAIL: [email protected]
---
 src/BackendsManager.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/BackendsManager.cpp b/src/BackendsManager.cpp
index cd0bf3f..0dd4661 100644
--- a/src/BackendsManager.cpp
+++ b/src/BackendsManager.cpp
@@ -44,7 +44,7 @@ QList< QObject * > BackendsManager::retrieveInstancesIn(const 
QString &subdir)
 {
     QList<QObject *> retlist;
     foreach (const QString& pPath, QCoreApplication::libraryPaths()) {
-        QDir pluginPath(pPath + subdir);
+        QDir pluginPath(pPath + QLatin1Char('/') + subdir);
         if (!pluginPath.exists() || pPath.isEmpty()) {
             continue;
         }
-- 
2.0.0

++++++ kauth-4.100.0.tar.xz -> kauth-5.0.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kauth-4.100.0/CMakeLists.txt 
new/kauth-5.0.0/CMakeLists.txt
--- old/kauth-4.100.0/CMakeLists.txt    2014-06-01 14:04:19.000000000 +0200
+++ new/kauth-5.0.0/CMakeLists.txt      2014-07-01 20:26:36.000000000 +0200
@@ -2,7 +2,7 @@
 
 project(KAuth)
 
-find_package(ECM 0.0.14 REQUIRED NO_MODULE)
+find_package(ECM 1.0.0 REQUIRED NO_MODULE)
 set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR})
 
 set(REQUIRED_QT_VERSION 5.2.0)
@@ -20,8 +20,8 @@
 
 include(ECMPoQmTools)
 
-set(KF5_VERSION "4.100.0") # handled by release scripts
-set(KF5_DEP_VERSION "4.100.0") # handled by release scripts
+set(KF5_VERSION "5.0.0") # handled by release scripts
+set(KF5_DEP_VERSION "5.0.0") # handled by release scripts
 
 ecm_setup_version(${KF5_VERSION} VARIABLE_PREFIX KAUTH
                         VERSION_HEADER 
"${CMAKE_CURRENT_BINARY_DIR}/kauth_version.h"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kauth-4.100.0/po/ca/kauth5_qt.po 
new/kauth-5.0.0/po/ca/kauth5_qt.po
--- old/kauth-4.100.0/po/ca/kauth5_qt.po        2014-06-01 14:04:19.000000000 
+0200
+++ new/kauth-5.0.0/po/ca/kauth5_qt.po  2014-07-01 20:26:36.000000000 +0200
@@ -1,12 +1,11 @@
 # Translation of kauth5_qt.po to Catalan
-# Copyright (C) 1998-2014 This_file_is_part_of_KDE
+# Copyright (C) 2014 This_file_is_part_of_KDE
 # This file is distributed under the license LGPL version 2.1 or
 # version 3 or later versions approved by the membership of KDE e.V.
 #
-# Sebastià Pla i Sanz <[email protected]>, 1998, 1999, 2000, 2001, 2002, 2003, 
2004, 2005, 2006.
-# Antoni Bella Pérez <[email protected]>, 2003, 2006, 2011, 2012, 2013.
+# Sebastià Pla i Sanz <[email protected]>, 1998, 1999, 2000, 2001, 2002, 2003, 
2004, 2005, 2006, 2007.
+# Antoni Bella Pérez <[email protected]>, 2003, 2006, 2011, 2012, 2013, 
2014.
 # Albert Astals Cid <[email protected]>, 2004, 2005, 2007.
-# Sebastia Pla Sanz <[email protected]>, 2006, 2007.
 # Josep Ma. Ferrer <[email protected]>, 2007, 2008, 2009, 2010, 2011, 2012, 
2013, 2014.
 # Robert Millan <[email protected]>, 2009.
 # Orestes Mas <[email protected]>, 2010.
@@ -15,21 +14,21 @@
 "Project-Id-Version: kauth5_qt\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2014-03-23 01:50+0000\n"
-"PO-Revision-Date: 2014-03-30 11:12+0200\n"
-"Last-Translator: Josep Ma. Ferrer <[email protected]>\n"
+"PO-Revision-Date: 2014-06-24 18:58+0200\n"
+"Last-Translator: Antoni Bella Pérez <[email protected]>\n"
 "Language-Team: Catalan <[email protected]>\n"
 "Language: ca\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Lokalize 1.4\n"
+"X-Generator: Lokalize 1.5\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Accelerator-Marker: &\n"
 
 #: backends/dbus/DBusHelperProxy.cpp:76
 msgctxt "KAuth::DBusHelperProxy|"
 msgid "DBus Backend error: connection to helper failed. "
-msgstr "Error en el dorsal DBus: ha fallat la connexió a l'auxiliar. "
+msgstr "Error en el dorsal DBus: ha fallat la connexió amb l'auxiliar. "
 
 #: backends/dbus/DBusHelperProxy.cpp:94
 msgctxt "KAuth::DBusHelperProxy|"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kauth-4.100.0/po/en_GB/kauth5_qt.po 
new/kauth-5.0.0/po/en_GB/kauth5_qt.po
--- old/kauth-4.100.0/po/en_GB/kauth5_qt.po     2014-06-01 14:04:19.000000000 
+0200
+++ new/kauth-5.0.0/po/en_GB/kauth5_qt.po       2014-07-01 20:26:36.000000000 
+0200
@@ -2,63 +2,51 @@
 # Malcolm Hunter <[email protected]>, 2002,2003,2004, 2005, 2006, 2007, 
2008, 2009.
 # Jonathan Riddell <[email protected]>, 2003.
 # Andrew Coles <[email protected]>, 2004, 2005, 2009, 2010.
+# Steve Allewell <[email protected]>, 2014.
 msgid ""
 msgstr ""
 "Project-Id-Version: kdelibs4\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2014-03-23 01:50+0000\n"
-"PO-Revision-Date: 2010-12-14 12:18+0000\n"
-"Last-Translator: Andrew Coles <[email protected]>\n"
-"Language-Team: British English <[email protected]>\n"
-"Language: \n"
+"PO-Revision-Date: 2014-06-28 12:34+0100\n"
+"Last-Translator: Steve Allewell <[email protected]>\n"
+"Language-Team: British English <[email protected]>\n"
+"Language: en_GB\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Lokalize 1.1\n"
+"X-Generator: Lokalize 1.5\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 
 #: backends/dbus/DBusHelperProxy.cpp:76
-#, fuzzy
-#| msgid "DBus Backend error: connection to helper failed. %1"
 msgctxt "KAuth::DBusHelperProxy|"
 msgid "DBus Backend error: connection to helper failed. "
-msgstr "DBus Backend error: connection to helper failed. %1"
+msgstr "DBus Backend error: connection to helper failed. "
 
 #: backends/dbus/DBusHelperProxy.cpp:94
-#, fuzzy
-#| msgid ""
-#| "DBus Backend error: could not contact the helper. Connection error: %1. "
-#| "Message error: %2"
 msgctxt "KAuth::DBusHelperProxy|"
 msgid "DBus Backend error: could not contact the helper. Connection error: "
-msgstr ""
-"DBus Backend error: could not contact the helper. Connection error: %1. "
-"Message error: %2"
+msgstr "DBus Backend error: could not contact the helper. Connection error: "
 
 #: backends/dbus/DBusHelperProxy.cpp:95
-#, fuzzy
-#| msgctxt "1: the i18n'ed system error code, from errno"
-#| msgid "system error: %1"
 msgctxt "KAuth::DBusHelperProxy|"
 msgid ". Message error: "
-msgstr "system error: %1"
+msgstr ". Message error: "
 
 #: kauthexecutejob.cpp:88
 msgctxt "KAuth::ExecuteJob|"
 msgid "Tried to start an invalid action"
-msgstr ""
+msgstr "Tried to start an invalid action"
 
 #: kauthexecutejob.cpp:102
-#, fuzzy
-#| msgid "Unknown encryption scheme."
 msgctxt "KAuth::ExecuteJob|"
 msgid "Unknown execution mode chosen"
-msgstr "Unknown encryption scheme."
+msgstr "Unknown execution mode chosen"
 
 #: kauthexecutejob.cpp:140
 msgctxt "KAuth::ExecuteJob|"
 msgid "Unknown status for the authentication procedure"
-msgstr ""
+msgstr "Unknown status for the authentication procedure"
 
 #: kauthexecutejob.cpp:149
 msgctxt "KAuth::ExecuteJob|"
@@ -66,11 +54,13 @@
 "The current backend only allows helper authorization, but this action does "
 "not have a helper."
 msgstr ""
+"The current backend only allows helper authorisation, but this action does "
+"not have a helper."
 
 #: kauthexecutejob.cpp:157 kauthexecutejob.cpp:181
 msgctxt "KAuth::ExecuteJob|"
 msgid "The backend does not specify how to authorize"
-msgstr ""
+msgstr "The backend does not specify how to authorise"
 
 #~ msgctxt "NAME OF TRANSLATORS"
 #~ msgid "Your names"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kauth-4.100.0/po/fr/kauth5_qt.po 
new/kauth-5.0.0/po/fr/kauth5_qt.po
--- old/kauth-4.100.0/po/fr/kauth5_qt.po        2014-06-01 14:04:19.000000000 
+0200
+++ new/kauth-5.0.0/po/fr/kauth5_qt.po  2014-07-01 20:26:36.000000000 +0200
@@ -21,7 +21,7 @@
 "Project-Id-Version: kdelibs4\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2014-03-23 01:50+0000\n"
-"PO-Revision-Date: 2013-11-01 15:56+0100\n"
+"PO-Revision-Date: 2014-05-21 16:00+0200\n"
 "Last-Translator: Sebastien Renard <[email protected]>\n"
 "Language-Team: French <[email protected]>\n"
 "Language: fr\n"
@@ -35,45 +35,36 @@
 "X-Text-Markup: kde4\n"
 
 #: backends/dbus/DBusHelperProxy.cpp:76
-#, fuzzy
-#| msgid "DBus Backend error: connection to helper failed. %1"
 msgctxt "KAuth::DBusHelperProxy|"
 msgid "DBus Backend error: connection to helper failed. "
-msgstr "Erreur du moteur D-Bus : la connexion à l'assistant a échoué. %1"
+msgstr "Erreur du moteur D-Bus : la connexion à l'assistant a échoué."
 
 #: backends/dbus/DBusHelperProxy.cpp:94
-#, fuzzy
-#| msgid ""
-#| "DBus Backend error: could not contact the helper. Connection error: %1. "
-#| "Message error: %2"
 msgctxt "KAuth::DBusHelperProxy|"
 msgid "DBus Backend error: could not contact the helper. Connection error: "
 msgstr ""
 "Erreur du moteur D-Bus : impossible de contacter l'assistant. Erreur de "
-"connexion : %1. Erreur de message : %2"
+"connexion : "
 
 #: backends/dbus/DBusHelperProxy.cpp:95
-#, fuzzy
-#| msgctxt "1: the i18n'ed system error code, from errno"
-#| msgid "system error: %1"
 msgctxt "KAuth::DBusHelperProxy|"
 msgid ". Message error: "
-msgstr "erreur système : %1"
+msgstr " . Message d'erreur : "
 
 #: kauthexecutejob.cpp:88
 msgctxt "KAuth::ExecuteJob|"
 msgid "Tried to start an invalid action"
-msgstr ""
+msgstr "Action non valable"
 
 #: kauthexecutejob.cpp:102
 msgctxt "KAuth::ExecuteJob|"
 msgid "Unknown execution mode chosen"
-msgstr ""
+msgstr "Mode d'exécution inconnu"
 
 #: kauthexecutejob.cpp:140
 msgctxt "KAuth::ExecuteJob|"
 msgid "Unknown status for the authentication procedure"
-msgstr ""
+msgstr "État inconnu pour la procédure d'authentification"
 
 #: kauthexecutejob.cpp:149
 msgctxt "KAuth::ExecuteJob|"
@@ -81,11 +72,13 @@
 "The current backend only allows helper authorization, but this action does "
 "not have a helper."
 msgstr ""
+"Le moteur actuel nécessite l'assistant d'authentification, mais cette action "
+"n'en possède pas."
 
 #: kauthexecutejob.cpp:157 kauthexecutejob.cpp:181
 msgctxt "KAuth::ExecuteJob|"
 msgid "The backend does not specify how to authorize"
-msgstr ""
+msgstr "Ce moteur ne précise pas comment s'authentifier"
 
 #~ msgctxt "NAME OF TRANSLATORS"
 #~ msgid "Your names"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kauth-4.100.0/po/id/kauth5_qt.po 
new/kauth-5.0.0/po/id/kauth5_qt.po
--- old/kauth-4.100.0/po/id/kauth5_qt.po        2014-06-01 14:04:19.000000000 
+0200
+++ new/kauth-5.0.0/po/id/kauth5_qt.po  2014-07-01 20:26:36.000000000 +0200
@@ -8,7 +8,7 @@
 "Project-Id-Version: kdelibs4\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2014-03-23 01:50+0000\n"
-"PO-Revision-Date: 2014-02-04 20:08+0700\n"
+"PO-Revision-Date: 2014-06-08 12:24+0700\n"
 "Last-Translator: Andhika Padmawan <[email protected]>\n"
 "Language-Team: Indonesian <[email protected]>\n"
 "Language: id\n"
@@ -18,45 +18,35 @@
 "Plural-Forms: nplurals=1; plural=0;\n"
 
 #: backends/dbus/DBusHelperProxy.cpp:76
-#, fuzzy
-#| msgid "DBus Backend error: connection to helper failed. %1"
 msgctxt "KAuth::DBusHelperProxy|"
 msgid "DBus Backend error: connection to helper failed. "
-msgstr "Galat Ujung Belakang DBus: koneksi ke pembantu gagal. %1"
+msgstr "Galat Ujung Belakang DBus: koneksi ke pembantu gagal. "
 
 #: backends/dbus/DBusHelperProxy.cpp:94
-#, fuzzy
-#| msgid ""
-#| "DBus Backend error: could not contact the helper. Connection error: %1. "
-#| "Message error: %2"
 msgctxt "KAuth::DBusHelperProxy|"
 msgid "DBus Backend error: could not contact the helper. Connection error: "
 msgstr ""
 "Galat Ujung Belakang DBus: tak dapat menghubungi pembantu. Galat koneksi: "
-"%1. Galat pesan: %2"
 
 #: backends/dbus/DBusHelperProxy.cpp:95
-#, fuzzy
-#| msgctxt "1: the i18n'ed system error code, from errno"
-#| msgid "system error: %1"
 msgctxt "KAuth::DBusHelperProxy|"
 msgid ". Message error: "
-msgstr "galat sistem: %1"
+msgstr ". Pesan galat: "
 
 #: kauthexecutejob.cpp:88
 msgctxt "KAuth::ExecuteJob|"
 msgid "Tried to start an invalid action"
-msgstr ""
+msgstr "Mencoba menjalankan aksi tidak valid"
 
 #: kauthexecutejob.cpp:102
 msgctxt "KAuth::ExecuteJob|"
 msgid "Unknown execution mode chosen"
-msgstr ""
+msgstr "Mode eksekusi tak diketahui telah dipilih"
 
 #: kauthexecutejob.cpp:140
 msgctxt "KAuth::ExecuteJob|"
 msgid "Unknown status for the authentication procedure"
-msgstr ""
+msgstr "Status tak diketahui untuk prosedur otentikasi"
 
 #: kauthexecutejob.cpp:149
 msgctxt "KAuth::ExecuteJob|"
@@ -64,11 +54,13 @@
 "The current backend only allows helper authorization, but this action does "
 "not have a helper."
 msgstr ""
+"Ujung belakang saat ini hanya memungkinkan otorisasi pembantu, tapi aksi ini "
+"tidak mempunyai pembantu."
 
 #: kauthexecutejob.cpp:157 kauthexecutejob.cpp:181
 msgctxt "KAuth::ExecuteJob|"
 msgid "The backend does not specify how to authorize"
-msgstr ""
+msgstr "Ujung belakang tidak menentukan cara otorisasi"
 
 #~ msgctxt "NAME OF TRANSLATORS"
 #~ msgid "Your names"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kauth-4.100.0/po/nds/kauth5_qt.po 
new/kauth-5.0.0/po/nds/kauth5_qt.po
--- old/kauth-4.100.0/po/nds/kauth5_qt.po       2014-06-01 14:04:19.000000000 
+0200
+++ new/kauth-5.0.0/po/nds/kauth5_qt.po 2014-07-01 20:26:36.000000000 +0200
@@ -16,7 +16,7 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Lokalize 1.4\n"
+"X-Generator: Lokalize 1.5\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 
 #: backends/dbus/DBusHelperProxy.cpp:76
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kauth-4.100.0/po/sl/kauth5_qt.po 
new/kauth-5.0.0/po/sl/kauth5_qt.po
--- old/kauth-4.100.0/po/sl/kauth5_qt.po        2014-06-01 14:04:19.000000000 
+0200
+++ new/kauth-5.0.0/po/sl/kauth5_qt.po  2014-07-01 20:26:36.000000000 +0200
@@ -11,13 +11,13 @@
 # Andrej Vernekar <[email protected]>, 2005, 2007, 2008, 2009, 2010.
 # Jure Repinc <[email protected]>, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 
2012, 2013.
 # Andrej Vernekar <[email protected]>, 2008, 2011, 2012.
-# Andrej Mernik <[email protected]>, 2012, 2013.
+# Andrej Mernik <[email protected]>, 2012, 2013, 2014.
 msgid ""
 msgstr ""
 "Project-Id-Version: kdelibs4\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2014-03-23 01:50+0000\n"
-"PO-Revision-Date: 2013-11-26 18:31+0100\n"
+"PO-Revision-Date: 2014-06-11 11:50+0200\n"
 "Last-Translator: Andrej Mernik <[email protected]>\n"
 "Language-Team: Slovenian <[email protected]>\n"
 "Language: sl\n"
@@ -29,45 +29,36 @@
 "%100==4 ? 3 : 0);\n"
 
 #: backends/dbus/DBusHelperProxy.cpp:76
-#, fuzzy
-#| msgid "DBus Backend error: connection to helper failed. %1"
 msgctxt "KAuth::DBusHelperProxy|"
 msgid "DBus Backend error: connection to helper failed. "
-msgstr "Napaka zaledja za D-Bus: povezava s pomagalnikom ni uspela: %1"
+msgstr "Napaka zaledja za D-Bus: povezava s pomagalnikom ni uspela. "
 
 #: backends/dbus/DBusHelperProxy.cpp:94
-#, fuzzy
-#| msgid ""
-#| "DBus Backend error: could not contact the helper. Connection error: %1. "
-#| "Message error: %2"
 msgctxt "KAuth::DBusHelperProxy|"
 msgid "DBus Backend error: could not contact the helper. Connection error: "
 msgstr ""
 "Napaka zaledja za D-Bus: ni bilo mogoče stopiti v stik s pomagalnikom. "
-"Napaka povezave: %1. Napaka sporočila: %2"
+"Napaka povezave: "
 
 #: backends/dbus/DBusHelperProxy.cpp:95
-#, fuzzy
-#| msgctxt "1: the i18n'ed system error code, from errno"
-#| msgid "system error: %1"
 msgctxt "KAuth::DBusHelperProxy|"
 msgid ". Message error: "
-msgstr "sistemska napaka: %1"
+msgstr ". Sporočilo napake: "
 
 #: kauthexecutejob.cpp:88
 msgctxt "KAuth::ExecuteJob|"
 msgid "Tried to start an invalid action"
-msgstr ""
+msgstr "Prišlo je do poskusa zagona neveljavnega dejanja"
 
 #: kauthexecutejob.cpp:102
 msgctxt "KAuth::ExecuteJob|"
 msgid "Unknown execution mode chosen"
-msgstr ""
+msgstr "Izbran neznan način izvajanja"
 
 #: kauthexecutejob.cpp:140
 msgctxt "KAuth::ExecuteJob|"
 msgid "Unknown status for the authentication procedure"
-msgstr ""
+msgstr "Neznano stanje overitvenega postopka"
 
 #: kauthexecutejob.cpp:149
 msgctxt "KAuth::ExecuteJob|"
@@ -75,11 +66,12 @@
 "The current backend only allows helper authorization, but this action does "
 "not have a helper."
 msgstr ""
+"Trenutno zaledje omogoča le pooblastitev pomagalnika, ki ga to dejanje nima."
 
 #: kauthexecutejob.cpp:157 kauthexecutejob.cpp:181
 msgctxt "KAuth::ExecuteJob|"
 msgid "The backend does not specify how to authorize"
-msgstr ""
+msgstr "To zaledje ne določa kako naj poteka pooblastitev"
 
 #~ msgctxt "NAME OF TRANSLATORS"
 #~ msgid "Your names"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kauth-4.100.0/po/sr/kauth5_qt.po 
new/kauth-5.0.0/po/sr/kauth5_qt.po
--- old/kauth-4.100.0/po/sr/kauth5_qt.po        2014-06-01 14:04:19.000000000 
+0200
+++ new/kauth-5.0.0/po/sr/kauth5_qt.po  2014-07-01 20:26:36.000000000 +0200
@@ -23,40 +23,40 @@
 "X-Wrapping: fine\n"
 
 # >! Unpuzzle.
-#: 
../../home/scripty/prod/git-unstable/frameworks_kauth/src/backends/dbus/DBusHelperProxy.cpp:76
+#: backends/dbus/DBusHelperProxy.cpp:76
 msgctxt "KAuth::DBusHelperProxy|"
 msgid "DBus Backend error: connection to helper failed. "
 msgstr "Грешка д‑бус позадине: пропала веза са помоћником. "
 
 # >! Unpuzzle.
-#: 
../../home/scripty/prod/git-unstable/frameworks_kauth/src/backends/dbus/DBusHelperProxy.cpp:94
+#: backends/dbus/DBusHelperProxy.cpp:94
 msgctxt "KAuth::DBusHelperProxy|"
 msgid "DBus Backend error: could not contact the helper. Connection error: "
 msgstr ""
 "Грешка д‑бус позадине: помоћник не може да се контактира. Грешка повезивања: "
 
 # >! Unpuzzle.
-#: 
../../home/scripty/prod/git-unstable/frameworks_kauth/src/backends/dbus/DBusHelperProxy.cpp:95
+#: backends/dbus/DBusHelperProxy.cpp:95
 msgctxt "KAuth::DBusHelperProxy|"
 msgid ". Message error: "
 msgstr ". Грешка поруке: "
 
-#: 
../../home/scripty/prod/git-unstable/frameworks_kauth/src/kauthexecutejob.cpp:88
+#: kauthexecutejob.cpp:88
 msgctxt "KAuth::ExecuteJob|"
 msgid "Tried to start an invalid action"
 msgstr "Покушано покретање лоше радње"
 
-#: 
../../home/scripty/prod/git-unstable/frameworks_kauth/src/kauthexecutejob.cpp:102
+#: kauthexecutejob.cpp:102
 msgctxt "KAuth::ExecuteJob|"
 msgid "Unknown execution mode chosen"
 msgstr "Изабран непознат режим извршавања"
 
-#: 
../../home/scripty/prod/git-unstable/frameworks_kauth/src/kauthexecutejob.cpp:140
+#: kauthexecutejob.cpp:140
 msgctxt "KAuth::ExecuteJob|"
 msgid "Unknown status for the authentication procedure"
 msgstr "Непознато стање за поступак аутентификације"
 
-#: 
../../home/scripty/prod/git-unstable/frameworks_kauth/src/kauthexecutejob.cpp:149
+#: kauthexecutejob.cpp:149
 msgctxt "KAuth::ExecuteJob|"
 msgid ""
 "The current backend only allows helper authorization, but this action does "
@@ -65,8 +65,7 @@
 "Тренутна позадина дозвољава само овлашћивање помоћником, али ова радња нема "
 "помоћник."
 
-#: 
../../home/scripty/prod/git-unstable/frameworks_kauth/src/kauthexecutejob.cpp:157
-#: 
../../home/scripty/prod/git-unstable/frameworks_kauth/src/kauthexecutejob.cpp:181
+#: kauthexecutejob.cpp:157 kauthexecutejob.cpp:181
 msgctxt "KAuth::ExecuteJob|"
 msgid "The backend does not specify how to authorize"
 msgstr "Позадина не наводи како се овлашћује"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kauth-4.100.0/po/sr@ijekavian/kauth5_qt.po 
new/kauth-5.0.0/po/sr@ijekavian/kauth5_qt.po
--- old/kauth-4.100.0/po/sr@ijekavian/kauth5_qt.po      2014-06-01 
14:04:19.000000000 +0200
+++ new/kauth-5.0.0/po/sr@ijekavian/kauth5_qt.po        2014-07-01 
20:26:36.000000000 +0200
@@ -22,40 +22,40 @@
 "X-Environment: kde\n"
 
 # >! Unpuzzle.
-#: 
../../home/scripty/prod/git-unstable/frameworks_kauth/src/backends/dbus/DBusHelperProxy.cpp:76
+#: backends/dbus/DBusHelperProxy.cpp:76
 msgctxt "KAuth::DBusHelperProxy|"
 msgid "DBus Backend error: connection to helper failed. "
 msgstr "Грешка д‑бус позадине: пропала веза са помоћником. "
 
 # >! Unpuzzle.
-#: 
../../home/scripty/prod/git-unstable/frameworks_kauth/src/backends/dbus/DBusHelperProxy.cpp:94
+#: backends/dbus/DBusHelperProxy.cpp:94
 msgctxt "KAuth::DBusHelperProxy|"
 msgid "DBus Backend error: could not contact the helper. Connection error: "
 msgstr ""
 "Грешка д‑бус позадине: помоћник не може да се контактира. Грешка повезивања: "
 
 # >! Unpuzzle.
-#: 
../../home/scripty/prod/git-unstable/frameworks_kauth/src/backends/dbus/DBusHelperProxy.cpp:95
+#: backends/dbus/DBusHelperProxy.cpp:95
 msgctxt "KAuth::DBusHelperProxy|"
 msgid ". Message error: "
 msgstr ". Грешка поруке: "
 
-#: 
../../home/scripty/prod/git-unstable/frameworks_kauth/src/kauthexecutejob.cpp:88
+#: kauthexecutejob.cpp:88
 msgctxt "KAuth::ExecuteJob|"
 msgid "Tried to start an invalid action"
 msgstr "Покушано покретање лоше радње"
 
-#: 
../../home/scripty/prod/git-unstable/frameworks_kauth/src/kauthexecutejob.cpp:102
+#: kauthexecutejob.cpp:102
 msgctxt "KAuth::ExecuteJob|"
 msgid "Unknown execution mode chosen"
 msgstr "Изабран непознат режим извршавања"
 
-#: 
../../home/scripty/prod/git-unstable/frameworks_kauth/src/kauthexecutejob.cpp:140
+#: kauthexecutejob.cpp:140
 msgctxt "KAuth::ExecuteJob|"
 msgid "Unknown status for the authentication procedure"
 msgstr "Непознато стање за поступак аутентификације"
 
-#: 
../../home/scripty/prod/git-unstable/frameworks_kauth/src/kauthexecutejob.cpp:149
+#: kauthexecutejob.cpp:149
 msgctxt "KAuth::ExecuteJob|"
 msgid ""
 "The current backend only allows helper authorization, but this action does "
@@ -64,8 +64,7 @@
 "Тренутна позадина дозвољава само овлашћивање помоћником, али ова радња нема "
 "помоћник."
 
-#: 
../../home/scripty/prod/git-unstable/frameworks_kauth/src/kauthexecutejob.cpp:157
-#: 
../../home/scripty/prod/git-unstable/frameworks_kauth/src/kauthexecutejob.cpp:181
+#: kauthexecutejob.cpp:157 kauthexecutejob.cpp:181
 msgctxt "KAuth::ExecuteJob|"
 msgid "The backend does not specify how to authorize"
 msgstr "Позадина не наводи како се овлашћује"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kauth-4.100.0/po/sr@ijekavianlatin/kauth5_qt.po 
new/kauth-5.0.0/po/sr@ijekavianlatin/kauth5_qt.po
--- old/kauth-4.100.0/po/sr@ijekavianlatin/kauth5_qt.po 2014-06-01 
14:04:19.000000000 +0200
+++ new/kauth-5.0.0/po/sr@ijekavianlatin/kauth5_qt.po   2014-07-01 
20:26:36.000000000 +0200
@@ -22,13 +22,13 @@
 "X-Environment: kde\n"
 
 # >! Unpuzzle.
-#: 
../../home/scripty/prod/git-unstable/frameworks_kauth/src/backends/dbus/DBusHelperProxy.cpp:76
+#: backends/dbus/DBusHelperProxy.cpp:76
 msgctxt "KAuth::DBusHelperProxy|"
 msgid "DBus Backend error: connection to helper failed. "
 msgstr "Greška D‑Bus pozadine: propala veza sa pomoćnikom. "
 
 # >! Unpuzzle.
-#: 
../../home/scripty/prod/git-unstable/frameworks_kauth/src/backends/dbus/DBusHelperProxy.cpp:94
+#: backends/dbus/DBusHelperProxy.cpp:94
 msgctxt "KAuth::DBusHelperProxy|"
 msgid "DBus Backend error: could not contact the helper. Connection error: "
 msgstr ""
@@ -36,27 +36,27 @@
 "povezivanja: "
 
 # >! Unpuzzle.
-#: 
../../home/scripty/prod/git-unstable/frameworks_kauth/src/backends/dbus/DBusHelperProxy.cpp:95
+#: backends/dbus/DBusHelperProxy.cpp:95
 msgctxt "KAuth::DBusHelperProxy|"
 msgid ". Message error: "
 msgstr ". Greška poruke: "
 
-#: 
../../home/scripty/prod/git-unstable/frameworks_kauth/src/kauthexecutejob.cpp:88
+#: kauthexecutejob.cpp:88
 msgctxt "KAuth::ExecuteJob|"
 msgid "Tried to start an invalid action"
 msgstr "Pokušano pokretanje loše radnje"
 
-#: 
../../home/scripty/prod/git-unstable/frameworks_kauth/src/kauthexecutejob.cpp:102
+#: kauthexecutejob.cpp:102
 msgctxt "KAuth::ExecuteJob|"
 msgid "Unknown execution mode chosen"
 msgstr "Izabran nepoznat režim izvršavanja"
 
-#: 
../../home/scripty/prod/git-unstable/frameworks_kauth/src/kauthexecutejob.cpp:140
+#: kauthexecutejob.cpp:140
 msgctxt "KAuth::ExecuteJob|"
 msgid "Unknown status for the authentication procedure"
 msgstr "Nepoznato stanje za postupak autentifikacije"
 
-#: 
../../home/scripty/prod/git-unstable/frameworks_kauth/src/kauthexecutejob.cpp:149
+#: kauthexecutejob.cpp:149
 msgctxt "KAuth::ExecuteJob|"
 msgid ""
 "The current backend only allows helper authorization, but this action does "
@@ -65,8 +65,7 @@
 "Trenutna pozadina dozvoljava samo ovlašćivanje pomoćnikom, ali ova radnja "
 "nema pomoćnik."
 
-#: 
../../home/scripty/prod/git-unstable/frameworks_kauth/src/kauthexecutejob.cpp:157
-#: 
../../home/scripty/prod/git-unstable/frameworks_kauth/src/kauthexecutejob.cpp:181
+#: kauthexecutejob.cpp:157 kauthexecutejob.cpp:181
 msgctxt "KAuth::ExecuteJob|"
 msgid "The backend does not specify how to authorize"
 msgstr "Pozadina ne navodi kako se ovlašćuje"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kauth-4.100.0/po/sr@latin/kauth5_qt.po 
new/kauth-5.0.0/po/sr@latin/kauth5_qt.po
--- old/kauth-4.100.0/po/sr@latin/kauth5_qt.po  2014-06-01 14:04:19.000000000 
+0200
+++ new/kauth-5.0.0/po/sr@latin/kauth5_qt.po    2014-07-01 20:26:36.000000000 
+0200
@@ -22,13 +22,13 @@
 "X-Environment: kde\n"
 
 # >! Unpuzzle.
-#: 
../../home/scripty/prod/git-unstable/frameworks_kauth/src/backends/dbus/DBusHelperProxy.cpp:76
+#: backends/dbus/DBusHelperProxy.cpp:76
 msgctxt "KAuth::DBusHelperProxy|"
 msgid "DBus Backend error: connection to helper failed. "
 msgstr "Greška D‑Bus pozadine: propala veza sa pomoćnikom. "
 
 # >! Unpuzzle.
-#: 
../../home/scripty/prod/git-unstable/frameworks_kauth/src/backends/dbus/DBusHelperProxy.cpp:94
+#: backends/dbus/DBusHelperProxy.cpp:94
 msgctxt "KAuth::DBusHelperProxy|"
 msgid "DBus Backend error: could not contact the helper. Connection error: "
 msgstr ""
@@ -36,27 +36,27 @@
 "povezivanja: "
 
 # >! Unpuzzle.
-#: 
../../home/scripty/prod/git-unstable/frameworks_kauth/src/backends/dbus/DBusHelperProxy.cpp:95
+#: backends/dbus/DBusHelperProxy.cpp:95
 msgctxt "KAuth::DBusHelperProxy|"
 msgid ". Message error: "
 msgstr ". Greška poruke: "
 
-#: 
../../home/scripty/prod/git-unstable/frameworks_kauth/src/kauthexecutejob.cpp:88
+#: kauthexecutejob.cpp:88
 msgctxt "KAuth::ExecuteJob|"
 msgid "Tried to start an invalid action"
 msgstr "Pokušano pokretanje loše radnje"
 
-#: 
../../home/scripty/prod/git-unstable/frameworks_kauth/src/kauthexecutejob.cpp:102
+#: kauthexecutejob.cpp:102
 msgctxt "KAuth::ExecuteJob|"
 msgid "Unknown execution mode chosen"
 msgstr "Izabran nepoznat režim izvršavanja"
 
-#: 
../../home/scripty/prod/git-unstable/frameworks_kauth/src/kauthexecutejob.cpp:140
+#: kauthexecutejob.cpp:140
 msgctxt "KAuth::ExecuteJob|"
 msgid "Unknown status for the authentication procedure"
 msgstr "Nepoznato stanje za postupak autentifikacije"
 
-#: 
../../home/scripty/prod/git-unstable/frameworks_kauth/src/kauthexecutejob.cpp:149
+#: kauthexecutejob.cpp:149
 msgctxt "KAuth::ExecuteJob|"
 msgid ""
 "The current backend only allows helper authorization, but this action does "
@@ -65,8 +65,7 @@
 "Trenutna pozadina dozvoljava samo ovlašćivanje pomoćnikom, ali ova radnja "
 "nema pomoćnik."
 
-#: 
../../home/scripty/prod/git-unstable/frameworks_kauth/src/kauthexecutejob.cpp:157
-#: 
../../home/scripty/prod/git-unstable/frameworks_kauth/src/kauthexecutejob.cpp:181
+#: kauthexecutejob.cpp:157 kauthexecutejob.cpp:181
 msgctxt "KAuth::ExecuteJob|"
 msgid "The backend does not specify how to authorize"
 msgstr "Pozadina ne navodi kako se ovlašćuje"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kauth-4.100.0/po/uk/kauth5_qt.po 
new/kauth-5.0.0/po/uk/kauth5_qt.po
--- old/kauth-4.100.0/po/uk/kauth5_qt.po        2014-06-01 14:04:19.000000000 
+0200
+++ new/kauth-5.0.0/po/uk/kauth5_qt.po  2014-07-01 20:26:36.000000000 +0200
@@ -1,5 +1,7 @@
-# translation of kdelibs4.po to Ukrainian
-# Translation of kdelibs4.po to Ukrainian
+# Translation of kauth5_qt.po to Ukrainian
+# Copyright (C) 2014 This_file_is_part_of_KDE
+# This file is distributed under the license LGPL version 2.1 or
+# version 3 or later versions approved by the membership of KDE e.V.
 #
 # Eugene Onischenko <[email protected]>, 2002, 2003, 2004, 2005, 2006.
 # Andriy Rysin <[email protected]>, 2002, 2003, 2006, 2007.
@@ -7,7 +9,7 @@
 # Yuri Chornoivan <[email protected]>, 2008, 2009, 2010, 2011, 2012, 2013, 2014.
 msgid ""
 msgstr ""
-"Project-Id-Version: kdelibs4\n"
+"Project-Id-Version: kauth5_qt\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2014-03-23 01:50+0000\n"
 "PO-Revision-Date: 2014-03-29 07:53+0200\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kauth-4.100.0/src/BackendsManager.cpp 
new/kauth-5.0.0/src/BackendsManager.cpp
--- old/kauth-4.100.0/src/BackendsManager.cpp   2014-06-01 14:04:19.000000000 
+0200
+++ new/kauth-5.0.0/src/BackendsManager.cpp     2014-07-01 20:26:36.000000000 
+0200
@@ -28,6 +28,7 @@
 #include <QPluginLoader>
 #include <QDir>
 #include <QDebug>
+#include <QCoreApplication>
 
 namespace KAuth
 {
@@ -39,35 +40,32 @@
 {
 }
 
-QList< QObject * > BackendsManager::retrieveInstancesIn(const QString &path)
+QList< QObject * > BackendsManager::retrieveInstancesIn(const QString &subdir)
 {
-    QDir pluginPath(path);
-
-    if (!pluginPath.exists()) {
-        return QList< QObject * >();
-    }
-
-    const QFileInfoList entryList = 
pluginPath.entryInfoList(QDir::NoDotAndDotDot | QDir::Files);
-
-    if (entryList.isEmpty()) {
-        return QList< QObject * >();
-    }
-
-    QList< QObject * > retlist;
-
-    Q_FOREACH (const QFileInfo &fi, entryList) {
-        QString filePath = fi.filePath(); // file name with path
-        QString fileName = fi.fileName(); // just file name
-
-        if (!QLibrary::isLibrary(filePath)) {
+    QList<QObject *> retlist;
+    foreach (const QString& pPath, QCoreApplication::libraryPaths()) {
+        QDir pluginPath(pPath + subdir);
+        if (!pluginPath.exists() || pPath.isEmpty()) {
             continue;
         }
 
-        QString errstr;
-        QPluginLoader loader(filePath);
-        QObject *instance = loader.instance();
-        if (instance) {
-            retlist.append(instance);
+        const QFileInfoList entryList = 
pluginPath.entryInfoList(QDir::NoDotAndDotDot | QDir::Files);
+
+        Q_FOREACH (const QFileInfo &fi, entryList) {
+            QString filePath = fi.filePath(); // file name with path
+            QString fileName = fi.fileName(); // just file name
+
+            if (!QLibrary::isLibrary(filePath)) {
+                continue;
+            }
+
+            QPluginLoader loader(filePath);
+            QObject *instance = loader.instance();
+            if (instance) {
+                retlist.append(instance);
+            } else {
+                qWarning() << "Couldn't load" << filePath << "error:" << 
loader.errorString();
+            }
         }
     }
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kauth-4.100.0/src/CMakeLists.txt 
new/kauth-5.0.0/src/CMakeLists.txt
--- old/kauth-4.100.0/src/CMakeLists.txt        2014-06-01 14:04:19.000000000 
+0200
+++ new/kauth-5.0.0/src/CMakeLists.txt  2014-07-01 20:26:36.000000000 +0200
@@ -73,9 +73,9 @@
     set_target_properties(kauth_backend_plugin PROPERTIES PREFIX "")
 
     install(TARGETS kauth_backend_plugin
-            LIBRARY DESTINATION ${KAUTH_BACKEND_PLUGIN_DIR}
-            ARCHIVE DESTINATION ${KAUTH_BACKEND_PLUGIN_DIR}
-            RUNTIME DESTINATION ${KAUTH_BACKEND_PLUGIN_DIR}
+            LIBRARY DESTINATION 
"${PLUGIN_INSTALL_DIR}/${KAUTH_BACKEND_PLUGIN_DIR}"
+            ARCHIVE DESTINATION 
"${PLUGIN_INSTALL_DIR}/${KAUTH_BACKEND_PLUGIN_DIR}"
+            RUNTIME DESTINATION 
"${PLUGIN_INSTALL_DIR}/${KAUTH_BACKEND_PLUGIN_DIR}"
     )
 endif ()
 
@@ -87,9 +87,9 @@
     target_link_libraries(kauth_helper_plugin PRIVATE 
${KAUTH_HELPER_BACKEND_LIBS})
     set_target_properties(kauth_helper_plugin PROPERTIES PREFIX "")
     install(TARGETS kauth_helper_plugin
-            LIBRARY DESTINATION ${KAUTH_HELPER_PLUGIN_DIR}
-            ARCHIVE DESTINATION ${KAUTH_HELPER_PLUGIN_DIR}
-            RUNTIME DESTINATION ${KAUTH_HELPER_PLUGIN_DIR}
+            LIBRARY DESTINATION 
"${PLUGIN_INSTALL_DIR}/${KAUTH_HELPER_PLUGIN_DIR}"
+            ARCHIVE DESTINATION 
"${PLUGIN_INSTALL_DIR}/${KAUTH_HELPER_PLUGIN_DIR}"
+            RUNTIME DESTINATION 
"${PLUGIN_INSTALL_DIR}/${KAUTH_HELPER_PLUGIN_DIR}"
     )
 endif ()
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kauth-4.100.0/src/ConfigureChecks.cmake 
new/kauth-5.0.0/src/ConfigureChecks.cmake
--- old/kauth-4.100.0/src/ConfigureChecks.cmake 2014-06-01 14:04:19.000000000 
+0200
+++ new/kauth-5.0.0/src/ConfigureChecks.cmake   2014-07-01 20:26:36.000000000 
+0200
@@ -268,12 +268,12 @@
     endif ()
   endmacro(_SET_FANCY)
 
-  _set_fancy(KAUTH_HELPER_PLUGIN_DIR "${PLUGIN_INSTALL_DIR}/kauth/helper" 
"Where KAuth's helper plugin will be installed")
-  _set_fancy(KAUTH_BACKEND_PLUGIN_DIR "${PLUGIN_INSTALL_DIR}/kauth/backend" 
"Where KAuth's backend plugin will be installed")
+  _set_fancy(KAUTH_HELPER_PLUGIN_DIR "kauth/helper" "Where KAuth's helper 
plugin will be installed")
+  _set_fancy(KAUTH_BACKEND_PLUGIN_DIR "kauth/backend" "Where KAuth's backend 
plugin will be installed")
   #set(KAUTH_OTHER_PLUGIN_DIR "${QT_PLUGINS_DIR}/kauth/plugins")
 else()
-  set(KAUTH_HELPER_PLUGIN_DIR "${PLUGIN_INSTALL_DIR}/kauth/helper")
-  set(KAUTH_BACKEND_PLUGIN_DIR "${PLUGIN_INSTALL_DIR}/kauth/backend")
+  set(KAUTH_HELPER_PLUGIN_DIR "kauth/helper")
+  set(KAUTH_BACKEND_PLUGIN_DIR "kauth/backend")
 endif()
 
 ## End

-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to