Index: head/Mk/Uses/kde.mk =================================================================== --- head/Mk/Uses/kde.mk (revision 497580) +++ head/Mk/Uses/kde.mk (revision 497581) @@ -1,865 +1,865 @@ # $FreeBSD$ # # Provides support for KDE and KF5-based ports. # # Feature: kde # Valid ARGS: 5 # # 5: Depend on KDE Frameworks 5 components and variables. # # Variables that can be set by a port: # # USE_KDE List of KF5/Plasma5 components (other ports) that this # port depends on. # * foo_build Add a build-time dependency (BUILD_DEPENDS) # * foo_run Add a run-time dependency (RUN_DEPENDS) # * foo (default) Add both dependencies on component , or # a LIB_DEPENDS if applicable. # # To simplify the ports, also: # CATEGORIES If the port is part of one of the KDE Software distribution, # it can add, in addition to 'kde' one of the following: # kde-application: part of applications release # kde-frameworks: part of frameworks release # kde-plasma: part of plasma release # this will then set default values for MASTER_SITES and DIST_SUBDIR # as well as CPE_VENDOR and LICENSE. # # MAINTAINER: kde@FreeBSD.org .if !defined(_INCLUDE_USES_KDE_MK) _INCLUDE_USES_KDE_MK= yes _KDE_SUPPORTED= 5 . if empty(kde_ARGS) IGNORE= kde needs a version (${_KDE_SUPPORTED}) . endif . for ver in ${_KDE_SUPPORTED:O:u} . if ${kde_ARGS:M${ver}} . if !defined(_KDE_VERSION) _KDE_VERSION= ${ver} . else IGNORE?= cannot be installed: different KDE versions specified via kde:[${_KDE_SUPPORTED:S/ //g}] #' . endif . endif . endfor . if empty(_KDE_VERSION) IGNORE?= kde:[${_KDE_SUPPORTED:S/ //g}] needs an argument #' . else _KDE_RELNAME= KDE${_KDE_VERSION} # === VERSIONS OF THE DIFFERENT COMPONENTS ===================================== # Current KDE desktop. -KDE_PLASMA_VERSION?= 5.15.3 +KDE_PLASMA_VERSION?= 5.15.4 KDE_PLASMA_BRANCH?= stable # Current KDE frameworks. KDE_FRAMEWORKS_VERSION?= 5.56.0 KDE_FRAMEWORKS_BRANCH?= stable # Current KDE applications. KDE_APPLICATIONS_VERSION?= 18.12.3 KDE_APPLICATIONS_SHLIB_VER?= 5.10.3 KDE_APPLICATIONS_BRANCH?= stable # Upstream moves old software to Attic/. Specify the newest applications release there. # Only the major version is used for the comparison. _KDE_APPLICATIONS_ATTIC_VERSION= 17.08.3 # Extended KDE universe applications. CALLIGRA_VERSION?= 2.9.11 CALLIGRA_BRANCH?= stable # ============================================================================== # === INSTALLATION PREFIXES AND HEADER LOCATION ================================ # Define unversioned prefix variable. KDE_PREFIX= ${LOCALBASE} # ============================================================================== # === CATEGORIES HANDLING -- SETTING DEFAULT VALUES ============================ # Doing MASTER_SITES magic based on the category of the port _KDE_CATEGORIES_SUPPORTED= kde-applications kde-frameworks kde-plasma . for cat in ${_KDE_CATEGORIES_SUPPORTED} . if ${CATEGORIES:M${cat}} . if !defined(_KDE_CATEGORY) _KDE_CATEGORY= ${cat} . else IGNORE?= cannot be installed: multiple kde-<...> categories specified via CATEGORIES=${CATEGORIES} #' . endif . endif . endfor . if defined(_KDE_CATEGORY) # KDE is normally licensed under the LGPL 2.0. LICENSE?= LGPL20 # Set CPE Vendor Information # As _KDE_CATEGORY is set we can assume it is port release by KDE and the # vendor is therefore kde. CPE_VENDOR?= kde . if ${_KDE_CATEGORY:Mkde-applications} PORTVERSION?= ${KDE_APPLICATIONS_VERSION} # Decide where the file lies on KDE's servers: Check whether the file lies in Attic . if ${KDE_APPLICATIONS_VERSION:R:R} <= ${_KDE_APPLICATIONS_ATTIC_VERSION:R:R} MASTER_SITES?= KDE/Attic/applications/${KDE_APPLICATIONS_VERSION}/src . else MASTER_SITES?= KDE/${KDE_APPLICATIONS_BRANCH}/applications/${KDE_APPLICATIONS_VERSION}/src # Let bsd.port.mk create the plist-entries for the documentation. # KDE Applications ports install their documentation to # ${PREFIX}/share/doc. DOCSDIR= ${PREFIX}/share/doc PORTDOCS?= HTML/* # Further pass along a SHLIB_VER PLIST_SUB PLIST_SUB+= KDE_APPLICATIONS_SHLIB_VER=${KDE_APPLICATIONS_SHLIB_VER} \ KDE_APPLICATIONS_VERSION_SHORT="${KDE_APPLICATIONS_VERSION:R:R}" . endif DIST_SUBDIR?= KDE/applications/${KDE_APPLICATIONS_VERSION} . elif ${_KDE_CATEGORY:Mkde-plasma} PORTVERSION?= ${KDE_PLASMA_VERSION} PKGNAMEPREFIX?= plasma5- MASTER_SITES?= KDE/${KDE_PLASMA_BRANCH}/plasma/${KDE_PLASMA_VERSION} DIST_SUBDIR?= KDE/plasma/${KDE_PLASMA_VERSION} . elif ${_KDE_CATEGORY:Mkde-frameworks} PORTVERSION?= ${KDE_FRAMEWORKS_VERSION} PKGNAMEPREFIX?= kf5- # This is a slight duplication of _USE_FRAMEWORKS_PORTING -- it maybe would be # better to rely on ${_USE_FRAMEWORKS_PORTING:S/^/k/g} _PORTINGAIDS= kjs kjsembed kdelibs4support khtml kmediaplayer kross . if ${_PORTINGAIDS:M*${PORTNAME}*} MASTER_SITES?= KDE/${KDE_FRAMEWORKS_BRANCH}/frameworks/${KDE_FRAMEWORKS_VERSION:R}/portingAids . else MASTER_SITES?= KDE/${KDE_FRAMEWORKS_BRANCH}/frameworks/${KDE_FRAMEWORKS_VERSION:R} . endif DIST_SUBDIR?= KDE/frameworks/${KDE_FRAMEWORKS_VERSION} . else IGNORE?= unknown CATEGORY value '${_KDE_CATEGORY}' #' . endif . endif #defined(_KDE_CATEGORY) # ============================================================================== # ==== SETUP CMAKE ENVIRONMENT ================================================= # Help cmake to find files when testing ports with non-default PREFIX. CMAKE_ARGS+= -DCMAKE_PREFIX_PATH="${LOCALBASE}" . if ${_KDE_VERSION:M*5*} # We set KDE_INSTALL_USE_QT_SYS_PATHS to install mkspecs files, plugins and # imports to the Qt 5 install directory. CMAKE_ARGS+= -DBUILD_TESTING:BOOL=OFF \ -DCMAKE_MODULE_PATH="${LOCALBASE};${KDE_PREFIX}" \ -DCMAKE_INSTALL_PREFIX="${KDE_PREFIX}" \ -DKDE_INSTALL_USE_QT_SYS_PATHS:BOOL=TRUE . endif # Set man-page installation prefix. CMAKE_ARGS+= -DKDE_INSTALL_MANDIR:PATH="${KDE_PREFIX}/man" \ -DMAN_INSTALL_DIR:PATH="${KDE_PREFIX}/man" # ============================================================================== # === SET-UP PLIST_SUB ========================================================= # Prefix and include directory. PLIST_SUB+= KDE_PREFIX="${KDE_PREFIX}" # KDE Applications version. PLIST_SUB+= KDE_APPLICATIONS_VERSION="${KDE_APPLICATIONS_VERSION}" . if ${_KDE_VERSION:M*5*} PLIST_SUB+= KDE_PLASMA_VERSION="${KDE_PLASMA_VERSION}" \ KDE_FRAMEWORKS_VERSION="${KDE_FRAMEWORKS_VERSION}" . endif # ============================================================================== # === HANDLE PYTHON ============================================================ # TODO: Keep in sync with cmake/modules/PythonMacros.cmake _PYTHON_SHORT_VER= ${PYTHON_VERSION:S/^python//:S/.//} . if ${_PYTHON_SHORT_VER} > 31 PLIST_SUB+= PYCACHE="__pycache__/" \ PYC_SUFFIX=cpython-${_PYTHON_SHORT_VER}.pyc \ PYO_SUFFIX=cpython-${_PYTHON_SHORT_VER}.pyo . else PLIST_SUB+= PYCACHE="" \ PYC_SUFFIX=pyc \ PYO_SUFFIX=pyo . endif # ============================================================================== _USE_KDE_BOTH= akonadi attica libkcddb libkcompactdisc libkdcraw libkdegames \ libkeduvocdocument libkexiv2 libkipi libksane okular \ baloo baloo-widgets kate marble # List of components of the KDE Frameworks distribution. # The *_TIER variables are internal, primarily for checking # that our list of frameworks matches the structure offered upstream. _USE_FRAMEWORKS_TIER1= apidox archive attica5 breeze-icons codecs config \ coreaddons dbusaddons dnssd holidays i18n idletime itemmodels \ itemviews kirigami2 oxygen-icons5 plotting prison \ qqc2-desktop-style solid sonnet syntaxhighlighting \ threadweaver wayland widgetsaddons windowsystem # NOT LISTED TIER1: modemmanagerqt networkmanagerqt (not applicable) _USE_FRAMEWORKS_TIER2= auth completion crash doctools \ filemetadata kimageformats jobwidgets notifications \ package pty syndication unitconversion _USE_FRAMEWORKS_TIER3= activities activities-stats baloo5 bookmarks configwidgets \ designerplugin emoticons globalaccel guiaddons \ iconthemes init kcmutils kdeclarative \ kded kdesu kdewebkit kio newstuff notifyconfig parts \ people plasma-framework purpose runner service texteditor \ textwidgets wallet xmlgui xmlrpcclient _USE_FRAMEWORKS_TIER4= frameworkintegration # Porting Aids frameworks provide code and utilities to ease the transition from # kdelibs 4 to KDE Frameworks 5. Code should aim to port away from this framework, # new projects should avoid using these libraries. _USE_FRAMEWORKS_PORTING=js jsembed kdelibs4support khtml mediaplayer kross _USE_FRAMEWORKS_ALL= ecm \ ${_USE_FRAMEWORKS_TIER1} \ ${_USE_FRAMEWORKS_TIER2} \ ${_USE_FRAMEWORKS_TIER3} \ ${_USE_FRAMEWORKS_TIER4} \ ${_USE_FRAMEWORKS_PORTING} \ ${_USE_FRAMEWORKS_EXTRA} # List of components of the KDE Plasma distribution. _USE_PLASMA_ALL= activitymanagerd breeze breeze-gtk \ decoration discover drkonqi hotkeys \ infocenter kde-cli-tools kde-gtk-config \ kdeplasma-addons kgamma5 kmenuedit kscreen \ kscreenlocker ksshaskpass ksysguard kwallet-pam \ kwayland-integration kwin kwrited libkscreen \ libksysguard milou oxygen plasma-browser-integration \ plasma-desktop plasma-integration plasma-pa \ plasma-sdk plasma-workspace plasma-workspace-wallpapers \ polkit-kde-agent-1 powerdevil systemsettings \ user-manager # List of components of the KDE PIM distribution (part of applications). _USE_KDEPIM5_ALL= akonadicontacts akonadiimportwizard akonadimime akonadinotes \ akonadicalendar akonadisearch alarmcalendar \ blog calendarcore calendarsupport calendarutils \ contacts eventviews gapi grantleetheme \ gravatar identitymanagement imap \ incidenceeditor kdepim-addons kdepim-apps-libs \ kdepim-runtime5 kitinerary kontactinterface kpimdav kpkpass \ ksmtp ldap libkdepim libkleo libksieve mailcommon \ mailimporter mailtransport mbox messagelib \ mime pimcommon pimtextedit tnef \ kalarm kontact kmail mbox-importer \ akonadiconsole akregator grantlee-editor kaddressbook \ kalarm kmail-account-wizard kmail knotes kontact \ korganizer pim-data-exporter _USE_KDE5_ALL= ${_USE_FRAMEWORKS_ALL} \ ${_USE_PLASMA_ALL} \ ${_USE_KDEPIM5_ALL} \ ${_USE_KDE_BOTH} # ====================== frameworks components ================================= kde-activities_PORT= x11/kf5-kactivities kde-activities_LIB= libKF5Activities.so kde-activities-stats_PORT= x11/kf5-kactivities-stats kde-activities-stats_LIB= libKF5ActivitiesStats.so kde-apidox_PORT= devel/kf5-kapidox kde-apidox_PATH= ${KDE_PREFIX}/bin/kapidox_generate kde-apidox_TYPE= run kde-archive_PORT= archivers/kf5-karchive kde-archive_LIB= libKF5Archive.so kde-attica5_PORT= x11-toolkits/kf5-attica kde-attica5_LIB= libKF5Attica.so kde-auth_PORT= devel/kf5-kauth kde-auth_LIB= libKF5Auth.so kde-baloo5_PORT= sysutils/kf5-baloo kde-baloo5_LIB= libKF5Baloo.so kde-bookmarks_PORT= devel/kf5-kbookmarks kde-bookmarks_LIB= libKF5Bookmarks.so kde-breeze-icons_PORT= x11-themes/kf5-breeze-icons kde-breeze-icons_PATH= ${KDE_PREFIX}/share/icons/breeze/index.theme kde-breeze-icons_TYPE= run kde-codecs_PORT= textproc/kf5-kcodecs kde-codecs_LIB= libKF5Codecs.so kde-completion_PORT= x11-toolkits/kf5-kcompletion kde-completion_LIB= libKF5Completion.so kde-config_PORT= devel/kf5-kconfig kde-config_LIB= libKF5ConfigCore.so kde-configwidgets_PORT= x11-toolkits/kf5-kconfigwidgets kde-configwidgets_LIB= libKF5ConfigWidgets.so kde-coreaddons_PORT= devel/kf5-kcoreaddons kde-coreaddons_LIB= libKF5CoreAddons.so kde-crash_PORT= devel/kf5-kcrash kde-crash_LIB= libKF5Crash.so kde-dbusaddons_PORT= devel/kf5-kdbusaddons kde-dbusaddons_LIB= libKF5DBusAddons.so kde-designerplugin_PORT= x11-toolkits/kf5-kdesignerplugin kde-designerplugin_PATH= ${QT_PLUGINDIR}/designer/kf5widgets.so kde-designerplugin_TYPE= run kde-dnssd_PORT= dns/kf5-kdnssd kde-dnssd_LIB= libKF5DNSSD.so kde-doctools_PORT= devel/kf5-kdoctools kde-doctools_PATH= ${KDE_PREFIX}/bin/meinproc5 kde-ecm_PORT= devel/kf5-extra-cmake-modules kde-ecm_PATH= ${LOCALBASE}/share/ECM/cmake/ECMConfig.cmake kde-emoticons_PORT= x11-themes/kf5-kemoticons kde-emoticons_LIB= libKF5Emoticons.so kde-filemetadata_PORT= devel/kf5-kfilemetadata kde-filemetadata_LIB= libKF5FileMetaData.so kde-frameworkintegration_PORT= x11/kf5-frameworkintegration kde-frameworkintegration_LIB= libKF5Style.so kde-globalaccel_PORT= x11/kf5-kglobalaccel kde-globalaccel_LIB= libKF5GlobalAccel.so kde-guiaddons_PORT= x11-toolkits/kf5-kguiaddons kde-guiaddons_LIB= libKF5GuiAddons.so kde-holidays_PORT= net/kf5-kholidays kde-holidays_LIB= libKF5Holidays.so kde-i18n_PORT= devel/kf5-ki18n kde-i18n_LIB= libKF5I18n.so kde-iconthemes_PORT= x11-themes/kf5-kiconthemes kde-iconthemes_LIB= libKF5IconThemes.so kde-idletime_PORT= devel/kf5-kidletime kde-idletime_LIB= libKF5IdleTime.so kde-init_PORT= x11/kf5-kinit kde-init_PATH= ${KDE_PREFIX}/bin/kdeinit5 kde-itemmodels_PORT= devel/kf5-kitemmodels kde-itemmodels_LIB= libKF5ItemModels.so kde-itemviews_PORT= x11-toolkits/kf5-kitemviews kde-itemviews_LIB= libKF5ItemViews.so kde-jobwidgets_PORT= x11-toolkits/kf5-kjobwidgets kde-jobwidgets_LIB= libKF5JobWidgets.so kde-js_PORT= www/kf5-kjs kde-js_LIB= libKF5JS.so kde-jsembed_PORT= www/kf5-kjsembed kde-jsembed_LIB= libKF5JsEmbed.so kde-kcmutils_PORT= devel/kf5-kcmutils kde-kcmutils_LIB= libKF5KCMUtils.so kde-kdeclarative_PORT= devel/kf5-kdeclarative kde-kdeclarative_LIB= libKF5Declarative.so kde-kded_PORT= x11/kf5-kded kde-kded_LIB= libkdeinit5_kded5.so kde-kdelibs4support_PORT= x11/kf5-kdelibs4support kde-kdelibs4support_LIB= libKF5KDELibs4Support.so kde-kdesu_PORT= security/kf5-kdesu kde-kdesu_LIB= libKF5Su.so kde-kdewebkit_PORT= www/kf5-kdewebkit kde-kdewebkit_LIB= libKF5WebKit.so kde-khtml_PORT= www/kf5-khtml kde-khtml_LIB= libKF5KHtml.so kde-kimageformats_PORT= graphics/kf5-kimageformats kde-kimageformats_PATH= ${QT_PLUGINDIR}/imageformats/kimg_xcf.so kde-kimageformats_TYPE= run kde-kio_PORT= devel/kf5-kio kde-kio_LIB= libKF5KIOCore.so kde-kirigami2_PORT= x11-toolkits/kf5-kirigami2 kde-kirigami2_PATH= ${QT_QMLDIR}/org/kde/kirigami.2/libkirigamiplugin.so kde-kross_PORT= lang/kf5-kross kde-kross_LIB= libKF5KrossCore.so kde-mediaplayer_PORT= multimedia/kf5-kmediaplayer kde-mediaplayer_LIB= libKF5MediaPlayer.so.5 kde-newstuff_PORT= devel/kf5-knewstuff kde-newstuff_LIB= libKF5NewStuff.so kde-notifications_PORT= devel/kf5-knotifications kde-notifications_LIB= libKF5Notifications.so kde-notifyconfig_PORT= devel/kf5-knotifyconfig kde-notifyconfig_LIB= libKF5NotifyConfig.so kde-oxygen-icons5_PORT= x11-themes/kf5-oxygen-icons5 kde-oxygen-icons5_PATH= ${KDE_PREFIX}/share/icons/oxygen/index.theme kde-oxygen-icons5_TYPE= run kde-package_PORT= devel/kf5-kpackage kde-package_LIB= libKF5Package.so kde-parts_PORT= devel/kf5-kparts kde-parts_LIB= libKF5Parts.so kde-people_PORT= devel/kf5-kpeople kde-people_LIB= libKF5People.so kde-plasma-framework_PORT= x11/kf5-plasma-framework kde-plasma-framework_LIB= libKF5Plasma.so kde-plotting_PORT= graphics/kf5-kplotting kde-plotting_LIB= libKF5Plotting.so kde-prison_PORT= graphics/kf5-prison kde-prison_LIB= libKF5Prison.so kde-pty_PORT= devel/kf5-kpty kde-pty_LIB= libKF5Pty.so kde-purpose_PORT= misc/kf5-purpose kde-purpose_LIB= libKF5Purpose.so kde-qqc2-desktop-style_PORT= x11-themes/kf5-qqc2-desktop-style kde-qqc2-desktop-style_PATH= ${QT_PLUGINDIR}/kf5/kirigami/org.kde.desktop.so kde-runner_PORT= x11/kf5-krunner kde-runner_LIB= libKF5Runner.so kde-service_PORT= devel/kf5-kservice kde-service_PATH= ${KDE_PREFIX}/bin/kbuildsycoca5 kde-solid_PORT= devel/kf5-solid kde-solid_LIB= libKF5Solid.so kde-sonnet_PORT= textproc/kf5-sonnet kde-sonnet_LIB= libKF5SonnetCore.so kde-syndication_PORT= net/kf5-syndication kde-syndication_LIB= libKF5Syndication.so kde-syntaxhighlighting_PORT= textproc/kf5-syntax-highlighting kde-syntaxhighlighting_LIB= libKF5SyntaxHighlighting.so kde-texteditor_PORT= devel/kf5-ktexteditor kde-texteditor_LIB= libKF5TextEditor.so kde-textwidgets_PORT= x11-toolkits/kf5-ktextwidgets kde-textwidgets_LIB= libKF5TextWidgets.so kde-threadweaver_PORT= devel/kf5-threadweaver kde-threadweaver_LIB= libKF5ThreadWeaver.so kde-unitconversion_PORT= devel/kf5-kunitconversion kde-unitconversion_LIB= libKF5UnitConversion.so kde-wallet_PORT= sysutils/kf5-kwallet kde-wallet_LIB= libKF5Wallet.so kde-wayland_PORT= x11/kf5-kwayland kde-wayland_LIB= libKF5WaylandClient.so kde-widgetsaddons_PORT= x11-toolkits/kf5-kwidgetsaddons kde-widgetsaddons_LIB= libKF5WidgetsAddons.so kde-windowsystem_PORT= x11/kf5-kwindowsystem kde-windowsystem_LIB= libKF5WindowSystem.so kde-xmlgui_PORT= x11-toolkits/kf5-kxmlgui kde-xmlgui_LIB= libKF5XmlGui.so kde-xmlrpcclient_PORT= net/kf5-kxmlrpcclient kde-xmlrpcclient_LIB= libKF5XmlRpcClient.so # ====================== end of frameworks components ========================== # ====================== plasma components ===================================== kde-activitymanagerd_PORT= x11/plasma5-kactivitymanagerd kde-activitymanagerd_LIB= libkactivitymanagerd_plugin.so kde-breeze_PORT= x11-themes/plasma5-breeze kde-breeze_PATH= ${KDE_PREFIX}/share/QtCurve/Breeze.qtcurve kde-breeze-gtk_PORT= x11-themes/plasma5-breeze-gtk kde-breeze-gtk_PATH= ${KDE_PREFIX}/lib/kconf_update_bin/gtkbreeze5.5 kde-decoration_PORT= x11-wm/plasma5-kdecoration kde-decoration_LIB= libkdecorations2.so kde-discover_PORT= sysutils/plasma5-discover kde-discover_PATH= ${KDE_PREFIX}/bin/plasma-discover kde-drkonqi_PORT= sysutils/plasma5-drkonqi kde-drkonqi_PATH= ${KDE_PREFIX}/lib/libexec/drkonqi kde-hotkeys_PORT= devel/plasma5-khotkeys kde-hotkeys_LIB= libkhotkeysprivate.so.5 kde-infocenter_PORT= sysutils/plasma5-kinfocenter kde-infocenter_PATH= ${KDE_PREFIX}/bin/kinfocenter kde-kde-cli-tools_PORT= sysutils/plasma5-kde-cli-tools kde-kde-cli-tools_PATH= ${KDE_PREFIX}/bin/kcmshell5 kde-kde-gtk-config_PORT= x11-themes/plasma5-kde-gtk-config kde-kde-gtk-config_PATH= ${QT_PLUGINDIR}/kcm_kdegtkconfig.so kde-kdeplasma-addons_PORT= x11-toolkits/plasma5-kdeplasma-addons kde-kdeplasma-addons_PATH= ${QT_PLUGINDIR}/kcm_krunner_dictionary.so kde-kgamma5_PORT= x11/plasma5-kgamma5 kde-kgamma5_PATH= ${QT_PLUGINDIR}/kcm_kgamma.so kde-kmenuedit_PORT= sysutils/plasma5-kmenuedit kde-kmenuedit_LIB= libkdeinit5_kmenuedit.so kde-kscreen_PORT= x11/plasma5-kscreen kde-kscreen_PATH= ${KDE_PREFIX}/bin/kscreen-console kde-kscreenlocker_PORT= security/plasma5-kscreenlocker kde-kscreenlocker_LIB= libKScreenLocker.so kde-ksshaskpass_PORT= security/plasma5-ksshaskpass kde-ksshaskpass_PATH= ${KDE_PREFIX}/bin/ksshaskpass kde-ksysguard_PORT= sysutils/plasma5-ksysguard kde-ksysguard_PATH= ${KDE_PREFIX}/bin/ksysguard kde-kwallet-pam_PORT= security/plasma5-kwallet-pam kde-kwallet-pam_PATH= ${KDE_PREFIX}/lib/security/pam_kwallet5.so kde-kwayland-integration_PORT= x11/plasma5-kwayland-integration kde-kwayland-integration_PATH= ${QT_PLUGINDIR}/kf5/org.kde.kidletime.platforms/KF5IdleTimeKWaylandPlugin.so kde-kwin_PORT= x11-wm/plasma5-kwin kde-kwin_PATH= ${KDE_PREFIX}/bin/kwin_x11 kde-kwrited_PORT= devel/plasma5-kwrited kde-kwrited_PATH= ${QT_PLUGINDIR}/kf5/kded/kwrited.so kde-libkscreen_PORT= x11/plasma5-libkscreen kde-libkscreen_LIB= libKF5Screen.so kde-libksysguard_PORT= sysutils/plasma5-libksysguard kde-libksysguard_LIB= libksgrd.so kde-milou_PORT= deskutils/plasma5-milou kde-milou_LIB= libmilou.so.5 kde-oxygen_PORT= x11-themes/plasma5-oxygen kde-oxygen_LIB= liboxygenstyle5.so kde-plasma-browser-integration_PORT= www/plasma5-plasma-browser-integration kde-plasma-browser-integration_PATH= ${KDE_PREFIX}/bin/plasma-browser-integration-host kde-plasma-desktop_PORT= x11/plasma5-plasma-desktop kde-plasma-desktop_PATH= ${KDE_PREFIX}/bin/krdb kde-plasma-integration_PORT= x11/plasma5-plasma-integration kde-plasma-integration_PATH= ${QT_PLUGINDIR}/platformthemes/KDEPlasmaPlatformTheme.so kde-plasma-pa_PORT= audio/plasma5-plasma-pa kde-plasma-pa_PATH= ${QT_PLUGINDIR}/kcms/kcm_pulseaudio.so kde-plasma-sdk_PORT= devel/plasma5-plasma-sdk kde-plasma-sdk_PATH= ${KDE_PREFIX}/bin/plasmoidviewer kde-plasma-workspace_PORT= x11/plasma5-plasma-workspace kde-plasma-workspace_LIB= libkdeinit5_kcminit.so kde-plasma-workspace-wallpapers_PORT= x11-themes/plasma5-plasma-workspace-wallpapers kde-plasma-workspace-wallpapers_PATH= ${KDE_PREFIX}/share/wallpapers/Autumn/contents/images/1280x1024.jpg kde-polkit-kde-agent-1_PORT= sysutils/plasma5-polkit-kde-agent-1 kde-polkit-kde-agent-1_PATH= ${KDE_PREFIX}/lib/libexec/polkit-kde-authentication-agent-1 kde-powerdevil_PORT= sysutils/plasma5-powerdevil kde-powerdevil_LIB= libpowerdevilcore.so kde-systemsettings_PORT= sysutils/plasma5-systemsettings kde-systemsettings_PATH= ${KDE_PREFIX}/bin/systemsettings5 kde-user-manager_PORT= sysutils/plasma5-user-manager kde-user-manager_PATH= ${QT_PLUGINDIR}/user_manager.so # ====================== end of plasma components ============================== # ====================== pim5 components ======================================= kde-akonadicontacts_PORT= net/akonadi-contacts kde-akonadicontacts_LIB= libKF5AkonadiContact.so kde-akonadiimportwizard_PORT= deskutils/akonadi-import-wizard kde-akonadiimportwizard_LIB= libKPimImportWizard.so kde-akonadimime_PORT= net/akonadi-mime kde-akonadimime_LIB= libKF5AkonadiMime.so kde-akonadinotes_PORT= net/akonadi-notes kde-akonadinotes_LIB= libKF5AkonadiNotes.so kde-akonadicalendar_PORT= net/akonadi-calendar kde-akonadicalendar_LIB= libKF5AkonadiCalendar.so kde-akonadisearch_PORT= net/akonadi-search kde-akonadisearch_LIB= libKF5AkonadiSearchCore.so kde-alarmcalendar_PORT= net/kalarmcal kde-alarmcalendar_LIB= libKF5AlarmCalendar.so kde-blog_PORT= net/kblog kde-blog_LIB= libKF5Blog.so kde-calendarsupport_PORT= net/calendarsupport kde-calendarsupport_LIB= libKF5CalendarSupport.so kde-calendarcore_PORT= net/kcalcore kde-calendarcore_LIB= libKF5CalendarCore.so kde-calendarutils_PORT= net/kcalutils kde-calendarutils_LIB= libKF5CalendarUtils.so kde-contacts_PORT= net/kcontacts kde-contacts_LIB= libKF5Contacts.so kde-eventviews_PORT= net/eventviews kde-eventviews_LIB= libKF5EventViews.so kde-gapi_PORT= net/libkgapi kde-gapi_LIB= libKPimGAPICore.so kde-grantleetheme_PORT= deskutils/grantleetheme kde-grantleetheme_LIB= libKF5GrantleeTheme.so kde-gravatar_PORT= net/libgravatar kde-gravatar_LIB= libKF5Gravatar.so kde-identitymanagement_PORT= net/kidentitymanagement kde-identitymanagement_LIB= libKF5IdentityManagement.so kde-imap_PORT= net/kimap kde-imap_LIB= libKF5IMAP.so kde-incidenceeditor_PORT= net/incidenceeditor kde-incidenceeditor_LIB= libKF5IncidenceEditor.so kde-kdepim-addons_PORT= deskutils/kdepim-addons kde-kdepim-addons_PATH= ${KDE_PREFIX}/lib/contacteditor/editorpageplugins/cryptopageplugin.so kde-kdepim-apps-libs_PORT= deskutils/kdepim-apps-libs kde-kdepim-apps-libs_LIB= libKF5SendLater.so kde-kdepim-runtime5_PORT= deskutils/kdepim-runtime kde-kdepim-runtime5_PATH= ${KDE_PREFIX}/bin/gidmigrator kde-kitinerary_PORT= net/kitinerary kde-kitinerary_LIB= libKPimItinerary.so kde-kontactinterface_PORT= net/kontactinterface kde-kontactinterface_LIB= libKF5KontactInterface.so kde-kpimdav_PORT= net/kdav kde-kpimdav_LIB= libKPimKDAV.so kde-kpkpass_PORT= security/kpkpass kde-kpkpass_LIB= libKPimPkPass.so kde-ksmtp_PORT= net/ksmtp kde-ksmtp_LIB= libKPimSMTP.so kde-ldap_PORT= net/kldap kde-ldap_LIB= libKF5Ldap.so kde-libkdepim_PORT= deskutils/libkdepim kde-libkdepim_LIB= libKF5Libkdepim.so kde-libkleo_PORT= security/libkleo kde-libkleo_LIB= libKF5Libkleo.so kde-libksieve_PORT= net/libksieve kde-libksieve_LIB= libKF5KSieve.so kde-mailcommon_PORT= net/mailcommon kde-mailcommon_LIB= libKF5MailCommon.so kde-mailimporter_PORT= net/mailimporter kde-mailimporter_LIB= libKF5MailImporter.so kde-mailtransport_PORT= net/kmailtransport kde-mailtransport_LIB= libKF5MailTransport.so kde-mbox_PORT= net/kmbox kde-mbox_LIB= libKF5Mbox.so kde-messagelib_PORT= net/messagelib kde-messagelib_LIB= libKF5MessageList.so kde-mime_PORT= net/kmime kde-mime_LIB= libKF5Mime.so kde-pimcommon_PORT= net/pimcommon kde-pimcommon_LIB= libKF5PimCommon.so kde-pimtextedit_PORT= net/kpimtextedit kde-pimtextedit_LIB= libKF5PimTextEdit.so kde-tnef_PORT= net/ktnef kde-tnef_LIB= libKF5Tnef.so # PIM Applications kde-akonadiconsole_PORT= deskutils/akonadiconsole kde-akonadiconsole_PATH= ${KDE_PREFIX}/bin/akonadiconsole kde-akregator_PORT= deskutils/akregator kde-akregator_PATH= ${KDE_PREFIX}/bin/akregator kde-grantlee-editor_PORT= deskutils/grantlee-editor kde-grantlee-editor_PATH= ${KDE_PREFIX}/bin/contactthemeeditor kde-kaddressbook_PORT= deskutils/kaddressbook kde-kaddressbook_PATH= ${KDE_PREFIX}/bin/kaddressbook kde-kalarm_PORT= deskutils/kalarm kde-kalarm_PATH= ${KDE_PREFIX}/bin/kalarm kde-kmail_PORT= deskutils/kmail kde-kmail_PATH= ${KDE_PREFIX}/bin/kmail kde-kmail-account-wizard_PORT= deskutils/kmail-account-wizard kde-kmail-account-wizard_PATH= ${KDE_PREFIX}/bin/accountwizard kde-knotes_PORT= deskutils/knotes kde-knotex_PATH= ${KDE_PREFIX}/bin/knotes kde-kontact_PORT= deskutils/kontact kde-kontact_PATH= ${KDE_PREFIX}/bin/kontact kde-korganizer_PORT= deskutils/korganizer kde-korganizer_PATH= ${KDE_PREFIX}/bin/korganizer kde-mbox-importer_PORT= deskutils/mbox-importer kde-mbox-importer_PATH= ${KDE_PREFIX}/bin/mboximporter kde-pim-data-exporter_PORT= deskutils/pim-data-exporter kde-pim-data-exporter_PATH= ${KDE_PREFIX}/bin/pimsettingexporter # ====================== end of pim5 components ================================ # ====================== multiversion component ================================ kde-akonadi5_PORT= databases/akonadi kde-akonadi5_LIB= libKF5AkonadiPrivate.so kde-baloo-widgets5_PORT= sysutils/baloo-widgets kde-baloo-widgets5_LIB= libKF5BalooWidgets.so kde-kate5_PORT= editors/kate kde-kate5_PATH= ${QT_PLUGINDIR}/ktexteditor/katebacktracebrowserplugin.so kde-libkcddb5_PORT= audio/libkcddb kde-libkcddb5_LIB= libKF5Cddb.so kde-libkcompactdisc5_PORT= audio/libkcompactdisc kde-libkcompactdisc5_LIB= libKF5CompactDisc.so kde-libkdcraw5_PORT= graphics/libkdcraw kde-libkdcraw5_LIB= libKF5KDcraw.so kde-libkdegames5_PORT= games/libkdegames kde-libkdegames5_LIB= libKF5KDEGames.so kde-libkeduvocdocument5_PORT= misc/libkeduvocdocument kde-libkeduvocdocument5_LIB= libKEduVocDocument.so kde-libkexiv25_PORT= graphics/libkexiv2 kde-libkexiv25_LIB= libKF5KExiv2.so kde-libkipi5_PORT= graphics/libkipi kde-libkipi5_LIB= libKF5Kipi.so kde-libksane5_PORT= graphics/libksane kde-libksane5_LIB= libKF5Sane.so kde-marble5_PORT= astro/marble kde-marble5_LIB= libmarblewidget-qt5.so kde-okular5_PORT= graphics/okular kde-okular5_LIB= libOkular5Core.so # ====================== end of multiversion components ======================== # ====================== select the proper multiversion component ============== . for comp in ${_USE_KDE_BOTH} kde-${comp}_PORT= ${kde-${comp}${_KDE_VERSION}_PORT} . if defined(kde-${comp}${_KDE_VERSION}_LIB) kde-${comp}_LIB= ${kde-${comp}${_KDE_VERSION}_LIB} . else . if defined(kde-${comp}${_KDE_VERSION}_PATH}) kde-${comp}_PATH= ${kde-${comp}${_KDE_VERSION}_LIB} . endif # If neither is defined, this gets caught below when checking components . endif . endfor #=============================================================================== # end of component list ######################################################## _USE_KDE_ALL= ${_USE_${_KDE_RELNAME}_ALL} # Iterate through components deprived of suffix. . for component in ${USE_KDE:O:u:C/_.+//} # Check that the component is valid. . if ${_USE_KDE_ALL:M${component}} != "" # Skip meta-components (currently none). . if defined(kde-${component}_PORT) && (defined(kde-${component}_PATH) || defined(kde-${component}_LIB)) # Check if a dependency type is explicitly requested. . if ${USE_KDE:M${component}_*} != "" && ${USE_KDE:M${component}} == "" kde-${component}_TYPE= # empty . if ${USE_KDE:M${component}_build} != "" kde-${component}_TYPE+= build . endif . if ${USE_KDE:M${component}_run} != "" kde-${component}_TYPE+= run . endif . endif # ${USE_KDE:M${component}_*} != "" && ${USE_KDE:M${component}} == "" # If no dependency type is set, default to full dependency. . if !defined(kde-${component}_TYPE) kde-${component}_TYPE= build run . endif # Set real dependencies. . if defined(kde-${component}_LIB) && ${kde-${component}_TYPE:Mbuild} && ${kde-${component}_TYPE:Mrun} LIB_DEPENDS+= ${kde-${component}_LIB}:${kde-${component}_PORT} . else kde-${component}_PATH?= ${KDE_PREFIX}/lib/${kde-${component}_LIB} kde-${component}_DEPENDS= ${kde-${component}_PATH}:${kde-${component}_PORT} . if ${kde-${component}_TYPE:Mbuild} != "" BUILD_DEPENDS+= ${kde-${component}_DEPENDS} . endif . if ${kde-${component}_TYPE:Mrun} != "" RUN_DEPENDS+= ${kde-${component}_DEPENDS} . endif . endif # ${kde-${component}_LIB} && ${kde-${component}_TYPE:Mbuild} && ${kde-${component}_TYPE:Mrun} . endif # defined(kde-${component}_PORT) && defined(kde-${component}_PATH) . else # ! ${_USE_KDE_ALL:M${component}} != "" IGNORE= cannot be installed: unknown USE_KDE component '${component}' . endif # ${_USE_KDE_ALL:M${component}} != "" . endfor . endif .endif Index: head/audio/plasma5-plasma-pa/distinfo =================================================================== --- head/audio/plasma5-plasma-pa/distinfo (revision 497580) +++ head/audio/plasma5-plasma-pa/distinfo (revision 497581) @@ -1,3 +1,3 @@ -TIMESTAMP = 1552454742 -SHA256 (KDE/plasma/5.15.3/plasma-pa-5.15.3.tar.xz) = 450476c3eb8175e339615b93e0cf5cbc1dd7abdbe2b25e87b0b292555a8b70d2 -SIZE (KDE/plasma/5.15.3/plasma-pa-5.15.3.tar.xz) = 95232 +TIMESTAMP = 1554223775 +SHA256 (KDE/plasma/5.15.4/plasma-pa-5.15.4.tar.xz) = 88239e34e50deed8830d6b0dc846590720341c2c1496c6413a7fecc2ba01af2c +SIZE (KDE/plasma/5.15.4/plasma-pa-5.15.4.tar.xz) = 95616 Index: head/deskutils/plasma5-milou/distinfo =================================================================== --- head/deskutils/plasma5-milou/distinfo (revision 497580) +++ head/deskutils/plasma5-milou/distinfo (revision 497581) @@ -1,3 +1,3 @@ -TIMESTAMP = 1552454743 -SHA256 (KDE/plasma/5.15.3/milou-5.15.3.tar.xz) = 017c8e26583926eb15936227236d19e120868775521b7bdc64e86b9f5b4d38df -SIZE (KDE/plasma/5.15.3/milou-5.15.3.tar.xz) = 57156 +TIMESTAMP = 1554223775 +SHA256 (KDE/plasma/5.15.4/milou-5.15.4.tar.xz) = bb96f23cd18bf69ea81ae1df9beed14408361529855cfd094e2757137c4d2aba +SIZE (KDE/plasma/5.15.4/milou-5.15.4.tar.xz) = 57308 Index: head/deskutils/plasma5-sddm-kcm/distinfo =================================================================== --- head/deskutils/plasma5-sddm-kcm/distinfo (revision 497580) +++ head/deskutils/plasma5-sddm-kcm/distinfo (revision 497581) @@ -1,3 +1,3 @@ -TIMESTAMP = 1552454744 -SHA256 (KDE/plasma/5.15.3/sddm-kcm-5.15.3.tar.xz) = 026a2ab9746d0705c5069b48d3bc6b641119a44f62fa68a0b155b334c34577d7 -SIZE (KDE/plasma/5.15.3/sddm-kcm-5.15.3.tar.xz) = 61360 +TIMESTAMP = 1554223776 +SHA256 (KDE/plasma/5.15.4/sddm-kcm-5.15.4.tar.xz) = 5402a529998e3b6f38930f2a4abab5e83e186630ef98b87d0bd85f21f42f14e5 +SIZE (KDE/plasma/5.15.4/sddm-kcm-5.15.4.tar.xz) = 61780 Index: head/devel/plasma5-khotkeys/distinfo =================================================================== --- head/devel/plasma5-khotkeys/distinfo (revision 497580) +++ head/devel/plasma5-khotkeys/distinfo (revision 497581) @@ -1,3 +1,3 @@ -TIMESTAMP = 1552454745 -SHA256 (KDE/plasma/5.15.3/khotkeys-5.15.3.tar.xz) = 85d6705dec38e38d259bc9a721a75a9bd4abde636a1d7406bc1dc5390d6dd33e -SIZE (KDE/plasma/5.15.3/khotkeys-5.15.3.tar.xz) = 1865228 +TIMESTAMP = 1554223777 +SHA256 (KDE/plasma/5.15.4/khotkeys-5.15.4.tar.xz) = 4e446507872817a6db360707734cc60254918f6026e56a96ba3eb1e938e59ce6 +SIZE (KDE/plasma/5.15.4/khotkeys-5.15.4.tar.xz) = 1865836 Index: head/devel/plasma5-kwrited/distinfo =================================================================== --- head/devel/plasma5-kwrited/distinfo (revision 497580) +++ head/devel/plasma5-kwrited/distinfo (revision 497581) @@ -1,3 +1,3 @@ -TIMESTAMP = 1552454746 -SHA256 (KDE/plasma/5.15.3/kwrited-5.15.3.tar.xz) = fb3cd2b588f23ecd71d3ac476457cd1e0881172bda9879f4d465e43b9dad0d76 -SIZE (KDE/plasma/5.15.3/kwrited-5.15.3.tar.xz) = 19996 +TIMESTAMP = 1554223778 +SHA256 (KDE/plasma/5.15.4/kwrited-5.15.4.tar.xz) = 7c25ed48ce85294ab4d5e3d4ffaaf3dd408f2a97cbb253b9adc9d5b8004db3c4 +SIZE (KDE/plasma/5.15.4/kwrited-5.15.4.tar.xz) = 20016 Index: head/devel/plasma5-plasma-sdk/distinfo =================================================================== --- head/devel/plasma5-plasma-sdk/distinfo (revision 497580) +++ head/devel/plasma5-plasma-sdk/distinfo (revision 497581) @@ -1,3 +1,3 @@ -TIMESTAMP = 1552454747 -SHA256 (KDE/plasma/5.15.3/plasma-sdk-5.15.3.tar.xz) = 5ce9a20fada3a7789a6f7fbd45dd64cbcaeee886f0258a415187e24fbc07f0e3 -SIZE (KDE/plasma/5.15.3/plasma-sdk-5.15.3.tar.xz) = 249660 +TIMESTAMP = 1554223779 +SHA256 (KDE/plasma/5.15.4/plasma-sdk-5.15.4.tar.xz) = e6c188731e0f73bd6d79c55a12298bb032c2493d083a8cffaeb5f3ab1b1cdbb5 +SIZE (KDE/plasma/5.15.4/plasma-sdk-5.15.4.tar.xz) = 249800 Index: head/security/plasma5-kscreenlocker/distinfo =================================================================== --- head/security/plasma5-kscreenlocker/distinfo (revision 497580) +++ head/security/plasma5-kscreenlocker/distinfo (revision 497581) @@ -1,3 +1,3 @@ -TIMESTAMP = 1552454748 -SHA256 (KDE/plasma/5.15.3/kscreenlocker-5.15.3.tar.xz) = cafe0b7b2ce65e1cf86e6b87f8281380d531949c445e22a23714b1bce2bbf42d -SIZE (KDE/plasma/5.15.3/kscreenlocker-5.15.3.tar.xz) = 122196 +TIMESTAMP = 1554223780 +SHA256 (KDE/plasma/5.15.4/kscreenlocker-5.15.4.tar.xz) = d81e34ac9f22b2fd9ed63e599e9c709e91ecd0b5e7458732e4535a71ce5a9f58 +SIZE (KDE/plasma/5.15.4/kscreenlocker-5.15.4.tar.xz) = 122676 Index: head/security/plasma5-ksshaskpass/distinfo =================================================================== --- head/security/plasma5-ksshaskpass/distinfo (revision 497580) +++ head/security/plasma5-ksshaskpass/distinfo (revision 497581) @@ -1,3 +1,3 @@ -TIMESTAMP = 1552454749 -SHA256 (KDE/plasma/5.15.3/ksshaskpass-5.15.3.tar.xz) = 3a39bb7d0f2eba303d28ed0cb0df76ae7b12c58c205ec335ba92acacc96132ff -SIZE (KDE/plasma/5.15.3/ksshaskpass-5.15.3.tar.xz) = 21200 +TIMESTAMP = 1554223780 +SHA256 (KDE/plasma/5.15.4/ksshaskpass-5.15.4.tar.xz) = af0f99393992e337c69ebd053249de1a882107668f042ef218aaa3f426743899 +SIZE (KDE/plasma/5.15.4/ksshaskpass-5.15.4.tar.xz) = 21316 Index: head/security/plasma5-kwallet-pam/distinfo =================================================================== --- head/security/plasma5-kwallet-pam/distinfo (revision 497580) +++ head/security/plasma5-kwallet-pam/distinfo (revision 497581) @@ -1,3 +1,3 @@ -TIMESTAMP = 1552454750 -SHA256 (KDE/plasma/5.15.3/kwallet-pam-5.15.3.tar.xz) = 239de5e3472366aa4247f109f3f026ec3313b6e28e6cea184140cc3145727bf0 -SIZE (KDE/plasma/5.15.3/kwallet-pam-5.15.3.tar.xz) = 19252 +TIMESTAMP = 1554223781 +SHA256 (KDE/plasma/5.15.4/kwallet-pam-5.15.4.tar.xz) = 67d41df8b573ab0e29e731264cc990b34f0ba66004737ce00ae0b2ecabe53fdf +SIZE (KDE/plasma/5.15.4/kwallet-pam-5.15.4.tar.xz) = 19336 Index: head/sysutils/plasma5-discover/distinfo =================================================================== --- head/sysutils/plasma5-discover/distinfo (revision 497580) +++ head/sysutils/plasma5-discover/distinfo (revision 497581) @@ -1,3 +1,3 @@ -TIMESTAMP = 1552454752 -SHA256 (KDE/plasma/5.15.3/discover-5.15.3.tar.xz) = 2b38184677542fabfe6e45217d838570487126aab2242e57129493dc0362d5ac -SIZE (KDE/plasma/5.15.3/discover-5.15.3.tar.xz) = 10447776 +TIMESTAMP = 1554223783 +SHA256 (KDE/plasma/5.15.4/discover-5.15.4.tar.xz) = 63b6dff1310291d7cf1ec7e075dfa0f3c039f63c4f910c3ca99d0faeee4ca301 +SIZE (KDE/plasma/5.15.4/discover-5.15.4.tar.xz) = 10447848 Index: head/sysutils/plasma5-drkonqi/distinfo =================================================================== --- head/sysutils/plasma5-drkonqi/distinfo (revision 497580) +++ head/sysutils/plasma5-drkonqi/distinfo (revision 497581) @@ -1,3 +1,3 @@ -TIMESTAMP = 1552454754 -SHA256 (KDE/plasma/5.15.3/drkonqi-5.15.3.tar.xz) = 5d93698cdb7cec4649a565026d9049493266a593a2ad354985c9f475769e8b78 -SIZE (KDE/plasma/5.15.3/drkonqi-5.15.3.tar.xz) = 738680 +TIMESTAMP = 1554223784 +SHA256 (KDE/plasma/5.15.4/drkonqi-5.15.4.tar.xz) = 8e3b46525f792d5c3264f0d835e7180cda4a0dbd78cd8055f13e166151a6c3de +SIZE (KDE/plasma/5.15.4/drkonqi-5.15.4.tar.xz) = 738768 Index: head/sysutils/plasma5-kde-cli-tools/distinfo =================================================================== --- head/sysutils/plasma5-kde-cli-tools/distinfo (revision 497580) +++ head/sysutils/plasma5-kde-cli-tools/distinfo (revision 497581) @@ -1,3 +1,3 @@ -TIMESTAMP = 1552454755 -SHA256 (KDE/plasma/5.15.3/kde-cli-tools-5.15.3.tar.xz) = ef7ac31b6499739779b2c4e1ecbde3500346ca805875e2f93ca6928494f62adf -SIZE (KDE/plasma/5.15.3/kde-cli-tools-5.15.3.tar.xz) = 585812 +TIMESTAMP = 1554223785 +SHA256 (KDE/plasma/5.15.4/kde-cli-tools-5.15.4.tar.xz) = 909c54f0d04c3c7f5bbc1b6e77b666fb4e92a29f7622ad404c579dc6a5d67ee1 +SIZE (KDE/plasma/5.15.4/kde-cli-tools-5.15.4.tar.xz) = 586264 Index: head/sysutils/plasma5-kinfocenter/Makefile =================================================================== --- head/sysutils/plasma5-kinfocenter/Makefile (revision 497580) +++ head/sysutils/plasma5-kinfocenter/Makefile (revision 497581) @@ -1,37 +1,36 @@ # $FreeBSD$ PORTNAME= kinfocenter DISTVERSION= ${KDE_PLASMA_VERSION} -PORTREVISION= 1 CATEGORIES= sysutils kde kde-plasma MAINTAINER= kde@FreeBSD.org COMMENT= Plasma5 utility providing system information LIB_DEPENDS= libpci.so:devel/libpci USES= cmake compiler:c++11-lib cpe gettext kde:5 pkgconfig \ qt:5 tar:xz USE_GL= egl gl glu USE_KDE= auth bookmarks codecs completion config configwidgets \ coreaddons crash dbusaddons doctools ecm emoticons guiaddons \ i18n iconthemes jobwidgets kcmutils kdeclarative \ kdelibs4support kio notifications package parts init \ itemmodels itemviews service solid sonnet textwidgets \ unitconversion wayland wayland widgetsaddons windowsystem xmlgui USE_QT= concurrent core dbus gui network printsupport widgets xml \ buildtools_build qmake_build USE_XORG= ice sm x11 xext # TODO -- this should be handled correctly... LDFLAGS+=-ldevinfo # install freebsd-logo and distrorc post-install: ${MKDIR} ${STAGEDIR}/${DATADIR}/images ${INSTALL_DATA} ${FILESDIR}/freebsd_logo.svg ${STAGEDIR}/${DATADIR}/images/ ${MKDIR} ${STAGEDIR}/${PREFIX}/etc/xdg ${INSTALL_DATA} ${FILESDIR}/kcm-about-distrorc ${STAGEDIR}/${PREFIX}/etc/xdg/ ${REINPLACE_CMD} -i "" -e "s#%%DATADIR%%#${DATADIR}#" ${STAGEDIR}/${PREFIX}/etc/xdg/kcm-about-distrorc .include Index: head/sysutils/plasma5-kinfocenter/distinfo =================================================================== --- head/sysutils/plasma5-kinfocenter/distinfo (revision 497580) +++ head/sysutils/plasma5-kinfocenter/distinfo (revision 497581) @@ -1,3 +1,3 @@ -TIMESTAMP = 1552454766 -SHA256 (KDE/plasma/5.15.3/kinfocenter-5.15.3.tar.xz) = 996788d374e53d1d50093a88641c7cde791b3ba1c890ed72d5ee5507aece1066 -SIZE (KDE/plasma/5.15.3/kinfocenter-5.15.3.tar.xz) = 1323180 +TIMESTAMP = 1554223796 +SHA256 (KDE/plasma/5.15.4/kinfocenter-5.15.4.tar.xz) = 8c0ecbdd7bb44c08f2c27ed93382d76b5a79a09b876196b3d2db2d2e97e9ae95 +SIZE (KDE/plasma/5.15.4/kinfocenter-5.15.4.tar.xz) = 1321968 Index: head/sysutils/plasma5-kmenuedit/distinfo =================================================================== --- head/sysutils/plasma5-kmenuedit/distinfo (revision 497580) +++ head/sysutils/plasma5-kmenuedit/distinfo (revision 497581) @@ -1,3 +1,3 @@ -TIMESTAMP = 1552454767 -SHA256 (KDE/plasma/5.15.3/kmenuedit-5.15.3.tar.xz) = 4b5d390e8f5f8af4f2120dfa22b43b64889858a573f8e14c22bd5e15fb85ebe8 -SIZE (KDE/plasma/5.15.3/kmenuedit-5.15.3.tar.xz) = 809652 +TIMESTAMP = 1554223797 +SHA256 (KDE/plasma/5.15.4/kmenuedit-5.15.4.tar.xz) = da5d347de97ea50593311a318d12328b0f63805c8f1f411b4f3567826c1fc80e +SIZE (KDE/plasma/5.15.4/kmenuedit-5.15.4.tar.xz) = 810120 Index: head/sysutils/plasma5-ksysguard/distinfo =================================================================== --- head/sysutils/plasma5-ksysguard/distinfo (revision 497580) +++ head/sysutils/plasma5-ksysguard/distinfo (revision 497581) @@ -1,3 +1,3 @@ -TIMESTAMP = 1552454768 -SHA256 (KDE/plasma/5.15.3/ksysguard-5.15.3.tar.xz) = 38219e61ce3e1bac0463b8d8f538f582e55976750f01cd44b2be105c7d53afdb -SIZE (KDE/plasma/5.15.3/ksysguard-5.15.3.tar.xz) = 500592 +TIMESTAMP = 1554223798 +SHA256 (KDE/plasma/5.15.4/ksysguard-5.15.4.tar.xz) = aa6dd5af4ff47092a3540590bd1c088727f0775b064dacfcb95f3fcf44d02fb7 +SIZE (KDE/plasma/5.15.4/ksysguard-5.15.4.tar.xz) = 500016 Index: head/sysutils/plasma5-libksysguard/distinfo =================================================================== --- head/sysutils/plasma5-libksysguard/distinfo (revision 497580) +++ head/sysutils/plasma5-libksysguard/distinfo (revision 497581) @@ -1,3 +1,3 @@ -TIMESTAMP = 1552454770 -SHA256 (KDE/plasma/5.15.3/libksysguard-5.15.3.tar.xz) = d2e22a6ed3cb04c1b398f4609faa8eea10a97d89c29230c544ab57d643598e15 -SIZE (KDE/plasma/5.15.3/libksysguard-5.15.3.tar.xz) = 576636 +TIMESTAMP = 1554223799 +SHA256 (KDE/plasma/5.15.4/libksysguard-5.15.4.tar.xz) = e4476b180f0f342d83ce1097ae10b1b9c88160b0c7fc9432259402ebbbdf4a14 +SIZE (KDE/plasma/5.15.4/libksysguard-5.15.4.tar.xz) = 576956 Index: head/sysutils/plasma5-polkit-kde-agent-1/Makefile =================================================================== --- head/sysutils/plasma5-polkit-kde-agent-1/Makefile (revision 497580) +++ head/sysutils/plasma5-polkit-kde-agent-1/Makefile (revision 497581) @@ -1,19 +1,18 @@ # $FreeBSD$ PORTNAME= polkit-kde-agent-1 DISTVERSION= ${KDE_PLASMA_VERSION} -PORTREVISION= 1 CATEGORIES= sysutils kde kde-plasma MAINTAINER= kde@FreeBSD.org COMMENT= Plasma5 daemon providing a polkit authentication UI LIB_DEPENDS= libpolkit-qt5-core-1.so:sysutils/polkit-qt USES= cmake compiler:c++11-lib cpe gettext kde:5 qt:5 tar:xz USE_KDE= config coreaddons crash dbusaddons ecm i18n iconthemes \ notifications widgetsaddons windowsystem USE_QT= core dbus gui widgets \ buildtools_build qmake_build .include Index: head/sysutils/plasma5-polkit-kde-agent-1/distinfo =================================================================== --- head/sysutils/plasma5-polkit-kde-agent-1/distinfo (revision 497580) +++ head/sysutils/plasma5-polkit-kde-agent-1/distinfo (revision 497581) @@ -1,3 +1,3 @@ -TIMESTAMP = 1552454771 -SHA256 (KDE/plasma/5.15.3/polkit-kde-agent-1-5.15.3.tar.xz) = 5e7b4db91293b00c0267b73a1d5186cd65bcd8d2d369b10f5f4fd59fe029f41d -SIZE (KDE/plasma/5.15.3/polkit-kde-agent-1-5.15.3.tar.xz) = 42348 +TIMESTAMP = 1554223799 +SHA256 (KDE/plasma/5.15.4/polkit-kde-agent-1-5.15.4.tar.xz) = 078f96aed83097e8408db3c03fb3cb13a69e779b2397cc83d462e8ae9409aa7f +SIZE (KDE/plasma/5.15.4/polkit-kde-agent-1-5.15.4.tar.xz) = 42572 Index: head/sysutils/plasma5-powerdevil/distinfo =================================================================== --- head/sysutils/plasma5-powerdevil/distinfo (revision 497580) +++ head/sysutils/plasma5-powerdevil/distinfo (revision 497581) @@ -1,3 +1,3 @@ -TIMESTAMP = 1552454772 -SHA256 (KDE/plasma/5.15.3/powerdevil-5.15.3.tar.xz) = 24acaef3e78b8cea665ca12ade119d8e589de74cc5bf0bdcc7398201e998f1b8 -SIZE (KDE/plasma/5.15.3/powerdevil-5.15.3.tar.xz) = 599488 +TIMESTAMP = 1554223800 +SHA256 (KDE/plasma/5.15.4/powerdevil-5.15.4.tar.xz) = 0be3a318cbb160e784b422e226e8c747f2c6829acfd0490604697930acf9047a +SIZE (KDE/plasma/5.15.4/powerdevil-5.15.4.tar.xz) = 599820 Index: head/sysutils/plasma5-systemsettings/Makefile =================================================================== --- head/sysutils/plasma5-systemsettings/Makefile (revision 497580) +++ head/sysutils/plasma5-systemsettings/Makefile (revision 497581) @@ -1,19 +1,19 @@ # $FreeBSD$ PORTNAME= systemsettings -DISTVERSION= ${KDE_PLASMA_VERSION}.2 +DISTVERSION= ${KDE_PLASMA_VERSION} CATEGORIES= sysutils kde kde-plasma MAINTAINER= kde@FreeBSD.org COMMENT= Plasma5 system settings USES= cmake compiler:c++11-lib cpe gettext kde:5 qt:5 tar:xz USE_KDE= activities activities-stats auth codecs completion config \ configwidgets coreaddons crash dbusaddons doctools ecm i18n \ iconthemes itemviews jobwidgets js kcmutils kdeclarative khtml \ kio kirigami2 package parts plasma-workspace service sonnet textwidgets \ widgetsaddons windowsystem xmlgui USE_QT= concurrent core dbus declarative gui network widgets xml \ buildtools_build qmake_build .include Index: head/sysutils/plasma5-systemsettings/distinfo =================================================================== --- head/sysutils/plasma5-systemsettings/distinfo (revision 497580) +++ head/sysutils/plasma5-systemsettings/distinfo (revision 497581) @@ -1,3 +1,3 @@ -TIMESTAMP = 1552627849 -SHA256 (KDE/plasma/5.15.3/systemsettings-5.15.3.2.tar.xz) = 42095b95a7866aa667e30c15a7ebc9b00225fdb4f06668510fdf63a18573102f -SIZE (KDE/plasma/5.15.3/systemsettings-5.15.3.2.tar.xz) = 179940 +TIMESTAMP = 1554223880 +SHA256 (KDE/plasma/5.15.4/systemsettings-5.15.4.tar.xz) = 2cff11f842266296192381a214df6fd55debfd444b754b6dec80f70a3154defb +SIZE (KDE/plasma/5.15.4/systemsettings-5.15.4.tar.xz) = 180208 Index: head/sysutils/plasma5-user-manager/distinfo =================================================================== --- head/sysutils/plasma5-user-manager/distinfo (revision 497580) +++ head/sysutils/plasma5-user-manager/distinfo (revision 497581) @@ -1,3 +1,3 @@ -TIMESTAMP = 1552454774 -SHA256 (KDE/plasma/5.15.3/user-manager-5.15.3.tar.xz) = 444b9a69f3347caa81ab1c1baaabb135a9cae783c1e91cc7e40c3626fb784ca1 -SIZE (KDE/plasma/5.15.3/user-manager-5.15.3.tar.xz) = 545576 +TIMESTAMP = 1554223881 +SHA256 (KDE/plasma/5.15.4/user-manager-5.15.4.tar.xz) = e698fcc723a559f54d41b973d17fb26a768edb4058bf1acb036491cb16f66401 +SIZE (KDE/plasma/5.15.4/user-manager-5.15.4.tar.xz) = 546072 Index: head/www/plasma5-plasma-browser-integration/distinfo =================================================================== --- head/www/plasma5-plasma-browser-integration/distinfo (revision 497580) +++ head/www/plasma5-plasma-browser-integration/distinfo (revision 497581) @@ -1,3 +1,3 @@ -TIMESTAMP = 1552454775 -SHA256 (KDE/plasma/5.15.3/plasma-browser-integration-5.15.3.tar.xz) = 59c984d174ab484899b9b1d7d4600f5be3152d8bbed2fb8f44cdbf617e510ad6 -SIZE (KDE/plasma/5.15.3/plasma-browser-integration-5.15.3.tar.xz) = 111896 +TIMESTAMP = 1554223881 +SHA256 (KDE/plasma/5.15.4/plasma-browser-integration-5.15.4.tar.xz) = 104225b3d825a387a481c7da570f1ee7b2b556401ed333f0a11f96a324471ac4 +SIZE (KDE/plasma/5.15.4/plasma-browser-integration-5.15.4.tar.xz) = 115616 Index: head/www/plasma5-plasma-browser-integration/pkg-plist =================================================================== --- head/www/plasma5-plasma-browser-integration/pkg-plist (revision 497580) +++ head/www/plasma5-plasma-browser-integration/pkg-plist (revision 497581) @@ -1,64 +1,77 @@ bin/plasma-browser-integration-host etc/chromium/native-messaging-hosts/org.kde.plasma.browser_integration.json etc/opt/chrome/native-messaging-hosts/org.kde.plasma.browser_integration.json lib/mozilla/native-messaging-hosts/org.kde.plasma.browser_integration.json %%QT_PLUGINDIR%%/kf5/kded/browserintegrationreminder.so %%QT_PLUGINDIR%%/krunner_browsertabs.so share/kservices5/plasma-runner-browsertabs.desktop +share/locale/ca/LC_MESSAGES/plasma-browser-integration-host.mo share/locale/ca/LC_MESSAGES/plasma-browser-integration-reminder.mo share/locale/ca/LC_MESSAGES/plasma_runner_browsertabs.mo +share/locale/ca@valencia/LC_MESSAGES/plasma-browser-integration-host.mo share/locale/ca@valencia/LC_MESSAGES/plasma-browser-integration-reminder.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_browsertabs.mo share/locale/cs/LC_MESSAGES/plasma-browser-integration-reminder.mo share/locale/cs/LC_MESSAGES/plasma_runner_browsertabs.mo share/locale/da/LC_MESSAGES/plasma_runner_browsertabs.mo share/locale/de/LC_MESSAGES/plasma-browser-integration-reminder.mo share/locale/de/LC_MESSAGES/plasma_runner_browsertabs.mo +share/locale/en_GB/LC_MESSAGES/plasma-browser-integration-host.mo share/locale/en_GB/LC_MESSAGES/plasma-browser-integration-reminder.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_browsertabs.mo +share/locale/es/LC_MESSAGES/plasma-browser-integration-host.mo share/locale/es/LC_MESSAGES/plasma-browser-integration-reminder.mo share/locale/es/LC_MESSAGES/plasma_runner_browsertabs.mo share/locale/eu/LC_MESSAGES/plasma_runner_browsertabs.mo share/locale/fi/LC_MESSAGES/plasma-browser-integration-reminder.mo share/locale/fi/LC_MESSAGES/plasma_runner_browsertabs.mo +share/locale/fr/LC_MESSAGES/plasma-browser-integration-host.mo share/locale/fr/LC_MESSAGES/plasma-browser-integration-reminder.mo share/locale/fr/LC_MESSAGES/plasma_runner_browsertabs.mo +share/locale/gl/LC_MESSAGES/plasma-browser-integration-host.mo share/locale/gl/LC_MESSAGES/plasma-browser-integration-reminder.mo share/locale/gl/LC_MESSAGES/plasma_runner_browsertabs.mo share/locale/id/LC_MESSAGES/plasma-browser-integration-reminder.mo share/locale/id/LC_MESSAGES/plasma_runner_browsertabs.mo share/locale/it/LC_MESSAGES/plasma-browser-integration-reminder.mo share/locale/it/LC_MESSAGES/plasma_runner_browsertabs.mo share/locale/ja/LC_MESSAGES/plasma-browser-integration-reminder.mo share/locale/ja/LC_MESSAGES/plasma_runner_browsertabs.mo share/locale/ko/LC_MESSAGES/plasma_runner_browsertabs.mo share/locale/nb/LC_MESSAGES/plasma_runner_browsertabs.mo +share/locale/nl/LC_MESSAGES/plasma-browser-integration-host.mo share/locale/nl/LC_MESSAGES/plasma-browser-integration-reminder.mo share/locale/nl/LC_MESSAGES/plasma_runner_browsertabs.mo +share/locale/nn/LC_MESSAGES/plasma-browser-integration-host.mo share/locale/nn/LC_MESSAGES/plasma-browser-integration-reminder.mo share/locale/nn/LC_MESSAGES/plasma_runner_browsertabs.mo share/locale/pa/LC_MESSAGES/plasma_runner_browsertabs.mo share/locale/pl/LC_MESSAGES/plasma-browser-integration-reminder.mo share/locale/pl/LC_MESSAGES/plasma_runner_browsertabs.mo +share/locale/pt/LC_MESSAGES/plasma-browser-integration-host.mo share/locale/pt/LC_MESSAGES/plasma-browser-integration-reminder.mo share/locale/pt/LC_MESSAGES/plasma_runner_browsertabs.mo share/locale/pt_BR/LC_MESSAGES/plasma-browser-integration-reminder.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_browsertabs.mo share/locale/ru/LC_MESSAGES/plasma-browser-integration-reminder.mo share/locale/ru/LC_MESSAGES/plasma_runner_browsertabs.mo +share/locale/sk/LC_MESSAGES/plasma-browser-integration-host.mo share/locale/sk/LC_MESSAGES/plasma-browser-integration-reminder.mo share/locale/sk/LC_MESSAGES/plasma_runner_browsertabs.mo share/locale/sl/LC_MESSAGES/plasma_runner_browsertabs.mo share/locale/sr/LC_MESSAGES/plasma_runner_browsertabs.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_browsertabs.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_browsertabs.mo share/locale/sr@latin/LC_MESSAGES/plasma_runner_browsertabs.mo +share/locale/sv/LC_MESSAGES/plasma-browser-integration-host.mo share/locale/sv/LC_MESSAGES/plasma-browser-integration-reminder.mo share/locale/sv/LC_MESSAGES/plasma_runner_browsertabs.mo share/locale/tr/LC_MESSAGES/plasma_runner_browsertabs.mo +share/locale/uk/LC_MESSAGES/plasma-browser-integration-host.mo share/locale/uk/LC_MESSAGES/plasma-browser-integration-reminder.mo share/locale/uk/LC_MESSAGES/plasma_runner_browsertabs.mo share/locale/zh_CN/LC_MESSAGES/plasma-browser-integration-reminder.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_browsertabs.mo +share/locale/zh_TW/LC_MESSAGES/plasma-browser-integration-host.mo share/locale/zh_TW/LC_MESSAGES/plasma-browser-integration-reminder.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_browsertabs.mo Index: head/x11/plasma5-kactivitymanagerd/distinfo =================================================================== --- head/x11/plasma5-kactivitymanagerd/distinfo (revision 497580) +++ head/x11/plasma5-kactivitymanagerd/distinfo (revision 497581) @@ -1,3 +1,3 @@ -TIMESTAMP = 1552454820 -SHA256 (KDE/plasma/5.15.3/kactivitymanagerd-5.15.3.tar.xz) = d5e7afeb00b81fe79b7730b5a13765a47e8c8fd606d89179475c44ba40ade3d3 -SIZE (KDE/plasma/5.15.3/kactivitymanagerd-5.15.3.tar.xz) = 84444 +TIMESTAMP = 1554224020 +SHA256 (KDE/plasma/5.15.4/kactivitymanagerd-5.15.4.tar.xz) = 0201772007295fdca0cb4a9dd2109b61ece6307c21f50c017f73b1df27734ecd +SIZE (KDE/plasma/5.15.4/kactivitymanagerd-5.15.4.tar.xz) = 84776 Index: head/x11/plasma5-kgamma5/distinfo =================================================================== --- head/x11/plasma5-kgamma5/distinfo (revision 497580) +++ head/x11/plasma5-kgamma5/distinfo (revision 497581) @@ -1,3 +1,3 @@ -TIMESTAMP = 1552454822 -SHA256 (KDE/plasma/5.15.3/kgamma5-5.15.3.tar.xz) = be0a76bf328dedeb9911d9d560e625a10850ea438374f39c22e17291abcd9689 -SIZE (KDE/plasma/5.15.3/kgamma5-5.15.3.tar.xz) = 80352 +TIMESTAMP = 1554224021 +SHA256 (KDE/plasma/5.15.4/kgamma5-5.15.4.tar.xz) = 972e7734df8e761e0d42b01f45afc0aa1daded409a562555fd8c990791a96cc1 +SIZE (KDE/plasma/5.15.4/kgamma5-5.15.4.tar.xz) = 79308 Index: head/x11/plasma5-kgamma5/pkg-plist =================================================================== --- head/x11/plasma5-kgamma5/pkg-plist (revision 497580) +++ head/x11/plasma5-kgamma5/pkg-plist (revision 497581) @@ -1,109 +1,107 @@ %%QT_PLUGINDIR%%/kcm_kgamma.so share/doc/HTML/ca/kcontrol/kgamma5/index.cache.bz2 share/doc/HTML/ca/kcontrol/kgamma5/index.docbook share/doc/HTML/cs/kcontrol/kgamma5/index.cache.bz2 share/doc/HTML/cs/kcontrol/kgamma5/index.docbook share/doc/HTML/de/kcontrol/kgamma5/index.cache.bz2 share/doc/HTML/de/kcontrol/kgamma5/index.docbook share/doc/HTML/en/kcontrol/kgamma5/index.cache.bz2 share/doc/HTML/en/kcontrol/kgamma5/index.docbook share/doc/HTML/es/kcontrol/kgamma5/index.cache.bz2 share/doc/HTML/es/kcontrol/kgamma5/index.docbook share/doc/HTML/et/kcontrol/kgamma5/index.cache.bz2 share/doc/HTML/et/kcontrol/kgamma5/index.docbook -share/doc/HTML/id/kcontrol/kgamma5/index.cache.bz2 -share/doc/HTML/id/kcontrol/kgamma5/index.docbook share/doc/HTML/it/kcontrol/kgamma5/index.cache.bz2 share/doc/HTML/it/kcontrol/kgamma5/index.docbook share/doc/HTML/nl/kcontrol/kgamma5/index.cache.bz2 share/doc/HTML/nl/kcontrol/kgamma5/index.docbook share/doc/HTML/pt/kcontrol/kgamma5/index.cache.bz2 share/doc/HTML/pt/kcontrol/kgamma5/index.docbook share/doc/HTML/pt_BR/kcontrol/kgamma5/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/kgamma5/index.docbook share/doc/HTML/ru/kcontrol/kgamma5/index.cache.bz2 share/doc/HTML/ru/kcontrol/kgamma5/index.docbook share/doc/HTML/sv/kcontrol/kgamma5/index.cache.bz2 share/doc/HTML/sv/kcontrol/kgamma5/index.docbook share/doc/HTML/uk/kcontrol/kgamma5/index.cache.bz2 share/doc/HTML/uk/kcontrol/kgamma5/index.docbook share/kgamma/pics/background.png share/kgamma/pics/cmyscale.png share/kgamma/pics/darkgrey.png share/kgamma/pics/greyscale.png share/kgamma/pics/lightgrey.png share/kgamma/pics/midgrey.png share/kgamma/pics/rgbscale.png share/kservices5/kgamma.desktop share/locale/ar/LC_MESSAGES/kcmkgamma.mo share/locale/be/LC_MESSAGES/kcmkgamma.mo share/locale/bg/LC_MESSAGES/kcmkgamma.mo share/locale/br/LC_MESSAGES/kcmkgamma.mo share/locale/bs/LC_MESSAGES/kcmkgamma.mo share/locale/ca/LC_MESSAGES/kcmkgamma.mo share/locale/ca@valencia/LC_MESSAGES/kcmkgamma.mo share/locale/cs/LC_MESSAGES/kcmkgamma.mo share/locale/cy/LC_MESSAGES/kcmkgamma.mo share/locale/da/LC_MESSAGES/kcmkgamma.mo share/locale/de/LC_MESSAGES/kcmkgamma.mo share/locale/el/LC_MESSAGES/kcmkgamma.mo share/locale/en_GB/LC_MESSAGES/kcmkgamma.mo share/locale/eo/LC_MESSAGES/kcmkgamma.mo share/locale/es/LC_MESSAGES/kcmkgamma.mo share/locale/et/LC_MESSAGES/kcmkgamma.mo share/locale/eu/LC_MESSAGES/kcmkgamma.mo share/locale/fa/LC_MESSAGES/kcmkgamma.mo share/locale/fi/LC_MESSAGES/kcmkgamma.mo share/locale/fr/LC_MESSAGES/kcmkgamma.mo share/locale/fy/LC_MESSAGES/kcmkgamma.mo share/locale/ga/LC_MESSAGES/kcmkgamma.mo share/locale/gl/LC_MESSAGES/kcmkgamma.mo share/locale/he/LC_MESSAGES/kcmkgamma.mo share/locale/hi/LC_MESSAGES/kcmkgamma.mo share/locale/hne/LC_MESSAGES/kcmkgamma.mo share/locale/hr/LC_MESSAGES/kcmkgamma.mo share/locale/hu/LC_MESSAGES/kcmkgamma.mo share/locale/ia/LC_MESSAGES/kcmkgamma.mo share/locale/id/LC_MESSAGES/kcmkgamma.mo share/locale/is/LC_MESSAGES/kcmkgamma.mo share/locale/it/LC_MESSAGES/kcmkgamma.mo share/locale/ja/LC_MESSAGES/kcmkgamma.mo share/locale/kk/LC_MESSAGES/kcmkgamma.mo share/locale/km/LC_MESSAGES/kcmkgamma.mo share/locale/ko/LC_MESSAGES/kcmkgamma.mo share/locale/lt/LC_MESSAGES/kcmkgamma.mo share/locale/lv/LC_MESSAGES/kcmkgamma.mo share/locale/mk/LC_MESSAGES/kcmkgamma.mo share/locale/mr/LC_MESSAGES/kcmkgamma.mo share/locale/ms/LC_MESSAGES/kcmkgamma.mo share/locale/nb/LC_MESSAGES/kcmkgamma.mo share/locale/nds/LC_MESSAGES/kcmkgamma.mo share/locale/ne/LC_MESSAGES/kcmkgamma.mo share/locale/nl/LC_MESSAGES/kcmkgamma.mo share/locale/nn/LC_MESSAGES/kcmkgamma.mo share/locale/oc/LC_MESSAGES/kcmkgamma.mo share/locale/pa/LC_MESSAGES/kcmkgamma.mo share/locale/pl/LC_MESSAGES/kcmkgamma.mo share/locale/pt/LC_MESSAGES/kcmkgamma.mo share/locale/pt_BR/LC_MESSAGES/kcmkgamma.mo share/locale/ro/LC_MESSAGES/kcmkgamma.mo share/locale/ru/LC_MESSAGES/kcmkgamma.mo share/locale/se/LC_MESSAGES/kcmkgamma.mo share/locale/si/LC_MESSAGES/kcmkgamma.mo share/locale/sk/LC_MESSAGES/kcmkgamma.mo share/locale/sl/LC_MESSAGES/kcmkgamma.mo share/locale/sq/LC_MESSAGES/kcmkgamma.mo share/locale/sr/LC_MESSAGES/kcmkgamma.mo share/locale/sr@ijekavian/LC_MESSAGES/kcmkgamma.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmkgamma.mo share/locale/sr@latin/LC_MESSAGES/kcmkgamma.mo share/locale/sv/LC_MESSAGES/kcmkgamma.mo share/locale/ta/LC_MESSAGES/kcmkgamma.mo share/locale/tg/LC_MESSAGES/kcmkgamma.mo share/locale/th/LC_MESSAGES/kcmkgamma.mo share/locale/tr/LC_MESSAGES/kcmkgamma.mo share/locale/ug/LC_MESSAGES/kcmkgamma.mo share/locale/uk/LC_MESSAGES/kcmkgamma.mo share/locale/zh_CN/LC_MESSAGES/kcmkgamma.mo share/locale/zh_HK/LC_MESSAGES/kcmkgamma.mo share/locale/zh_TW/LC_MESSAGES/kcmkgamma.mo Index: head/x11/plasma5-kscreen/distinfo =================================================================== --- head/x11/plasma5-kscreen/distinfo (revision 497580) +++ head/x11/plasma5-kscreen/distinfo (revision 497581) @@ -1,3 +1,3 @@ -TIMESTAMP = 1552454822 -SHA256 (KDE/plasma/5.15.3/kscreen-5.15.3.tar.xz) = 0e9945afce9d616ab34da5a985410aac8fd3d9f15630db74d53e6540ad0af8c7 -SIZE (KDE/plasma/5.15.3/kscreen-5.15.3.tar.xz) = 123760 +TIMESTAMP = 1554224021 +SHA256 (KDE/plasma/5.15.4/kscreen-5.15.4.tar.xz) = 82b103e9ba72d4a50d94c4cb4033d700f28e6615ac63a34675cbe22efdadaf7d +SIZE (KDE/plasma/5.15.4/kscreen-5.15.4.tar.xz) = 123376 Index: head/x11/plasma5-kwayland-integration/distinfo =================================================================== --- head/x11/plasma5-kwayland-integration/distinfo (revision 497580) +++ head/x11/plasma5-kwayland-integration/distinfo (revision 497581) @@ -1,3 +1,3 @@ -TIMESTAMP = 1552454823 -SHA256 (KDE/plasma/5.15.3/kwayland-integration-5.15.3.tar.xz) = 7000f3fc7802e8dc9cb0825fd2cc4c5e2619e80fa12536e4e7cfdd33ad4b2b3f -SIZE (KDE/plasma/5.15.3/kwayland-integration-5.15.3.tar.xz) = 18676 +TIMESTAMP = 1554224022 +SHA256 (KDE/plasma/5.15.4/kwayland-integration-5.15.4.tar.xz) = 6e760090dd68aa5fbd4ec2c01c7a277ef15310108fa4368bee82c6f57e8dcd99 +SIZE (KDE/plasma/5.15.4/kwayland-integration-5.15.4.tar.xz) = 18816 Index: head/x11/plasma5-libkscreen/distinfo =================================================================== --- head/x11/plasma5-libkscreen/distinfo (revision 497580) +++ head/x11/plasma5-libkscreen/distinfo (revision 497581) @@ -1,3 +1,3 @@ -TIMESTAMP = 1552454824 -SHA256 (KDE/plasma/5.15.3/libkscreen-5.15.3.tar.xz) = 728f3c0f3bed38e75b8319a2452da9f864911c4b8206f354d536e2a21e9aee3b -SIZE (KDE/plasma/5.15.3/libkscreen-5.15.3.tar.xz) = 81028 +TIMESTAMP = 1554224023 +SHA256 (KDE/plasma/5.15.4/libkscreen-5.15.4.tar.xz) = b9a0fb16a6f96b6203a612c46db36f81f182577b7dc658dff511c703de52e6db +SIZE (KDE/plasma/5.15.4/libkscreen-5.15.4.tar.xz) = 80976 Index: head/x11/plasma5-plasma/Makefile =================================================================== --- head/x11/plasma5-plasma/Makefile (revision 497580) +++ head/x11/plasma5-plasma/Makefile (revision 497581) @@ -1,30 +1,29 @@ # $FreeBSD$ PORTNAME= plasma DISTVERSION= ${KDE_PLASMA_VERSION} -PORTREVISION= 1 CATEGORIES= x11 kde PKGNAMEPREFIX= plasma5- MAINTAINER= kde@FreeBSD.org COMMENT= KDE5 plasma meta port LICENSE= LGPL20 USES= kde:5 metaport qt:5 # remove: # * bluedevil as we do have bluez # * plasma-pa don't depend on plamsa-pa by default # * breeze-kde4 don't pull in qt4 bits USE_KDE= ${_USE_PLASMA_ALL:Nplasma-pa:Nbreeze-kde4} OPTIONS_DEFINE= PHONON PULSEAUDIO OPTIONS_DEFAULT= PHONON # Different from PHONON, because this is about the output plugins PHONON_DESC= Include phonon-gstreamer, for sound output PHONON_RUN_DEPENDS= ${QT_PLUGINDIR}/phonon4qt5_backend/phonon_gstreamer.so:multimedia/phonon-gstreamer PULSEAUDIO_USE= KDE=plasma-pa_run .include Index: head/x11/plasma5-plasma-desktop/Makefile =================================================================== --- head/x11/plasma5-plasma-desktop/Makefile (revision 497580) +++ head/x11/plasma5-plasma-desktop/Makefile (revision 497581) @@ -1,71 +1,70 @@ # $FreeBSD$ PORTNAME= plasma-desktop -DISTVERSION= ${KDE_PLASMA_VERSION}.2 -PORTREVISION= 1 +DISTVERSION= ${KDE_PLASMA_VERSION} CATEGORIES= x11 kde kde-plasma MAINTAINER= kde@FreeBSD.org COMMENT= Plasma5 plasma desktop # TODO: update packagekit-qt5 #LIB_DEPENDS= libpackagekit-qt.so:ports-mgmt/packagekit-qt5 LIB_DEPENDS= libboost_system.so:devel/boost-libs \ libfontconfig.so:x11-fonts/fontconfig \ libfreetype.so:print/freetype2 \ libxcb-image.so:x11/xcb-util-image \ libxcb-keysyms.so:x11/xcb-util-keysyms \ libxkbfile.so:x11/libxkbfile RUN_DEPENDS= iso-codes>=0:misc/iso-codes \ xf86-input-evdev>0:x11-drivers/xf86-input-evdev \ xf86-input-libinput>0:x11-drivers/xf86-input-libinput BUILD_DEPENDS= xf86-input-evdev>0:x11-drivers/xf86-input-evdev \ xf86-input-libinput>0:x11-drivers/xf86-input-libinput USES= cmake compiler:c++11-lib cpe desktop-file-utils \ gettext kde:5 pkgconfig qt:5 tar:xz USE_GNOME= glib20 USE_KDE= activities activities-stats archive attica auth baloo \ bookmarks codecs completion config configwidgets coreaddons \ crash dbusaddons doctools ecm emoticons filemetadata \ globalaccel guiaddons i18n iconthemes init itemmodels \ itemviews jobwidgets kcmutils kdeclarative kdelibs4support \ kio newstuff notifications \ notifyconfig package parts people plasma-framework \ plasma-workspace runner service solid \ sonnet textwidgets unitconversion wallet \ widgetsaddons windowsystem xmlgui USE_KDE+= drkonqi_run infocenter_run kde-cli-tools_run kmenuedit_run ksysguard_run \ polkit-kde-agent-1_run systemsettings_run USE_QT= concurrent core dbus declarative gui network phonon4 printsupport \ sql svg widgets x11extras xml \ buildtools_build qmake_build USE_XORG= ice sm x11 xcb xcursor xext xfixes xft xi xrender OPTIONS_DEFINE= SYNAPTICS OPTIONS_SUB= yes OPTIONS_GROUP= IM OPTIONS_GROUP_IM= IBUS SCIM IM_DESC= Input Method Support OPTIONS_DEFAULT= SYNAPTICS SYNAPTICS_DESC= Build touchpad KCM SYNAPTICS_BUILD_DEPENDS= xf86-input-synaptics>0:x11-drivers/xf86-input-synaptics SYNAPTICS_RUN_DEPENDS= xf86-input-synaptics>0:x11-drivers/xf86-input-synaptics SYNAPTICS_CMAKE_BOOL= WANT_SYNAPTICS IBUS_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_IBus IBUS_LIB_DEPENDS= libibus-1.0.so:textproc/ibus IBUS_DESC= Enable IBUS backend for input dialog SCIM_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_SCIM SCIM_LIB_DEPENDS= libscim-1.0.so:textproc/scim SCIM_DESC= Enable SCIM backend for input dialog post-patch: # Set the correct iso-codes directory ${REINPLACE_CMD} -e '/isoCodesXmlDir/ s#/usr/share#${LOCALBASE}/share#g' \ ${PATCH_WRKSRC}/kcms/keyboard/iso_codes.h .include Index: head/x11/plasma5-plasma-desktop/distinfo =================================================================== --- head/x11/plasma5-plasma-desktop/distinfo (revision 497580) +++ head/x11/plasma5-plasma-desktop/distinfo (revision 497581) @@ -1,3 +1,3 @@ -TIMESTAMP = 1552627848 -SHA256 (KDE/plasma/5.15.3/plasma-desktop-5.15.3.2.tar.xz) = 21e54d489817751173049122410737db641a8e58955b84264a4ec861e302ff8a -SIZE (KDE/plasma/5.15.3/plasma-desktop-5.15.3.2.tar.xz) = 10151008 +TIMESTAMP = 1554224127 +SHA256 (KDE/plasma/5.15.4/plasma-desktop-5.15.4.tar.xz) = 0c4900ce7cc46261185bfc4fce2b47dc69a659f6c1fc8d94d770ee6a0d06d028 +SIZE (KDE/plasma/5.15.4/plasma-desktop-5.15.4.tar.xz) = 9099172 Index: head/x11/plasma5-plasma-integration/distinfo =================================================================== --- head/x11/plasma5-plasma-integration/distinfo (revision 497580) +++ head/x11/plasma5-plasma-integration/distinfo (revision 497581) @@ -1,3 +1,3 @@ -TIMESTAMP = 1552454837 -SHA256 (KDE/plasma/5.15.3/plasma-integration-5.15.3.tar.xz) = 659c4a8c5b890cdf41b788e0609f680b00d6f609610d46af8656484057141c23 -SIZE (KDE/plasma/5.15.3/plasma-integration-5.15.3.tar.xz) = 55148 +TIMESTAMP = 1554224127 +SHA256 (KDE/plasma/5.15.4/plasma-integration-5.15.4.tar.xz) = c09974edf55eb529d5a73c8a2533649986b5ce8423bdbc86d04a0be5c07aaee9 +SIZE (KDE/plasma/5.15.4/plasma-integration-5.15.4.tar.xz) = 55352 Index: head/x11/plasma5-plasma-workspace/Makefile =================================================================== --- head/x11/plasma5-plasma-workspace/Makefile (revision 497580) +++ head/x11/plasma5-plasma-workspace/Makefile (revision 497581) @@ -1,61 +1,60 @@ # $FreeBSD$ PORTNAME= plasma-workspace DISTVERSION= ${KDE_PLASMA_VERSION} -PORTREVISION= 3 CATEGORIES= x11 kde kde-plasma MAINTAINER= kde@FreeBSD.org COMMENT= Plasma5 Plasma workspace LIB_DEPENDS= libcln.so:math/cln \ libdbusmenu-qt5.so:devel/libdbusmenu-qt \ libqalculate.so:math/libqalculate \ libxcb-image.so:x11/xcb-util-image \ libxcb-util.so:x11/xcb-util RUN_DEPENDS= ck-launch-session:sysutils/consolekit2\ iceauth:x11/iceauth \ xsetroot:x11/xsetroot \ xset:x11/xset \ xmessage:x11/xmessage \ ${LOCALBASE}/libdata/pkgconfig/xkeyboard-config.pc:x11/xkeyboard-config \ iso-codes>=0:misc/iso-codes USES= cmake compiler:c++11-lib cpe gettext kde:5 pkgconfig \ qt:5 tar:xz USE_KDE= activities activitymanagerd attica auth baloo bookmarks \ codecs completion config configwidgets coreaddons crash \ dbusaddons doctools emoticons filemetadata globalaccel \ guiaddons holidays i18n iconthemes idletime init itemmodels \ itemviews jobwidgets js jsembed kcmutils kdeclarative \ kdelibs4support kdesu kdewebkit kio kscreenlocker \ notifications package pty kwin libkscreen libksysguard \ newstuff notifyconfig parts plasma-framework \ plasma-integration prison runner service solid sonnet \ texteditor textwidgets unitconversion wallet wayland \ widgetsaddons windowsystem xmlgui xmlrpcclient \ breeze_run breeze-icons_run oxygen-icons5_run \ kded_run milou_run USE_QT= concurrent core declarative dbus graphicaleffects gui network phonon4 \ printsupport qdbus quickcontrols_run script sql \ testlib webkit widgets x11extras xml \ paths_run \ buildtools_build qmake_build USE_XORG= ice sm x11 xau xcb xcomposite xext xfixes xft xkbfile xrender xtst CMAKE_OFF= BUILD_TESTING # In 5.15 a file was moved from x11/plasma5-plasma-desktop to x11/plasma5-plasma-workspace: CONFLICTS_INSTALL= plasma5-plasma-desktop-5.14.* post-patch: # set the paths in startkde ${REINPLACE_CMD} -e 's|%%KDE_PREFIX%%|${KDE_PREFIX}|g' \ -e 's|%%LOCALBASE%%|${LOCALBASE}|g' \ -e 's|%%QT_BINDIR%%|${QT_BINDIR}|g' \ -e 's|%%QT_IMPORTDIR%%|${QT_IMPORTDIR}|g' \ -e 's|%%QT_PLUGINDIR%%|${QT_PLUGINDIR}|g' \ -e 's|%%QT_QMLDIR%%|${QT_QMLDIR}|g' \ ${PATCH_WRKSRC}/startkde/startkde.cmake .include Index: head/x11/plasma5-plasma-workspace/distinfo =================================================================== --- head/x11/plasma5-plasma-workspace/distinfo (revision 497580) +++ head/x11/plasma5-plasma-workspace/distinfo (revision 497581) @@ -1,3 +1,3 @@ -TIMESTAMP = 1552454839 -SHA256 (KDE/plasma/5.15.3/plasma-workspace-5.15.3.tar.xz) = a9b8e2af593929695c3b2f9d3c709d4a0a4d760dcbe439ca2f24efd8d06b3922 -SIZE (KDE/plasma/5.15.3/plasma-workspace-5.15.3.tar.xz) = 4708156 +TIMESTAMP = 1554224129 +SHA256 (KDE/plasma/5.15.4/plasma-workspace-5.15.4.tar.xz) = f86c2fda5b7dc2c40be1ea3c4791fef3965d2f91809700c849d30c00506753c9 +SIZE (KDE/plasma/5.15.4/plasma-workspace-5.15.4.tar.xz) = 4718764 Index: head/x11-themes/plasma5-breeze/Makefile =================================================================== --- head/x11-themes/plasma5-breeze/Makefile (revision 497580) +++ head/x11-themes/plasma5-breeze/Makefile (revision 497581) @@ -1,25 +1,24 @@ # $FreeBSD$ PORTNAME= breeze DISTVERSION= ${KDE_PLASMA_VERSION} -PORTREVISION= 1 CATEGORIES= x11-themes kde kde-plasma MAINTAINER= kde@FreeBSD.org COMMENT= Plasma5 artwork, styles and assets for the Breeze visual style LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libfftw3_threads.so:math/fftw3 USES= cmake compiler:c++11-lib cpe \ gettext kde:5 pkgconfig qt:5 tar:xz USE_KDE= auth breeze-icons codecs config configwidgets coreaddons \ decoration ecm frameworkintegration guiaddons i18n kcmutils \ plasma-framework service wayland widgetsaddons windowsystem USE_QT= core dbus declarative gui network widgets x11extras xml \ buildtools_build qmake_build USE_XORG= xcb .include Index: head/x11-themes/plasma5-breeze/distinfo =================================================================== --- head/x11-themes/plasma5-breeze/distinfo (revision 497580) +++ head/x11-themes/plasma5-breeze/distinfo (revision 497581) @@ -1,3 +1,3 @@ -TIMESTAMP = 1552454778 -SHA256 (KDE/plasma/5.15.3/breeze-5.15.3.tar.xz) = 4be0b50deb6a3b42e3c09461ebef76f0af758c400c998b627bc72931d8b3fe50 -SIZE (KDE/plasma/5.15.3/breeze-5.15.3.tar.xz) = 25147828 +TIMESTAMP = 1554223885 +SHA256 (KDE/plasma/5.15.4/breeze-5.15.4.tar.xz) = e5b174d9509f3dcb85b0865b8bc8d40e2e2fb0f9373eda1877e5874a9c456958 +SIZE (KDE/plasma/5.15.4/breeze-5.15.4.tar.xz) = 25144180 Index: head/x11-themes/plasma5-breeze-gtk/distinfo =================================================================== --- head/x11-themes/plasma5-breeze-gtk/distinfo (revision 497580) +++ head/x11-themes/plasma5-breeze-gtk/distinfo (revision 497581) @@ -1,3 +1,3 @@ -TIMESTAMP = 1552454789 -SHA256 (KDE/plasma/5.15.3/breeze-gtk-5.15.3.tar.xz) = 4426839fb30cc088a1cedad4c542fc7c0d07a266c3c40ec03c0003ecdd10e3e5 -SIZE (KDE/plasma/5.15.3/breeze-gtk-5.15.3.tar.xz) = 47336 +TIMESTAMP = 1554223896 +SHA256 (KDE/plasma/5.15.4/breeze-gtk-5.15.4.tar.xz) = e3b13105cc39d5c914ab81b6a10da9b16cb9a9a7058c13a0486fd02af40f7bd9 +SIZE (KDE/plasma/5.15.4/breeze-gtk-5.15.4.tar.xz) = 47504 Index: head/x11-themes/plasma5-kde-gtk-config/distinfo =================================================================== --- head/x11-themes/plasma5-kde-gtk-config/distinfo (revision 497580) +++ head/x11-themes/plasma5-kde-gtk-config/distinfo (revision 497581) @@ -1,3 +1,3 @@ -TIMESTAMP = 1552454800 -SHA256 (KDE/plasma/5.15.3/kde-gtk-config-5.15.3.tar.xz) = 488f678d65352f74b96149371f49098be8f22adbdbceb9d2699e8beeb4115cfb -SIZE (KDE/plasma/5.15.3/kde-gtk-config-5.15.3.tar.xz) = 156808 +TIMESTAMP = 1554223907 +SHA256 (KDE/plasma/5.15.4/kde-gtk-config-5.15.4.tar.xz) = 3689328ddd1e30313f3ad1df02e9c52b29d88b5a3dd42c4507bbc9e58286059a +SIZE (KDE/plasma/5.15.4/kde-gtk-config-5.15.4.tar.xz) = 156896 Index: head/x11-themes/plasma5-oxygen/Makefile =================================================================== --- head/x11-themes/plasma5-oxygen/Makefile (revision 497580) +++ head/x11-themes/plasma5-oxygen/Makefile (revision 497581) @@ -1,26 +1,25 @@ # $FreeBSD$ PORTNAME= oxygen DISTVERSION= ${KDE_PLASMA_VERSION} -PORTREVISION= 1 CATEGORIES= x11-themes kde kde-plasma MAINTAINER= kde@FreeBSD.org COMMENT= Plasma5 Oxygen style LICENSE= GPLv2 LGPL21 LICENSE_COMB= multi LICENSE_FILE= ${WRKSRC}/COPYING LICENSE_FILE_LGPL21= ${WRKSRC}/COPYING.LIB USES= cmake compiler:c++11-lib cpe gettext \ kde:5 pkgconfig qt:5 tar:xz USE_LDCONFIG= yes USE_KDE= auth codecs completion config configwidgets coreaddons decoration ecm \ frameworkintegration guiaddons i18n kcmutils service \ wayland widgetsaddons windowsystem USE_QT= core dbus declarative gui network widgets x11extras xml \ buildtools_build qmake_build USE_XORG= xcb .include Index: head/x11-themes/plasma5-oxygen/distinfo =================================================================== --- head/x11-themes/plasma5-oxygen/distinfo (revision 497580) +++ head/x11-themes/plasma5-oxygen/distinfo (revision 497581) @@ -1,3 +1,3 @@ -TIMESTAMP = 1552454803 -SHA256 (KDE/plasma/5.15.3/oxygen-5.15.3.tar.xz) = 6bb7e108291f1b82881de71a1df99429e90922e8fb2318d99a7002be6b4c0628 -SIZE (KDE/plasma/5.15.3/oxygen-5.15.3.tar.xz) = 4468028 +TIMESTAMP = 1554223908 +SHA256 (KDE/plasma/5.15.4/oxygen-5.15.4.tar.xz) = 4d319eee7adc6feb3f01054b1e9e80776a895303b6935d7597f8503d5a183220 +SIZE (KDE/plasma/5.15.4/oxygen-5.15.4.tar.xz) = 4472368 Index: head/x11-themes/plasma5-plasma-workspace-wallpapers/distinfo =================================================================== --- head/x11-themes/plasma5-plasma-workspace-wallpapers/distinfo (revision 497580) +++ head/x11-themes/plasma5-plasma-workspace-wallpapers/distinfo (revision 497581) @@ -1,3 +1,3 @@ -TIMESTAMP = 1552454805 -SHA256 (KDE/plasma/5.15.3/plasma-workspace-wallpapers-5.15.3.tar.xz) = 043b459e801d33caad8743f1133eb27edebb42171b08393bda92ea69ccd6fa75 -SIZE (KDE/plasma/5.15.3/plasma-workspace-wallpapers-5.15.3.tar.xz) = 24355512 +TIMESTAMP = 1554223912 +SHA256 (KDE/plasma/5.15.4/plasma-workspace-wallpapers-5.15.4.tar.xz) = ba8c66c85fdddc401eecae453d864af954daa181724cc168cddf2d1e93f9bd40 +SIZE (KDE/plasma/5.15.4/plasma-workspace-wallpapers-5.15.4.tar.xz) = 24354884 Index: head/x11-toolkits/plasma5-kdeplasma-addons/distinfo =================================================================== --- head/x11-toolkits/plasma5-kdeplasma-addons/distinfo (revision 497580) +++ head/x11-toolkits/plasma5-kdeplasma-addons/distinfo (revision 497581) @@ -1,3 +1,3 @@ -TIMESTAMP = 1552454806 -SHA256 (KDE/plasma/5.15.3/kdeplasma-addons-5.15.3.tar.xz) = 364faceba87e8ae4d9d515615a022316cc1115d75e56fe305ee671ff3ab73c1c -SIZE (KDE/plasma/5.15.3/kdeplasma-addons-5.15.3.tar.xz) = 603136 +TIMESTAMP = 1554223912 +SHA256 (KDE/plasma/5.15.4/kdeplasma-addons-5.15.4.tar.xz) = bd1c3dbf46e7c1745ff242adaed9c973e401529dc76d57dab6ffdd994eef71e2 +SIZE (KDE/plasma/5.15.4/kdeplasma-addons-5.15.4.tar.xz) = 604968 Index: head/x11-wm/plasma5-kdecoration/distinfo =================================================================== --- head/x11-wm/plasma5-kdecoration/distinfo (revision 497580) +++ head/x11-wm/plasma5-kdecoration/distinfo (revision 497581) @@ -1,3 +1,3 @@ -TIMESTAMP = 1552454807 -SHA256 (KDE/plasma/5.15.3/kdecoration-5.15.3.tar.xz) = b04d9e2b454ee61f44e5557764782f3a7c73ace2c1a2076ddbce5e78bf36b7fa -SIZE (KDE/plasma/5.15.3/kdecoration-5.15.3.tar.xz) = 42244 +TIMESTAMP = 1554223913 +SHA256 (KDE/plasma/5.15.4/kdecoration-5.15.4.tar.xz) = 22ceaa283df60defdef9f51da568375bf42ec9ddd74fc3bfd7e519f867c69b89 +SIZE (KDE/plasma/5.15.4/kdecoration-5.15.4.tar.xz) = 42480 Index: head/x11-wm/plasma5-kwin/Makefile =================================================================== --- head/x11-wm/plasma5-kwin/Makefile (revision 497580) +++ head/x11-wm/plasma5-kwin/Makefile (revision 497581) @@ -1,50 +1,50 @@ # $FreeBSD$ PORTNAME= kwin -DISTVERSION= ${KDE_PLASMA_VERSION}.2 +DISTVERSION= ${KDE_PLASMA_VERSION} CATEGORIES= x11-wm kde kde-plasma MAINTAINER= kde@FreeBSD.org COMMENT= Plasma5 window manager LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libXcursor.so:x11/libXcursor \ libdrm.so:graphics/libdrm \ libepoxy.so:graphics/libepoxy \ libfontconfig.so:x11-fonts/fontconfig \ libfreetype.so:print/freetype2 \ libinput.so:x11/libinput \ libudev.so:devel/libudev-devd \ libwayland-cursor.so:graphics/wayland \ libxcb-cursor.so:x11/xcb-util-cursor \ libxcb-icccm.so:x11/xcb-util-wm \ libxcb-image.so:x11/xcb-util-image \ libxcb-keysyms.so:x11/xcb-util-keysyms \ libxkbcommon.so:x11/libxkbcommon BUILD_DEPENDS= ${LOCALBASE}/include/linux/input.h:devel/evdev-proto \ Xwayland:x11-servers/xwayland RUN_DEPENDS= Xwayland:x11-servers/xwayland USES= cmake compiler:c++11-lib cpe gettext \ kde:5 pkgconfig qt:5 tar:xz USE_GL= egl USE_KDE= activities activities attica auth breeze codecs \ completion config configwidgets coreaddons crash decoration \ doctools doctools globalaccel i18n iconthemes idletime init \ jobwidgets kcmutils kdeclarative kio package kscreenlocker \ newstuff notifications plasma-framework service sonnet \ textwidgets wayland widgetsaddons windowsystem xmlgui USE_LDCONFIG= yes USE_QT= concurrent core dbus declarative gui multimedia network script \ sensors testlib uiplugin uitools widgets x11extras xml \ buildtools_build qmake_build \ quickcontrols2_run virtualkeyboard_run USE_XORG= ice sm x11 xcb xext xi post-patch: ${REINPLACE_CMD} '/sysmacros.h/d' \ ${PATCH_WRKSRC}/logind.cpp .include Index: head/x11-wm/plasma5-kwin/distinfo =================================================================== --- head/x11-wm/plasma5-kwin/distinfo (revision 497580) +++ head/x11-wm/plasma5-kwin/distinfo (revision 497581) @@ -1,3 +1,3 @@ -TIMESTAMP = 1552627829 -SHA256 (KDE/plasma/5.15.3/kwin-5.15.3.2.tar.xz) = 3c7b5ced440cf9ecd23b5905727cea4730188fbfe6388b4fcdb5eb3f52323147 -SIZE (KDE/plasma/5.15.3/kwin-5.15.3.2.tar.xz) = 6352944 +TIMESTAMP = 1554224019 +SHA256 (KDE/plasma/5.15.4/kwin-5.15.4.tar.xz) = 4bdb01713d0d5605810bcbfddfbc9cb5e5bb2e7c89846f37f20e083b84c00ec1 +SIZE (KDE/plasma/5.15.4/kwin-5.15.4.tar.xz) = 6236248 Index: head/x11-wm/plasma5-kwin/pkg-plist =================================================================== --- head/x11-wm/plasma5-kwin/pkg-plist (revision 497580) +++ head/x11-wm/plasma5-kwin/pkg-plist (revision 497581) @@ -1,1409 +1,1410 @@ bin/kwin_wayland bin/kwin_x11 etc/xdg/aurorae.knsrc etc/xdg/kwineffect.knsrc etc/xdg/kwinscripts.knsrc etc/xdg/kwinswitcher.knsrc etc/xdg/org_kde_kwin.categories include/kwin_export.h include/kwinanimationeffect.h include/kwinconfig.h include/kwineffects.h include/kwineffects_export.h include/kwinglobals.h include/kwinglplatform.h include/kwingltexture.h include/kwinglutils.h include/kwinglutils_export.h include/kwinglutils_funcs.h include/kwinxrenderutils.h include/kwinxrenderutils_export.h lib/cmake/KWinDBusInterface/KWinDBusInterfaceConfig.cmake lib/kconf_update_bin/kwin5_update_default_rules lib/libexec/kwin_killer_helper lib/libexec/kwin_rules_dialog lib/libexec/org_kde_kwin_xclipboard_syncer lib/libkcmkwincommon.so.5 lib/libkcmkwincommon.so.%%KDE_PLASMA_VERSION%% lib/libkdeinit5_kwin_rules_dialog.so lib/libkdeinit5_kwin_x11.so lib/libkwin.so.5 lib/libkwin.so.%%KDE_PLASMA_VERSION%% lib/libkwin4_effect_builtins.so lib/libkwin4_effect_builtins.so.1 lib/libkwin4_effect_builtins.so.1.0.0 lib/libkwineffects.so lib/libkwineffects.so.12 lib/libkwineffects.so.%%KDE_PLASMA_VERSION%% lib/libkwinglutils.so lib/libkwinglutils.so.12 lib/libkwinglutils.so.%%KDE_PLASMA_VERSION%% lib/libkwinxrenderutils.so lib/libkwinxrenderutils.so.12 lib/libkwinxrenderutils.so.%%KDE_PLASMA_VERSION%% %%QT_PLUGINDIR%%/kcm_kwin_scripts.so %%QT_PLUGINDIR%%/kcm_kwindecoration.so %%QT_PLUGINDIR%%/kcm_kwinoptions.so %%QT_PLUGINDIR%%/kcm_kwinrules.so %%QT_PLUGINDIR%%/kcm_kwinscreenedges.so %%QT_PLUGINDIR%%/kcm_kwintabbox.so %%QT_PLUGINDIR%%/kcm_kwintouchscreen.so %%QT_PLUGINDIR%%/kcms/kcm_kwin_virtualdesktops.so %%QT_PLUGINDIR%%/kf5/org.kde.kidletime.platforms/KF5IdleTimeKWinWaylandPrivatePlugin.so %%QT_PLUGINDIR%%/kpackage/packagestructure/kwin_packagestructure_aurorae.so %%QT_PLUGINDIR%%/kpackage/packagestructure/kwin_packagestructure_decoration.so %%QT_PLUGINDIR%%/kpackage/packagestructure/kwin_packagestructure_effect.so %%QT_PLUGINDIR%%/kpackage/packagestructure/kwin_packagestructure_scripts.so %%QT_PLUGINDIR%%/kpackage/packagestructure/kwin_packagestructure_windowswitcher.so %%QT_PLUGINDIR%%/kwin/effects/configs/kcm_kwin4_genericscripted.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_blur_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_coverswitch_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_cube_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_cubeslide_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_desktopgrid_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_diminactive_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_flipswitch_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_glide_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_invert_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_lookingglass_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_magiclamp_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_magnifier_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_mouseclick_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_mousemark_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_presentwindows_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_resize_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_showfps_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_showpaint_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_slide_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_thumbnailaside_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_trackmouse_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_windowgeometry_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_wobblywindows_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_zoom_config.so %%QT_PLUGINDIR%%/kwincompositing.so %%QT_PLUGINDIR%%/org.kde.kdecoration2/kwin5_aurorae.so %%QT_PLUGINDIR%%/org.kde.kglobalaccel5.platforms/KF5GlobalAccelPrivateKWin.so %%QT_PLUGINDIR%%/org.kde.kwin.platforms/KWinX11Platform.so %%QT_PLUGINDIR%%/org.kde.kwin.scenes/KWinSceneOpenGL.so %%QT_PLUGINDIR%%/org.kde.kwin.scenes/KWinSceneQPainter.so %%QT_PLUGINDIR%%/org.kde.kwin.scenes/KWinSceneXRender.so %%QT_PLUGINDIR%%/org.kde.kwin.waylandbackends/KWinWaylandDrmBackend.so %%QT_PLUGINDIR%%/org.kde.kwin.waylandbackends/KWinWaylandVirtualBackend.so %%QT_PLUGINDIR%%/org.kde.kwin.waylandbackends/KWinWaylandWaylandBackend.so %%QT_PLUGINDIR%%/org.kde.kwin.waylandbackends/KWinWaylandX11Backend.so %%QT_PLUGINDIR%%/platforms/KWinQpaPlugin.so %%QT_QMLDIR%%/org/kde/kwin/decoration/AppMenuButton.qml %%QT_QMLDIR%%/org/kde/kwin/decoration/ButtonGroup.qml %%QT_QMLDIR%%/org/kde/kwin/decoration/Decoration.qml %%QT_QMLDIR%%/org/kde/kwin/decoration/DecorationButton.qml %%QT_QMLDIR%%/org/kde/kwin/decoration/MenuButton.qml %%QT_QMLDIR%%/org/kde/kwin/decoration/libdecorationplugin.so %%QT_QMLDIR%%/org/kde/kwin/decoration/qmldir %%QT_QMLDIR%%/org/kde/kwin/decorations/plastik/libplastikplugin.so %%QT_QMLDIR%%/org/kde/kwin/decorations/plastik/qmldir %%QT_QMLDIR%%/org/kde/kwin/private/kdecoration/libkdecorationprivatedeclarative.so %%QT_QMLDIR%%/org/kde/kwin/private/kdecoration/qmldir share/config.kcfg/kwin.kcfg share/config.kcfg/kwin_colorcorrect.kcfg share/dbus-1/interfaces/org.kde.KWin.VirtualDesktopManager.xml share/dbus-1/interfaces/org.kde.KWin.xml share/dbus-1/interfaces/org.kde.kwin.ColorCorrect.xml share/dbus-1/interfaces/org.kde.kwin.Compositing.xml share/dbus-1/interfaces/org.kde.kwin.Effects.xml share/doc/HTML/ca/kcontrol/desktop/index.cache.bz2 share/doc/HTML/ca/kcontrol/desktop/index.docbook share/doc/HTML/ca/kcontrol/kwindecoration/button.png share/doc/HTML/ca/kcontrol/kwindecoration/configure.png share/doc/HTML/ca/kcontrol/kwindecoration/decoration.png share/doc/HTML/ca/kcontrol/kwindecoration/index.cache.bz2 share/doc/HTML/ca/kcontrol/kwindecoration/index.docbook share/doc/HTML/ca/kcontrol/kwindecoration/main.png share/doc/HTML/ca/kcontrol/kwineffects/configure-effects.png share/doc/HTML/ca/kcontrol/kwineffects/configure-filter.png share/doc/HTML/ca/kcontrol/kwineffects/dialog-information.png share/doc/HTML/ca/kcontrol/kwineffects/index.cache.bz2 share/doc/HTML/ca/kcontrol/kwineffects/index.docbook share/doc/HTML/ca/kcontrol/kwineffects/video.png share/doc/HTML/ca/kcontrol/kwinscreenedges/index.cache.bz2 share/doc/HTML/ca/kcontrol/kwinscreenedges/index.docbook share/doc/HTML/ca/kcontrol/kwintabbox/index.cache.bz2 share/doc/HTML/ca/kcontrol/kwintabbox/index.docbook share/doc/HTML/ca/kcontrol/windowbehaviour/index.cache.bz2 share/doc/HTML/ca/kcontrol/windowbehaviour/index.docbook share/doc/HTML/ca/kcontrol/windowspecific/Face-smile.png share/doc/HTML/ca/kcontrol/windowspecific/index.cache.bz2 share/doc/HTML/ca/kcontrol/windowspecific/index.docbook share/doc/HTML/ca/kcontrol/windowspecific/pager-4-desktops.png share/doc/HTML/de/kcontrol/desktop/index.cache.bz2 share/doc/HTML/de/kcontrol/desktop/index.docbook share/doc/HTML/de/kcontrol/kwindecoration/index.cache.bz2 share/doc/HTML/de/kcontrol/kwindecoration/index.docbook share/doc/HTML/de/kcontrol/kwineffects/index.cache.bz2 share/doc/HTML/de/kcontrol/kwineffects/index.docbook share/doc/HTML/de/kcontrol/kwinscreenedges/index.cache.bz2 share/doc/HTML/de/kcontrol/kwinscreenedges/index.docbook share/doc/HTML/de/kcontrol/kwintabbox/index.cache.bz2 share/doc/HTML/de/kcontrol/kwintabbox/index.docbook share/doc/HTML/de/kcontrol/windowbehaviour/index.cache.bz2 share/doc/HTML/de/kcontrol/windowbehaviour/index.docbook share/doc/HTML/de/kcontrol/windowspecific/index.cache.bz2 share/doc/HTML/de/kcontrol/windowspecific/index.docbook share/doc/HTML/en/kcontrol/desktop/index.cache.bz2 share/doc/HTML/en/kcontrol/desktop/index.docbook share/doc/HTML/en/kcontrol/kwindecoration/button.png share/doc/HTML/en/kcontrol/kwindecoration/configure.png share/doc/HTML/en/kcontrol/kwindecoration/decoration.png share/doc/HTML/en/kcontrol/kwindecoration/index.cache.bz2 share/doc/HTML/en/kcontrol/kwindecoration/index.docbook share/doc/HTML/en/kcontrol/kwindecoration/main.png share/doc/HTML/en/kcontrol/kwineffects/configure-effects.png share/doc/HTML/en/kcontrol/kwineffects/configure-filter.png share/doc/HTML/en/kcontrol/kwineffects/dialog-information.png share/doc/HTML/en/kcontrol/kwineffects/index.cache.bz2 share/doc/HTML/en/kcontrol/kwineffects/index.docbook share/doc/HTML/en/kcontrol/kwineffects/video.png share/doc/HTML/en/kcontrol/kwinscreenedges/index.cache.bz2 share/doc/HTML/en/kcontrol/kwinscreenedges/index.docbook share/doc/HTML/en/kcontrol/kwintabbox/index.cache.bz2 share/doc/HTML/en/kcontrol/kwintabbox/index.docbook share/doc/HTML/en/kcontrol/windowbehaviour/index.cache.bz2 share/doc/HTML/en/kcontrol/windowbehaviour/index.docbook share/doc/HTML/en/kcontrol/windowspecific/Face-smile.png share/doc/HTML/en/kcontrol/windowspecific/akgregator-info.png share/doc/HTML/en/kcontrol/windowspecific/akregator-attributes.png share/doc/HTML/en/kcontrol/windowspecific/akregator-fav.png share/doc/HTML/en/kcontrol/windowspecific/config-win-behavior.png share/doc/HTML/en/kcontrol/windowspecific/emacs-attribute.png share/doc/HTML/en/kcontrol/windowspecific/emacs-info.png share/doc/HTML/en/kcontrol/windowspecific/focus-stealing-pop2top-attribute.png share/doc/HTML/en/kcontrol/windowspecific/index.cache.bz2 share/doc/HTML/en/kcontrol/windowspecific/index.docbook share/doc/HTML/en/kcontrol/windowspecific/knotes-attribute.png share/doc/HTML/en/kcontrol/windowspecific/knotes-info.png share/doc/HTML/en/kcontrol/windowspecific/kopete-attribute-2.png share/doc/HTML/en/kcontrol/windowspecific/kopete-chat-attribute.png share/doc/HTML/en/kcontrol/windowspecific/kopete-chat-info.png share/doc/HTML/en/kcontrol/windowspecific/kopete-info.png share/doc/HTML/en/kcontrol/windowspecific/kwin-detect-window.png share/doc/HTML/en/kcontrol/windowspecific/kwin-kopete-rules.png share/doc/HTML/en/kcontrol/windowspecific/kwin-rule-editor.png share/doc/HTML/en/kcontrol/windowspecific/kwin-rules-main-n-akregator.png share/doc/HTML/en/kcontrol/windowspecific/kwin-rules-main.png share/doc/HTML/en/kcontrol/windowspecific/kwin-rules-ordering.png share/doc/HTML/en/kcontrol/windowspecific/kwin-window-attributes.png share/doc/HTML/en/kcontrol/windowspecific/kwin-window-matching.png share/doc/HTML/en/kcontrol/windowspecific/pager-4-desktops.png share/doc/HTML/en/kcontrol/windowspecific/tbird-compose-attribute.png share/doc/HTML/en/kcontrol/windowspecific/tbird-compose-info.png share/doc/HTML/en/kcontrol/windowspecific/tbird-main-attribute.png share/doc/HTML/en/kcontrol/windowspecific/tbird-main-info.png share/doc/HTML/en/kcontrol/windowspecific/tbird-reminder-attribute-2.png share/doc/HTML/en/kcontrol/windowspecific/tbird-reminder-info.png share/doc/HTML/en/kcontrol/windowspecific/window-matching-emacs.png share/doc/HTML/en/kcontrol/windowspecific/window-matching-init.png share/doc/HTML/en/kcontrol/windowspecific/window-matching-knotes.png share/doc/HTML/en/kcontrol/windowspecific/window-matching-kopete-chat.png share/doc/HTML/en/kcontrol/windowspecific/window-matching-kopete.png share/doc/HTML/en/kcontrol/windowspecific/window-matching-ready-akregator.png share/doc/HTML/en/kcontrol/windowspecific/window-matching-tbird-compose.png share/doc/HTML/en/kcontrol/windowspecific/window-matching-tbird-main.png share/doc/HTML/en/kcontrol/windowspecific/window-matching-tbird-reminder.png share/doc/HTML/es/kcontrol/desktop/index.cache.bz2 share/doc/HTML/es/kcontrol/desktop/index.docbook share/doc/HTML/it/kcontrol/desktop/index.cache.bz2 share/doc/HTML/it/kcontrol/desktop/index.docbook share/doc/HTML/it/kcontrol/kwindecoration/index.cache.bz2 share/doc/HTML/it/kcontrol/kwindecoration/index.docbook share/doc/HTML/it/kcontrol/kwineffects/index.cache.bz2 share/doc/HTML/it/kcontrol/kwineffects/index.docbook share/doc/HTML/it/kcontrol/kwinscreenedges/index.cache.bz2 share/doc/HTML/it/kcontrol/kwinscreenedges/index.docbook share/doc/HTML/it/kcontrol/kwintabbox/index.cache.bz2 share/doc/HTML/it/kcontrol/kwintabbox/index.docbook share/doc/HTML/it/kcontrol/windowbehaviour/index.cache.bz2 share/doc/HTML/it/kcontrol/windowbehaviour/index.docbook share/doc/HTML/it/kcontrol/windowspecific/index.cache.bz2 share/doc/HTML/it/kcontrol/windowspecific/index.docbook share/doc/HTML/nl/kcontrol/desktop/index.cache.bz2 share/doc/HTML/nl/kcontrol/desktop/index.docbook share/doc/HTML/nl/kcontrol/kwindecoration/index.cache.bz2 share/doc/HTML/nl/kcontrol/kwindecoration/index.docbook share/doc/HTML/nl/kcontrol/kwineffects/index.cache.bz2 share/doc/HTML/nl/kcontrol/kwineffects/index.docbook share/doc/HTML/nl/kcontrol/kwinscreenedges/index.cache.bz2 share/doc/HTML/nl/kcontrol/kwinscreenedges/index.docbook share/doc/HTML/nl/kcontrol/kwintabbox/index.cache.bz2 share/doc/HTML/nl/kcontrol/kwintabbox/index.docbook share/doc/HTML/nl/kcontrol/windowbehaviour/index.cache.bz2 share/doc/HTML/nl/kcontrol/windowbehaviour/index.docbook share/doc/HTML/nl/kcontrol/windowspecific/index.cache.bz2 share/doc/HTML/nl/kcontrol/windowspecific/index.docbook share/doc/HTML/pt/kcontrol/desktop/index.cache.bz2 share/doc/HTML/pt/kcontrol/desktop/index.docbook share/doc/HTML/pt/kcontrol/kwindecoration/index.cache.bz2 share/doc/HTML/pt/kcontrol/kwindecoration/index.docbook share/doc/HTML/pt/kcontrol/kwineffects/index.cache.bz2 share/doc/HTML/pt/kcontrol/kwineffects/index.docbook share/doc/HTML/pt/kcontrol/kwinscreenedges/index.cache.bz2 share/doc/HTML/pt/kcontrol/kwinscreenedges/index.docbook share/doc/HTML/pt/kcontrol/kwintabbox/index.cache.bz2 share/doc/HTML/pt/kcontrol/kwintabbox/index.docbook share/doc/HTML/pt/kcontrol/windowbehaviour/index.cache.bz2 share/doc/HTML/pt/kcontrol/windowbehaviour/index.docbook share/doc/HTML/pt/kcontrol/windowspecific/index.cache.bz2 share/doc/HTML/pt/kcontrol/windowspecific/index.docbook share/doc/HTML/pt_BR/kcontrol/desktop/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/desktop/index.docbook share/doc/HTML/pt_BR/kcontrol/kwindecoration/configure.png share/doc/HTML/pt_BR/kcontrol/kwindecoration/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/kwindecoration/index.docbook share/doc/HTML/pt_BR/kcontrol/kwinscreenedges/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/kwinscreenedges/index.docbook share/doc/HTML/pt_BR/kcontrol/kwintabbox/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/kwintabbox/index.docbook share/doc/HTML/pt_BR/kcontrol/windowbehaviour/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/windowbehaviour/index.docbook share/doc/HTML/pt_BR/kcontrol/windowspecific/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/windowspecific/index.docbook share/doc/HTML/ru/kcontrol/desktop/index.cache.bz2 share/doc/HTML/ru/kcontrol/desktop/index.docbook share/doc/HTML/ru/kcontrol/kwindecoration/button.png share/doc/HTML/ru/kcontrol/kwindecoration/configure.png share/doc/HTML/ru/kcontrol/kwindecoration/decoration.png share/doc/HTML/ru/kcontrol/kwindecoration/index.cache.bz2 share/doc/HTML/ru/kcontrol/kwindecoration/index.docbook share/doc/HTML/ru/kcontrol/kwindecoration/main.png share/doc/HTML/ru/kcontrol/kwineffects/index.cache.bz2 share/doc/HTML/ru/kcontrol/kwineffects/index.docbook share/doc/HTML/ru/kcontrol/kwinscreenedges/index.cache.bz2 share/doc/HTML/ru/kcontrol/kwinscreenedges/index.docbook share/doc/HTML/ru/kcontrol/kwintabbox/index.cache.bz2 share/doc/HTML/ru/kcontrol/kwintabbox/index.docbook share/doc/HTML/ru/kcontrol/windowbehaviour/index.cache.bz2 share/doc/HTML/ru/kcontrol/windowbehaviour/index.docbook share/doc/HTML/sr/kcontrol/desktop/index.cache.bz2 share/doc/HTML/sr/kcontrol/desktop/index.docbook share/doc/HTML/sr@latin/kcontrol/desktop/index.cache.bz2 share/doc/HTML/sr@latin/kcontrol/desktop/index.docbook share/doc/HTML/sv/kcontrol/desktop/index.cache.bz2 share/doc/HTML/sv/kcontrol/desktop/index.docbook share/doc/HTML/sv/kcontrol/kwindecoration/index.cache.bz2 share/doc/HTML/sv/kcontrol/kwindecoration/index.docbook share/doc/HTML/sv/kcontrol/kwineffects/index.cache.bz2 share/doc/HTML/sv/kcontrol/kwineffects/index.docbook share/doc/HTML/sv/kcontrol/kwinscreenedges/index.cache.bz2 share/doc/HTML/sv/kcontrol/kwinscreenedges/index.docbook share/doc/HTML/sv/kcontrol/kwintabbox/index.cache.bz2 share/doc/HTML/sv/kcontrol/kwintabbox/index.docbook share/doc/HTML/sv/kcontrol/windowbehaviour/index.cache.bz2 share/doc/HTML/sv/kcontrol/windowbehaviour/index.docbook share/doc/HTML/sv/kcontrol/windowspecific/index.cache.bz2 share/doc/HTML/sv/kcontrol/windowspecific/index.docbook share/doc/HTML/uk/kcontrol/desktop/index.cache.bz2 share/doc/HTML/uk/kcontrol/desktop/index.docbook share/doc/HTML/uk/kcontrol/kwindecoration/button.png share/doc/HTML/uk/kcontrol/kwindecoration/decoration.png share/doc/HTML/uk/kcontrol/kwindecoration/index.cache.bz2 share/doc/HTML/uk/kcontrol/kwindecoration/index.docbook share/doc/HTML/uk/kcontrol/kwindecoration/main.png share/doc/HTML/uk/kcontrol/kwineffects/index.cache.bz2 share/doc/HTML/uk/kcontrol/kwineffects/index.docbook share/doc/HTML/uk/kcontrol/kwinscreenedges/index.cache.bz2 share/doc/HTML/uk/kcontrol/kwinscreenedges/index.docbook share/doc/HTML/uk/kcontrol/kwintabbox/index.cache.bz2 share/doc/HTML/uk/kcontrol/kwintabbox/index.docbook share/doc/HTML/uk/kcontrol/windowbehaviour/index.cache.bz2 share/doc/HTML/uk/kcontrol/windowbehaviour/index.docbook share/doc/HTML/uk/kcontrol/windowspecific/index.cache.bz2 share/doc/HTML/uk/kcontrol/windowspecific/index.docbook share/icons/hicolor/16x16/apps/kwin.png share/icons/hicolor/32x32/apps/kwin.png share/icons/hicolor/48x48/apps/kwin.png share/icons/hicolor/scalable/apps/kwin.svgz share/kconf_update/kwin.upd share/knotifications5/kwin.notifyrc share/kpackage/kcms/kcm_kwin_virtualdesktops/contents/ui/main.qml share/kpackage/kcms/kcm_kwin_virtualdesktops/metadata.desktop share/kpackage/kcms/kcm_kwin_virtualdesktops/metadata.json share/kservices5/kcm_kwin_virtualdesktops.desktop share/kservices5/kcmkwineffects.desktop share/kservices5/kwin-script-desktopchangeosd.desktop share/kservices5/kwin-script-enforcedeco.desktop share/kservices5/kwin-script-minimizeall.desktop share/kservices5/kwin-script-synchronizeskipswitcher.desktop share/kservices5/kwin-script-videowall.desktop share/kservices5/kwin/kwin4_decoration_qml_plastik.desktop share/kservices5/kwin/kwin4_effect_dialogparent.desktop share/kservices5/kwin/kwin4_effect_dimscreen.desktop share/kservices5/kwin/kwin4_effect_eyeonscreen.desktop share/kservices5/kwin/kwin4_effect_fade.desktop share/kservices5/kwin/kwin4_effect_fadedesktop.desktop share/kservices5/kwin/kwin4_effect_fadingpopups.desktop share/kservices5/kwin/kwin4_effect_frozenapp.desktop share/kservices5/kwin/kwin4_effect_login.desktop share/kservices5/kwin/kwin4_effect_logout.desktop share/kservices5/kwin/kwin4_effect_maximize.desktop share/kservices5/kwin/kwin4_effect_morphingpopups.desktop share/kservices5/kwin/kwin4_effect_scale.desktop share/kservices5/kwin/kwin4_effect_squash.desktop share/kservices5/kwin/kwin4_effect_translucency.desktop share/kservices5/kwin/kwin4_effect_windowaperture.desktop share/kservices5/kwinactions.desktop share/kservices5/kwinadvanced.desktop share/kservices5/kwincompositing.desktop share/kservices5/kwindecoration.desktop share/kservices5/kwinfocus.desktop share/kservices5/kwinmoving.desktop share/kservices5/kwinoptions.desktop share/kservices5/kwinrules.desktop share/kservices5/kwinscreenedges.desktop share/kservices5/kwinscripts.desktop share/kservices5/kwintabbox.desktop share/kservices5/kwintouchscreen.desktop share/kservicetypes5/kwindecoration.desktop share/kservicetypes5/kwindesktopswitcher.desktop share/kservicetypes5/kwineffect.desktop share/kservicetypes5/kwinscript.desktop share/kservicetypes5/kwinwindowswitcher.desktop %%DATADIR%%/aurorae/AppMenuButton.qml %%DATADIR%%/aurorae/AuroraeButton.qml %%DATADIR%%/aurorae/AuroraeButtonGroup.qml %%DATADIR%%/aurorae/AuroraeMaximizeButton.qml %%DATADIR%%/aurorae/Decoration.qml %%DATADIR%%/aurorae/DecorationButton.qml %%DATADIR%%/aurorae/MenuButton.qml %%DATADIR%%/aurorae/aurorae.qml %%DATADIR%%/cubecap.png %%DATADIR%%/decorations/kwin4_decoration_qml_plastik/contents/config/main.xml %%DATADIR%%/decorations/kwin4_decoration_qml_plastik/contents/ui/PlastikButton.qml %%DATADIR%%/decorations/kwin4_decoration_qml_plastik/contents/ui/config.ui %%DATADIR%%/decorations/kwin4_decoration_qml_plastik/contents/ui/main.qml %%DATADIR%%/decorations/kwin4_decoration_qml_plastik/metadata.desktop %%DATADIR%%/effects/desktopgrid/main.qml %%DATADIR%%/effects/kwin4_effect_dialogparent/contents/code/main.js %%DATADIR%%/effects/kwin4_effect_dialogparent/metadata.desktop %%DATADIR%%/effects/kwin4_effect_dimscreen/contents/code/main.js %%DATADIR%%/effects/kwin4_effect_dimscreen/metadata.desktop %%DATADIR%%/effects/kwin4_effect_eyeonscreen/contents/code/main.js %%DATADIR%%/effects/kwin4_effect_eyeonscreen/metadata.desktop %%DATADIR%%/effects/kwin4_effect_fade/contents/code/main.js %%DATADIR%%/effects/kwin4_effect_fade/contents/config/main.xml %%DATADIR%%/effects/kwin4_effect_fade/metadata.desktop %%DATADIR%%/effects/kwin4_effect_fadedesktop/contents/code/main.js %%DATADIR%%/effects/kwin4_effect_fadedesktop/metadata.desktop %%DATADIR%%/effects/kwin4_effect_fadingpopups/contents/code/main.js %%DATADIR%%/effects/kwin4_effect_fadingpopups/metadata.desktop %%DATADIR%%/effects/kwin4_effect_frozenapp/contents/code/main.js %%DATADIR%%/effects/kwin4_effect_frozenapp/metadata.desktop %%DATADIR%%/effects/kwin4_effect_login/contents/code/main.js %%DATADIR%%/effects/kwin4_effect_login/contents/config/main.xml %%DATADIR%%/effects/kwin4_effect_login/contents/ui/config.ui %%DATADIR%%/effects/kwin4_effect_login/metadata.desktop %%DATADIR%%/effects/kwin4_effect_logout/contents/code/main.js %%DATADIR%%/effects/kwin4_effect_logout/metadata.desktop %%DATADIR%%/effects/kwin4_effect_maximize/contents/code/maximize.js %%DATADIR%%/effects/kwin4_effect_maximize/metadata.desktop %%DATADIR%%/effects/kwin4_effect_morphingpopups/contents/code/morphingpopups.js %%DATADIR%%/effects/kwin4_effect_morphingpopups/metadata.desktop %%DATADIR%%/effects/kwin4_effect_scale/contents/code/main.js %%DATADIR%%/effects/kwin4_effect_scale/contents/config/main.xml %%DATADIR%%/effects/kwin4_effect_scale/contents/ui/config.ui %%DATADIR%%/effects/kwin4_effect_scale/metadata.desktop %%DATADIR%%/effects/kwin4_effect_squash/contents/code/main.js %%DATADIR%%/effects/kwin4_effect_squash/metadata.desktop %%DATADIR%%/effects/kwin4_effect_translucency/contents/code/main.js %%DATADIR%%/effects/kwin4_effect_translucency/contents/config/main.xml %%DATADIR%%/effects/kwin4_effect_translucency/contents/ui/config.ui %%DATADIR%%/effects/kwin4_effect_translucency/metadata.desktop %%DATADIR%%/effects/kwin4_effect_windowaperture/contents/code/main.js %%DATADIR%%/effects/kwin4_effect_windowaperture/metadata.desktop %%DATADIR%%/effects/presentwindows/main.qml %%DATADIR%%/kcm_kwindecoration/ButtonGroup.qml %%DATADIR%%/kcm_kwindecoration/Buttons.qml %%DATADIR%%/kcm_kwindecoration/Previews.qml %%DATADIR%%/kcm_kwindecoration/main.qml %%DATADIR%%/kcm_kwintabbox/dolphin.png %%DATADIR%%/kcm_kwintabbox/kmail.png %%DATADIR%%/kcm_kwintabbox/konqueror.png %%DATADIR%%/kcm_kwintabbox/systemsettings.png %%DATADIR%%/onscreennotification/plasma/dummydata/osd.qml %%DATADIR%%/onscreennotification/plasma/main.qml %%DATADIR%%/outline/plasma/outline.qml %%DATADIR%%/scripts/desktopchangeosd/contents/ui/main.qml %%DATADIR%%/scripts/desktopchangeosd/contents/ui/osd.qml %%DATADIR%%/scripts/desktopchangeosd/metadata.desktop %%DATADIR%%/scripts/enforcedeco/contents/code/main.js %%DATADIR%%/scripts/enforcedeco/metadata.desktop %%DATADIR%%/scripts/minimizeall/contents/code/main.js %%DATADIR%%/scripts/minimizeall/metadata.desktop %%DATADIR%%/scripts/synchronizeskipswitcher/contents/code/main.js %%DATADIR%%/scripts/synchronizeskipswitcher/metadata.desktop %%DATADIR%%/scripts/videowall/contents/code/main.js %%DATADIR%%/scripts/videowall/contents/config/main.xml %%DATADIR%%/scripts/videowall/contents/ui/config.ui %%DATADIR%%/scripts/videowall/metadata.desktop %%DATADIR%%/tm_inner.png %%DATADIR%%/tm_outer.png %%DATADIR%%/virtualkeyboard/main.qml %%DATADIR%%compositing/qml/Effect.qml %%DATADIR%%compositing/qml/EffectView.qml %%DATADIR%%compositing/qml/Video.qml %%DATADIR%%compositing/qml/main.qml share/locale/af/LC_MESSAGES/kcm_kwindecoration.mo share/locale/af/LC_MESSAGES/kcmkwinrules.mo share/locale/af/LC_MESSAGES/kcmkwm.mo share/locale/af/LC_MESSAGES/kwin.mo share/locale/af/LC_MESSAGES/kwin_clients.mo share/locale/ar/LC_MESSAGES/kcm-kwin-scripts.mo share/locale/ar/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/ar/LC_MESSAGES/kcm_kwintabbox.mo share/locale/ar/LC_MESSAGES/kcmkwincompositing.mo share/locale/ar/LC_MESSAGES/kcm_kwindecoration.mo share/locale/ar/LC_MESSAGES/kcmkwinrules.mo share/locale/ar/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/ar/LC_MESSAGES/kcmkwm.mo share/locale/ar/LC_MESSAGES/kwin.mo share/locale/ar/LC_MESSAGES/kwin_clients.mo share/locale/ar/LC_MESSAGES/kwin_effects.mo share/locale/ar/LC_MESSAGES/kwin_scripting.mo share/locale/as/LC_MESSAGES/kwin.mo share/locale/be/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/be/LC_MESSAGES/kcmkwincompositing.mo share/locale/be/LC_MESSAGES/kcm_kwindecoration.mo share/locale/be/LC_MESSAGES/kcmkwinrules.mo share/locale/be/LC_MESSAGES/kcmkwm.mo share/locale/be/LC_MESSAGES/kwin.mo share/locale/be/LC_MESSAGES/kwin_clients.mo share/locale/be/LC_MESSAGES/kwin_effects.mo share/locale/be@latin/LC_MESSAGES/kwin.mo share/locale/bg/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/bg/LC_MESSAGES/kcm_kwintabbox.mo share/locale/bg/LC_MESSAGES/kcmkwincompositing.mo share/locale/bg/LC_MESSAGES/kcm_kwindecoration.mo share/locale/bg/LC_MESSAGES/kcmkwinrules.mo share/locale/bg/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/bg/LC_MESSAGES/kcmkwm.mo share/locale/bg/LC_MESSAGES/kwin.mo share/locale/bg/LC_MESSAGES/kwin_clients.mo share/locale/bg/LC_MESSAGES/kwin_effects.mo share/locale/bn/LC_MESSAGES/kcmkwm.mo share/locale/bn/LC_MESSAGES/kwin.mo share/locale/bn/LC_MESSAGES/kwin_effects.mo share/locale/bn_IN/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/bn_IN/LC_MESSAGES/kcm_kwindecoration.mo share/locale/bn_IN/LC_MESSAGES/kcmkwinrules.mo share/locale/bn_IN/LC_MESSAGES/kcmkwm.mo share/locale/bn_IN/LC_MESSAGES/kwin.mo share/locale/bn_IN/LC_MESSAGES/kwin_clients.mo share/locale/bn_IN/LC_MESSAGES/kwin_effects.mo share/locale/br/LC_MESSAGES/kcm_kwindecoration.mo share/locale/br/LC_MESSAGES/kcmkwinrules.mo share/locale/br/LC_MESSAGES/kcmkwm.mo share/locale/br/LC_MESSAGES/kwin.mo share/locale/br/LC_MESSAGES/kwin_clients.mo share/locale/bs/LC_MESSAGES/kcm-kwin-scripts.mo share/locale/bs/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/bs/LC_MESSAGES/kcm_kwintabbox.mo share/locale/bs/LC_MESSAGES/kcmkwincompositing.mo share/locale/bs/LC_MESSAGES/kcm_kwindecoration.mo share/locale/bs/LC_MESSAGES/kcmkwinrules.mo share/locale/bs/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/bs/LC_MESSAGES/kcmkwm.mo share/locale/bs/LC_MESSAGES/kwin.mo share/locale/bs/LC_MESSAGES/kwin_clients.mo share/locale/bs/LC_MESSAGES/kwin_effects.mo share/locale/bs/LC_MESSAGES/kwin_scripting.mo share/locale/ca/LC_MESSAGES/kcm-kwin-scripts.mo share/locale/ca/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/ca/LC_MESSAGES/kcm_kwintabbox.mo share/locale/ca/LC_MESSAGES/kcmkwincommon.mo share/locale/ca/LC_MESSAGES/kcmkwincompositing.mo share/locale/ca/LC_MESSAGES/kcm_kwindecoration.mo share/locale/ca/LC_MESSAGES/kcmkwinrules.mo share/locale/ca/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/ca/LC_MESSAGES/kcmkwm.mo share/locale/ca/LC_MESSAGES/kwin.mo share/locale/ca/LC_MESSAGES/kwin_clients.mo share/locale/ca/LC_MESSAGES/kwin_effects.mo share/locale/ca/LC_MESSAGES/kwin_scripting.mo share/locale/ca/LC_MESSAGES/kwin_scripts.mo share/locale/ca@valencia/LC_MESSAGES/kcm-kwin-scripts.mo share/locale/ca@valencia/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/ca@valencia/LC_MESSAGES/kcm_kwintabbox.mo share/locale/ca@valencia/LC_MESSAGES/kcmkwincommon.mo share/locale/ca@valencia/LC_MESSAGES/kcmkwincompositing.mo share/locale/ca@valencia/LC_MESSAGES/kcm_kwindecoration.mo share/locale/ca@valencia/LC_MESSAGES/kcmkwinrules.mo share/locale/ca@valencia/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/ca@valencia/LC_MESSAGES/kcmkwm.mo share/locale/ca@valencia/LC_MESSAGES/kwin.mo share/locale/ca@valencia/LC_MESSAGES/kwin_clients.mo share/locale/ca@valencia/LC_MESSAGES/kwin_effects.mo share/locale/ca@valencia/LC_MESSAGES/kwin_scripting.mo share/locale/ca@valencia/LC_MESSAGES/kwin_scripts.mo share/locale/cs/LC_MESSAGES/kcm-kwin-scripts.mo share/locale/cs/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/cs/LC_MESSAGES/kcm_kwintabbox.mo share/locale/cs/LC_MESSAGES/kcmkwincommon.mo share/locale/cs/LC_MESSAGES/kcmkwincompositing.mo share/locale/cs/LC_MESSAGES/kcm_kwindecoration.mo share/locale/cs/LC_MESSAGES/kcmkwinrules.mo share/locale/cs/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/cs/LC_MESSAGES/kcmkwm.mo share/locale/cs/LC_MESSAGES/kwin.mo share/locale/cs/LC_MESSAGES/kwin_clients.mo share/locale/cs/LC_MESSAGES/kwin_effects.mo share/locale/cs/LC_MESSAGES/kwin_scripting.mo share/locale/cs/LC_MESSAGES/kwin_scripts.mo share/locale/csb/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/csb/LC_MESSAGES/kwin.mo share/locale/csb/LC_MESSAGES/kwin_clients.mo share/locale/csb/LC_MESSAGES/kwin_effects.mo share/locale/cy/LC_MESSAGES/kcm_kwindecoration.mo share/locale/cy/LC_MESSAGES/kcmkwinrules.mo share/locale/cy/LC_MESSAGES/kcmkwm.mo share/locale/cy/LC_MESSAGES/kwin.mo share/locale/cy/LC_MESSAGES/kwin_clients.mo share/locale/da/LC_MESSAGES/kcm-kwin-scripts.mo share/locale/da/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/da/LC_MESSAGES/kcm_kwintabbox.mo share/locale/da/LC_MESSAGES/kcmkwincompositing.mo share/locale/da/LC_MESSAGES/kcm_kwindecoration.mo share/locale/da/LC_MESSAGES/kcmkwinrules.mo share/locale/da/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/da/LC_MESSAGES/kcmkwm.mo share/locale/da/LC_MESSAGES/kwin.mo share/locale/da/LC_MESSAGES/kwin_clients.mo share/locale/da/LC_MESSAGES/kwin_effects.mo share/locale/da/LC_MESSAGES/kwin_scripting.mo share/locale/da/LC_MESSAGES/kwin_scripts.mo share/locale/de/LC_MESSAGES/kcm-kwin-scripts.mo share/locale/de/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/de/LC_MESSAGES/kcm_kwintabbox.mo share/locale/de/LC_MESSAGES/kcmkwincommon.mo share/locale/de/LC_MESSAGES/kcmkwincompositing.mo share/locale/de/LC_MESSAGES/kcm_kwindecoration.mo share/locale/de/LC_MESSAGES/kcmkwinrules.mo share/locale/de/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/de/LC_MESSAGES/kcmkwm.mo share/locale/de/LC_MESSAGES/kwin.mo share/locale/de/LC_MESSAGES/kwin_clients.mo share/locale/de/LC_MESSAGES/kwin_effects.mo share/locale/de/LC_MESSAGES/kwin_scripting.mo share/locale/de/LC_MESSAGES/kwin_scripts.mo share/locale/el/LC_MESSAGES/kcm-kwin-scripts.mo share/locale/el/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/el/LC_MESSAGES/kcm_kwintabbox.mo share/locale/el/LC_MESSAGES/kcmkwincompositing.mo share/locale/el/LC_MESSAGES/kcm_kwindecoration.mo share/locale/el/LC_MESSAGES/kcmkwinrules.mo share/locale/el/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/el/LC_MESSAGES/kcmkwm.mo share/locale/el/LC_MESSAGES/kwin.mo share/locale/el/LC_MESSAGES/kwin_clients.mo share/locale/el/LC_MESSAGES/kwin_effects.mo share/locale/el/LC_MESSAGES/kwin_scripting.mo share/locale/el/LC_MESSAGES/kwin_scripts.mo share/locale/en_GB/LC_MESSAGES/kcm-kwin-scripts.mo share/locale/en_GB/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/en_GB/LC_MESSAGES/kcm_kwintabbox.mo share/locale/en_GB/LC_MESSAGES/kcmkwincompositing.mo share/locale/en_GB/LC_MESSAGES/kcm_kwindecoration.mo +share/locale/en_GB/LC_MESSAGES/kcmkwincommon.mo share/locale/en_GB/LC_MESSAGES/kcmkwinrules.mo share/locale/en_GB/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/en_GB/LC_MESSAGES/kcmkwm.mo share/locale/en_GB/LC_MESSAGES/kwin.mo share/locale/en_GB/LC_MESSAGES/kwin_clients.mo share/locale/en_GB/LC_MESSAGES/kwin_effects.mo share/locale/en_GB/LC_MESSAGES/kwin_scripting.mo share/locale/en_GB/LC_MESSAGES/kwin_scripts.mo share/locale/eo/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/eo/LC_MESSAGES/kcm_kwintabbox.mo share/locale/eo/LC_MESSAGES/kcmkwincompositing.mo share/locale/eo/LC_MESSAGES/kcm_kwindecoration.mo share/locale/eo/LC_MESSAGES/kcmkwinrules.mo share/locale/eo/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/eo/LC_MESSAGES/kcmkwm.mo share/locale/eo/LC_MESSAGES/kwin.mo share/locale/eo/LC_MESSAGES/kwin_clients.mo share/locale/eo/LC_MESSAGES/kwin_effects.mo share/locale/es/LC_MESSAGES/kcm-kwin-scripts.mo share/locale/es/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/es/LC_MESSAGES/kcm_kwintabbox.mo share/locale/es/LC_MESSAGES/kcmkwincommon.mo share/locale/es/LC_MESSAGES/kcmkwincompositing.mo share/locale/es/LC_MESSAGES/kcm_kwindecoration.mo share/locale/es/LC_MESSAGES/kcmkwinrules.mo share/locale/es/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/es/LC_MESSAGES/kcmkwm.mo share/locale/es/LC_MESSAGES/kwin.mo share/locale/es/LC_MESSAGES/kwin_clients.mo share/locale/es/LC_MESSAGES/kwin_effects.mo share/locale/es/LC_MESSAGES/kwin_scripting.mo share/locale/es/LC_MESSAGES/kwin_scripts.mo share/locale/et/LC_MESSAGES/kcm-kwin-scripts.mo share/locale/et/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/et/LC_MESSAGES/kcm_kwintabbox.mo share/locale/et/LC_MESSAGES/kcmkwincompositing.mo share/locale/et/LC_MESSAGES/kcm_kwindecoration.mo share/locale/et/LC_MESSAGES/kcmkwinrules.mo share/locale/et/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/et/LC_MESSAGES/kcmkwm.mo share/locale/et/LC_MESSAGES/kwin.mo share/locale/et/LC_MESSAGES/kwin_clients.mo share/locale/et/LC_MESSAGES/kwin_effects.mo share/locale/et/LC_MESSAGES/kwin_scripting.mo share/locale/et/LC_MESSAGES/kwin_scripts.mo share/locale/eu/LC_MESSAGES/kcm-kwin-scripts.mo share/locale/eu/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/eu/LC_MESSAGES/kcm_kwintabbox.mo share/locale/eu/LC_MESSAGES/kcmkwincompositing.mo share/locale/eu/LC_MESSAGES/kcm_kwindecoration.mo share/locale/eu/LC_MESSAGES/kcmkwinrules.mo share/locale/eu/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/eu/LC_MESSAGES/kcmkwm.mo share/locale/eu/LC_MESSAGES/kwin.mo share/locale/eu/LC_MESSAGES/kwin_clients.mo share/locale/eu/LC_MESSAGES/kwin_effects.mo share/locale/eu/LC_MESSAGES/kwin_scripting.mo share/locale/eu/LC_MESSAGES/kwin_scripts.mo share/locale/fa/LC_MESSAGES/kcm-kwin-scripts.mo share/locale/fa/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/fa/LC_MESSAGES/kcm_kwintabbox.mo share/locale/fa/LC_MESSAGES/kcmkwincompositing.mo share/locale/fa/LC_MESSAGES/kcm_kwindecoration.mo share/locale/fa/LC_MESSAGES/kcmkwinrules.mo share/locale/fa/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/fa/LC_MESSAGES/kcmkwm.mo share/locale/fa/LC_MESSAGES/kwin.mo share/locale/fa/LC_MESSAGES/kwin_clients.mo share/locale/fa/LC_MESSAGES/kwin_effects.mo share/locale/fi/LC_MESSAGES/kcm-kwin-scripts.mo share/locale/fi/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/fi/LC_MESSAGES/kcm_kwintabbox.mo share/locale/fi/LC_MESSAGES/kcmkwincommon.mo share/locale/fi/LC_MESSAGES/kcmkwincompositing.mo share/locale/fi/LC_MESSAGES/kcm_kwindecoration.mo share/locale/fi/LC_MESSAGES/kcmkwinrules.mo share/locale/fi/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/fi/LC_MESSAGES/kcmkwm.mo share/locale/fi/LC_MESSAGES/kwin.mo share/locale/fi/LC_MESSAGES/kwin_clients.mo share/locale/fi/LC_MESSAGES/kwin_effects.mo share/locale/fi/LC_MESSAGES/kwin_scripting.mo share/locale/fi/LC_MESSAGES/kwin_scripts.mo share/locale/fr/LC_MESSAGES/kcm-kwin-scripts.mo share/locale/fr/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/fr/LC_MESSAGES/kcm_kwintabbox.mo share/locale/fr/LC_MESSAGES/kcmkwincommon.mo share/locale/fr/LC_MESSAGES/kcmkwincompositing.mo share/locale/fr/LC_MESSAGES/kcm_kwindecoration.mo share/locale/fr/LC_MESSAGES/kcmkwinrules.mo share/locale/fr/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/fr/LC_MESSAGES/kcmkwm.mo share/locale/fr/LC_MESSAGES/kwin.mo share/locale/fr/LC_MESSAGES/kwin_clients.mo share/locale/fr/LC_MESSAGES/kwin_effects.mo share/locale/fr/LC_MESSAGES/kwin_scripting.mo share/locale/fr/LC_MESSAGES/kwin_scripts.mo share/locale/fy/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/fy/LC_MESSAGES/kcmkwincompositing.mo share/locale/fy/LC_MESSAGES/kcm_kwindecoration.mo share/locale/fy/LC_MESSAGES/kcmkwinrules.mo share/locale/fy/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/fy/LC_MESSAGES/kcmkwm.mo share/locale/fy/LC_MESSAGES/kwin.mo share/locale/fy/LC_MESSAGES/kwin_clients.mo share/locale/fy/LC_MESSAGES/kwin_effects.mo share/locale/ga/LC_MESSAGES/kcm-kwin-scripts.mo share/locale/ga/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/ga/LC_MESSAGES/kcm_kwintabbox.mo share/locale/ga/LC_MESSAGES/kcmkwincompositing.mo share/locale/ga/LC_MESSAGES/kcm_kwindecoration.mo share/locale/ga/LC_MESSAGES/kcmkwinrules.mo share/locale/ga/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/ga/LC_MESSAGES/kcmkwm.mo share/locale/ga/LC_MESSAGES/kwin.mo share/locale/ga/LC_MESSAGES/kwin_clients.mo share/locale/ga/LC_MESSAGES/kwin_effects.mo share/locale/gl/LC_MESSAGES/kcm-kwin-scripts.mo share/locale/gl/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/gl/LC_MESSAGES/kcm_kwintabbox.mo share/locale/gl/LC_MESSAGES/kcmkwincommon.mo share/locale/gl/LC_MESSAGES/kcmkwincompositing.mo share/locale/gl/LC_MESSAGES/kcm_kwindecoration.mo share/locale/gl/LC_MESSAGES/kcmkwinrules.mo share/locale/gl/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/gl/LC_MESSAGES/kcmkwm.mo share/locale/gl/LC_MESSAGES/kwin.mo share/locale/gl/LC_MESSAGES/kwin_clients.mo share/locale/gl/LC_MESSAGES/kwin_effects.mo share/locale/gl/LC_MESSAGES/kwin_scripting.mo share/locale/gl/LC_MESSAGES/kwin_scripts.mo share/locale/gu/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/gu/LC_MESSAGES/kcm_kwintabbox.mo share/locale/gu/LC_MESSAGES/kcmkwincompositing.mo share/locale/gu/LC_MESSAGES/kcm_kwindecoration.mo share/locale/gu/LC_MESSAGES/kcmkwinrules.mo share/locale/gu/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/gu/LC_MESSAGES/kcmkwm.mo share/locale/gu/LC_MESSAGES/kwin.mo share/locale/gu/LC_MESSAGES/kwin_clients.mo share/locale/gu/LC_MESSAGES/kwin_effects.mo share/locale/he/LC_MESSAGES/kcm-kwin-scripts.mo share/locale/he/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/he/LC_MESSAGES/kcm_kwintabbox.mo share/locale/he/LC_MESSAGES/kcmkwincompositing.mo share/locale/he/LC_MESSAGES/kcm_kwindecoration.mo share/locale/he/LC_MESSAGES/kcmkwinrules.mo share/locale/he/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/he/LC_MESSAGES/kcmkwm.mo share/locale/he/LC_MESSAGES/kwin.mo share/locale/he/LC_MESSAGES/kwin_clients.mo share/locale/he/LC_MESSAGES/kwin_effects.mo share/locale/he/LC_MESSAGES/kwin_scripting.mo share/locale/he/LC_MESSAGES/kwin_scripts.mo share/locale/hi/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/hi/LC_MESSAGES/kcm_kwintabbox.mo share/locale/hi/LC_MESSAGES/kcmkwincompositing.mo share/locale/hi/LC_MESSAGES/kcm_kwindecoration.mo share/locale/hi/LC_MESSAGES/kcmkwinrules.mo share/locale/hi/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/hi/LC_MESSAGES/kcmkwm.mo share/locale/hi/LC_MESSAGES/kwin.mo share/locale/hi/LC_MESSAGES/kwin_clients.mo share/locale/hi/LC_MESSAGES/kwin_effects.mo share/locale/hne/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/hne/LC_MESSAGES/kcmkwincompositing.mo share/locale/hne/LC_MESSAGES/kcm_kwindecoration.mo share/locale/hne/LC_MESSAGES/kcmkwinrules.mo share/locale/hne/LC_MESSAGES/kcmkwm.mo share/locale/hne/LC_MESSAGES/kwin.mo share/locale/hne/LC_MESSAGES/kwin_clients.mo share/locale/hne/LC_MESSAGES/kwin_effects.mo share/locale/hr/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/hr/LC_MESSAGES/kcm_kwintabbox.mo share/locale/hr/LC_MESSAGES/kcmkwincompositing.mo share/locale/hr/LC_MESSAGES/kcm_kwindecoration.mo share/locale/hr/LC_MESSAGES/kcmkwinrules.mo share/locale/hr/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/hr/LC_MESSAGES/kcmkwm.mo share/locale/hr/LC_MESSAGES/kwin.mo share/locale/hr/LC_MESSAGES/kwin_clients.mo share/locale/hr/LC_MESSAGES/kwin_effects.mo share/locale/hsb/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/hsb/LC_MESSAGES/kcmkwincompositing.mo share/locale/hsb/LC_MESSAGES/kcm_kwindecoration.mo share/locale/hsb/LC_MESSAGES/kcmkwinrules.mo share/locale/hsb/LC_MESSAGES/kcmkwm.mo share/locale/hsb/LC_MESSAGES/kwin.mo share/locale/hsb/LC_MESSAGES/kwin_clients.mo share/locale/hsb/LC_MESSAGES/kwin_effects.mo share/locale/hu/LC_MESSAGES/kcm-kwin-scripts.mo share/locale/hu/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/hu/LC_MESSAGES/kcm_kwintabbox.mo share/locale/hu/LC_MESSAGES/kcmkwincompositing.mo share/locale/hu/LC_MESSAGES/kcm_kwindecoration.mo share/locale/hu/LC_MESSAGES/kcmkwinrules.mo share/locale/hu/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/hu/LC_MESSAGES/kcmkwm.mo share/locale/hu/LC_MESSAGES/kwin.mo share/locale/hu/LC_MESSAGES/kwin_clients.mo share/locale/hu/LC_MESSAGES/kwin_effects.mo share/locale/hu/LC_MESSAGES/kwin_scripting.mo share/locale/hu/LC_MESSAGES/kwin_scripts.mo share/locale/ia/LC_MESSAGES/kcm-kwin-scripts.mo share/locale/ia/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/ia/LC_MESSAGES/kcm_kwintabbox.mo share/locale/ia/LC_MESSAGES/kcmkwincompositing.mo share/locale/ia/LC_MESSAGES/kcm_kwindecoration.mo share/locale/ia/LC_MESSAGES/kcmkwinrules.mo share/locale/ia/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/ia/LC_MESSAGES/kcmkwm.mo share/locale/ia/LC_MESSAGES/kwin.mo share/locale/ia/LC_MESSAGES/kwin_clients.mo share/locale/ia/LC_MESSAGES/kwin_effects.mo share/locale/ia/LC_MESSAGES/kwin_scripting.mo share/locale/ia/LC_MESSAGES/kwin_scripts.mo share/locale/id/LC_MESSAGES/kcm-kwin-scripts.mo share/locale/id/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/id/LC_MESSAGES/kcm_kwintabbox.mo share/locale/id/LC_MESSAGES/kcmkwincommon.mo share/locale/id/LC_MESSAGES/kcmkwincompositing.mo share/locale/id/LC_MESSAGES/kcm_kwindecoration.mo share/locale/id/LC_MESSAGES/kcmkwinrules.mo share/locale/id/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/id/LC_MESSAGES/kcmkwm.mo share/locale/id/LC_MESSAGES/kwin.mo share/locale/id/LC_MESSAGES/kwin_clients.mo share/locale/id/LC_MESSAGES/kwin_effects.mo share/locale/id/LC_MESSAGES/kwin_scripting.mo share/locale/id/LC_MESSAGES/kwin_scripts.mo share/locale/is/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/is/LC_MESSAGES/kcm_kwintabbox.mo share/locale/is/LC_MESSAGES/kcmkwincompositing.mo share/locale/is/LC_MESSAGES/kcm_kwindecoration.mo share/locale/is/LC_MESSAGES/kcmkwinrules.mo share/locale/is/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/is/LC_MESSAGES/kcmkwm.mo share/locale/is/LC_MESSAGES/kwin.mo share/locale/is/LC_MESSAGES/kwin_clients.mo share/locale/is/LC_MESSAGES/kwin_effects.mo share/locale/it/LC_MESSAGES/kcm-kwin-scripts.mo share/locale/it/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/it/LC_MESSAGES/kcm_kwintabbox.mo share/locale/it/LC_MESSAGES/kcmkwincommon.mo share/locale/it/LC_MESSAGES/kcmkwincompositing.mo share/locale/it/LC_MESSAGES/kcm_kwindecoration.mo share/locale/it/LC_MESSAGES/kcmkwinrules.mo share/locale/it/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/it/LC_MESSAGES/kcmkwm.mo share/locale/it/LC_MESSAGES/kwin.mo share/locale/it/LC_MESSAGES/kwin_clients.mo share/locale/it/LC_MESSAGES/kwin_effects.mo share/locale/it/LC_MESSAGES/kwin_scripting.mo share/locale/it/LC_MESSAGES/kwin_scripts.mo share/locale/ja/LC_MESSAGES/kcm-kwin-scripts.mo share/locale/ja/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/ja/LC_MESSAGES/kcm_kwintabbox.mo share/locale/ja/LC_MESSAGES/kcmkwincommon.mo share/locale/ja/LC_MESSAGES/kcmkwincompositing.mo share/locale/ja/LC_MESSAGES/kcm_kwindecoration.mo share/locale/ja/LC_MESSAGES/kcmkwinrules.mo share/locale/ja/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/ja/LC_MESSAGES/kcmkwm.mo share/locale/ja/LC_MESSAGES/kwin.mo share/locale/ja/LC_MESSAGES/kwin_clients.mo share/locale/ja/LC_MESSAGES/kwin_effects.mo share/locale/ja/LC_MESSAGES/kwin_scripting.mo share/locale/ja/LC_MESSAGES/kwin_scripts.mo share/locale/kk/LC_MESSAGES/kcm-kwin-scripts.mo share/locale/kk/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/kk/LC_MESSAGES/kcm_kwintabbox.mo share/locale/kk/LC_MESSAGES/kcmkwincompositing.mo share/locale/kk/LC_MESSAGES/kcm_kwindecoration.mo share/locale/kk/LC_MESSAGES/kcmkwinrules.mo share/locale/kk/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/kk/LC_MESSAGES/kcmkwm.mo share/locale/kk/LC_MESSAGES/kwin.mo share/locale/kk/LC_MESSAGES/kwin_clients.mo share/locale/kk/LC_MESSAGES/kwin_effects.mo share/locale/kk/LC_MESSAGES/kwin_scripting.mo share/locale/km/LC_MESSAGES/kcm-kwin-scripts.mo share/locale/km/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/km/LC_MESSAGES/kcm_kwintabbox.mo share/locale/km/LC_MESSAGES/kcmkwincompositing.mo share/locale/km/LC_MESSAGES/kcm_kwindecoration.mo share/locale/km/LC_MESSAGES/kcmkwinrules.mo share/locale/km/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/km/LC_MESSAGES/kcmkwm.mo share/locale/km/LC_MESSAGES/kwin.mo share/locale/km/LC_MESSAGES/kwin_clients.mo share/locale/km/LC_MESSAGES/kwin_effects.mo share/locale/kn/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/kn/LC_MESSAGES/kcm_kwintabbox.mo share/locale/kn/LC_MESSAGES/kcmkwincompositing.mo share/locale/kn/LC_MESSAGES/kcm_kwindecoration.mo share/locale/kn/LC_MESSAGES/kcmkwinrules.mo share/locale/kn/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/kn/LC_MESSAGES/kcmkwm.mo share/locale/kn/LC_MESSAGES/kwin.mo share/locale/kn/LC_MESSAGES/kwin_clients.mo share/locale/kn/LC_MESSAGES/kwin_effects.mo share/locale/ko/LC_MESSAGES/kcm-kwin-scripts.mo share/locale/ko/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/ko/LC_MESSAGES/kcm_kwintabbox.mo share/locale/ko/LC_MESSAGES/kcmkwincompositing.mo share/locale/ko/LC_MESSAGES/kcm_kwindecoration.mo share/locale/ko/LC_MESSAGES/kcmkwinrules.mo share/locale/ko/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/ko/LC_MESSAGES/kcmkwm.mo share/locale/ko/LC_MESSAGES/kwin.mo share/locale/ko/LC_MESSAGES/kwin_clients.mo share/locale/ko/LC_MESSAGES/kwin_effects.mo share/locale/ko/LC_MESSAGES/kwin_scripting.mo share/locale/ko/LC_MESSAGES/kwin_scripts.mo share/locale/ku/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/ku/LC_MESSAGES/kcmkwincompositing.mo share/locale/ku/LC_MESSAGES/kcm_kwindecoration.mo share/locale/ku/LC_MESSAGES/kcmkwinrules.mo share/locale/ku/LC_MESSAGES/kcmkwm.mo share/locale/ku/LC_MESSAGES/kwin.mo share/locale/ku/LC_MESSAGES/kwin_clients.mo share/locale/ku/LC_MESSAGES/kwin_effects.mo share/locale/lt/LC_MESSAGES/kcm-kwin-scripts.mo share/locale/lt/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/lt/LC_MESSAGES/kcm_kwintabbox.mo share/locale/lt/LC_MESSAGES/kcmkwincompositing.mo share/locale/lt/LC_MESSAGES/kcm_kwindecoration.mo share/locale/lt/LC_MESSAGES/kcmkwinrules.mo share/locale/lt/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/lt/LC_MESSAGES/kcmkwm.mo share/locale/lt/LC_MESSAGES/kwin.mo share/locale/lt/LC_MESSAGES/kwin_clients.mo share/locale/lt/LC_MESSAGES/kwin_effects.mo share/locale/lt/LC_MESSAGES/kwin_scripting.mo share/locale/lv/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/lv/LC_MESSAGES/kcm_kwintabbox.mo share/locale/lv/LC_MESSAGES/kcmkwincompositing.mo share/locale/lv/LC_MESSAGES/kcm_kwindecoration.mo share/locale/lv/LC_MESSAGES/kcmkwinrules.mo share/locale/lv/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/lv/LC_MESSAGES/kcmkwm.mo share/locale/lv/LC_MESSAGES/kwin.mo share/locale/lv/LC_MESSAGES/kwin_clients.mo share/locale/lv/LC_MESSAGES/kwin_effects.mo share/locale/mai/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/mai/LC_MESSAGES/kcm_kwintabbox.mo share/locale/mai/LC_MESSAGES/kcmkwincompositing.mo share/locale/mai/LC_MESSAGES/kcm_kwindecoration.mo share/locale/mai/LC_MESSAGES/kcmkwinrules.mo share/locale/mai/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/mai/LC_MESSAGES/kcmkwm.mo share/locale/mai/LC_MESSAGES/kwin.mo share/locale/mai/LC_MESSAGES/kwin_clients.mo share/locale/mai/LC_MESSAGES/kwin_effects.mo share/locale/mk/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/mk/LC_MESSAGES/kcmkwincompositing.mo share/locale/mk/LC_MESSAGES/kcm_kwindecoration.mo share/locale/mk/LC_MESSAGES/kcmkwinrules.mo share/locale/mk/LC_MESSAGES/kcmkwm.mo share/locale/mk/LC_MESSAGES/kwin.mo share/locale/mk/LC_MESSAGES/kwin_clients.mo share/locale/mk/LC_MESSAGES/kwin_effects.mo share/locale/ml/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/ml/LC_MESSAGES/kcmkwincompositing.mo share/locale/ml/LC_MESSAGES/kcm_kwindecoration.mo share/locale/ml/LC_MESSAGES/kcmkwinrules.mo share/locale/ml/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/ml/LC_MESSAGES/kcmkwm.mo share/locale/ml/LC_MESSAGES/kwin.mo share/locale/ml/LC_MESSAGES/kwin_clients.mo share/locale/ml/LC_MESSAGES/kwin_effects.mo share/locale/mr/LC_MESSAGES/kcm-kwin-scripts.mo share/locale/mr/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/mr/LC_MESSAGES/kcm_kwintabbox.mo share/locale/mr/LC_MESSAGES/kcmkwincompositing.mo share/locale/mr/LC_MESSAGES/kcm_kwindecoration.mo share/locale/mr/LC_MESSAGES/kcmkwinrules.mo share/locale/mr/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/mr/LC_MESSAGES/kcmkwm.mo share/locale/mr/LC_MESSAGES/kwin.mo share/locale/mr/LC_MESSAGES/kwin_clients.mo share/locale/mr/LC_MESSAGES/kwin_effects.mo share/locale/mr/LC_MESSAGES/kwin_scripting.mo share/locale/ms/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/ms/LC_MESSAGES/kcm_kwintabbox.mo share/locale/ms/LC_MESSAGES/kcmkwincompositing.mo share/locale/ms/LC_MESSAGES/kcm_kwindecoration.mo share/locale/ms/LC_MESSAGES/kcmkwinrules.mo share/locale/ms/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/ms/LC_MESSAGES/kcmkwm.mo share/locale/ms/LC_MESSAGES/kwin.mo share/locale/ms/LC_MESSAGES/kwin_clients.mo share/locale/ms/LC_MESSAGES/kwin_effects.mo share/locale/nb/LC_MESSAGES/kcm-kwin-scripts.mo share/locale/nb/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/nb/LC_MESSAGES/kcm_kwintabbox.mo share/locale/nb/LC_MESSAGES/kcmkwincommon.mo share/locale/nb/LC_MESSAGES/kcmkwincompositing.mo share/locale/nb/LC_MESSAGES/kcm_kwindecoration.mo share/locale/nb/LC_MESSAGES/kcmkwinrules.mo share/locale/nb/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/nb/LC_MESSAGES/kcmkwm.mo share/locale/nb/LC_MESSAGES/kwin.mo share/locale/nb/LC_MESSAGES/kwin_clients.mo share/locale/nb/LC_MESSAGES/kwin_effects.mo share/locale/nb/LC_MESSAGES/kwin_scripting.mo share/locale/nds/LC_MESSAGES/kcm-kwin-scripts.mo share/locale/nds/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/nds/LC_MESSAGES/kcm_kwintabbox.mo share/locale/nds/LC_MESSAGES/kcmkwincompositing.mo share/locale/nds/LC_MESSAGES/kcm_kwindecoration.mo share/locale/nds/LC_MESSAGES/kcmkwinrules.mo share/locale/nds/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/nds/LC_MESSAGES/kcmkwm.mo share/locale/nds/LC_MESSAGES/kwin.mo share/locale/nds/LC_MESSAGES/kwin_clients.mo share/locale/nds/LC_MESSAGES/kwin_effects.mo share/locale/nds/LC_MESSAGES/kwin_scripting.mo share/locale/ne/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/ne/LC_MESSAGES/kcmkwincompositing.mo share/locale/ne/LC_MESSAGES/kcm_kwindecoration.mo share/locale/ne/LC_MESSAGES/kcmkwinrules.mo share/locale/ne/LC_MESSAGES/kcmkwm.mo share/locale/ne/LC_MESSAGES/kwin.mo share/locale/ne/LC_MESSAGES/kwin_clients.mo share/locale/nl/LC_MESSAGES/kcm-kwin-scripts.mo share/locale/nl/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/nl/LC_MESSAGES/kcm_kwintabbox.mo share/locale/nl/LC_MESSAGES/kcmkwincommon.mo share/locale/nl/LC_MESSAGES/kcmkwincompositing.mo share/locale/nl/LC_MESSAGES/kcm_kwindecoration.mo share/locale/nl/LC_MESSAGES/kcmkwinrules.mo share/locale/nl/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/nl/LC_MESSAGES/kcmkwm.mo share/locale/nl/LC_MESSAGES/kwin.mo share/locale/nl/LC_MESSAGES/kwin_clients.mo share/locale/nl/LC_MESSAGES/kwin_effects.mo share/locale/nl/LC_MESSAGES/kwin_scripting.mo share/locale/nl/LC_MESSAGES/kwin_scripts.mo share/locale/nn/LC_MESSAGES/kcm-kwin-scripts.mo share/locale/nn/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/nn/LC_MESSAGES/kcm_kwintabbox.mo share/locale/nn/LC_MESSAGES/kcmkwincommon.mo share/locale/nn/LC_MESSAGES/kcmkwincompositing.mo share/locale/nn/LC_MESSAGES/kcm_kwindecoration.mo share/locale/nn/LC_MESSAGES/kcmkwinrules.mo share/locale/nn/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/nn/LC_MESSAGES/kcmkwm.mo share/locale/nn/LC_MESSAGES/kwin.mo share/locale/nn/LC_MESSAGES/kwin_clients.mo share/locale/nn/LC_MESSAGES/kwin_effects.mo share/locale/nn/LC_MESSAGES/kwin_scripting.mo share/locale/nn/LC_MESSAGES/kwin_scripts.mo share/locale/oc/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/oc/LC_MESSAGES/kcmkwincompositing.mo share/locale/oc/LC_MESSAGES/kcm_kwindecoration.mo share/locale/oc/LC_MESSAGES/kcmkwinrules.mo share/locale/oc/LC_MESSAGES/kcmkwm.mo share/locale/oc/LC_MESSAGES/kwin.mo share/locale/oc/LC_MESSAGES/kwin_clients.mo share/locale/oc/LC_MESSAGES/kwin_effects.mo share/locale/or/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/or/LC_MESSAGES/kcmkwincompositing.mo share/locale/or/LC_MESSAGES/kcm_kwindecoration.mo share/locale/or/LC_MESSAGES/kcmkwinrules.mo share/locale/or/LC_MESSAGES/kcmkwm.mo share/locale/or/LC_MESSAGES/kwin.mo share/locale/or/LC_MESSAGES/kwin_clients.mo share/locale/or/LC_MESSAGES/kwin_effects.mo share/locale/pa/LC_MESSAGES/kcm-kwin-scripts.mo share/locale/pa/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/pa/LC_MESSAGES/kcm_kwintabbox.mo share/locale/pa/LC_MESSAGES/kcmkwincompositing.mo share/locale/pa/LC_MESSAGES/kcm_kwindecoration.mo share/locale/pa/LC_MESSAGES/kcmkwinrules.mo share/locale/pa/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/pa/LC_MESSAGES/kcmkwm.mo share/locale/pa/LC_MESSAGES/kwin.mo share/locale/pa/LC_MESSAGES/kwin_clients.mo share/locale/pa/LC_MESSAGES/kwin_effects.mo share/locale/pa/LC_MESSAGES/kwin_scripting.mo share/locale/pl/LC_MESSAGES/kcm-kwin-scripts.mo share/locale/pl/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/pl/LC_MESSAGES/kcm_kwintabbox.mo share/locale/pl/LC_MESSAGES/kcmkwincommon.mo share/locale/pl/LC_MESSAGES/kcmkwincompositing.mo share/locale/pl/LC_MESSAGES/kcm_kwindecoration.mo share/locale/pl/LC_MESSAGES/kcmkwinrules.mo share/locale/pl/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/pl/LC_MESSAGES/kcmkwm.mo share/locale/pl/LC_MESSAGES/kwin.mo share/locale/pl/LC_MESSAGES/kwin_clients.mo share/locale/pl/LC_MESSAGES/kwin_effects.mo share/locale/pl/LC_MESSAGES/kwin_scripting.mo share/locale/pl/LC_MESSAGES/kwin_scripts.mo share/locale/pt/LC_MESSAGES/kcm-kwin-scripts.mo share/locale/pt/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/pt/LC_MESSAGES/kcm_kwintabbox.mo share/locale/pt/LC_MESSAGES/kcmkwincommon.mo share/locale/pt/LC_MESSAGES/kcmkwincompositing.mo share/locale/pt/LC_MESSAGES/kcm_kwindecoration.mo share/locale/pt/LC_MESSAGES/kcmkwinrules.mo share/locale/pt/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/pt/LC_MESSAGES/kcmkwm.mo share/locale/pt/LC_MESSAGES/kwin.mo share/locale/pt/LC_MESSAGES/kwin_clients.mo share/locale/pt/LC_MESSAGES/kwin_effects.mo share/locale/pt/LC_MESSAGES/kwin_scripting.mo share/locale/pt/LC_MESSAGES/kwin_scripts.mo share/locale/pt_BR/LC_MESSAGES/kcm-kwin-scripts.mo share/locale/pt_BR/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/pt_BR/LC_MESSAGES/kcm_kwintabbox.mo share/locale/pt_BR/LC_MESSAGES/kcmkwincommon.mo share/locale/pt_BR/LC_MESSAGES/kcmkwincompositing.mo share/locale/pt_BR/LC_MESSAGES/kcm_kwindecoration.mo share/locale/pt_BR/LC_MESSAGES/kcmkwinrules.mo share/locale/pt_BR/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/pt_BR/LC_MESSAGES/kcmkwm.mo share/locale/pt_BR/LC_MESSAGES/kwin.mo share/locale/pt_BR/LC_MESSAGES/kwin_clients.mo share/locale/pt_BR/LC_MESSAGES/kwin_effects.mo share/locale/pt_BR/LC_MESSAGES/kwin_scripting.mo share/locale/pt_BR/LC_MESSAGES/kwin_scripts.mo share/locale/ro/LC_MESSAGES/kcm-kwin-scripts.mo share/locale/ro/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/ro/LC_MESSAGES/kcm_kwintabbox.mo share/locale/ro/LC_MESSAGES/kcmkwincompositing.mo share/locale/ro/LC_MESSAGES/kcm_kwindecoration.mo share/locale/ro/LC_MESSAGES/kcmkwinrules.mo share/locale/ro/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/ro/LC_MESSAGES/kcmkwm.mo share/locale/ro/LC_MESSAGES/kwin.mo share/locale/ro/LC_MESSAGES/kwin_clients.mo share/locale/ro/LC_MESSAGES/kwin_effects.mo share/locale/ro/LC_MESSAGES/kwin_scripting.mo share/locale/ru/LC_MESSAGES/kcm-kwin-scripts.mo share/locale/ru/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/ru/LC_MESSAGES/kcm_kwintabbox.mo share/locale/ru/LC_MESSAGES/kcmkwincommon.mo share/locale/ru/LC_MESSAGES/kcmkwincompositing.mo share/locale/ru/LC_MESSAGES/kcm_kwindecoration.mo share/locale/ru/LC_MESSAGES/kcmkwinrules.mo share/locale/ru/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/ru/LC_MESSAGES/kcmkwm.mo share/locale/ru/LC_MESSAGES/kwin.mo share/locale/ru/LC_MESSAGES/kwin_clients.mo share/locale/ru/LC_MESSAGES/kwin_effects.mo share/locale/ru/LC_MESSAGES/kwin_scripting.mo share/locale/ru/LC_MESSAGES/kwin_scripts.mo share/locale/se/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/se/LC_MESSAGES/kcmkwincommon.mo share/locale/se/LC_MESSAGES/kcmkwincompositing.mo share/locale/se/LC_MESSAGES/kcm_kwindecoration.mo share/locale/se/LC_MESSAGES/kcmkwinrules.mo share/locale/se/LC_MESSAGES/kcmkwm.mo share/locale/se/LC_MESSAGES/kwin.mo share/locale/se/LC_MESSAGES/kwin_clients.mo share/locale/si/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/si/LC_MESSAGES/kcm_kwintabbox.mo share/locale/si/LC_MESSAGES/kcmkwincompositing.mo share/locale/si/LC_MESSAGES/kcm_kwindecoration.mo share/locale/si/LC_MESSAGES/kcmkwinrules.mo share/locale/si/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/si/LC_MESSAGES/kcmkwm.mo share/locale/si/LC_MESSAGES/kwin.mo share/locale/si/LC_MESSAGES/kwin_clients.mo share/locale/si/LC_MESSAGES/kwin_effects.mo share/locale/sk/LC_MESSAGES/kcm-kwin-scripts.mo share/locale/sk/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/sk/LC_MESSAGES/kcm_kwintabbox.mo share/locale/sk/LC_MESSAGES/kcmkwincommon.mo share/locale/sk/LC_MESSAGES/kcmkwincompositing.mo share/locale/sk/LC_MESSAGES/kcm_kwindecoration.mo share/locale/sk/LC_MESSAGES/kcmkwinrules.mo share/locale/sk/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/sk/LC_MESSAGES/kcmkwm.mo share/locale/sk/LC_MESSAGES/kwin.mo share/locale/sk/LC_MESSAGES/kwin_clients.mo share/locale/sk/LC_MESSAGES/kwin_effects.mo share/locale/sk/LC_MESSAGES/kwin_scripting.mo share/locale/sk/LC_MESSAGES/kwin_scripts.mo share/locale/sl/LC_MESSAGES/kcm-kwin-scripts.mo share/locale/sl/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/sl/LC_MESSAGES/kcm_kwintabbox.mo share/locale/sl/LC_MESSAGES/kcmkwincompositing.mo share/locale/sl/LC_MESSAGES/kcm_kwindecoration.mo share/locale/sl/LC_MESSAGES/kcmkwinrules.mo share/locale/sl/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/sl/LC_MESSAGES/kcmkwm.mo share/locale/sl/LC_MESSAGES/kwin.mo share/locale/sl/LC_MESSAGES/kwin_clients.mo share/locale/sl/LC_MESSAGES/kwin_effects.mo share/locale/sl/LC_MESSAGES/kwin_scripting.mo share/locale/sl/LC_MESSAGES/kwin_scripts.mo share/locale/sq/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/sq/LC_MESSAGES/kcmkwincompositing.mo share/locale/sq/LC_MESSAGES/kcm_kwindecoration.mo share/locale/sq/LC_MESSAGES/kcmkwinrules.mo share/locale/sq/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/sq/LC_MESSAGES/kcmkwm.mo share/locale/sq/LC_MESSAGES/kwin.mo share/locale/sq/LC_MESSAGES/kwin_clients.mo share/locale/sq/LC_MESSAGES/kwin_effects.mo share/locale/sr/LC_MESSAGES/kcm-kwin-scripts.mo share/locale/sr/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/sr/LC_MESSAGES/kcm_kwintabbox.mo share/locale/sr/LC_MESSAGES/kcmkwincompositing.mo share/locale/sr/LC_MESSAGES/kcm_kwindecoration.mo share/locale/sr/LC_MESSAGES/kcmkwinrules.mo share/locale/sr/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/sr/LC_MESSAGES/kcmkwm.mo share/locale/sr/LC_MESSAGES/kwin.mo share/locale/sr/LC_MESSAGES/kwin_clients.mo share/locale/sr/LC_MESSAGES/kwin_effects.mo share/locale/sr/LC_MESSAGES/kwin_scripting.mo share/locale/sr/LC_MESSAGES/kwin_scripts.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm-kwin-scripts.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_kwintabbox.mo share/locale/sr@ijekavian/LC_MESSAGES/kcmkwincompositing.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_kwindecoration.mo share/locale/sr@ijekavian/LC_MESSAGES/kcmkwinrules.mo share/locale/sr@ijekavian/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/sr@ijekavian/LC_MESSAGES/kcmkwm.mo share/locale/sr@ijekavian/LC_MESSAGES/kwin.mo share/locale/sr@ijekavian/LC_MESSAGES/kwin_clients.mo share/locale/sr@ijekavian/LC_MESSAGES/kwin_effects.mo share/locale/sr@ijekavian/LC_MESSAGES/kwin_scripting.mo share/locale/sr@ijekavian/LC_MESSAGES/kwin_scripts.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm-kwin-scripts.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_kwintabbox.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmkwincompositing.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_kwindecoration.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmkwinrules.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmkwm.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kwin.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kwin_clients.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kwin_effects.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kwin_scripting.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kwin_scripts.mo share/locale/sr@latin/LC_MESSAGES/kcm-kwin-scripts.mo share/locale/sr@latin/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/sr@latin/LC_MESSAGES/kcm_kwintabbox.mo share/locale/sr@latin/LC_MESSAGES/kcmkwincompositing.mo share/locale/sr@latin/LC_MESSAGES/kcm_kwindecoration.mo share/locale/sr@latin/LC_MESSAGES/kcmkwinrules.mo share/locale/sr@latin/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/sr@latin/LC_MESSAGES/kcmkwm.mo share/locale/sr@latin/LC_MESSAGES/kwin.mo share/locale/sr@latin/LC_MESSAGES/kwin_clients.mo share/locale/sr@latin/LC_MESSAGES/kwin_effects.mo share/locale/sr@latin/LC_MESSAGES/kwin_scripting.mo share/locale/sr@latin/LC_MESSAGES/kwin_scripts.mo share/locale/sv/LC_MESSAGES/kcm-kwin-scripts.mo share/locale/sv/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/sv/LC_MESSAGES/kcm_kwintabbox.mo share/locale/sv/LC_MESSAGES/kcmkwincommon.mo share/locale/sv/LC_MESSAGES/kcmkwincompositing.mo share/locale/sv/LC_MESSAGES/kcm_kwindecoration.mo share/locale/sv/LC_MESSAGES/kcmkwinrules.mo share/locale/sv/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/sv/LC_MESSAGES/kcmkwm.mo share/locale/sv/LC_MESSAGES/kwin.mo share/locale/sv/LC_MESSAGES/kwin_clients.mo share/locale/sv/LC_MESSAGES/kwin_effects.mo share/locale/sv/LC_MESSAGES/kwin_scripting.mo share/locale/sv/LC_MESSAGES/kwin_scripts.mo share/locale/ta/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/ta/LC_MESSAGES/kcmkwincompositing.mo share/locale/ta/LC_MESSAGES/kcm_kwindecoration.mo share/locale/ta/LC_MESSAGES/kcmkwinrules.mo share/locale/ta/LC_MESSAGES/kcmkwm.mo share/locale/ta/LC_MESSAGES/kwin.mo share/locale/ta/LC_MESSAGES/kwin_clients.mo share/locale/ta/LC_MESSAGES/kwin_effects.mo share/locale/te/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/te/LC_MESSAGES/kcmkwincompositing.mo share/locale/te/LC_MESSAGES/kcm_kwindecoration.mo share/locale/te/LC_MESSAGES/kcmkwinrules.mo share/locale/te/LC_MESSAGES/kcmkwm.mo share/locale/te/LC_MESSAGES/kwin.mo share/locale/te/LC_MESSAGES/kwin_clients.mo share/locale/te/LC_MESSAGES/kwin_effects.mo share/locale/tg/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/tg/LC_MESSAGES/kcmkwincompositing.mo share/locale/tg/LC_MESSAGES/kcm_kwindecoration.mo share/locale/tg/LC_MESSAGES/kcmkwinrules.mo share/locale/tg/LC_MESSAGES/kcmkwm.mo share/locale/tg/LC_MESSAGES/kwin.mo share/locale/tg/LC_MESSAGES/kwin_clients.mo share/locale/tg/LC_MESSAGES/kwin_effects.mo share/locale/th/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/th/LC_MESSAGES/kcm_kwintabbox.mo share/locale/th/LC_MESSAGES/kcmkwincompositing.mo share/locale/th/LC_MESSAGES/kcm_kwindecoration.mo share/locale/th/LC_MESSAGES/kcmkwinrules.mo share/locale/th/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/th/LC_MESSAGES/kcmkwm.mo share/locale/th/LC_MESSAGES/kwin.mo share/locale/th/LC_MESSAGES/kwin_clients.mo share/locale/th/LC_MESSAGES/kwin_effects.mo share/locale/tr/LC_MESSAGES/kcm-kwin-scripts.mo share/locale/tr/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/tr/LC_MESSAGES/kcm_kwintabbox.mo share/locale/tr/LC_MESSAGES/kcmkwincompositing.mo share/locale/tr/LC_MESSAGES/kcm_kwindecoration.mo share/locale/tr/LC_MESSAGES/kcmkwinrules.mo share/locale/tr/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/tr/LC_MESSAGES/kcmkwm.mo share/locale/tr/LC_MESSAGES/kwin.mo share/locale/tr/LC_MESSAGES/kwin_clients.mo share/locale/tr/LC_MESSAGES/kwin_effects.mo share/locale/tr/LC_MESSAGES/kwin_scripting.mo share/locale/tr/LC_MESSAGES/kwin_scripts.mo share/locale/ug/LC_MESSAGES/kcm-kwin-scripts.mo share/locale/ug/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/ug/LC_MESSAGES/kcm_kwintabbox.mo share/locale/ug/LC_MESSAGES/kcmkwincompositing.mo share/locale/ug/LC_MESSAGES/kcm_kwindecoration.mo share/locale/ug/LC_MESSAGES/kcmkwinrules.mo share/locale/ug/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/ug/LC_MESSAGES/kcmkwm.mo share/locale/ug/LC_MESSAGES/kwin.mo share/locale/ug/LC_MESSAGES/kwin_clients.mo share/locale/ug/LC_MESSAGES/kwin_effects.mo share/locale/ug/LC_MESSAGES/kwin_scripting.mo share/locale/uk/LC_MESSAGES/kcm-kwin-scripts.mo share/locale/uk/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/uk/LC_MESSAGES/kcm_kwintabbox.mo share/locale/uk/LC_MESSAGES/kcmkwincommon.mo share/locale/uk/LC_MESSAGES/kcmkwincompositing.mo share/locale/uk/LC_MESSAGES/kcm_kwindecoration.mo share/locale/uk/LC_MESSAGES/kcmkwinrules.mo share/locale/uk/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/uk/LC_MESSAGES/kcmkwm.mo share/locale/uk/LC_MESSAGES/kwin.mo share/locale/uk/LC_MESSAGES/kwin_clients.mo share/locale/uk/LC_MESSAGES/kwin_effects.mo share/locale/uk/LC_MESSAGES/kwin_scripting.mo share/locale/uk/LC_MESSAGES/kwin_scripts.mo share/locale/uz/LC_MESSAGES/kcm_kwindecoration.mo share/locale/uz/LC_MESSAGES/kcmkwinrules.mo share/locale/uz/LC_MESSAGES/kcmkwm.mo share/locale/uz/LC_MESSAGES/kwin.mo share/locale/uz/LC_MESSAGES/kwin_clients.mo share/locale/uz@cyrillic/LC_MESSAGES/kcm_kwindecoration.mo share/locale/uz@cyrillic/LC_MESSAGES/kcmkwinrules.mo share/locale/uz@cyrillic/LC_MESSAGES/kcmkwm.mo share/locale/uz@cyrillic/LC_MESSAGES/kwin.mo share/locale/uz@cyrillic/LC_MESSAGES/kwin_clients.mo share/locale/vi/LC_MESSAGES/kcm_kwindecoration.mo share/locale/vi/LC_MESSAGES/kcmkwinrules.mo share/locale/vi/LC_MESSAGES/kcmkwm.mo share/locale/vi/LC_MESSAGES/kwin.mo share/locale/vi/LC_MESSAGES/kwin_clients.mo share/locale/wa/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/wa/LC_MESSAGES/kcm_kwintabbox.mo share/locale/wa/LC_MESSAGES/kcmkwincompositing.mo share/locale/wa/LC_MESSAGES/kcm_kwindecoration.mo share/locale/wa/LC_MESSAGES/kcmkwinrules.mo share/locale/wa/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/wa/LC_MESSAGES/kcmkwm.mo share/locale/wa/LC_MESSAGES/kwin.mo share/locale/wa/LC_MESSAGES/kwin_clients.mo share/locale/wa/LC_MESSAGES/kwin_effects.mo share/locale/xh/LC_MESSAGES/kcm_kwindecoration.mo share/locale/xh/LC_MESSAGES/kcmkwm.mo share/locale/xh/LC_MESSAGES/kwin.mo share/locale/zh_CN/LC_MESSAGES/kcm-kwin-scripts.mo share/locale/zh_CN/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/zh_CN/LC_MESSAGES/kcm_kwintabbox.mo share/locale/zh_CN/LC_MESSAGES/kcmkwincommon.mo share/locale/zh_CN/LC_MESSAGES/kcmkwincompositing.mo share/locale/zh_CN/LC_MESSAGES/kcm_kwindecoration.mo share/locale/zh_CN/LC_MESSAGES/kcmkwinrules.mo share/locale/zh_CN/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/zh_CN/LC_MESSAGES/kcmkwm.mo share/locale/zh_CN/LC_MESSAGES/kwin.mo share/locale/zh_CN/LC_MESSAGES/kwin_clients.mo share/locale/zh_CN/LC_MESSAGES/kwin_effects.mo share/locale/zh_CN/LC_MESSAGES/kwin_scripting.mo share/locale/zh_CN/LC_MESSAGES/kwin_scripts.mo share/locale/zh_TW/LC_MESSAGES/kcm-kwin-scripts.mo share/locale/zh_TW/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/zh_TW/LC_MESSAGES/kcm_kwintabbox.mo share/locale/zh_TW/LC_MESSAGES/kcmkwincommon.mo share/locale/zh_TW/LC_MESSAGES/kcmkwincompositing.mo share/locale/zh_TW/LC_MESSAGES/kcm_kwindecoration.mo share/locale/zh_TW/LC_MESSAGES/kcmkwinrules.mo share/locale/zh_TW/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/zh_TW/LC_MESSAGES/kcmkwm.mo share/locale/zh_TW/LC_MESSAGES/kwin.mo share/locale/zh_TW/LC_MESSAGES/kwin_clients.mo share/locale/zh_TW/LC_MESSAGES/kwin_effects.mo share/locale/zh_TW/LC_MESSAGES/kwin_scripting.mo share/locale/zh_TW/LC_MESSAGES/kwin_scripts.mo