diff --git a/Mk/Uses/kde.mk b/Mk/Uses/kde.mk index 1ad867102864..8b9d367cd1fc 100644 --- a/Mk/Uses/kde.mk +++ b/Mk/Uses/kde.mk @@ -1,908 +1,908 @@ # 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-applications: 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. # # option DOCS If the port is part of kde-applications (see CATEGORIES, # above) and has an option defined for DOCS then a dependency # for doctools_build is added. The option itself doesn't # have to do anything -- the dependency is always there. # # KDE_INVENT If the port does not have a regular release, and should # be fetched from KDE Invent (a GitLab instance) it can set # KDE_INVENT to 3 space-separated values: # * a full 40-character commit hash # * a category name inside KDE Invent # * a repository name inside KDE Invent # Default values for category and name are: # * the first item in CATEGORIES that is not "kde"; this # is useful when the FreeBSD ports category and the KDE # category are the same (which happens sometimes) # * PORTNAME, often the FreeBSD port name is the same # as the upstream name and it will not need to be specified. # Sometimes `KDE_INVENT=` will do and often # `KDE_INVENT= ` is enough. # # Setting KDE_INVENT is the equivalent of a handful of USE_GITLAB # and related settings. # # 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.22.0 +KDE_PLASMA_VERSION?= 5.22.1 KDE_PLASMA_BRANCH?= stable # Current KDE frameworks. KDE_FRAMEWORKS_VERSION?= 5.82.0 KDE_FRAMEWORKS_BRANCH?= stable # Current KDE applications. KDE_APPLICATIONS_VERSION?= 21.04.2 KDE_APPLICATIONS_SHLIB_VER?= 5.17.2 KDE_APPLICATIONS_BRANCH?= stable # 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 # Doing source-selection if the sources are on KDE invent . if defined(KDE_INVENT) _invent_hash= ${KDE_INVENT:[1]} _invent_category= ${KDE_INVENT:[2]} _invent_name= ${KDE_INVENT:[3]} # Fill in default values if bits are missing . if empty(_invent_category) _invent_category= ${CATEGORIES:Nkde:[1]} . endif . if empty(_invent_name) _invent_name= ${PORTNAME} . endif # If valid, use it for GitLab . if empty(_invent_hash) || empty(_invent_category) || empty(_invent_name) IGNORE?= invalid KDE_INVENT value '${KDE_INVENT}' . else USE_GITLAB= yes GL_SITE= https://invent.kde.org GL_ACCOUNT= ${_invent_category} GL_PROJECT= ${_invent_name} GL_COMMIT= ${_invent_hash} . endif . endif . 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} MASTER_SITES?= KDE/${KDE_APPLICATIONS_BRANCH}/release-service/${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. This is only done if the port # defines OPTION DOCS -- the _KDE_OPTIONS here is to # avoid make errors when there are no options defined at all. _KDE_OPTIONS= bogus ${OPTIONS_DEFINE} . if ${_KDE_OPTIONS:MDOCS} DOCSDIR= ${PREFIX}/share/doc PORTDOCS?= HTML/* USE_KDE+= doctools_build . endif # 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}" DIST_SUBDIR?= KDE/release-service/${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 kdesignerplugin kdewebkit khtml kmediaplayer kross kxmlrpcclient . 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) # ============================================================================== # === SET UP CMAKE ENVIRONMENT ================================================= # Help cmake to find files when testing ports with non-default PREFIX. CMAKE_ARGS+= -DCMAKE_PREFIX_PATH="${LOCALBASE}" # We set KDE_INSTALL_USE_QT_SYS_PATHS to install mkspecs files, plugins and # imports to the Qt 5 install directory. CMAKE_ARGS+= -DCMAKE_MODULE_PATH="${LOCALBASE};${KDE_PREFIX}" \ -DCMAKE_INSTALL_PREFIX="${KDE_PREFIX}" \ -DKDE_INSTALL_USE_QT_SYS_PATHS:BOOL=true # Set man-page installation prefix. CMAKE_ARGS+= -DKDE_INSTALL_MANDIR:PATH="${KDE_PREFIX}/man" \ -DMAN_INSTALL_DIR:PATH="${KDE_PREFIX}/man" # Disable autotests unless TEST_TARGET is defined. . if !defined(TEST_TARGET) CMAKE_ARGS+= -DBUILD_TESTING:BOOL=false . endif # ============================================================================== # === 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}" \ KDE_FRAMEWORKS_VERSION="${KDE_FRAMEWORKS_VERSION}" \ KDE_PLASMA_VERSION="${KDE_PLASMA_VERSION}" # ============================================================================== _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 kquickcharts 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 kdav kdeclarative \ kded kdesu kdewebkit kio kwayland-server newstuff notifyconfig parts \ people plasma-framework purpose runner service texteditor \ textwidgets wallet xmlgui xmlrpcclient _USE_FRAMEWORKS_TIER4= frameworkintegration calendarcore contacts # 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} \ kpublictransport kosm # 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 layer-shell-qt libkscreen \ libksysguard milou oxygen plasma-browser-integration \ plasma-desktop plasma-disks plasma-integration plasma-pa \ plasma-sdk plasma-workspace plasma-workspace-wallpapers \ polkit-kde-agent-1 powerdevil systemsettings # List of components of the KDE PIM distribution (part of applications). _USE_KDEPIM5_ALL= akonadicontacts akonadiimportwizard akonadimime akonadinotes \ akonadicalendar akonadisearch alarmcalendar \ calendarcore calendarsupport calendarutils \ contacts eventviews gapi grantleetheme \ gravatar identitymanagement imap \ incidenceeditor kdepim-addons \ kdepim-runtime5 kitinerary kontactinterface 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= ${KDE_PREFIX}/bin/kgendesignerplugin 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_PATH= ${KDE_PREFIX}/bin/kded5 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-kquickcharts_PORT= graphics/kf5-kquickcharts kde-kquickcharts_PATH= ${QT_QMLDIR}/org/kde/quickcharts/controls/libchartscontrolsplugin.so kde-kross_PORT= lang/kf5-kross kde-kross_LIB= libKF5KrossCore.so kde-kwayland-protocols_PORT= x11/plasma-wayland-protocols kde-kwayland-protocols_LIB= ${KDE_PREFIX}/lib/cmake/PlasmaWaylandProtocols/PlasmaWaylandProtocolsConfig.cmake kde-kwayland-server_PORT= x11/plasma5-kwayland-server kde-kwayland-server_LIB= libKWaylandServer.so kde-layer-shell-qt_PORT= x11/plasma5-layer-shell-qt kde-layer-shell-qt_LIB= libLayerShellQtInterface.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}/share/themes/Breeze/gtk-2.0/gtkrc 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= ${KDE_PREFIX}/lib/kconf_update_bin/gtk_theme 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_PATH= ${KDE_PREFIX}/bin/kmenuedit 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/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_PATH= ${QT_PLUGINDIR}/styles/oxygen.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/kaccess kde-plasma-disks_PORT= sysutils/plasma5-plasma-disks kde-plasma-disks_PATH= ${KDE_PREFIX}/lib/libexec/kauth/kded-smart-helper 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 # ====================== 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-calendarsupport_PORT= net/calendarsupport kde-calendarsupport_LIB= libKF5CalendarSupport.so kde-calendarcore_PORT= net/kf5-kcalendarcore kde-calendarcore_LIB= libKF5CalendarCore.so kde-calendarutils_PORT= net/kcalutils kde-calendarutils_LIB= libKF5CalendarUtils.so kde-contacts_PORT= net/kf5-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-kdav_PORT= net/kf5-kdav kde-kdav_LIB= libKF5DAV.so kde-kdepim-addons_PORT= deskutils/kdepim-addons kde-kdepim-addons_PATH= ${KDE_PREFIX}/lib/contacteditor/editorpageplugins/cryptopageplugin.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-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/pimdataexporter # ====================== 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-kpublictransport_PORT= devel/kpublictransport kde-kpublictransport_LIB= libKPublicTransport.so kde-kosm_PORT= astro/kosmindoormap kde-kosm_LIB= libKOSM.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 diff --git a/audio/plasma5-plasma-pa/distinfo b/audio/plasma5-plasma-pa/distinfo index 0f3b5409089d..eb5952cb466a 100644 --- a/audio/plasma5-plasma-pa/distinfo +++ b/audio/plasma5-plasma-pa/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1622813545 -SHA256 (KDE/plasma/5.22.0/plasma-pa-5.22.0.tar.xz) = 6d6f3ba2303c6f640fa2c8c3c648e10021651a00f5ab10d5d78dc7e3ed9d4741 -SIZE (KDE/plasma/5.22.0/plasma-pa-5.22.0.tar.xz) = 127228 +TIMESTAMP = 1623866570 +SHA256 (KDE/plasma/5.22.1/plasma-pa-5.22.1.tar.xz) = bd8d5655ae3e188b1c48ac3c0019a0c303b95060576836f70232448b5955e9f2 +SIZE (KDE/plasma/5.22.1/plasma-pa-5.22.1.tar.xz) = 127304 diff --git a/deskutils/plasma5-milou/distinfo b/deskutils/plasma5-milou/distinfo index 9a687849a23e..eb9f98f2b7bf 100644 --- a/deskutils/plasma5-milou/distinfo +++ b/deskutils/plasma5-milou/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1622813545 -SHA256 (KDE/plasma/5.22.0/milou-5.22.0.tar.xz) = ee38467ef60e5d9090874820e15548c84c92c0d86491492671d48bb797354ffd -SIZE (KDE/plasma/5.22.0/milou-5.22.0.tar.xz) = 52600 +TIMESTAMP = 1623866571 +SHA256 (KDE/plasma/5.22.1/milou-5.22.1.tar.xz) = 98ed1f0fe0f4dbc73645a04512593d129a1ff5367b9fb43660922fa9540f0d44 +SIZE (KDE/plasma/5.22.1/milou-5.22.1.tar.xz) = 52584 diff --git a/deskutils/plasma5-sddm-kcm/distinfo b/deskutils/plasma5-sddm-kcm/distinfo index 18ab09059916..994f7c7ae218 100644 --- a/deskutils/plasma5-sddm-kcm/distinfo +++ b/deskutils/plasma5-sddm-kcm/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1622813546 -SHA256 (KDE/plasma/5.22.0/sddm-kcm-5.22.0.tar.xz) = c1fec113d99159834d322286ac1625dd7dbe11ba39ea137e488774bf4e388d4d -SIZE (KDE/plasma/5.22.0/sddm-kcm-5.22.0.tar.xz) = 64464 +TIMESTAMP = 1623866572 +SHA256 (KDE/plasma/5.22.1/sddm-kcm-5.22.1.tar.xz) = c4f4afbce00d7c280753f4b35998ae3df1e81d2f3bcee0d13f5be5fad2477e41 +SIZE (KDE/plasma/5.22.1/sddm-kcm-5.22.1.tar.xz) = 64460 diff --git a/devel/plasma5-khotkeys/distinfo b/devel/plasma5-khotkeys/distinfo index 00414ad77a20..ef8c7bfe9b8c 100644 --- a/devel/plasma5-khotkeys/distinfo +++ b/devel/plasma5-khotkeys/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1622813547 -SHA256 (KDE/plasma/5.22.0/khotkeys-5.22.0.tar.xz) = 689a9a605df33c595bf650bbaca9277c25b3defe6b5077cfe45280e931dd3699 -SIZE (KDE/plasma/5.22.0/khotkeys-5.22.0.tar.xz) = 1858420 +TIMESTAMP = 1623866573 +SHA256 (KDE/plasma/5.22.1/khotkeys-5.22.1.tar.xz) = 39e5bf9790962c8b5bda0181e9da6eedace47014395cc718996cefb2f7a04e09 +SIZE (KDE/plasma/5.22.1/khotkeys-5.22.1.tar.xz) = 1858344 diff --git a/devel/plasma5-kwrited/distinfo b/devel/plasma5-kwrited/distinfo index eb55b5692b14..c182adc1ee69 100644 --- a/devel/plasma5-kwrited/distinfo +++ b/devel/plasma5-kwrited/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1622813547 -SHA256 (KDE/plasma/5.22.0/kwrited-5.22.0.tar.xz) = 069eeb75d8c8a23f4b8524f94d980129099a8fb076c3f09c086fca6046980319 -SIZE (KDE/plasma/5.22.0/kwrited-5.22.0.tar.xz) = 20464 +TIMESTAMP = 1623866574 +SHA256 (KDE/plasma/5.22.1/kwrited-5.22.1.tar.xz) = c33ca150c8f3f0f75b10731718679a5746bb832e2fba7bc7d45016c9dcf69ced +SIZE (KDE/plasma/5.22.1/kwrited-5.22.1.tar.xz) = 20472 diff --git a/devel/plasma5-plasma-sdk/distinfo b/devel/plasma5-plasma-sdk/distinfo index c67e3540d00d..9113f61b6ab8 100644 --- a/devel/plasma5-plasma-sdk/distinfo +++ b/devel/plasma5-plasma-sdk/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1622813548 -SHA256 (KDE/plasma/5.22.0/plasma-sdk-5.22.0.tar.xz) = 90364c190090e19c8099f3856f1cc6ff83e274b8a5a40f14d25bd47feab77552 -SIZE (KDE/plasma/5.22.0/plasma-sdk-5.22.0.tar.xz) = 269456 +TIMESTAMP = 1623866575 +SHA256 (KDE/plasma/5.22.1/plasma-sdk-5.22.1.tar.xz) = 16e3c576705ed416881a126997bbcd2132cca34dfc1f0f48a8c655fbb1ab01b9 +SIZE (KDE/plasma/5.22.1/plasma-sdk-5.22.1.tar.xz) = 269508 diff --git a/security/plasma5-kscreenlocker/distinfo b/security/plasma5-kscreenlocker/distinfo index cd5bba6f47e8..e4cfd8b66672 100644 --- a/security/plasma5-kscreenlocker/distinfo +++ b/security/plasma5-kscreenlocker/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1622813549 -SHA256 (KDE/plasma/5.22.0/kscreenlocker-5.22.0.tar.xz) = 9feacfa447b64bd039e6bb0e339d723927754f2c53161bfd915fe5b1b30fdc75 -SIZE (KDE/plasma/5.22.0/kscreenlocker-5.22.0.tar.xz) = 116520 +TIMESTAMP = 1623866576 +SHA256 (KDE/plasma/5.22.1/kscreenlocker-5.22.1.tar.xz) = 9803b976b6cc14fa5216de17481609ebf46d28c314284d9e74e8f9b181cb9bba +SIZE (KDE/plasma/5.22.1/kscreenlocker-5.22.1.tar.xz) = 116508 diff --git a/security/plasma5-ksshaskpass/distinfo b/security/plasma5-ksshaskpass/distinfo index a56bcce4d824..40086251e5f5 100644 --- a/security/plasma5-ksshaskpass/distinfo +++ b/security/plasma5-ksshaskpass/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1622813550 -SHA256 (KDE/plasma/5.22.0/ksshaskpass-5.22.0.tar.xz) = 61f856613833df7fb3285fb19e5db6ce6f832392369394058fcc6337db6bf497 -SIZE (KDE/plasma/5.22.0/ksshaskpass-5.22.0.tar.xz) = 23680 +TIMESTAMP = 1623866577 +SHA256 (KDE/plasma/5.22.1/ksshaskpass-5.22.1.tar.xz) = f4da702de3113b7a64831f5d8dd86614b7763229ba6eff0f4a2feb76ecab2385 +SIZE (KDE/plasma/5.22.1/ksshaskpass-5.22.1.tar.xz) = 23664 diff --git a/security/plasma5-kwallet-pam/distinfo b/security/plasma5-kwallet-pam/distinfo index 4eb1b93a3179..a9ee83cf4f8d 100644 --- a/security/plasma5-kwallet-pam/distinfo +++ b/security/plasma5-kwallet-pam/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1622813550 -SHA256 (KDE/plasma/5.22.0/kwallet-pam-5.22.0.tar.xz) = 461c01bb2f1d534222839698e9b677a288c8deea00514f9d3a0df43d5614d655 -SIZE (KDE/plasma/5.22.0/kwallet-pam-5.22.0.tar.xz) = 20164 +TIMESTAMP = 1623866577 +SHA256 (KDE/plasma/5.22.1/kwallet-pam-5.22.1.tar.xz) = 10d8912d064e2c97896f23202467fe57107c01d5c2523690cb0f49661fe56e30 +SIZE (KDE/plasma/5.22.1/kwallet-pam-5.22.1.tar.xz) = 20156 diff --git a/sysutils/plasma5-discover/distinfo b/sysutils/plasma5-discover/distinfo index d9aafd6714b3..923ce77e3ecc 100644 --- a/sysutils/plasma5-discover/distinfo +++ b/sysutils/plasma5-discover/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1622813551 -SHA256 (KDE/plasma/5.22.0/discover-5.22.0.tar.xz) = a605d3f9d2f35c604da9a36654bf7c8828312c00b3610a25969101f27186a812 -SIZE (KDE/plasma/5.22.0/discover-5.22.0.tar.xz) = 8455148 +TIMESTAMP = 1623866579 +SHA256 (KDE/plasma/5.22.1/discover-5.22.1.tar.xz) = 593ef8c026c07f1a045672b169d299ea0696fd38216117a1859284728bcd2e1a +SIZE (KDE/plasma/5.22.1/discover-5.22.1.tar.xz) = 8455804 diff --git a/sysutils/plasma5-drkonqi/distinfo b/sysutils/plasma5-drkonqi/distinfo index aa5f3e9c2f08..c14691b45b6e 100644 --- a/sysutils/plasma5-drkonqi/distinfo +++ b/sysutils/plasma5-drkonqi/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1622813551 -SHA256 (KDE/plasma/5.22.0/drkonqi-5.22.0.tar.xz) = b3a2e5c27ce50a7aa8d0e2575eb1746fb0c8f0e84853377483a87d7a66012883 -SIZE (KDE/plasma/5.22.0/drkonqi-5.22.0.tar.xz) = 782540 +TIMESTAMP = 1623866580 +SHA256 (KDE/plasma/5.22.1/drkonqi-5.22.1.tar.xz) = 8af584eee19b984a6aa6dd2a795eb6b6ea0ebe1b03e69f8321a5f3c88ca7cf39 +SIZE (KDE/plasma/5.22.1/drkonqi-5.22.1.tar.xz) = 782588 diff --git a/sysutils/plasma5-kde-cli-tools/distinfo b/sysutils/plasma5-kde-cli-tools/distinfo index 4eb12dc98fcb..9fc747e7814c 100644 --- a/sysutils/plasma5-kde-cli-tools/distinfo +++ b/sysutils/plasma5-kde-cli-tools/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1622813552 -SHA256 (KDE/plasma/5.22.0/kde-cli-tools-5.22.0.tar.xz) = 28becb598d8aa180c045b7299fd5a0454df1ab355ff570e2584e2faa17ba47e4 -SIZE (KDE/plasma/5.22.0/kde-cli-tools-5.22.0.tar.xz) = 626520 +TIMESTAMP = 1623866581 +SHA256 (KDE/plasma/5.22.1/kde-cli-tools-5.22.1.tar.xz) = 02c5c90136a026194d7ec8500757b6aa0efa2dcc02b0f63b4e87d99b12bdeea3 +SIZE (KDE/plasma/5.22.1/kde-cli-tools-5.22.1.tar.xz) = 626536 diff --git a/sysutils/plasma5-kinfocenter/distinfo b/sysutils/plasma5-kinfocenter/distinfo index 9ee300f72fc9..e8be80e475c1 100644 --- a/sysutils/plasma5-kinfocenter/distinfo +++ b/sysutils/plasma5-kinfocenter/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1622813553 -SHA256 (KDE/plasma/5.22.0/kinfocenter-5.22.0.tar.xz) = 1f853c864adab4b4e961d09f2321a861c830322c9f5425d80b8d1453f4559a22 -SIZE (KDE/plasma/5.22.0/kinfocenter-5.22.0.tar.xz) = 1162588 +TIMESTAMP = 1623866582 +SHA256 (KDE/plasma/5.22.1/kinfocenter-5.22.1.tar.xz) = ae2ce89549af7e096d663a04c1eb22383c0e8c71bf2699f1bc9697ee2019854d +SIZE (KDE/plasma/5.22.1/kinfocenter-5.22.1.tar.xz) = 1163660 diff --git a/sysutils/plasma5-kmenuedit/distinfo b/sysutils/plasma5-kmenuedit/distinfo index 3a37c9e071c8..54488d4a43e4 100644 --- a/sysutils/plasma5-kmenuedit/distinfo +++ b/sysutils/plasma5-kmenuedit/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1622813554 -SHA256 (KDE/plasma/5.22.0/kmenuedit-5.22.0.tar.xz) = 810efc35661b45c61f521fc878251ccc5b290bed1109451a50c58a89c72d9f3f -SIZE (KDE/plasma/5.22.0/kmenuedit-5.22.0.tar.xz) = 899200 +TIMESTAMP = 1623866583 +SHA256 (KDE/plasma/5.22.1/kmenuedit-5.22.1.tar.xz) = 4aaf25c64be71693a2dab0b4a022e6beafd39fd94261a6c20fca500b89f92b80 +SIZE (KDE/plasma/5.22.1/kmenuedit-5.22.1.tar.xz) = 899220 diff --git a/sysutils/plasma5-ksysguard/Makefile b/sysutils/plasma5-ksysguard/Makefile index d5eaa9f8a90e..441d19b07927 100644 --- a/sysutils/plasma5-ksysguard/Makefile +++ b/sysutils/plasma5-ksysguard/Makefile @@ -1,30 +1,32 @@ PORTNAME= ksysguard DISTVERSION= ${KDE_PLASMA_VERSION} PKGNAMEPREFIX= plasma5- CATEGORIES= sysutils kde MASTER_SITES= KDE/stable/${PORTNAME}/${DISTVERSION}/ DIST_SUBDIR= KDE/plasma/${KDE_PLASMA_VERSION} MAINTAINER= kde@FreeBSD.org COMMENT= Plasma5 utility to track and control the running processes USES= cmake compiler:c++11-lib cpe desktop-file-utils \ gettext kde:5 localbase pathfix qt:5 tar:xz USE_KDE= attica auth codecs completion config configwidgets coreaddons \ dbusaddons emoticons i18n iconthemes init itemmodels \ itemviews jobwidgets kdelibs4support kio libksysguard \ newstuff notifications service widgetsaddons windowsystem \ xmlgui \ doctools_build USE_QT= concurrent core dbus gui network widgets xml \ buildtools_build qmake_build OPTIONS_DEFINE= INOTIFY OPTIONS_DEFAULT= ${OPTIONS_DEFINE} OPTIONS_SUB= yes INOTIFY_DESC= Filesystem alteration notifications using inotify INOTIFY_LIB_DEPENDS= libinotify.so:devel/libinotify INOTIFY_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_Inotify +KDE_PLASMA_VERSION= 5.22.0 + .include diff --git a/sysutils/plasma5-libksysguard/distinfo b/sysutils/plasma5-libksysguard/distinfo index ab2da28a58de..f04bfebb92d9 100644 --- a/sysutils/plasma5-libksysguard/distinfo +++ b/sysutils/plasma5-libksysguard/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1622814004 -SHA256 (KDE/plasma/5.22.0/libksysguard-5.22.0.tar.xz) = a2d3973aaf7d5c4a1cb6dd463ec8183dd4e9a6c6b851df4b8824f8dd562607a9 -SIZE (KDE/plasma/5.22.0/libksysguard-5.22.0.tar.xz) = 737056 +TIMESTAMP = 1623866689 +SHA256 (KDE/plasma/5.22.1/libksysguard-5.22.1.tar.xz) = 5a60639a385c3e83a40c17f1c6469b7473f5551fe9379543d98ec0068adca476 +SIZE (KDE/plasma/5.22.1/libksysguard-5.22.1.tar.xz) = 737100 diff --git a/sysutils/plasma5-plasma-disks/distinfo b/sysutils/plasma5-plasma-disks/distinfo index 46ca9fb93aa1..8041af831bb9 100644 --- a/sysutils/plasma5-plasma-disks/distinfo +++ b/sysutils/plasma5-plasma-disks/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1622814005 -SHA256 (KDE/plasma/5.22.0/plasma-disks-5.22.0.tar.xz) = 8b591f0c557f622532492dbba46041dabcd6d6384c796eaf5d354d4a933feb60 -SIZE (KDE/plasma/5.22.0/plasma-disks-5.22.0.tar.xz) = 83804 +TIMESTAMP = 1623866690 +SHA256 (KDE/plasma/5.22.1/plasma-disks-5.22.1.tar.xz) = 250031132e1ed536d3fd785ae90b8eab1900691fc6eb72a7103d21e96294bb4f +SIZE (KDE/plasma/5.22.1/plasma-disks-5.22.1.tar.xz) = 84192 diff --git a/sysutils/plasma5-plasma-systemmonitor/distinfo b/sysutils/plasma5-plasma-systemmonitor/distinfo index 572f7930c30a..8af68ad27ec4 100644 --- a/sysutils/plasma5-plasma-systemmonitor/distinfo +++ b/sysutils/plasma5-plasma-systemmonitor/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1622814006 -SHA256 (KDE/plasma/5.22.0/plasma-systemmonitor-5.22.0.tar.xz) = 6fa0c22f0754f57ce5ab7d43398d5e35217598db34d9fa9e4ad01203cfe375ca -SIZE (KDE/plasma/5.22.0/plasma-systemmonitor-5.22.0.tar.xz) = 133812 +TIMESTAMP = 1623866691 +SHA256 (KDE/plasma/5.22.1/plasma-systemmonitor-5.22.1.tar.xz) = 26a7be0b9e56d669257c55b414a3c386d43d4f8955b6eaf11656951ba4e01632 +SIZE (KDE/plasma/5.22.1/plasma-systemmonitor-5.22.1.tar.xz) = 134040 diff --git a/sysutils/plasma5-polkit-kde-agent-1/distinfo b/sysutils/plasma5-polkit-kde-agent-1/distinfo index bcf5a56ad260..41b4d48bde35 100644 --- a/sysutils/plasma5-polkit-kde-agent-1/distinfo +++ b/sysutils/plasma5-polkit-kde-agent-1/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1622814007 -SHA256 (KDE/plasma/5.22.0/polkit-kde-agent-1-5.22.0.tar.xz) = 83caf23430e2ebba52163d523455f66e18c58fa74489bc0f93c7adec0df3d240 -SIZE (KDE/plasma/5.22.0/polkit-kde-agent-1-5.22.0.tar.xz) = 45812 +TIMESTAMP = 1623866692 +SHA256 (KDE/plasma/5.22.1/polkit-kde-agent-1-5.22.1.tar.xz) = de9a6f1bdf434d013a8d6f0c1498257bc4a48349e652375b4dd036eb161214ee +SIZE (KDE/plasma/5.22.1/polkit-kde-agent-1-5.22.1.tar.xz) = 45792 diff --git a/sysutils/plasma5-powerdevil/distinfo b/sysutils/plasma5-powerdevil/distinfo index 2d359d19bdbf..201a1f18c031 100644 --- a/sysutils/plasma5-powerdevil/distinfo +++ b/sysutils/plasma5-powerdevil/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1622814007 -SHA256 (KDE/plasma/5.22.0/powerdevil-5.22.0.tar.xz) = cdaac1a0cad2ec5cc0c60d2ea8ce9df143ed2b29791ab32acb0abea680763bc1 -SIZE (KDE/plasma/5.22.0/powerdevil-5.22.0.tar.xz) = 617684 +TIMESTAMP = 1623866693 +SHA256 (KDE/plasma/5.22.1/powerdevil-5.22.1.tar.xz) = 04fe2206d6dee27de5035c05f2411cb0630ef717d830e4c4557ac669519bdcb7 +SIZE (KDE/plasma/5.22.1/powerdevil-5.22.1.tar.xz) = 617724 diff --git a/sysutils/plasma5-systemsettings/distinfo b/sysutils/plasma5-systemsettings/distinfo index aeba6b045d9b..d8a13f4a989a 100644 --- a/sysutils/plasma5-systemsettings/distinfo +++ b/sysutils/plasma5-systemsettings/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1622814008 -SHA256 (KDE/plasma/5.22.0/systemsettings-5.22.0.tar.xz) = 668e69eecc5f7dc83d3e796c4233cc81696cda398d034c1adf490e4bafb9d9ef -SIZE (KDE/plasma/5.22.0/systemsettings-5.22.0.tar.xz) = 204604 +TIMESTAMP = 1623866694 +SHA256 (KDE/plasma/5.22.1/systemsettings-5.22.1.tar.xz) = 80364600d3ecb1611b88afbce34a75955f129c9aaa71ec4d9cfa418b2fd8e656 +SIZE (KDE/plasma/5.22.1/systemsettings-5.22.1.tar.xz) = 204680 diff --git a/www/plasma5-plasma-browser-integration/distinfo b/www/plasma5-plasma-browser-integration/distinfo index f4f92f251beb..ab761c1008a5 100644 --- a/www/plasma5-plasma-browser-integration/distinfo +++ b/www/plasma5-plasma-browser-integration/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1622814009 -SHA256 (KDE/plasma/5.22.0/plasma-browser-integration-5.22.0.tar.xz) = 08c530a0d36a279b386b48bf06f96b14c2a6d2887b4e9e3219ad055fa8396fd2 -SIZE (KDE/plasma/5.22.0/plasma-browser-integration-5.22.0.tar.xz) = 212996 +TIMESTAMP = 1623866695 +SHA256 (KDE/plasma/5.22.1/plasma-browser-integration-5.22.1.tar.xz) = f88543779964c46120541f01fbefdb13f8f06061fb3f3418454598087a2e5fe6 +SIZE (KDE/plasma/5.22.1/plasma-browser-integration-5.22.1.tar.xz) = 213020 diff --git a/x11-themes/plasma5-breeze-gtk/distinfo b/x11-themes/plasma5-breeze-gtk/distinfo index dac58dce1374..cfeef184ea8d 100644 --- a/x11-themes/plasma5-breeze-gtk/distinfo +++ b/x11-themes/plasma5-breeze-gtk/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1622814011 -SHA256 (KDE/plasma/5.22.0/breeze-gtk-5.22.0.tar.xz) = 2ce1f92d7cb3846f4b9ad6eb34fc1f7412f1b0e7cb75de38abed7c7e6a2a610f -SIZE (KDE/plasma/5.22.0/breeze-gtk-5.22.0.tar.xz) = 47684 +TIMESTAMP = 1623866698 +SHA256 (KDE/plasma/5.22.1/breeze-gtk-5.22.1.tar.xz) = 07661452c7fd177210d4416f4e44f83d6f5194670dd4ced151cdedb3fa21e922 +SIZE (KDE/plasma/5.22.1/breeze-gtk-5.22.1.tar.xz) = 47696 diff --git a/x11-themes/plasma5-breeze/distinfo b/x11-themes/plasma5-breeze/distinfo index db81eb62ca8b..a1aeca006c00 100644 --- a/x11-themes/plasma5-breeze/distinfo +++ b/x11-themes/plasma5-breeze/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1622819490 -SHA256 (KDE/plasma/5.22.0/breeze-5.22.0.tar.xz) = 1b3d2d00bfbafe7cfb6f540809cd89447a52e00c6c435bb671c944af0f2f96ef -SIZE (KDE/plasma/5.22.0/breeze-5.22.0.tar.xz) = 34545996 +TIMESTAMP = 1623866697 +SHA256 (KDE/plasma/5.22.1/breeze-5.22.1.tar.xz) = 1339dd8617e76a21f80600162b6640da79e7abf2e05dc5684b5d2cc6a7a4a464 +SIZE (KDE/plasma/5.22.1/breeze-5.22.1.tar.xz) = 34546532 diff --git a/x11-themes/plasma5-kde-gtk-config/distinfo b/x11-themes/plasma5-kde-gtk-config/distinfo index c6b60b42799a..f0a35404465a 100644 --- a/x11-themes/plasma5-kde-gtk-config/distinfo +++ b/x11-themes/plasma5-kde-gtk-config/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1622814012 -SHA256 (KDE/plasma/5.22.0/kde-gtk-config-5.22.0.tar.xz) = 1f50babdd3425fc0a2a241fc0af15cf72cc441c2decc5dfb0544e92c247fb17e -SIZE (KDE/plasma/5.22.0/kde-gtk-config-5.22.0.tar.xz) = 70720 +TIMESTAMP = 1623866699 +SHA256 (KDE/plasma/5.22.1/kde-gtk-config-5.22.1.tar.xz) = 7093ba1c0a33de261e8fcd3d09534601c32b2514f64d45bdc62a196208c67319 +SIZE (KDE/plasma/5.22.1/kde-gtk-config-5.22.1.tar.xz) = 70712 diff --git a/x11-themes/plasma5-oxygen/distinfo b/x11-themes/plasma5-oxygen/distinfo index 7baa10722d8b..75e041651a4b 100644 --- a/x11-themes/plasma5-oxygen/distinfo +++ b/x11-themes/plasma5-oxygen/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1622814012 -SHA256 (KDE/plasma/5.22.0/oxygen-5.22.0.tar.xz) = 1a9e016dd70e5e6d0a282c786a4db93a0d212a7a91d563ff27a8927864d5a745 -SIZE (KDE/plasma/5.22.0/oxygen-5.22.0.tar.xz) = 4475392 +TIMESTAMP = 1623866700 +SHA256 (KDE/plasma/5.22.1/oxygen-5.22.1.tar.xz) = 8c60030ee43f3a3c61aa1e53d55b06c6bf2fee3da61403c2df3a18b5a0137a69 +SIZE (KDE/plasma/5.22.1/oxygen-5.22.1.tar.xz) = 4475104 diff --git a/x11-themes/plasma5-plasma-workspace-wallpapers/distinfo b/x11-themes/plasma5-plasma-workspace-wallpapers/distinfo index 1ab8a5c06028..6ee5101beaef 100644 --- a/x11-themes/plasma5-plasma-workspace-wallpapers/distinfo +++ b/x11-themes/plasma5-plasma-workspace-wallpapers/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1622814013 -SHA256 (KDE/plasma/5.22.0/plasma-workspace-wallpapers-5.22.0.tar.xz) = 1d057d38de293ef59f2ecfe37b5edb2eb4572c008cf694e61f17634d4442cf14 -SIZE (KDE/plasma/5.22.0/plasma-workspace-wallpapers-5.22.0.tar.xz) = 48099464 +TIMESTAMP = 1623866702 +SHA256 (KDE/plasma/5.22.1/plasma-workspace-wallpapers-5.22.1.tar.xz) = d752ceeb64bc67e1dfdc0dd2a21dae6a9a3b0c7da2023a5c6148d98a544e282e +SIZE (KDE/plasma/5.22.1/plasma-workspace-wallpapers-5.22.1.tar.xz) = 51347808 diff --git a/x11-themes/plasma5-plasma-workspace-wallpapers/pkg-plist b/x11-themes/plasma5-plasma-workspace-wallpapers/pkg-plist index 12e47e00e6c2..36db2674968c 100644 --- a/x11-themes/plasma5-plasma-workspace-wallpapers/pkg-plist +++ b/x11-themes/plasma5-plasma-workspace-wallpapers/pkg-plist @@ -1,220 +1,224 @@ share/wallpapers/Autumn/contents/images/1280x1024.jpg share/wallpapers/Autumn/contents/images/1280x800.jpg share/wallpapers/Autumn/contents/images/1440x900.jpg share/wallpapers/Autumn/contents/images/1600x1200.jpg share/wallpapers/Autumn/contents/images/1638x1024.jpg share/wallpapers/Autumn/contents/images/1680x1050.jpg share/wallpapers/Autumn/contents/images/1920x1080.jpg share/wallpapers/Autumn/contents/images/1920x1200.jpg share/wallpapers/Autumn/contents/images/2560x1440.jpg share/wallpapers/Autumn/contents/images/2560x1600.jpg share/wallpapers/Autumn/contents/images/640x480.jpg share/wallpapers/Autumn/contents/images/800x600.jpg share/wallpapers/Autumn/contents/screenshot.jpg share/wallpapers/Autumn/metadata.desktop share/wallpapers/BytheWater/contents/images/1280x1024.jpg share/wallpapers/BytheWater/contents/images/1280x800.jpg share/wallpapers/BytheWater/contents/images/1440x900.jpg share/wallpapers/BytheWater/contents/images/1600x1200.jpg share/wallpapers/BytheWater/contents/images/1638x1024.jpg share/wallpapers/BytheWater/contents/images/1680x1050.jpg share/wallpapers/BytheWater/contents/images/1920x1080.jpg share/wallpapers/BytheWater/contents/images/1920x1200.jpg share/wallpapers/BytheWater/contents/images/2560x1440.jpg share/wallpapers/BytheWater/contents/images/2560x1600.jpg share/wallpapers/BytheWater/contents/images/640x480.jpg share/wallpapers/BytheWater/contents/images/800x600.jpg share/wallpapers/BytheWater/contents/screenshot.jpg share/wallpapers/BytheWater/metadata.desktop share/wallpapers/Canopee/contents/images/3840x2160.png share/wallpapers/Canopee/contents/screenshot.png share/wallpapers/Canopee/metadata.desktop share/wallpapers/Cascade/contents/images/3840x2160.png share/wallpapers/Cascade/contents/screenshot.png share/wallpapers/Cascade/metadata.desktop share/wallpapers/Cluster/contents/images/3840x2160.png share/wallpapers/Cluster/contents/screenshot.png share/wallpapers/Cluster/metadata.desktop share/wallpapers/ColdRipple/contents/images/1280x1024.jpg share/wallpapers/ColdRipple/contents/images/1280x800.jpg share/wallpapers/ColdRipple/contents/images/1440x900.jpg share/wallpapers/ColdRipple/contents/images/1600x1200.jpg share/wallpapers/ColdRipple/contents/images/1638x1024.jpg share/wallpapers/ColdRipple/contents/images/1680x1050.jpg share/wallpapers/ColdRipple/contents/images/1920x1080.jpg share/wallpapers/ColdRipple/contents/images/1920x1200.jpg share/wallpapers/ColdRipple/contents/images/2560x1440.jpg share/wallpapers/ColdRipple/contents/images/2560x1600.jpg share/wallpapers/ColdRipple/contents/images/640x480.jpg share/wallpapers/ColdRipple/contents/images/800x600.jpg share/wallpapers/ColdRipple/contents/screenshot.jpg share/wallpapers/ColdRipple/metadata.desktop share/wallpapers/ColorfulCups/contents/images/2560x1600.jpg share/wallpapers/ColorfulCups/contents/screenshot.jpg share/wallpapers/ColorfulCups/metadata.desktop share/wallpapers/DarkestHour/contents/images/1280x1024.jpg share/wallpapers/DarkestHour/contents/images/1280x800.jpg share/wallpapers/DarkestHour/contents/images/1440x900.jpg share/wallpapers/DarkestHour/contents/images/1600x1200.jpg share/wallpapers/DarkestHour/contents/images/1638x1024.jpg share/wallpapers/DarkestHour/contents/images/1680x1050.jpg share/wallpapers/DarkestHour/contents/images/1920x1080.jpg share/wallpapers/DarkestHour/contents/images/1920x1200.jpg share/wallpapers/DarkestHour/contents/images/2560x1440.jpg share/wallpapers/DarkestHour/contents/images/2560x1600.jpg share/wallpapers/DarkestHour/contents/images/640x480.jpg share/wallpapers/DarkestHour/contents/images/800x600.jpg share/wallpapers/DarkestHour/contents/screenshot.jpg share/wallpapers/DarkestHour/metadata.desktop share/wallpapers/Elarun/contents/images/2560x1600.png share/wallpapers/Elarun/contents/screenshot.jpg share/wallpapers/Elarun/metadata.desktop share/wallpapers/EveningGlow/contents/images/1280x1024.jpg share/wallpapers/EveningGlow/contents/images/1280x800.jpg share/wallpapers/EveningGlow/contents/images/1440x900.jpg share/wallpapers/EveningGlow/contents/images/1600x1200.jpg share/wallpapers/EveningGlow/contents/images/1638x1024.jpg share/wallpapers/EveningGlow/contents/images/1680x1050.jpg share/wallpapers/EveningGlow/contents/images/1920x1080.jpg share/wallpapers/EveningGlow/contents/images/1920x1200.jpg share/wallpapers/EveningGlow/contents/images/2560x1440.jpg share/wallpapers/EveningGlow/contents/images/2560x1600.jpg share/wallpapers/EveningGlow/contents/images/640x480.jpg share/wallpapers/EveningGlow/contents/images/800x600.jpg share/wallpapers/EveningGlow/contents/screenshot.jpg share/wallpapers/EveningGlow/metadata.desktop share/wallpapers/FallenLeaf/contents/images/1280x1024.jpg share/wallpapers/FallenLeaf/contents/images/1280x800.jpg share/wallpapers/FallenLeaf/contents/images/1440x900.jpg share/wallpapers/FallenLeaf/contents/images/1600x1200.jpg share/wallpapers/FallenLeaf/contents/images/1638x1024.jpg share/wallpapers/FallenLeaf/contents/images/1680x1050.jpg share/wallpapers/FallenLeaf/contents/images/1920x1080.jpg share/wallpapers/FallenLeaf/contents/images/1920x1200.jpg share/wallpapers/FallenLeaf/contents/images/2560x1440.jpg share/wallpapers/FallenLeaf/contents/images/2560x1600.jpg share/wallpapers/FallenLeaf/contents/images/640x480.jpg share/wallpapers/FallenLeaf/contents/images/800x600.jpg share/wallpapers/FallenLeaf/contents/screenshot.jpg share/wallpapers/FallenLeaf/metadata.desktop share/wallpapers/Flow/contents/images/5120x2880.jpg share/wallpapers/Flow/contents/images/720x1440.jpg share/wallpapers/Flow/contents/screenshot.png share/wallpapers/Flow/metadata.desktop share/wallpapers/FlyingKonqui/contents/images/1280x1024.png share/wallpapers/FlyingKonqui/contents/images/1280x800.png share/wallpapers/FlyingKonqui/contents/images/1440x900.png share/wallpapers/FlyingKonqui/contents/images/1600x1200.png share/wallpapers/FlyingKonqui/contents/images/1638x1024.png share/wallpapers/FlyingKonqui/contents/images/1680x1050.png share/wallpapers/FlyingKonqui/contents/images/1920x1080.png share/wallpapers/FlyingKonqui/contents/images/1920x1200.png share/wallpapers/FlyingKonqui/contents/images/2560x1440.png share/wallpapers/FlyingKonqui/contents/images/2560x1600.png share/wallpapers/FlyingKonqui/contents/images/640x480.png share/wallpapers/FlyingKonqui/contents/images/800x600.png share/wallpapers/FlyingKonqui/contents/screenshot.png share/wallpapers/FlyingKonqui/metadata.desktop share/wallpapers/Grey/contents/images/1280x1024.jpg share/wallpapers/Grey/contents/images/1280x800.jpg share/wallpapers/Grey/contents/images/1440x900.jpg share/wallpapers/Grey/contents/images/1600x1200.jpg share/wallpapers/Grey/contents/images/1638x1024.jpg share/wallpapers/Grey/contents/images/1680x1050.jpg share/wallpapers/Grey/contents/images/1920x1080.jpg share/wallpapers/Grey/contents/images/1920x1200.jpg share/wallpapers/Grey/contents/images/2560x1440.jpg share/wallpapers/Grey/contents/images/2560x1600.jpg share/wallpapers/Grey/contents/images/640x480.jpg share/wallpapers/Grey/contents/images/800x600.jpg share/wallpapers/Grey/contents/screenshot.jpg share/wallpapers/Grey/metadata.desktop share/wallpapers/IceCold/contents/images/5120x2880.png share/wallpapers/IceCold/contents/screenshot.png share/wallpapers/IceCold/metadata.desktop share/wallpapers/Kite/contents/images/1280x1024.jpg share/wallpapers/Kite/contents/images/1280x800.jpg share/wallpapers/Kite/contents/images/1440x900.jpg share/wallpapers/Kite/contents/images/1600x1200.jpg share/wallpapers/Kite/contents/images/1638x1024.jpg share/wallpapers/Kite/contents/images/1680x1050.jpg share/wallpapers/Kite/contents/images/1920x1080.jpg share/wallpapers/Kite/contents/images/1920x1200.jpg share/wallpapers/Kite/contents/images/2560x1440.jpg share/wallpapers/Kite/contents/images/2560x1600.jpg share/wallpapers/Kite/contents/images/640x480.jpg share/wallpapers/Kite/contents/images/800x600.jpg share/wallpapers/Kite/contents/screenshot.jpg share/wallpapers/Kite/metadata.desktop share/wallpapers/Kokkini/contents/images/3840x2160.png share/wallpapers/Kokkini/contents/screenshot.png share/wallpapers/Kokkini/metadata.desktop +share/wallpapers/MilkyWay/contents/images/1080x1920.png +share/wallpapers/MilkyWay/contents/images/5120x2880.png +share/wallpapers/MilkyWay/contents/screenshot.png +share/wallpapers/MilkyWay/metadata.desktop share/wallpapers/OneStandsOut/contents/images/1280x1024.jpg share/wallpapers/OneStandsOut/contents/images/1280x800.jpg share/wallpapers/OneStandsOut/contents/images/1440x900.jpg share/wallpapers/OneStandsOut/contents/images/1600x1200.jpg share/wallpapers/OneStandsOut/contents/images/1638x1024.jpg share/wallpapers/OneStandsOut/contents/images/1680x1050.jpg share/wallpapers/OneStandsOut/contents/images/1920x1080.jpg share/wallpapers/OneStandsOut/contents/images/1920x1200.jpg share/wallpapers/OneStandsOut/contents/images/2560x1440.jpg share/wallpapers/OneStandsOut/contents/images/2560x1600.jpg share/wallpapers/OneStandsOut/contents/images/640x480.jpg share/wallpapers/OneStandsOut/contents/images/800x600.jpg share/wallpapers/OneStandsOut/contents/screenshot.jpg share/wallpapers/OneStandsOut/metadata.desktop share/wallpapers/Opal/contents/images/3840x2160.png share/wallpapers/Opal/contents/screenshot.png share/wallpapers/Opal/metadata.desktop share/wallpapers/PastelHills/contents/images/1280x1024.jpg share/wallpapers/PastelHills/contents/images/1280x800.jpg share/wallpapers/PastelHills/contents/images/1440x900.jpg share/wallpapers/PastelHills/contents/images/1600x1200.jpg share/wallpapers/PastelHills/contents/images/1638x1024.jpg share/wallpapers/PastelHills/contents/images/1680x1050.jpg share/wallpapers/PastelHills/contents/images/1920x1080.jpg share/wallpapers/PastelHills/contents/images/1920x1200.jpg share/wallpapers/PastelHills/contents/images/2560x1440.jpg share/wallpapers/PastelHills/contents/images/3200x2000.jpg share/wallpapers/PastelHills/contents/images/640x480.jpg share/wallpapers/PastelHills/contents/images/800x600.jpg share/wallpapers/PastelHills/contents/screenshot.jpg share/wallpapers/PastelHills/metadata.desktop share/wallpapers/Path/contents/images/1280x1024.jpg share/wallpapers/Path/contents/images/1280x800.jpg share/wallpapers/Path/contents/images/1440x900.jpg share/wallpapers/Path/contents/images/1600x1200.jpg share/wallpapers/Path/contents/images/1638x1024.jpg share/wallpapers/Path/contents/images/1680x1050.jpg share/wallpapers/Path/contents/images/1920x1080.jpg share/wallpapers/Path/contents/images/1920x1200.jpg share/wallpapers/Path/contents/images/2560x1440.jpg share/wallpapers/Path/contents/images/2560x1600.jpg share/wallpapers/Path/contents/images/640x480.jpg share/wallpapers/Path/contents/images/800x600.jpg share/wallpapers/Path/contents/screenshot.jpg share/wallpapers/Path/metadata.desktop share/wallpapers/SafeLanding/contents/images/5120x2880.jpg share/wallpapers/SafeLanding/contents/screenshot.jpg share/wallpapers/SafeLanding/metadata.desktop share/wallpapers/Shell/contents/images/5120x2880.jpg share/wallpapers/Shell/contents/images/720x1440.jpg share/wallpapers/Shell/contents/screenshot.png share/wallpapers/Shell/metadata.desktop share/wallpapers/Volna/contents/images/5120x2880.jpg share/wallpapers/Volna/contents/screenshot.png share/wallpapers/Volna/metadata.desktop share/wallpapers/summer_1am/contents/images/1280x1024.jpg share/wallpapers/summer_1am/contents/images/1280x800.jpg share/wallpapers/summer_1am/contents/images/1440x900.jpg share/wallpapers/summer_1am/contents/images/1600x1200.jpg share/wallpapers/summer_1am/contents/images/1638x1024.jpg share/wallpapers/summer_1am/contents/images/1680x1050.jpg share/wallpapers/summer_1am/contents/images/1920x1080.jpg share/wallpapers/summer_1am/contents/images/1920x1200.jpg share/wallpapers/summer_1am/contents/images/2560x1440.jpg share/wallpapers/summer_1am/contents/images/2560x1600.jpg share/wallpapers/summer_1am/contents/images/640x480.jpg share/wallpapers/summer_1am/contents/images/800x600.jpg share/wallpapers/summer_1am/contents/screenshot.jpg share/wallpapers/summer_1am/metadata.desktop diff --git a/x11-toolkits/plasma5-kdeplasma-addons/distinfo b/x11-toolkits/plasma5-kdeplasma-addons/distinfo index b993ca28136d..fcc2e4cc32ff 100644 --- a/x11-toolkits/plasma5-kdeplasma-addons/distinfo +++ b/x11-toolkits/plasma5-kdeplasma-addons/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1622814014 -SHA256 (KDE/plasma/5.22.0/kdeplasma-addons-5.22.0.tar.xz) = 42e399342b4f979ef1aa2e20542ce8308a49369b922aef8cc70b1667733583ec -SIZE (KDE/plasma/5.22.0/kdeplasma-addons-5.22.0.tar.xz) = 633336 +TIMESTAMP = 1623866703 +SHA256 (KDE/plasma/5.22.1/kdeplasma-addons-5.22.1.tar.xz) = 576c95e795d4a90c276b83f8596499776111da37ce551542c5704bd0ef550610 +SIZE (KDE/plasma/5.22.1/kdeplasma-addons-5.22.1.tar.xz) = 633472 diff --git a/x11-wm/plasma5-kdecoration/distinfo b/x11-wm/plasma5-kdecoration/distinfo index 8db81831c762..d667dadee328 100644 --- a/x11-wm/plasma5-kdecoration/distinfo +++ b/x11-wm/plasma5-kdecoration/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1622814015 -SHA256 (KDE/plasma/5.22.0/kdecoration-5.22.0.tar.xz) = 5e27326b22d899e742606f7bd3493651dc51cd92b5616e30cd4dab3e5356d5b4 -SIZE (KDE/plasma/5.22.0/kdecoration-5.22.0.tar.xz) = 46772 +TIMESTAMP = 1623866704 +SHA256 (KDE/plasma/5.22.1/kdecoration-5.22.1.tar.xz) = 939a09ddf73c098f258e6448b7551639b8d94253c083a23c5c8fc3507d08a259 +SIZE (KDE/plasma/5.22.1/kdecoration-5.22.1.tar.xz) = 46940 diff --git a/x11-wm/plasma5-kwin/distinfo b/x11-wm/plasma5-kwin/distinfo index ca8db31b25e6..9306cce4deba 100644 --- a/x11-wm/plasma5-kwin/distinfo +++ b/x11-wm/plasma5-kwin/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1623530628 -SHA256 (KDE/plasma/5.22.0/kwin-5.22.0.tar.xz) = 56e6cfe23d445b1ee0650c5ac484e8cc63ba39e2f2d77a0d32c4c23905cc0e01 -SIZE (KDE/plasma/5.22.0/kwin-5.22.0.tar.xz) = 6440652 +TIMESTAMP = 1623866705 +SHA256 (KDE/plasma/5.22.1/kwin-5.22.1.tar.xz) = 5506ee878e151734893bbcc0a70d6499c894b8986488c9c57285de1deb422850 +SIZE (KDE/plasma/5.22.1/kwin-5.22.1.tar.xz) = 6441672 diff --git a/x11-wm/plasma5-kwin/pkg-plist b/x11-wm/plasma5-kwin/pkg-plist index 763d3475f41a..98889f5d7cc6 100644 --- a/x11-wm/plasma5-kwin/pkg-plist +++ b/x11-wm/plasma5-kwin/pkg-plist @@ -1,1576 +1,1577 @@ bin/kwin_wayland bin/kwin_wayland_wrapper bin/kwin_x11 include/kwin_export.h include/kwinanimationeffect.h include/kwinconfig.h include/kwineffectquickview.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/cmake/KWinEffects/KWinEffectsConfig.cmake lib/cmake/KWinEffects/KWinEffectsConfigVersion.cmake lib/cmake/KWinEffects/KWinEffectsTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KWinEffects/KWinEffectsTargets.cmake lib/kconf_update_bin/kwin5_update_default_rules lib/libexec/kwin-applywindowdecoration lib/libexec/kwin_killer_helper lib/libexec/kwin_rules_dialog lib/libkcmkwincommon.so.%%KDE_PLASMA_VERSION%% lib/libkcmkwincommon.so.5 lib/libkwin.so.%%KDE_PLASMA_VERSION%% lib/libkwin.so.5 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.%%KDE_PLASMA_VERSION%% lib/libkwineffects.so.13 lib/libkwinglutils.so lib/libkwinglutils.so.%%KDE_PLASMA_VERSION%% lib/libkwinglutils.so.13 lib/libkwinxrenderutils.so lib/libkwinxrenderutils.so.%%KDE_PLASMA_VERSION%% lib/libkwinxrenderutils.so.13 lib/systemd/user/plasma-kwin_x11.service %%QT_PLUGINDIR%%/kcm_kwin_scripts.so %%QT_PLUGINDIR%%/kcm_kwinoptions.so %%QT_PLUGINDIR%%/kcm_kwinscreenedges.so %%QT_PLUGINDIR%%/kcm_kwintabbox.so %%QT_PLUGINDIR%%/kcm_kwintouchscreen.so %%QT_PLUGINDIR%%/kcms/kcm_kwin_effects.so %%QT_PLUGINDIR%%/kcms/kcm_kwin_virtualdesktops.so %%QT_PLUGINDIR%%/kcms/kcm_kwindecoration.so %%QT_PLUGINDIR%%/kcms/kcm_kwinrules.so %%QT_PLUGINDIR%%/kcms/kcm_virtualkeyboard.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%%/kwin/plugins/colordintegration.so %%QT_PLUGINDIR%%/kwin/plugins/krunnerintegration.so %%QT_PLUGINDIR%%/kwin/plugins/libKWinNightColorPlugin.so %%QT_PLUGINDIR%%/kwincompositing.so %%QT_PLUGINDIR%%/org.kde.kdecoration2/kwin5_aurorae.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_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 %%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_dialogparent/metadata.json %%DATADIR%%/effects/kwin4_effect_dimscreen/contents/code/main.js %%DATADIR%%/effects/kwin4_effect_dimscreen/metadata.desktop %%DATADIR%%/effects/kwin4_effect_dimscreen/metadata.json %%DATADIR%%/effects/kwin4_effect_eyeonscreen/contents/code/main.js %%DATADIR%%/effects/kwin4_effect_eyeonscreen/metadata.desktop %%DATADIR%%/effects/kwin4_effect_eyeonscreen/metadata.json %%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_fade/metadata.json %%DATADIR%%/effects/kwin4_effect_fadedesktop/contents/code/main.js %%DATADIR%%/effects/kwin4_effect_fadedesktop/metadata.desktop %%DATADIR%%/effects/kwin4_effect_fadedesktop/metadata.json %%DATADIR%%/effects/kwin4_effect_fadingpopups/contents/code/main.js %%DATADIR%%/effects/kwin4_effect_fadingpopups/metadata.desktop %%DATADIR%%/effects/kwin4_effect_fadingpopups/metadata.json %%DATADIR%%/effects/kwin4_effect_frozenapp/contents/code/main.js %%DATADIR%%/effects/kwin4_effect_frozenapp/metadata.desktop %%DATADIR%%/effects/kwin4_effect_frozenapp/metadata.json %%DATADIR%%/effects/kwin4_effect_fullscreen/contents/code/fullscreen.js %%DATADIR%%/effects/kwin4_effect_fullscreen/metadata.desktop %%DATADIR%%/effects/kwin4_effect_fullscreen/metadata.json %%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_login/metadata.json %%DATADIR%%/effects/kwin4_effect_logout/contents/code/main.js %%DATADIR%%/effects/kwin4_effect_logout/metadata.desktop %%DATADIR%%/effects/kwin4_effect_logout/metadata.json %%DATADIR%%/effects/kwin4_effect_maximize/contents/code/maximize.js %%DATADIR%%/effects/kwin4_effect_maximize/metadata.desktop %%DATADIR%%/effects/kwin4_effect_maximize/metadata.json %%DATADIR%%/effects/kwin4_effect_morphingpopups/contents/code/morphingpopups.js %%DATADIR%%/effects/kwin4_effect_morphingpopups/metadata.desktop %%DATADIR%%/effects/kwin4_effect_morphingpopups/metadata.json %%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_scale/metadata.json %%DATADIR%%/effects/kwin4_effect_sessionquit/contents/code/main.js %%DATADIR%%/effects/kwin4_effect_sessionquit/metadata.desktop %%DATADIR%%/effects/kwin4_effect_sessionquit/metadata.json %%DATADIR%%/effects/kwin4_effect_squash/contents/code/main.js %%DATADIR%%/effects/kwin4_effect_squash/metadata.desktop %%DATADIR%%/effects/kwin4_effect_squash/metadata.json %%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_translucency/metadata.json %%DATADIR%%/effects/kwin4_effect_windowaperture/contents/code/main.js %%DATADIR%%/effects/kwin4_effect_windowaperture/metadata.desktop %%DATADIR%%/effects/kwin4_effect_windowaperture/metadata.json %%DATADIR%%/effects/presentwindows/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/desktopchangeosd/metadata.json %%DATADIR%%/scripts/minimizeall/contents/code/main.js %%DATADIR%%/scripts/minimizeall/metadata.desktop %%DATADIR%%/scripts/minimizeall/metadata.json %%DATADIR%%/scripts/synchronizeskipswitcher/contents/code/main.js %%DATADIR%%/scripts/synchronizeskipswitcher/metadata.desktop %%DATADIR%%/scripts/synchronizeskipswitcher/metadata.json %%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%%/scripts/videowall/metadata.json %%DATADIR%%/tm_inner.png %%DATADIR%%/tm_outer.png share/config.kcfg/kwin.kcfg share/config.kcfg/kwin_colorcorrect.kcfg share/config.kcfg/kwindecorationsettings.kcfg share/config.kcfg/virtualdesktopssettings.kcfg share/dbus-1/interfaces/org.kde.KWin.Plugins.xml 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/dbus-1/interfaces/org.kde.kwin.VirtualKeyboard.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/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/index.cache.bz2 share/doc/HTML/ca/kcontrol/kwineffects/index.docbook 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/kwintouchscreen/index.cache.bz2 share/doc/HTML/ca/kcontrol/kwintouchscreen/index.docbook share/doc/HTML/ca/kcontrol/kwinvirtualkeyboard/index.cache.bz2 share/doc/HTML/ca/kcontrol/kwinvirtualkeyboard/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/index.cache.bz2 share/doc/HTML/ca/kcontrol/windowspecific/index.docbook 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/kwintouchscreen/index.cache.bz2 share/doc/HTML/de/kcontrol/kwintouchscreen/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/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/kwintouchscreen/index.cache.bz2 share/doc/HTML/en/kcontrol/kwintouchscreen/index.docbook share/doc/HTML/en/kcontrol/kwinvirtualkeyboard/index.cache.bz2 share/doc/HTML/en/kcontrol/kwinvirtualkeyboard/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/fr/kcontrol/desktop/index.cache.bz2 share/doc/HTML/fr/kcontrol/desktop/index.docbook share/doc/HTML/fr/kcontrol/kwinscreenedges/index.cache.bz2 share/doc/HTML/fr/kcontrol/kwinscreenedges/index.docbook share/doc/HTML/fr/kcontrol/kwintabbox/index.cache.bz2 share/doc/HTML/fr/kcontrol/kwintabbox/index.docbook share/doc/HTML/fr/kcontrol/windowspecific/index.cache.bz2 share/doc/HTML/fr/kcontrol/windowspecific/index.docbook share/doc/HTML/id/kcontrol/desktop/index.cache.bz2 share/doc/HTML/id/kcontrol/desktop/index.docbook share/doc/HTML/id/kcontrol/kwindecoration/index.cache.bz2 share/doc/HTML/id/kcontrol/kwindecoration/index.docbook share/doc/HTML/id/kcontrol/kwineffects/index.cache.bz2 share/doc/HTML/id/kcontrol/kwineffects/index.docbook share/doc/HTML/id/kcontrol/kwinscreenedges/index.cache.bz2 share/doc/HTML/id/kcontrol/kwinscreenedges/index.docbook share/doc/HTML/id/kcontrol/kwintabbox/index.cache.bz2 share/doc/HTML/id/kcontrol/kwintabbox/index.docbook share/doc/HTML/id/kcontrol/windowbehaviour/index.cache.bz2 share/doc/HTML/id/kcontrol/windowbehaviour/index.docbook share/doc/HTML/id/kcontrol/windowspecific/index.cache.bz2 share/doc/HTML/id/kcontrol/windowspecific/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/kwintouchscreen/index.cache.bz2 share/doc/HTML/it/kcontrol/kwintouchscreen/index.docbook share/doc/HTML/it/kcontrol/kwinvirtualkeyboard/index.cache.bz2 share/doc/HTML/it/kcontrol/kwinvirtualkeyboard/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/kwintouchscreen/index.cache.bz2 share/doc/HTML/nl/kcontrol/kwintouchscreen/index.docbook share/doc/HTML/nl/kcontrol/kwinvirtualkeyboard/index.cache.bz2 share/doc/HTML/nl/kcontrol/kwinvirtualkeyboard/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/kwintouchscreen/index.cache.bz2 share/doc/HTML/sv/kcontrol/kwintouchscreen/index.docbook share/doc/HTML/sv/kcontrol/kwinvirtualkeyboard/index.cache.bz2 share/doc/HTML/sv/kcontrol/kwinvirtualkeyboard/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/kwintouchscreen/index.cache.bz2 share/doc/HTML/uk/kcontrol/kwintouchscreen/index.docbook share/doc/HTML/uk/kcontrol/kwinvirtualkeyboard/index.cache.bz2 share/doc/HTML/uk/kcontrol/kwinvirtualkeyboard/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-5.16-auto-bordersize.sh share/kconf_update/kwin-5.18-move-animspeed.py share/kconf_update/kwin-5.21-desktop-grid-click-behavior.py share/kconf_update/kwin-5.21-no-swap-encourage.py share/kconf_update/kwin.upd share/kconf_update/kwinrules-5.19-placement.pl share/kconf_update/kwinrules.upd share/knotifications5/kwin.notifyrc share/knsrcfiles/aurorae.knsrc share/knsrcfiles/kwineffect.knsrc share/knsrcfiles/kwinscripts.knsrc share/knsrcfiles/kwinswitcher.knsrc share/knsrcfiles/window-decorations.knsrc share/kpackage/kcms/kcm_kwin_effects/contents/ui/Effect.qml share/kpackage/kcms/kcm_kwin_effects/contents/ui/Video.qml share/kpackage/kcms/kcm_kwin_effects/contents/ui/main.qml share/kpackage/kcms/kcm_kwin_effects/metadata.desktop share/kpackage/kcms/kcm_kwin_effects/metadata.json 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/kpackage/kcms/kcm_kwindecoration/contents/ui/ButtonGroup.qml share/kpackage/kcms/kcm_kwindecoration/contents/ui/Buttons.qml share/kpackage/kcms/kcm_kwindecoration/contents/ui/Themes.qml share/kpackage/kcms/kcm_kwindecoration/contents/ui/main.qml share/kpackage/kcms/kcm_kwindecoration/metadata.desktop share/kpackage/kcms/kcm_kwindecoration/metadata.json share/kpackage/kcms/kcm_kwinrules/contents/ui/FileDialogLoader.qml share/kpackage/kcms/kcm_kwinrules/contents/ui/OptionsComboBox.qml share/kpackage/kcms/kcm_kwinrules/contents/ui/RuleItemDelegate.qml share/kpackage/kcms/kcm_kwinrules/contents/ui/RulesEditor.qml share/kpackage/kcms/kcm_kwinrules/contents/ui/RulesList.qml share/kpackage/kcms/kcm_kwinrules/contents/ui/ValueEditor.qml share/kpackage/kcms/kcm_kwinrules/metadata.desktop share/kpackage/kcms/kcm_kwinrules/metadata.json share/kpackage/kcms/kcm_virtualkeyboard/contents/ui/main.qml share/kpackage/kcms/kcm_virtualkeyboard/metadata.desktop share/kpackage/kcms/kcm_virtualkeyboard/metadata.json share/krunner/dbusplugins/kwin-runner-windows.desktop share/kservices5/kcm_kwin_effects.desktop share/kservices5/kcm_kwin_virtualdesktops.desktop share/kservices5/kcm_kwinrules.desktop share/kservices5/kcm_virtualkeyboard.desktop share/kservices5/kwin-script-videowall.desktop share/kservices5/kwin/kwin4_decoration_qml_plastik.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/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 share/locale/af/LC_MESSAGES/kcm_kwindecoration.mo share/locale/af/LC_MESSAGES/kcm_kwinrules.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_kwindecoration.mo share/locale/ar/LC_MESSAGES/kcm_kwinrules.mo share/locale/ar/LC_MESSAGES/kcm_kwintabbox.mo share/locale/ar/LC_MESSAGES/kcmkwincompositing.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/ast/LC_MESSAGES/kcm-kwin-scripts.mo share/locale/ast/LC_MESSAGES/kcm_kwin_effects.mo share/locale/ast/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/ast/LC_MESSAGES/kcmkwincompositing.mo share/locale/ast/LC_MESSAGES/kwin.mo share/locale/ast/LC_MESSAGES/kwin_effects.mo share/locale/az/LC_MESSAGES/kcm-kwin-scripts.mo share/locale/az/LC_MESSAGES/kcm_kwin_effects.mo share/locale/az/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/az/LC_MESSAGES/kcm_kwindecoration.mo share/locale/az/LC_MESSAGES/kcm_kwinrules.mo share/locale/az/LC_MESSAGES/kcm_kwintabbox.mo share/locale/az/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/az/LC_MESSAGES/kcmkwincommon.mo share/locale/az/LC_MESSAGES/kcmkwincompositing.mo share/locale/az/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/az/LC_MESSAGES/kcmkwm.mo share/locale/az/LC_MESSAGES/kwin.mo share/locale/az/LC_MESSAGES/kwin_clients.mo share/locale/az/LC_MESSAGES/kwin_effects.mo share/locale/az/LC_MESSAGES/kwin_scripting.mo share/locale/az/LC_MESSAGES/kwin_scripts.mo share/locale/be/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/be/LC_MESSAGES/kcm_kwindecoration.mo share/locale/be/LC_MESSAGES/kcm_kwinrules.mo share/locale/be/LC_MESSAGES/kcmkwincompositing.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_kwindecoration.mo share/locale/bg/LC_MESSAGES/kcm_kwinrules.mo share/locale/bg/LC_MESSAGES/kcm_kwintabbox.mo share/locale/bg/LC_MESSAGES/kcmkwincompositing.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/kcm_kwinrules.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/kcm_kwinrules.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_kwindecoration.mo share/locale/bs/LC_MESSAGES/kcm_kwinrules.mo share/locale/bs/LC_MESSAGES/kcm_kwintabbox.mo share/locale/bs/LC_MESSAGES/kcmkwincompositing.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_effects.mo share/locale/ca/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/ca/LC_MESSAGES/kcm_kwindecoration.mo share/locale/ca/LC_MESSAGES/kcm_kwinrules.mo share/locale/ca/LC_MESSAGES/kcm_kwintabbox.mo share/locale/ca/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/ca/LC_MESSAGES/kcmkwincommon.mo share/locale/ca/LC_MESSAGES/kcmkwincompositing.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_effects.mo share/locale/ca@valencia/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/ca@valencia/LC_MESSAGES/kcm_kwindecoration.mo share/locale/ca@valencia/LC_MESSAGES/kcm_kwinrules.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/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_effects.mo share/locale/cs/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/cs/LC_MESSAGES/kcm_kwindecoration.mo share/locale/cs/LC_MESSAGES/kcm_kwinrules.mo share/locale/cs/LC_MESSAGES/kcm_kwintabbox.mo share/locale/cs/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/cs/LC_MESSAGES/kcmkwincommon.mo share/locale/cs/LC_MESSAGES/kcmkwincompositing.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/kcm_kwinrules.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_effects.mo share/locale/da/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/da/LC_MESSAGES/kcm_kwindecoration.mo share/locale/da/LC_MESSAGES/kcm_kwinrules.mo share/locale/da/LC_MESSAGES/kcm_kwintabbox.mo share/locale/da/LC_MESSAGES/kcmkwincommon.mo share/locale/da/LC_MESSAGES/kcmkwincompositing.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_effects.mo share/locale/de/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/de/LC_MESSAGES/kcm_kwindecoration.mo share/locale/de/LC_MESSAGES/kcm_kwinrules.mo share/locale/de/LC_MESSAGES/kcm_kwintabbox.mo share/locale/de/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/de/LC_MESSAGES/kcmkwincommon.mo share/locale/de/LC_MESSAGES/kcmkwincompositing.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_kwindecoration.mo share/locale/el/LC_MESSAGES/kcm_kwinrules.mo share/locale/el/LC_MESSAGES/kcm_kwintabbox.mo share/locale/el/LC_MESSAGES/kcmkwincompositing.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_effects.mo share/locale/en_GB/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/en_GB/LC_MESSAGES/kcm_kwindecoration.mo share/locale/en_GB/LC_MESSAGES/kcm_kwinrules.mo share/locale/en_GB/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/en_GB/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/en_GB/LC_MESSAGES/kcmkwincommon.mo share/locale/en_GB/LC_MESSAGES/kcmkwincompositing.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_kwindecoration.mo share/locale/eo/LC_MESSAGES/kcm_kwinrules.mo share/locale/eo/LC_MESSAGES/kcm_kwintabbox.mo share/locale/eo/LC_MESSAGES/kcmkwincompositing.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_effects.mo share/locale/es/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/es/LC_MESSAGES/kcm_kwindecoration.mo share/locale/es/LC_MESSAGES/kcm_kwinrules.mo share/locale/es/LC_MESSAGES/kcm_kwintabbox.mo share/locale/es/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/es/LC_MESSAGES/kcmkwincommon.mo share/locale/es/LC_MESSAGES/kcmkwincompositing.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_effects.mo share/locale/et/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/et/LC_MESSAGES/kcm_kwindecoration.mo share/locale/et/LC_MESSAGES/kcm_kwinrules.mo share/locale/et/LC_MESSAGES/kcm_kwintabbox.mo share/locale/et/LC_MESSAGES/kcmkwincommon.mo share/locale/et/LC_MESSAGES/kcmkwincompositing.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_effects.mo share/locale/eu/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/eu/LC_MESSAGES/kcm_kwindecoration.mo share/locale/eu/LC_MESSAGES/kcm_kwinrules.mo share/locale/eu/LC_MESSAGES/kcm_kwintabbox.mo share/locale/eu/LC_MESSAGES/kcmkwincommon.mo share/locale/eu/LC_MESSAGES/kcmkwincompositing.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_kwindecoration.mo share/locale/fa/LC_MESSAGES/kcm_kwinrules.mo share/locale/fa/LC_MESSAGES/kcm_kwintabbox.mo share/locale/fa/LC_MESSAGES/kcmkwincompositing.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_effects.mo share/locale/fi/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/fi/LC_MESSAGES/kcm_kwindecoration.mo share/locale/fi/LC_MESSAGES/kcm_kwinrules.mo share/locale/fi/LC_MESSAGES/kcm_kwintabbox.mo share/locale/fi/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/fi/LC_MESSAGES/kcmkwincommon.mo share/locale/fi/LC_MESSAGES/kcmkwincompositing.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_effects.mo share/locale/fr/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/fr/LC_MESSAGES/kcm_kwindecoration.mo share/locale/fr/LC_MESSAGES/kcm_kwinrules.mo share/locale/fr/LC_MESSAGES/kcm_kwintabbox.mo share/locale/fr/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/fr/LC_MESSAGES/kcmkwincommon.mo share/locale/fr/LC_MESSAGES/kcmkwincompositing.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/kcm_kwindecoration.mo share/locale/fy/LC_MESSAGES/kcm_kwinrules.mo share/locale/fy/LC_MESSAGES/kcmkwincompositing.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_kwindecoration.mo share/locale/ga/LC_MESSAGES/kcm_kwinrules.mo share/locale/ga/LC_MESSAGES/kcm_kwintabbox.mo share/locale/ga/LC_MESSAGES/kcmkwincompositing.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_effects.mo share/locale/gl/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/gl/LC_MESSAGES/kcm_kwindecoration.mo share/locale/gl/LC_MESSAGES/kcm_kwinrules.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/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_kwindecoration.mo share/locale/gu/LC_MESSAGES/kcm_kwinrules.mo share/locale/gu/LC_MESSAGES/kcm_kwintabbox.mo share/locale/gu/LC_MESSAGES/kcmkwincompositing.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_kwindecoration.mo share/locale/he/LC_MESSAGES/kcm_kwinrules.mo share/locale/he/LC_MESSAGES/kcm_kwintabbox.mo share/locale/he/LC_MESSAGES/kcmkwincompositing.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_kwindecoration.mo share/locale/hi/LC_MESSAGES/kcm_kwinrules.mo share/locale/hi/LC_MESSAGES/kcm_kwintabbox.mo share/locale/hi/LC_MESSAGES/kcmkwincompositing.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/kcm_kwindecoration.mo share/locale/hne/LC_MESSAGES/kcm_kwinrules.mo share/locale/hne/LC_MESSAGES/kcmkwincompositing.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_kwindecoration.mo share/locale/hr/LC_MESSAGES/kcm_kwinrules.mo share/locale/hr/LC_MESSAGES/kcm_kwintabbox.mo share/locale/hr/LC_MESSAGES/kcmkwincompositing.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/kcm_kwindecoration.mo share/locale/hsb/LC_MESSAGES/kcm_kwinrules.mo share/locale/hsb/LC_MESSAGES/kcmkwincompositing.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_effects.mo share/locale/hu/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/hu/LC_MESSAGES/kcm_kwindecoration.mo share/locale/hu/LC_MESSAGES/kcm_kwinrules.mo share/locale/hu/LC_MESSAGES/kcm_kwintabbox.mo share/locale/hu/LC_MESSAGES/kcmkwincommon.mo share/locale/hu/LC_MESSAGES/kcmkwincompositing.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_effects.mo share/locale/ia/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/ia/LC_MESSAGES/kcm_kwindecoration.mo share/locale/ia/LC_MESSAGES/kcm_kwinrules.mo share/locale/ia/LC_MESSAGES/kcm_kwintabbox.mo share/locale/ia/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/ia/LC_MESSAGES/kcmkwincommon.mo share/locale/ia/LC_MESSAGES/kcmkwincompositing.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_effects.mo share/locale/id/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/id/LC_MESSAGES/kcm_kwindecoration.mo share/locale/id/LC_MESSAGES/kcm_kwinrules.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/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_kwindecoration.mo share/locale/is/LC_MESSAGES/kcm_kwinrules.mo share/locale/is/LC_MESSAGES/kcm_kwintabbox.mo share/locale/is/LC_MESSAGES/kcmkwincompositing.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_effects.mo share/locale/it/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/it/LC_MESSAGES/kcm_kwindecoration.mo share/locale/it/LC_MESSAGES/kcm_kwinrules.mo share/locale/it/LC_MESSAGES/kcm_kwintabbox.mo share/locale/it/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/it/LC_MESSAGES/kcmkwincommon.mo share/locale/it/LC_MESSAGES/kcmkwincompositing.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_effects.mo share/locale/ja/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/ja/LC_MESSAGES/kcm_kwindecoration.mo share/locale/ja/LC_MESSAGES/kcm_kwinrules.mo share/locale/ja/LC_MESSAGES/kcm_kwintabbox.mo share/locale/ja/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/ja/LC_MESSAGES/kcmkwincommon.mo share/locale/ja/LC_MESSAGES/kcmkwincompositing.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_kwindecoration.mo share/locale/kk/LC_MESSAGES/kcm_kwinrules.mo share/locale/kk/LC_MESSAGES/kcm_kwintabbox.mo share/locale/kk/LC_MESSAGES/kcmkwincompositing.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_kwindecoration.mo share/locale/km/LC_MESSAGES/kcm_kwinrules.mo share/locale/km/LC_MESSAGES/kcm_kwintabbox.mo share/locale/km/LC_MESSAGES/kcmkwincompositing.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_kwindecoration.mo share/locale/kn/LC_MESSAGES/kcm_kwinrules.mo share/locale/kn/LC_MESSAGES/kcm_kwintabbox.mo share/locale/kn/LC_MESSAGES/kcmkwincompositing.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_effects.mo share/locale/ko/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/ko/LC_MESSAGES/kcm_kwindecoration.mo share/locale/ko/LC_MESSAGES/kcm_kwinrules.mo share/locale/ko/LC_MESSAGES/kcm_kwintabbox.mo share/locale/ko/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/ko/LC_MESSAGES/kcmkwincommon.mo share/locale/ko/LC_MESSAGES/kcmkwincompositing.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/kcm_kwindecoration.mo share/locale/ku/LC_MESSAGES/kcm_kwinrules.mo share/locale/ku/LC_MESSAGES/kcmkwincompositing.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_effects.mo share/locale/lt/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/lt/LC_MESSAGES/kcm_kwindecoration.mo share/locale/lt/LC_MESSAGES/kcm_kwinrules.mo share/locale/lt/LC_MESSAGES/kcm_kwintabbox.mo share/locale/lt/LC_MESSAGES/kcmkwincommon.mo share/locale/lt/LC_MESSAGES/kcmkwincompositing.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/lt/LC_MESSAGES/kwin_scripts.mo share/locale/lv/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/lv/LC_MESSAGES/kcm_kwindecoration.mo share/locale/lv/LC_MESSAGES/kcm_kwinrules.mo share/locale/lv/LC_MESSAGES/kcm_kwintabbox.mo share/locale/lv/LC_MESSAGES/kcmkwincompositing.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_kwindecoration.mo share/locale/mai/LC_MESSAGES/kcm_kwinrules.mo share/locale/mai/LC_MESSAGES/kcm_kwintabbox.mo share/locale/mai/LC_MESSAGES/kcmkwincompositing.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/kcm_kwindecoration.mo share/locale/mk/LC_MESSAGES/kcm_kwinrules.mo share/locale/mk/LC_MESSAGES/kcmkwincompositing.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-scripts.mo share/locale/ml/LC_MESSAGES/kcm_kwin_effects.mo share/locale/ml/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/ml/LC_MESSAGES/kcm_kwindecoration.mo share/locale/ml/LC_MESSAGES/kcm_kwinrules.mo share/locale/ml/LC_MESSAGES/kcm_kwintabbox.mo share/locale/ml/LC_MESSAGES/kcmkwincommon.mo share/locale/ml/LC_MESSAGES/kcmkwincompositing.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/ml/LC_MESSAGES/kwin_scripting.mo share/locale/ml/LC_MESSAGES/kwin_scripts.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_kwindecoration.mo share/locale/mr/LC_MESSAGES/kcm_kwinrules.mo share/locale/mr/LC_MESSAGES/kcm_kwintabbox.mo share/locale/mr/LC_MESSAGES/kcmkwincompositing.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_kwindecoration.mo share/locale/ms/LC_MESSAGES/kcm_kwinrules.mo share/locale/ms/LC_MESSAGES/kcm_kwintabbox.mo share/locale/ms/LC_MESSAGES/kcmkwincompositing.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_kwindecoration.mo share/locale/nb/LC_MESSAGES/kcm_kwinrules.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/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_kwindecoration.mo share/locale/nds/LC_MESSAGES/kcm_kwinrules.mo share/locale/nds/LC_MESSAGES/kcm_kwintabbox.mo share/locale/nds/LC_MESSAGES/kcmkwincompositing.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/kcm_kwindecoration.mo share/locale/ne/LC_MESSAGES/kcm_kwinrules.mo share/locale/ne/LC_MESSAGES/kcmkwincompositing.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_effects.mo share/locale/nl/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/nl/LC_MESSAGES/kcm_kwindecoration.mo share/locale/nl/LC_MESSAGES/kcm_kwinrules.mo share/locale/nl/LC_MESSAGES/kcm_kwintabbox.mo share/locale/nl/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/nl/LC_MESSAGES/kcmkwincommon.mo share/locale/nl/LC_MESSAGES/kcmkwincompositing.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_effects.mo share/locale/nn/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/nn/LC_MESSAGES/kcm_kwindecoration.mo share/locale/nn/LC_MESSAGES/kcm_kwinrules.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/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/kcm_kwindecoration.mo share/locale/oc/LC_MESSAGES/kcm_kwinrules.mo share/locale/oc/LC_MESSAGES/kcmkwincompositing.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/pa/LC_MESSAGES/kcm-kwin-scripts.mo share/locale/pa/LC_MESSAGES/kcm_kwin_effects.mo share/locale/pa/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/pa/LC_MESSAGES/kcm_kwindecoration.mo share/locale/pa/LC_MESSAGES/kcm_kwinrules.mo share/locale/pa/LC_MESSAGES/kcm_kwintabbox.mo share/locale/pa/LC_MESSAGES/kcmkwincommon.mo share/locale/pa/LC_MESSAGES/kcmkwincompositing.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/pa/LC_MESSAGES/kwin_scripts.mo share/locale/pl/LC_MESSAGES/kcm-kwin-scripts.mo share/locale/pl/LC_MESSAGES/kcm_kwin_effects.mo share/locale/pl/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/pl/LC_MESSAGES/kcm_kwindecoration.mo share/locale/pl/LC_MESSAGES/kcm_kwinrules.mo share/locale/pl/LC_MESSAGES/kcm_kwintabbox.mo share/locale/pl/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/pl/LC_MESSAGES/kcmkwincommon.mo share/locale/pl/LC_MESSAGES/kcmkwincompositing.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_effects.mo share/locale/pt/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/pt/LC_MESSAGES/kcm_kwindecoration.mo share/locale/pt/LC_MESSAGES/kcm_kwinrules.mo share/locale/pt/LC_MESSAGES/kcm_kwintabbox.mo share/locale/pt/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/pt/LC_MESSAGES/kcmkwincommon.mo share/locale/pt/LC_MESSAGES/kcmkwincompositing.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_effects.mo share/locale/pt_BR/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/pt_BR/LC_MESSAGES/kcm_kwindecoration.mo share/locale/pt_BR/LC_MESSAGES/kcm_kwinrules.mo share/locale/pt_BR/LC_MESSAGES/kcm_kwintabbox.mo share/locale/pt_BR/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/pt_BR/LC_MESSAGES/kcmkwincommon.mo share/locale/pt_BR/LC_MESSAGES/kcmkwincompositing.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_effects.mo share/locale/ro/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/ro/LC_MESSAGES/kcm_kwindecoration.mo share/locale/ro/LC_MESSAGES/kcm_kwinrules.mo share/locale/ro/LC_MESSAGES/kcm_kwintabbox.mo share/locale/ro/LC_MESSAGES/kcmkwincommon.mo share/locale/ro/LC_MESSAGES/kcmkwincompositing.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/ro/LC_MESSAGES/kwin_scripts.mo share/locale/ru/LC_MESSAGES/kcm-kwin-scripts.mo share/locale/ru/LC_MESSAGES/kcm_kwin_effects.mo share/locale/ru/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/ru/LC_MESSAGES/kcm_kwindecoration.mo share/locale/ru/LC_MESSAGES/kcm_kwinrules.mo share/locale/ru/LC_MESSAGES/kcm_kwintabbox.mo share/locale/ru/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/ru/LC_MESSAGES/kcmkwincommon.mo share/locale/ru/LC_MESSAGES/kcmkwincompositing.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/kcm_kwindecoration.mo share/locale/se/LC_MESSAGES/kcm_kwinrules.mo share/locale/se/LC_MESSAGES/kcmkwincommon.mo share/locale/se/LC_MESSAGES/kcmkwincompositing.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_kwindecoration.mo share/locale/si/LC_MESSAGES/kcm_kwinrules.mo share/locale/si/LC_MESSAGES/kcm_kwintabbox.mo share/locale/si/LC_MESSAGES/kcmkwincompositing.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_effects.mo share/locale/sk/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/sk/LC_MESSAGES/kcm_kwindecoration.mo share/locale/sk/LC_MESSAGES/kcm_kwinrules.mo share/locale/sk/LC_MESSAGES/kcm_kwintabbox.mo share/locale/sk/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/sk/LC_MESSAGES/kcmkwincommon.mo share/locale/sk/LC_MESSAGES/kcmkwincompositing.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_effects.mo share/locale/sl/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/sl/LC_MESSAGES/kcm_kwindecoration.mo share/locale/sl/LC_MESSAGES/kcm_kwinrules.mo share/locale/sl/LC_MESSAGES/kcm_kwintabbox.mo share/locale/sl/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/sl/LC_MESSAGES/kcmkwincommon.mo share/locale/sl/LC_MESSAGES/kcmkwincompositing.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/kcm_kwindecoration.mo share/locale/sq/LC_MESSAGES/kcm_kwinrules.mo share/locale/sq/LC_MESSAGES/kcmkwincompositing.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_kwindecoration.mo share/locale/sr/LC_MESSAGES/kcm_kwinrules.mo share/locale/sr/LC_MESSAGES/kcm_kwintabbox.mo share/locale/sr/LC_MESSAGES/kcmkwincompositing.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_kwindecoration.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_kwinrules.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_kwintabbox.mo share/locale/sr@ijekavian/LC_MESSAGES/kcmkwincompositing.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_kwindecoration.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_kwinrules.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_kwintabbox.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmkwincompositing.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_kwindecoration.mo share/locale/sr@latin/LC_MESSAGES/kcm_kwinrules.mo share/locale/sr@latin/LC_MESSAGES/kcm_kwintabbox.mo share/locale/sr@latin/LC_MESSAGES/kcmkwincompositing.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_effects.mo share/locale/sv/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/sv/LC_MESSAGES/kcm_kwindecoration.mo share/locale/sv/LC_MESSAGES/kcm_kwinrules.mo share/locale/sv/LC_MESSAGES/kcm_kwintabbox.mo share/locale/sv/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/sv/LC_MESSAGES/kcmkwincommon.mo share/locale/sv/LC_MESSAGES/kcmkwincompositing.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/kcm_kwindecoration.mo share/locale/ta/LC_MESSAGES/kcm_kwinrules.mo share/locale/ta/LC_MESSAGES/kcmkwincompositing.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/kcm_kwindecoration.mo share/locale/te/LC_MESSAGES/kcm_kwinrules.mo share/locale/te/LC_MESSAGES/kcmkwincompositing.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/kcm_kwindecoration.mo share/locale/tg/LC_MESSAGES/kcm_kwinrules.mo share/locale/tg/LC_MESSAGES/kcmkwincommon.mo share/locale/tg/LC_MESSAGES/kcmkwincompositing.mo share/locale/tg/LC_MESSAGES/kcmkwinscreenedges.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_kwindecoration.mo share/locale/th/LC_MESSAGES/kcm_kwinrules.mo share/locale/th/LC_MESSAGES/kcm_kwintabbox.mo share/locale/th/LC_MESSAGES/kcmkwincompositing.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_kwindecoration.mo share/locale/tr/LC_MESSAGES/kcm_kwinrules.mo share/locale/tr/LC_MESSAGES/kcm_kwintabbox.mo share/locale/tr/LC_MESSAGES/kcmkwincompositing.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_kwindecoration.mo share/locale/ug/LC_MESSAGES/kcm_kwinrules.mo share/locale/ug/LC_MESSAGES/kcm_kwintabbox.mo share/locale/ug/LC_MESSAGES/kcmkwincompositing.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_effects.mo share/locale/uk/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/uk/LC_MESSAGES/kcm_kwindecoration.mo share/locale/uk/LC_MESSAGES/kcm_kwinrules.mo share/locale/uk/LC_MESSAGES/kcm_kwintabbox.mo share/locale/uk/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/uk/LC_MESSAGES/kcmkwincommon.mo share/locale/uk/LC_MESSAGES/kcmkwincompositing.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/kcm_kwinrules.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/kcm_kwinrules.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/kcm_kwinrules.mo share/locale/vi/LC_MESSAGES/kcmkwinscreenedges.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_kwindecoration.mo share/locale/wa/LC_MESSAGES/kcm_kwinrules.mo share/locale/wa/LC_MESSAGES/kcm_kwintabbox.mo share/locale/wa/LC_MESSAGES/kcmkwincompositing.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_effects.mo share/locale/zh_CN/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/zh_CN/LC_MESSAGES/kcm_kwindecoration.mo share/locale/zh_CN/LC_MESSAGES/kcm_kwinrules.mo share/locale/zh_CN/LC_MESSAGES/kcm_kwintabbox.mo share/locale/zh_CN/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/zh_CN/LC_MESSAGES/kcmkwincommon.mo share/locale/zh_CN/LC_MESSAGES/kcmkwincompositing.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_effects.mo share/locale/zh_TW/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/zh_TW/LC_MESSAGES/kcm_kwindecoration.mo share/locale/zh_TW/LC_MESSAGES/kcm_kwinrules.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/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 share/qlogging-categories5/org_kde_kwin.categories diff --git a/x11/plasma5-kactivitymanagerd/distinfo b/x11/plasma5-kactivitymanagerd/distinfo index e1d82eeadd54..e9d754ced3b0 100644 --- a/x11/plasma5-kactivitymanagerd/distinfo +++ b/x11/plasma5-kactivitymanagerd/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1622814016 -SHA256 (KDE/plasma/5.22.0/kactivitymanagerd-5.22.0.tar.xz) = b8882b792086e94b7e1a1130417bdf4c0e08a7af84119812997318c62dfc2950 -SIZE (KDE/plasma/5.22.0/kactivitymanagerd-5.22.0.tar.xz) = 102960 +TIMESTAMP = 1623866706 +SHA256 (KDE/plasma/5.22.1/kactivitymanagerd-5.22.1.tar.xz) = 12d69a2297003dec914a608b07cea786edec10ad54d679f0964ca24478f408f4 +SIZE (KDE/plasma/5.22.1/kactivitymanagerd-5.22.1.tar.xz) = 103096 diff --git a/x11/plasma5-kgamma5/distinfo b/x11/plasma5-kgamma5/distinfo index 0edb7743c355..af5c8a9abc5c 100644 --- a/x11/plasma5-kgamma5/distinfo +++ b/x11/plasma5-kgamma5/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1622814017 -SHA256 (KDE/plasma/5.22.0/kgamma5-5.22.0.tar.xz) = 396e7650914b7473fb453d5e8808b6cd4de697d027aade01d2ec2ee5c814932c -SIZE (KDE/plasma/5.22.0/kgamma5-5.22.0.tar.xz) = 82808 +TIMESTAMP = 1623866707 +SHA256 (KDE/plasma/5.22.1/kgamma5-5.22.1.tar.xz) = 43413d51c56b6328f90cad23ea7f34a6c04cbb22382421d3fb443d0baa85f083 +SIZE (KDE/plasma/5.22.1/kgamma5-5.22.1.tar.xz) = 82836 diff --git a/x11/plasma5-kscreen/distinfo b/x11/plasma5-kscreen/distinfo index 1ce379ade020..57f146bfe60b 100644 --- a/x11/plasma5-kscreen/distinfo +++ b/x11/plasma5-kscreen/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1622814018 -SHA256 (KDE/plasma/5.22.0/kscreen-5.22.0.tar.xz) = 5f805e8d3b269fc1f7a9d2f582e49c9b173bd3eb0fd7393ff3b4d7980335519f -SIZE (KDE/plasma/5.22.0/kscreen-5.22.0.tar.xz) = 116684 +TIMESTAMP = 1623866708 +SHA256 (KDE/plasma/5.22.1/kscreen-5.22.1.tar.xz) = 6221362567866d8fce6cfa298fc4e9c249c1cdf8e8c6a0de9b9d86c682d0723c +SIZE (KDE/plasma/5.22.1/kscreen-5.22.1.tar.xz) = 116608 diff --git a/x11/plasma5-kwayland-integration/distinfo b/x11/plasma5-kwayland-integration/distinfo index eb408df021c8..bb6873021be8 100644 --- a/x11/plasma5-kwayland-integration/distinfo +++ b/x11/plasma5-kwayland-integration/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1622814018 -SHA256 (KDE/plasma/5.22.0/kwayland-integration-5.22.0.tar.xz) = 2348533e520ab38e094d71ed07f35f33339af996a97088a2b8d3fb64ad516949 -SIZE (KDE/plasma/5.22.0/kwayland-integration-5.22.0.tar.xz) = 22776 +TIMESTAMP = 1623866709 +SHA256 (KDE/plasma/5.22.1/kwayland-integration-5.22.1.tar.xz) = bc66626bd92902060e45344491cf33cb7c7206318b2f065dc33bc5ca17fa35d6 +SIZE (KDE/plasma/5.22.1/kwayland-integration-5.22.1.tar.xz) = 22772 diff --git a/x11/plasma5-kwayland-server/distinfo b/x11/plasma5-kwayland-server/distinfo index dc3ea07484ad..f3d58f900b99 100644 --- a/x11/plasma5-kwayland-server/distinfo +++ b/x11/plasma5-kwayland-server/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1622814019 -SHA256 (KDE/plasma/5.22.0/kwayland-server-5.22.0.tar.xz) = 84617871c47f7e5060462728a82bfcdad14fd0bb2f1f8252bee077e28deb1694 -SIZE (KDE/plasma/5.22.0/kwayland-server-5.22.0.tar.xz) = 219340 +TIMESTAMP = 1623866710 +SHA256 (KDE/plasma/5.22.1/kwayland-server-5.22.1.tar.xz) = 8c76ed9a33e729b58901fbe36e1c8c0c7c79f9582504f9ccee8e0174a6c2953d +SIZE (KDE/plasma/5.22.1/kwayland-server-5.22.1.tar.xz) = 219324 diff --git a/x11/plasma5-layer-shell-qt/distinfo b/x11/plasma5-layer-shell-qt/distinfo index 1f40b7dcea49..f5a4b9d31435 100644 --- a/x11/plasma5-layer-shell-qt/distinfo +++ b/x11/plasma5-layer-shell-qt/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1622814020 -SHA256 (KDE/plasma/5.22.0/layer-shell-qt-5.22.0.tar.xz) = 7e08f39716885aa43a3f2f1bfb29441ef9ee4b07b2928a9680ae8e4c28adcaf7 -SIZE (KDE/plasma/5.22.0/layer-shell-qt-5.22.0.tar.xz) = 17620 +TIMESTAMP = 1623866711 +SHA256 (KDE/plasma/5.22.1/layer-shell-qt-5.22.1.tar.xz) = 60314e0b4253e4b8ce8359935b29659ac45d19f21941e771a7bc28a824b5a1d6 +SIZE (KDE/plasma/5.22.1/layer-shell-qt-5.22.1.tar.xz) = 17616 diff --git a/x11/plasma5-libkscreen/distinfo b/x11/plasma5-libkscreen/distinfo index cadca6e95d50..c963cfc634e0 100644 --- a/x11/plasma5-libkscreen/distinfo +++ b/x11/plasma5-libkscreen/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1622814020 -SHA256 (KDE/plasma/5.22.0/libkscreen-5.22.0.tar.xz) = 0630ca1dff1dfc7ba74d508c3ff2cb82fd8642281890ded095dff97206299aeb -SIZE (KDE/plasma/5.22.0/libkscreen-5.22.0.tar.xz) = 95404 +TIMESTAMP = 1623866712 +SHA256 (KDE/plasma/5.22.1/libkscreen-5.22.1.tar.xz) = d99c59f752a2603e88ef58b09bc13f5e8a36d83f51752d14622d94e02dfd02b3 +SIZE (KDE/plasma/5.22.1/libkscreen-5.22.1.tar.xz) = 95436 diff --git a/x11/plasma5-plasma-desktop/distinfo b/x11/plasma5-plasma-desktop/distinfo index 2af389d88182..b22419676f3e 100644 --- a/x11/plasma5-plasma-desktop/distinfo +++ b/x11/plasma5-plasma-desktop/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1622814022 -SHA256 (KDE/plasma/5.22.0/plasma-desktop-5.22.0.tar.xz) = f4f8980036157e84aba53181f188bbd45c455408ee411c1df1b12dbac1c0d8a9 -SIZE (KDE/plasma/5.22.0/plasma-desktop-5.22.0.tar.xz) = 15736196 +TIMESTAMP = 1623866714 +SHA256 (KDE/plasma/5.22.1/plasma-desktop-5.22.1.tar.xz) = 9be7d61a042b5d74c1a65ecc8101c81390d45c2fec766b5115d5924b5dac0972 +SIZE (KDE/plasma/5.22.1/plasma-desktop-5.22.1.tar.xz) = 15736412 diff --git a/x11/plasma5-plasma-integration/distinfo b/x11/plasma5-plasma-integration/distinfo index 954251138018..719d65b7bcf0 100644 --- a/x11/plasma5-plasma-integration/distinfo +++ b/x11/plasma5-plasma-integration/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1622814022 -SHA256 (KDE/plasma/5.22.0/plasma-integration-5.22.0.tar.xz) = 48f7873e6b882cbba93d6297a119ba1a1c090b6f42f4f03fe13bb4e5632e308e -SIZE (KDE/plasma/5.22.0/plasma-integration-5.22.0.tar.xz) = 65148 +TIMESTAMP = 1623866715 +SHA256 (KDE/plasma/5.22.1/plasma-integration-5.22.1.tar.xz) = fe14eefd7e4e2e7dbdca979bc0595dd3bc39b2c4b6e64161437db8154f654c7b +SIZE (KDE/plasma/5.22.1/plasma-integration-5.22.1.tar.xz) = 65132 diff --git a/x11/plasma5-plasma-workspace/Makefile b/x11/plasma5-plasma-workspace/Makefile index 9d8ded382ec8..70ab1e8e0687 100644 --- a/x11/plasma5-plasma-workspace/Makefile +++ b/x11/plasma5-plasma-workspace/Makefile @@ -1,59 +1,56 @@ PORTNAME= plasma-workspace DISTVERSION= ${KDE_PLASMA_VERSION} CATEGORIES= x11 kde kde-plasma -PATCH_SITES= https://invent.kde.org/plasma/plasma-workspace/commit/ -PATCHFILES= f90d4d5548dfe2d75e83b8da91af9be0e261286b.diff:-p1 - MAINTAINER= kde@FreeBSD.org COMMENT= Plasma5 Plasma workspace LIB_DEPENDS= libcln.so:math/cln \ libdbusmenu-qt5.so:devel/libdbusmenu-qt \ libfreetype.so:print/freetype2 \ libfontconfig.so:x11-fonts/fontconfig \ libqalculate.so:math/libqalculate \ libwayland-client.so:graphics/wayland \ 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 \ ${LOCALBASE}/bin/genv:sysutils/coreutils USES= cmake compiler:c++11-lib cpe desktop-file-utils gettext kde:5 pkgconfig \ qt:5 tar:xz xorg USE_KDE= activities activities-stats activitymanagerd attica archive 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 people plasma-framework \ plasma-integration prison runner service solid sonnet \ texteditor textwidgets unitconversion wallet wayland \ widgetsaddons windowsystem xmlgui xmlrpcclient \ breeze_run breeze-icons_run kquickcharts_run oxygen-icons5_run \ kded_run milou_run USE_QT= concurrent core declarative dbus graphicaleffects gui network phonon4 \ printsupport qdbus quickcontrols_run script svg sql \ testlib wayland webkit widgets x11extras xml \ paths_run \ buildtools_build qmake_build USE_XORG= ice sm x11 xau xcb xcomposite xcursor 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-stage: ${INSTALL_SCRIPT} ${FILESDIR}/startplasma-wayland.sh ${STAGEDIR}/${LOCALBASE}/bin/ .include diff --git a/x11/plasma5-plasma-workspace/distinfo b/x11/plasma5-plasma-workspace/distinfo index 2c770f8c88d0..88396f9c45a6 100644 --- a/x11/plasma5-plasma-workspace/distinfo +++ b/x11/plasma5-plasma-workspace/distinfo @@ -1,5 +1,3 @@ -TIMESTAMP = 1623563610 -SHA256 (KDE/plasma/5.22.0/plasma-workspace-5.22.0.tar.xz) = 1ed41a30208d87f7586734fa0ee84eb308f5da57ea614ef537171eac8bbbb77c -SIZE (KDE/plasma/5.22.0/plasma-workspace-5.22.0.tar.xz) = 8349176 -SHA256 (KDE/plasma/5.22.0/f90d4d5548dfe2d75e83b8da91af9be0e261286b.diff) = 6c5093ec266aed1e99cda082ae9315bdc9214d4859077cda0954df15c292fe27 -SIZE (KDE/plasma/5.22.0/f90d4d5548dfe2d75e83b8da91af9be0e261286b.diff) = 761 +TIMESTAMP = 1623870391 +SHA256 (KDE/plasma/5.22.1/plasma-workspace-5.22.1.tar.xz) = 61ad5adab412c935ae156c4de3f38d1e2640752c95100ad6996b9e51e8539725 +SIZE (KDE/plasma/5.22.1/plasma-workspace-5.22.1.tar.xz) = 8349504