Hello community, here is the log from the commit of package kauth for openSUSE:Factory checked in at 2015-02-16 15:06:38 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 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 2015-01-29 12:52:57.000000000 +0100 +++ /work/SRC/openSUSE:Factory/.kauth.new/kauth.changes 2015-02-16 17:30:07.000000000 +0100 @@ -1,0 +2,8 @@ +Sun Feb 8 18:15:32 UTC 2015 - [email protected] + +- Update to 5.7.0 + * Fixed generation of KAuth DBus helper service files + * For more details please see: + https://www.kde.org/announcements/kde-frameworks-5.7.0.php + +------------------------------------------------------------------- Old: ---- kauth-5.6.0.tar.xz New: ---- kauth-5.7.0.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kauth.spec ++++++ --- /var/tmp/diff_new_pack.c9pkpH/_old 2015-02-16 17:30:07.000000000 +0100 +++ /var/tmp/diff_new_pack.c9pkpH/_new 2015-02-16 17:30:07.000000000 +0100 @@ -1,7 +1,7 @@ # # spec file for package kauth # -# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -17,12 +17,13 @@ %define lname libKF5Auth5 +%define _tar_path 5.7 Name: kauth -Version: 5.6.0 +Version: %{_tar_path}.0 Release: 0 %define kf5_version %{version} BuildRequires: cmake >= 2.8.12 -BuildRequires: extra-cmake-modules >= 1.6.0 +BuildRequires: extra-cmake-modules >= 1.7.0 BuildRequires: fdupes BuildRequires: kcoreaddons-devel >= %{kf5_version} BuildRequires: kf5-filesystem @@ -34,7 +35,7 @@ License: LGPL-2.1+ Group: System/GUI/KDE Url: http://www.kde.org -Source: http://download.kde.org/stable/frameworks/5.6/%{name}-%{version}.tar.xz +Source: http://download.kde.org/stable/frameworks/%{_tar_path}/%{name}-%{version}.tar.xz Source1: baselibs.conf BuildRoot: %{_tmppath}/%{name}-%{version}-build ++++++ kauth-5.6.0.tar.xz -> kauth-5.7.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kauth-5.6.0/CMakeLists.txt new/kauth-5.7.0/CMakeLists.txt --- old/kauth-5.6.0/CMakeLists.txt 2015-01-03 13:00:41.000000000 +0100 +++ new/kauth-5.7.0/CMakeLists.txt 2015-02-08 16:11:40.000000000 +0100 @@ -2,7 +2,7 @@ project(KAuth) -find_package(ECM 1.6.0 REQUIRED NO_MODULE) +find_package(ECM 1.7.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 "5.6.0") # handled by release scripts -set(KF5_DEP_VERSION "5.6.0") # handled by release scripts +set(KF5_VERSION "5.7.0") # handled by release scripts +set(KF5_DEP_VERSION "5.7.0") # handled by release scripts ecm_setup_version(${KF5_VERSION} VARIABLE_PREFIX KAUTH VERSION_HEADER "${CMAKE_CURRENT_BINARY_DIR}/kauth_version.h" @@ -30,7 +30,7 @@ find_package(KF5CoreAddons ${KF5_DEP_VERSION} REQUIRED) -set(KAUTH_HELPER_INSTALL_DIR "${LIBEXEC_INSTALL_DIR}/kauth") +set(KAUTH_HELPER_INSTALL_DIR "${KDE_INSTALL_LIBEXECDIR}/kauth") if (IS_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}/po") ecm_install_po_files_as_qm(po) @@ -40,7 +40,7 @@ add_subdirectory(autotests) # create a Config.cmake and a ConfigVersion.cmake file and install them -set(CMAKECONFIG_INSTALL_DIR "${CMAKECONFIG_INSTALL_PREFIX}/KF5Auth") +set(CMAKECONFIG_INSTALL_DIR "${KDE_INSTALL_CMAKEPACKAGEDIR}/KF5Auth") include(ECMPackageConfigHelpers) @@ -60,7 +60,7 @@ FILE KF5AuthTargets.cmake NAMESPACE KF5:: COMPONENT Devel) install(FILES ${CMAKE_CURRENT_BINARY_DIR}/kauth_version.h - DESTINATION ${KF5_INCLUDE_INSTALL_DIR} COMPONENT Devel ) + DESTINATION ${KDE_INSTALL_INCLUDEDIR_KF5} COMPONENT Devel ) feature_summary(WHAT ALL FATAL_ON_MISSING_REQUIRED_PACKAGES) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kauth-5.6.0/cmake/KF5AuthMacros.cmake new/kauth-5.7.0/cmake/KF5AuthMacros.cmake --- old/kauth-5.6.0/cmake/KF5AuthMacros.cmake 2015-01-03 13:00:41.000000000 +0100 +++ new/kauth-5.7.0/cmake/KF5AuthMacros.cmake 2015-02-08 16:11:40.000000000 +0100 @@ -18,7 +18,7 @@ install(FILES ${CMAKE_CURRENT_BINARY_DIR}/${HELPER_ID}.conf DESTINATION ${SYSCONF_INSTALL_DIR}/dbus-1/system.d/) - if(IS_ABSOLUTE KAUTH_HELPER_INSTALL_DIR) + if(IS_ABSOLUTE ${KAUTH_HELPER_INSTALL_DIR}) set(KAUTH_HELPER_INSTALL_ABSOLUTE_DIR ${KAUTH_HELPER_INSTALL_DIR}) else() set(KAUTH_HELPER_INSTALL_ABSOLUTE_DIR "${CMAKE_INSTALL_PREFIX}/${KAUTH_HELPER_INSTALL_DIR}") diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kauth-5.6.0/po/cs/kauth5_qt.po new/kauth-5.7.0/po/cs/kauth5_qt.po --- old/kauth-5.6.0/po/cs/kauth5_qt.po 2015-01-03 13:00:41.000000000 +0100 +++ new/kauth-5.7.0/po/cs/kauth5_qt.po 2015-02-08 16:11:40.000000000 +0100 @@ -1,7 +1,7 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # Lukáš Tinkl <[email protected]>, 2010, 2011, 2012. -# Vít Pelčák <[email protected]>, 2011, 2012, 2013, 2014. +# Vít Pelčák <[email protected]>, 2011, 2012, 2013, 2014, 2015. # Tomáš Chvátal <[email protected]>, 2012, 2013. # msgid "" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kauth-5.6.0/po/fi/kauth5_qt.po new/kauth-5.7.0/po/fi/kauth5_qt.po --- old/kauth-5.6.0/po/fi/kauth5_qt.po 2015-01-03 13:00:41.000000000 +0100 +++ new/kauth-5.7.0/po/fi/kauth5_qt.po 2015-02-08 16:11:40.000000000 +0100 @@ -29,7 +29,7 @@ "POT-Creation-Date: 2014-03-23 01:50+0000\n" "PO-Revision-Date: 2014-05-23 12:04+0300\n" "Last-Translator: Lasse Liehu <[email protected]>\n" -"Language-Team: Finnish <[email protected]>\n" +"Language-Team: Finnish <[email protected]>\n" "Language: fi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kauth-5.6.0/po/fr/kauth5_qt.po new/kauth-5.7.0/po/fr/kauth5_qt.po --- old/kauth-5.6.0/po/fr/kauth5_qt.po 2015-01-03 13:00:41.000000000 +0100 +++ new/kauth-5.7.0/po/fr/kauth5_qt.po 2015-02-08 16:11:40.000000000 +0100 @@ -24,15 +24,15 @@ "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" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Generator: Lokalize 1.5\n" "X-Environment: kde\n" "X-Accelerator-Marker: &\n" -"X-Text-Markup: kde4\n" +"X-Text-Markup: qtrich\n" "X-Qt-Contexts: true\n" #: backends/dbus/DBusHelperProxy.cpp:80 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kauth-5.6.0/po/it/kauth5_qt.po new/kauth-5.7.0/po/it/kauth5_qt.po --- old/kauth-5.6.0/po/it/kauth5_qt.po 2015-01-03 13:00:41.000000000 +0100 +++ new/kauth-5.7.0/po/it/kauth5_qt.po 2015-02-08 16:11:40.000000000 +0100 @@ -8,7 +8,7 @@ # Luciano Montanaro <[email protected]>, 2007. # Dario Panico <[email protected]>, 2008. # Pino Toscano <[email protected]>, 2008. -# Federico Zenith <[email protected]>, 2008, 2012, 2013, 2014. +# Federico Zenith <[email protected]>, 2008, 2012, 2013, 2014, 2015. # Innocenzo Ventre <[email protected]>, 2012. # Vincenzo Reale <[email protected]>, 2014. msgid "" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kauth-5.6.0/po/ko/kauth5_qt.po new/kauth-5.7.0/po/ko/kauth5_qt.po --- old/kauth-5.6.0/po/ko/kauth5_qt.po 2015-01-03 13:00:41.000000000 +0100 +++ new/kauth-5.7.0/po/ko/kauth5_qt.po 2015-02-08 16:11:40.000000000 +0100 @@ -1,15 +1,14 @@ # Korean messages for kdelibs. # Copyright (C) Free Software Foundation, Inc. -# # Cho Sung Jae <[email protected]>, 2007. -# Park Shinjo <[email protected]>, 2007, 2008, 2009, 2010, 2011. -# Park Shinjo <[email protected]>, 2011, 2012, 2013, 2014. +# Park Shinjo <[email protected]>, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015. +# 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: 2014-04-05 21:10+0900\n" +"PO-Revision-Date: 2015-01-18 17:05+0900\n" "Last-Translator: Park Shinjo <[email protected]>\n" "Language-Team: Korean <[email protected]>\n" "Language: ko\n" @@ -18,6 +17,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Lokalize 1.5\n" +"X-Qt-Contexts: true\n" #: backends/dbus/DBusHelperProxy.cpp:80 msgctxt "KAuth::DBusHelperProxy|" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kauth-5.6.0/po/lt/kauth5_qt.po new/kauth-5.7.0/po/lt/kauth5_qt.po --- old/kauth-5.6.0/po/lt/kauth5_qt.po 2015-01-03 13:00:41.000000000 +0100 +++ new/kauth-5.7.0/po/lt/kauth5_qt.po 2015-02-08 16:11:40.000000000 +0100 @@ -6,13 +6,13 @@ # Tomas Straupis <[email protected]>, 2011. # Remigijus Jarmalavičius <[email protected]>, 2011. # Liudas Ališauskas <[email protected]>, 2011, 2012, 2013, 2014. -# Liudas Alisauskas <[email protected]>, 2013. +# Liudas Alisauskas <[email protected]>, 2013, 2015. 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: 2014-12-18 20:29+0200\n" +"PO-Revision-Date: 2015-01-10 09:38+0200\n" "Last-Translator: Liudas Ališauskas <[email protected]>\n" "Language-Team: Lithuanian <[email protected]>\n" "Language: lt\n" @@ -48,12 +48,12 @@ #: kauthexecutejob.cpp:102 msgctxt "KAuth::ExecuteJob|" msgid "Unknown execution mode chosen" -msgstr "" +msgstr "Pasirinktas nežinomas vykdymo režimas" #: kauthexecutejob.cpp:140 msgctxt "KAuth::ExecuteJob|" msgid "Unknown status for the authentication procedure" -msgstr "" +msgstr "Nežinoma autentikacijos procedūros būsena" #: kauthexecutejob.cpp:149 msgctxt "KAuth::ExecuteJob|" @@ -61,8 +61,10 @@ "The current backend only allows helper authorization, but this action does " "not have a helper." msgstr "" +"Ši programinė sąsaja leidžia prieigos teises tik pagalbininkams, bet šis " +"veiksmas neturi pagalbininko." #: kauthexecutejob.cpp:157 kauthexecutejob.cpp:181 msgctxt "KAuth::ExecuteJob|" msgid "The backend does not specify how to authorize" -msgstr "" +msgstr "Sistema nenurodo kaip autorizuotis" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kauth-5.6.0/po/nb/kauth5_qt.po new/kauth-5.7.0/po/nb/kauth5_qt.po --- old/kauth-5.6.0/po/nb/kauth5_qt.po 2015-01-03 13:00:41.000000000 +0100 +++ new/kauth-5.7.0/po/nb/kauth5_qt.po 2015-02-08 16:11:40.000000000 +0100 @@ -1,4 +1,4 @@ -# Translation of kdelibs4 to Norwegian Bokmål +# Translation of kauth5_qt to Norwegian Bokmål # # Knut Yrvin <[email protected]>, 2002, 2003, 2004, 2005. # Bjørn Steensrud <[email protected]>, 2002, 2003, 2004, 2005, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014. @@ -23,7 +23,7 @@ "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Environment: kde\n" "X-Accelerator-Marker: &\n" -"X-Text-Markup: kde4\n" +"X-Text-Markup: qtrich\n" "X-Qt-Contexts: true\n" #: backends/dbus/DBusHelperProxy.cpp:80 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kauth-5.6.0/po/nn/kauth5_qt.po new/kauth-5.7.0/po/nn/kauth5_qt.po --- old/kauth-5.6.0/po/nn/kauth5_qt.po 2015-01-03 13:00:41.000000000 +0100 +++ new/kauth-5.7.0/po/nn/kauth5_qt.po 2015-02-08 16:11:40.000000000 +0100 @@ -1,4 +1,4 @@ -# Translation of kdelibs4 to Norwegian Nynorsk +# Translation of kauth5_qt to Norwegian Nynorsk # # Gaute Hvoslef Kvalnes <[email protected]>, 2003, 2004, 2005, 2006. # Håvard Korsvoll <[email protected]>, 2003, 2005. @@ -20,7 +20,7 @@ "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Environment: kde\n" "X-Accelerator-Marker: &\n" -"X-Text-Markup: kde4\n" +"X-Text-Markup: qtrich\n" "X-Qt-Contexts: true\n" #: backends/dbus/DBusHelperProxy.cpp:80 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kauth-5.6.0/po/se/kauth5_qt.po new/kauth-5.7.0/po/se/kauth5_qt.po --- old/kauth-5.6.0/po/se/kauth5_qt.po 2015-01-03 13:00:41.000000000 +0100 +++ new/kauth-5.7.0/po/se/kauth5_qt.po 2015-02-08 16:11:40.000000000 +0100 @@ -1,4 +1,4 @@ -# Translation of kdelibs4 to Northern Sami +# Translation of kauth5_qt to Northern Sami # # Børre Gaup <[email protected]>, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012. msgid "" @@ -17,7 +17,7 @@ "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Environment: kde\n" "X-Accelerator-Marker: &\n" -"X-Text-Markup: kde4\n" +"X-Text-Markup: qtrich\n" "X-Qt-Contexts: true\n" #: backends/dbus/DBusHelperProxy.cpp:80 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kauth-5.6.0/po/sr/kauth5_qt.po new/kauth-5.7.0/po/sr/kauth5_qt.po --- old/kauth-5.6.0/po/sr/kauth5_qt.po 2015-01-03 13:00:41.000000000 +0100 +++ new/kauth-5.7.0/po/sr/kauth5_qt.po 2015-02-08 16:11:40.000000000 +0100 @@ -1,7 +1,7 @@ # Translation of kdelibs4.po into Serbian. # Marko Rosic <[email protected]>, 2003. # Toplica Tanaskovic <[email protected]>, 2003, 2004, 2005. -# Chusslove Illich <[email protected]>, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014. +# Chusslove Illich <[email protected]>, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015. # Dalibor Djuric <[email protected]>, 2009, 2010, 2011. msgid "" msgstr "" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kauth-5.6.0/po/sr@ijekavian/kauth5_qt.po new/kauth-5.7.0/po/sr@ijekavian/kauth5_qt.po --- old/kauth-5.6.0/po/sr@ijekavian/kauth5_qt.po 2015-01-03 13:00:41.000000000 +0100 +++ new/kauth-5.7.0/po/sr@ijekavian/kauth5_qt.po 2015-02-08 16:11:40.000000000 +0100 @@ -1,7 +1,7 @@ # Translation of kdelibs4.po into Serbian. # Marko Rosic <[email protected]>, 2003. # Toplica Tanaskovic <[email protected]>, 2003, 2004, 2005. -# Chusslove Illich <[email protected]>, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014. +# Chusslove Illich <[email protected]>, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015. # Dalibor Djuric <[email protected]>, 2009, 2010, 2011. msgid "" msgstr "" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kauth-5.6.0/po/sr@ijekavianlatin/kauth5_qt.po new/kauth-5.7.0/po/sr@ijekavianlatin/kauth5_qt.po --- old/kauth-5.6.0/po/sr@ijekavianlatin/kauth5_qt.po 2015-01-03 13:00:41.000000000 +0100 +++ new/kauth-5.7.0/po/sr@ijekavianlatin/kauth5_qt.po 2015-02-08 16:11:40.000000000 +0100 @@ -1,7 +1,7 @@ # Translation of kdelibs4.po into Serbian. # Marko Rosic <[email protected]>, 2003. # Toplica Tanaskovic <[email protected]>, 2003, 2004, 2005. -# Chusslove Illich <[email protected]>, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014. +# Chusslove Illich <[email protected]>, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015. # Dalibor Djuric <[email protected]>, 2009, 2010, 2011. msgid "" msgstr "" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kauth-5.6.0/po/sr@latin/kauth5_qt.po new/kauth-5.7.0/po/sr@latin/kauth5_qt.po --- old/kauth-5.6.0/po/sr@latin/kauth5_qt.po 2015-01-03 13:00:41.000000000 +0100 +++ new/kauth-5.7.0/po/sr@latin/kauth5_qt.po 2015-02-08 16:11:40.000000000 +0100 @@ -1,7 +1,7 @@ # Translation of kdelibs4.po into Serbian. # Marko Rosic <[email protected]>, 2003. # Toplica Tanaskovic <[email protected]>, 2003, 2004, 2005. -# Chusslove Illich <[email protected]>, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014. +# Chusslove Illich <[email protected]>, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015. # Dalibor Djuric <[email protected]>, 2009, 2010, 2011. msgid "" msgstr "" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kauth-5.6.0/src/CMakeLists.txt new/kauth-5.7.0/src/CMakeLists.txt --- old/kauth-5.6.0/src/CMakeLists.txt 2015-01-03 13:00:41.000000000 +0100 +++ new/kauth-5.7.0/src/CMakeLists.txt 2015-02-08 16:11:40.000000000 +0100 @@ -27,7 +27,7 @@ generate_export_header(KF5Auth BASE_NAME KAuth) add_library(KF5::Auth ALIAS KF5Auth) -target_include_directories(KF5Auth INTERFACE "$<INSTALL_INTERFACE:${KF5_INCLUDE_INSTALL_DIR}/KAuth>") +target_include_directories(KF5Auth INTERFACE "$<INSTALL_INTERFACE:${KDE_INSTALL_INCLUDEDIR_KF5}/KAuth>") target_link_libraries(KF5Auth PUBLIC Qt5::Core KF5::CoreAddons) # for KJob target_link_libraries(KF5Auth PRIVATE Qt5::Widgets Qt5::DBus) @@ -73,9 +73,9 @@ set_target_properties(kauth_backend_plugin PROPERTIES PREFIX "") install(TARGETS kauth_backend_plugin - 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}" + LIBRARY DESTINATION "${KDE_INSTALL_PLUGINDIR}/${KAUTH_BACKEND_PLUGIN_DIR}" + ARCHIVE DESTINATION "${KDE_INSTALL_PLUGINDIR}/${KAUTH_BACKEND_PLUGIN_DIR}" + RUNTIME DESTINATION "${KDE_INSTALL_PLUGINDIR}/${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 "${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}" + LIBRARY DESTINATION "${KDE_INSTALL_PLUGINDIR}/${KAUTH_HELPER_PLUGIN_DIR}" + ARCHIVE DESTINATION "${KDE_INSTALL_PLUGINDIR}/${KAUTH_HELPER_PLUGIN_DIR}" + RUNTIME DESTINATION "${KDE_INSTALL_PLUGINDIR}/${KAUTH_HELPER_PLUGIN_DIR}" ) endif () @@ -98,7 +98,7 @@ install(FILES ${CMAKE_CURRENT_BINARY_DIR}/kauth_export.h ${KAuth_HEADERS} - DESTINATION ${KF5_INCLUDE_INSTALL_DIR}/KAuth COMPONENT Devel + DESTINATION ${KDE_INSTALL_INCLUDEDIR_KF5}/KAuth COMPONENT Devel ) # TODO: Remove once we depend on polkit-qt1 > 0.99.0 @@ -109,5 +109,5 @@ string(REPLACE "-pedantic" "" CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}") include(ECMGeneratePriFile) -ecm_generate_pri_file(BASE_NAME KAuth LIB_NAME KF5Auth DEPS "core KCoreAddons" FILENAME_VAR PRI_FILENAME INCLUDE_INSTALL_DIR ${KF5_INCLUDE_INSTALL_DIR}/KAuth) +ecm_generate_pri_file(BASE_NAME KAuth LIB_NAME KF5Auth DEPS "core KCoreAddons" FILENAME_VAR PRI_FILENAME INCLUDE_INSTALL_DIR ${KDE_INSTALL_INCLUDEDIR_KF5}/KAuth) install(FILES ${PRI_FILENAME} DESTINATION ${ECM_MKSPECS_INSTALL_DIR}) -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
