diff --git a/Mk/Uses/kde.mk b/Mk/Uses/kde.mk index 84fc45434112..812619911717 100644 --- a/Mk/Uses/kde.mk +++ b/Mk/Uses/kde.mk @@ -1,1062 +1,1062 @@ # Provides support for KDE and KF5-based ports. # # Feature: kde # Valid ARGS: 5 6 # # 5: Depend on KDE Frameworks 5 components and variables. # 6: Depend on KDE Frameworks 6 components and variables. # # Variables that can be set by a port: # # USE_KDE List of KF[56]/Plasma[56] 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 6 . 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 ===================================== KDE_PLASMA_VERSION?= ${KDE_PLASMA${_KDE_VERSION}_VERSION} KDE_PLASMA_BRANCH?= ${KDE_PLASMA${_KDE_VERSION}_BRANCH} KDE_FRAMEWORKS_VERSION?= ${KDE_FRAMEWORKS${_KDE_VERSION}_VERSION} KDE_FRAMEWORKS_BRANCH?= ${KDE_FRAMEWORKS${_KDE_VERSION}_BRANCH} KDE_APPLICATIONS_BRANCH?= ${KDE_APPLICATIONS6_BRANCH} KDE_APPLICATIONS_VERSION?= ${KDE_APPLICATIONS6_VERSION} KDE_APPLICATIONS_SHLIB_VER?= ${KDE_APPLICATIONS6_SHLIB_VER} KDE_APPLICATIONS_SHLIB_G_VER?= ${KDE_APPLICATIONS6_SHLIB_G_VER} # Legacy KDE Plasma. KDE_PLASMA5_VERSION?= 5.27.12 KDE_PLASMA5_BRANCH?= stable # Current KDE Plasma desktop. -KDE_PLASMA6_VERSION?= 6.4.2 +KDE_PLASMA6_VERSION?= 6.4.3 KDE_PLASMA6_BRANCH?= stable # Legacy KDE frameworks (Qt5 based). KDE_FRAMEWORKS5_VERSION?= 5.116.0 KDE_FRAMEWORKS5_BRANCH?= stable # Current KDE Frameworks (Qt6 based). KDE_FRAMEWORKS6_VERSION?= 6.16.0 KDE_FRAMEWORKS6_BRANCH?= stable # Current KDE applications. Update _${PORTNAME}_PROJECT_VERSION for the following ports: # devel/kdevelop, games/libkdegames, games/libkmahjongg, graphics/kgraphviewer KDE_APPLICATIONS6_VERSION?= 25.04.3 KDE_APPLICATIONS6_SHLIB_VER?= 6.4.3 # G as in KDE Gear, and as in "don't make the variable name longer than required". KDE_APPLICATIONS6_SHLIB_G_VER?= ${KDE_APPLICATIONS6_VERSION} KDE_APPLICATIONS6_BRANCH?= stable # Some projects despite being a part of Gear distribution continue to use # their own versioning with mangled KDE_APPLICATIONS_VERSION as a patchlevel. # Provide more variables to ease their maintenance. KDE_APPS_MAJOR= ${KDE_APPLICATIONS_VERSION:R:R} KDE_APPS_MINOR= ${KDE_APPLICATIONS_VERSION:R:E} . if ${KDE_APPLICATIONS_BRANCH:Mstable} KDE_APPS_MICRO= 0${KDE_APPLICATIONS_VERSION:E} . else KDE_APPS_MICRO= ${KDE_APPLICATIONS_VERSION:E} . endif KDE_APPS_BASED_PATCHLEVEL?= ${KDE_APPS_MAJOR}${KDE_APPS_MINOR}${KDE_APPS_MICRO} # ============================================================================== # === 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 kde-devel . for cat in ${_KDE_CATEGORIES_SUPPORTED:Nkde-devel} . 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_TAGNAME= ${_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}" . if defined(_${PORTNAME}_PROJECT_VERSION) PLIST_SUB+= SHLIB_VER_LONG=${_${PORTNAME}_PROJECT_VERSION}.${KDE_APPS_BASED_PATCHLEVEL} . endif DIST_SUBDIR?= KDE/release-service/${KDE_APPLICATIONS_VERSION} . elif ${_KDE_CATEGORY:Mkde-plasma} PORTVERSION?= ${KDE_PLASMA_VERSION} PKGNAMEPREFIX?= plasma${_KDE_VERSION}- MASTER_SITES?= KDE/${KDE_PLASMA_BRANCH}/plasma/${KDE_PLASMA_VERSION} DIST_SUBDIR?= KDE/plasma/${KDE_PLASMA_VERSION} WWW?= https://kde.org/plasma-desktop/ . if ${_KDE_VERSION:M6} DESCR= ${.CURDIR:H:H}/x11/plasma6-plasma/pkg-descr . endif . elif ${_KDE_CATEGORY:Mkde-frameworks} PORTVERSION?= ${KDE_FRAMEWORKS_VERSION} PKGNAMEPREFIX?= kf${_KDE_VERSION}- WWW?= https://api.kde.org/frameworks/${PORTNAME}/html/index.html # This is a slight duplication of _USE_PORTINGAIDS_ALL _PORTINGAIDS= kjs kjsembed kdelibs4support kdesignerplugin khtml kmediaplayer kross kxmlrpcclient . if ${_KDE_VERSION:M5} . 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 . else MASTER_SITES?= KDE/${KDE_FRAMEWORKS_BRANCH}/frameworks/${KDE_FRAMEWORKS_VERSION:R} . endif DIST_SUBDIR?= KDE/frameworks/${KDE_FRAMEWORKS_VERSION} . if ${_KDE_VERSION:M6} DIST_SUBDIR= KDE/frameworks/${KDE_FRAMEWORKS_VERSION:R} DESCR= ${.CURDIR:H:H}/x11/kf6-frameworks/pkg-descr . endif . else IGNORE?= unknown CATEGORY value '${_KDE_CATEGORY}' #' . endif . endif #defined(_KDE_CATEGORY) # ============================================================================== # === SET UP LOCALE ENVIRONMENT ================================================= USE_LOCALE?= en_US.UTF-8 # === 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 KDE_MAN_PREFIX?= ${KDE_PREFIX}/share/man # Enforce the chosen Qt Version CMAKE_ARGS+= -DQT_MAJOR_VERSION=${_QT_VER} # 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}" # ============================================================================== # List of all USE_KDE components. # TODO for KDE 7: do not mangle upstream naming: use the same name # for port directory, PORTNAME, and USE_KDE component. # Porting Aids frameworks provide code and utilities to ease the transition from # kdelibs 4 to KDE Frameworks 5. _USE_PORTINGAIDS_ALL= js jsembed kdelibs4support khtml mediaplayer kross # List of components of the KDE Frameworks distribution. # Not ported to FreeBSD: bluez-qt modemmanagerqt _USE_FRAMEWORKS5_ALL= activities activities-stats apidox archive attica \ auth baloo bookmarks breeze-icons calendarcore \ codecs completion config configwidgets contacts \ coreaddons crash dbusaddons designerplugin dnssd \ doctools ecm emoticons filemetadata frameworkintegration \ globalaccel guiaddons holidays i18n iconthemes \ idletime init itemmodels itemviews jobwidgets \ kcmutils kdav kdeclarative kded kdesu kimageformats \ kio kirigami2 kquickcharts newstuff notifications \ notifyconfig package parts people plasma-framework \ plotting prison pty purpose qqc2-desktop-style \ runner service solid sonnet syndication \ syntaxhighlighting texteditor textwidgets \ threadweaver unitconversion wallet wayland \ widgetsaddons windowsystem xmlgui xmlrpcclient \ ${_USE_PORTINGAIDS_ALL} _USE_FRAMEWORKS6_ALL= apidox archive attica auth baloo bookmarks \ breeze-icons calendarcore codecs colorscheme \ completion config configwidgets contacts coreaddons \ crash dbusaddons dnssd doctools ecm filemetadata \ frameworkintegration globalaccel guiaddons holidays \ i18n iconthemes idletime itemmodels itemviews \ jobwidgets kcmutils kdav kdeclarative kded kdesu \ kimageformats kio kirigami2 kquickcharts newstuff \ networkmanagerqt notifications notifyconfig package parts \ people plasma-wayland-protocols plotting prison pty purpose \ qqc2-desktop-style runner service solid sonnet \ statusnotifieritem svg syndication \ syntaxhighlighting texteditor texttemplate \ textwidgets threadweaver unitconversion userfeedback \ wallet widgetsaddons windowsystem xmlgui _USE_FRAMEWORKS_ALL= ${_USE_FRAMEWORKS${_KDE_VERSION}_ALL} # List of components of the KDE Plasma distribution. _USE_PLASMA5_ALL= libksysguard oxygen-sounds _USE_PLASMA6_ALL= activities activities-stats activitymanagerd \ aurorae breeze breeze-gtk decoration discover \ globalacceld infocenter kde-cli-tools \ kde-gtk-config kdeplasma-addons kgamma kmenuedit \ kpipewire kscreen kscreenlocker ksshaskpass \ ksystemstats kwallet-pam kwin kwin-x11 kwrited \ layer-shell-qt libkscreen libksysguard libplasma \ milou ocean-sound-theme oxygen oxygen-sounds \ plasma-browser-integration plasma-desktop \ plasma-disks plasma-integration plasma-pa \ plasma-sdk plasma-workspace \ plasma-workspace-wallpapers plasma5support \ polkit-kde-agent-1 powerdevil print-manager \ qqc2-breeze-style sddm-kcm spectacle systemmonitor \ systemsettings wayland xdg-desktop-portal-kde _USE_PLASMA_ALL= ${_USE_PLASMA${_KDE_VERSION}_ALL} # List of frequently used components of the KDE Gears distribution. _USE_GEAR5_ALL= libkdcraw libkexiv2 _USE_GEAR6_ALL= baloo-widgets kate kosm kpublictransport \ libkcddb libkcompactdisc libkdcraw \ libkdegames libkeduvocdocument libkexiv2 \ libksane marble okular _USE_GEAR_ALL= ${_USE_GEAR${_KDE_VERSION}_ALL} # List of components of the KDE PIM distribution (part of KDE Gears). _USE_KDEPIM_ALL= akonadi akonadicalendar akonadiconsole \ akonadicontacts akonadiimportwizard akonadimime \ akonadisearch akregator calendarsupport \ calendarutils eventviews gapi grantlee-editor \ grantleetheme gravatar identitymanagement imap \ incidenceeditor kaddressbook kalarm kdepim-addons \ kdepim-runtime kitinerary kmail kmail-account-wizard \ kontact kontactinterface korganizer kpkpass ksmtp \ ldap libkdepim libkleo libksieve mailcommon \ mailimporter mailtransport mbox mbox-importer \ messagelib mime mimetreeparser pim-data-exporter \ pimcommon pimtextedit tnef # List of frequently used KDE releated software for any KDE/Qt version. _USE_KDE_EXTRA5_ALL= kirigami-addons phonon phonon-vlc \ plasma-wayland-protocols _USE_KDE_EXTRA6_ALL= kirigami-addons phonon phonon-mpv phonon-vlc \ plasma-wayland-protocols ktextaddons _USE_KDE_EXTRA_ALL= ${_USE_KDE_EXTRA${_KDE_VERSION}_ALL} _USE_KDE5_ALL= ${_USE_FRAMEWORKS_ALL} \ ${_USE_PLASMA_ALL} \ ${_USE_GEAR_ALL} \ ${_USE_KDE_EXTRA_ALL} _USE_KDE6_ALL= ${_USE_FRAMEWORKS_ALL} \ ${_USE_PLASMA_ALL} \ ${_USE_KDEPIM_ALL} \ ${_USE_GEAR_ALL} \ ${_USE_KDE_EXTRA_ALL} # ====================== frameworks components ================================= kde-activities_PORT5= x11/kf${_KDE_VERSION}-kactivities kde-activities_PORT6= x11/plasma${_KDE_VERSION}-plasma-activities kde-activities_PORT= ${kde-activities_PORT${_KDE_VERSION}} kde-activities_LIB5= libKF${_KDE_VERSION}Activities.so kde-activities_LIB6= libPlasmaActivities.so kde-activities_LIB= ${kde-activities_LIB${_KDE_VERSION}} kde-activities-stats_PORT5= x11/kf${_KDE_VERSION}-kactivities-stats kde-activities-stats_PORT6= x11/plasma${_KDE_VERSION}-plasma-activities-stats kde-activities-stats_PORT= ${kde-activities-stats_PORT${_KDE_VERSION}} kde-activities-stats_LIB5= libKF${_KDE_VERSION}ActivitiesStats.so kde-activities-stats_LIB6= libPlasmaActivitiesStats.so kde-activities-stats_LIB= ${kde-activities-stats_LIB${_KDE_VERSION}} # Use KApiDox tools from KDE Frameworks 6 kde-apidox_PORT= devel/kf6-kapidox kde-apidox_PATH= ${KDE_PREFIX}/bin/kapidox-generate kde-apidox_TYPE= run kde-archive_PORT= archivers/kf${_KDE_VERSION}-karchive kde-archive_LIB= libKF${_KDE_VERSION}Archive.so kde-attica_PORT= x11-toolkits/kf${_KDE_VERSION}-attica kde-attica_LIB= libKF${_KDE_VERSION}Attica.so kde-auth_PORT= devel/kf${_KDE_VERSION}-kauth kde-auth_LIB= libKF${_KDE_VERSION}AuthCore.so kde-baloo_PORT= sysutils/kf${_KDE_VERSION}-baloo kde-baloo_LIB= libKF${_KDE_VERSION}Baloo.so kde-bookmarks_PORT= devel/kf${_KDE_VERSION}-kbookmarks kde-bookmarks_LIB= libKF${_KDE_VERSION}Bookmarks.so # Use the latest icons from KDE Frameworks 6 kde-breeze-icons_PORT= x11-themes/kf6-breeze-icons kde-breeze-icons_PATH= ${KDE_PREFIX}/share/icons/breeze/index.theme kde-codecs_PORT= textproc/kf${_KDE_VERSION}-kcodecs kde-codecs_LIB= libKF${_KDE_VERSION}Codecs.so kde-completion_PORT= x11-toolkits/kf${_KDE_VERSION}-kcompletion kde-completion_LIB= libKF${_KDE_VERSION}Completion.so kde-config_PORT= devel/kf${_KDE_VERSION}-kconfig kde-config_LIB= libKF${_KDE_VERSION}ConfigCore.so kde-configwidgets_PORT= x11-toolkits/kf${_KDE_VERSION}-kconfigwidgets kde-configwidgets_LIB= libKF${_KDE_VERSION}ConfigWidgets.so kde-coreaddons_PORT= devel/kf${_KDE_VERSION}-kcoreaddons kde-coreaddons_LIB= libKF${_KDE_VERSION}CoreAddons.so kde-crash_PORT= devel/kf${_KDE_VERSION}-kcrash kde-crash_LIB= libKF${_KDE_VERSION}Crash.so kde-dbusaddons_PORT= devel/kf${_KDE_VERSION}-kdbusaddons kde-dbusaddons_LIB= libKF${_KDE_VERSION}DBusAddons.so kde-designerplugin_PORT= x11-toolkits/kf${_KDE_VERSION}-kdesignerplugin kde-designerplugin_PATH= ${KDE_PREFIX}/bin/kgendesignerplugin kde-designerplugin_TYPE= run kde-dnssd_PORT= dns/kf${_KDE_VERSION}-kdnssd kde-dnssd_LIB= libKF${_KDE_VERSION}DNSSD.so kde-doctools_PORT= devel/kf${_KDE_VERSION}-kdoctools kde-doctools_PATH= ${KDE_PREFIX}/bin/meinproc${_KDE_VERSION} # Use ECM from KDE Frameworks 6 for everything kde-ecm_PORT= devel/kf6-extra-cmake-modules kde-ecm_PATH= ${LOCALBASE}/share/ECM/cmake/ECMConfig.cmake kde-emoticons_PORT= x11-themes/kf${_KDE_VERSION}-kemoticons kde-emoticons_LIB= libKF${_KDE_VERSION}Emoticons.so kde-filemetadata_PORT= devel/kf${_KDE_VERSION}-kfilemetadata kde-filemetadata_LIB= libKF${_KDE_VERSION}FileMetaData.so kde-frameworkintegration_PORT= x11/kf${_KDE_VERSION}-frameworkintegration kde-frameworkintegration_LIB= libKF${_KDE_VERSION}Style.so kde-globalaccel_PORT= x11/kf${_KDE_VERSION}-kglobalaccel kde-globalaccel_LIB= libKF${_KDE_VERSION}GlobalAccel.so kde-guiaddons_PORT= x11-toolkits/kf${_KDE_VERSION}-kguiaddons kde-guiaddons_LIB= libKF${_KDE_VERSION}GuiAddons.so kde-holidays_PORT= net/kf${_KDE_VERSION}-kholidays kde-holidays_LIB= libKF${_KDE_VERSION}Holidays.so kde-i18n_PORT= devel/kf${_KDE_VERSION}-ki18n kde-i18n_LIB= libKF${_KDE_VERSION}I18n.so kde-iconthemes_PORT= x11-themes/kf${_KDE_VERSION}-kiconthemes kde-iconthemes_LIB= libKF${_KDE_VERSION}IconThemes.so kde-idletime_PORT= devel/kf${_KDE_VERSION}-kidletime kde-idletime_LIB= libKF${_KDE_VERSION}IdleTime.so kde-init_PORT= x11/kf${_KDE_VERSION}-kinit kde-init_PATH= ${KDE_PREFIX}/bin/kdeinit5 kde-itemmodels_PORT= devel/kf${_KDE_VERSION}-kitemmodels kde-itemmodels_LIB= libKF${_KDE_VERSION}ItemModels.so kde-itemviews_PORT= x11-toolkits/kf${_KDE_VERSION}-kitemviews kde-itemviews_LIB= libKF${_KDE_VERSION}ItemViews.so kde-jobwidgets_PORT= x11-toolkits/kf${_KDE_VERSION}-kjobwidgets kde-jobwidgets_LIB= libKF${_KDE_VERSION}JobWidgets.so kde-js_PORT= www/kf${_KDE_VERSION}-kjs kde-js_LIB= libKF${_KDE_VERSION}JS.so kde-jsembed_PORT= www/kf${_KDE_VERSION}-kjsembed kde-jsembed_LIB= libKF${_KDE_VERSION}JsEmbed.so kde-kcmutils_PORT= devel/kf${_KDE_VERSION}-kcmutils kde-kcmutils_LIB= libKF${_KDE_VERSION}KCMUtils.so kde-kdeclarative_PORT= devel/kf${_KDE_VERSION}-kdeclarative kde-kdeclarative_LIB5= libKF${_KDE_VERSION}Declarative.so kde-kdeclarative_LIB6= libKF${_KDE_VERSION}CalendarEvents.so kde-kdeclarative_LIB= ${kde-kdeclarative_LIB${_KDE_VERSION}} kde-kded_PORT= x11/kf${_KDE_VERSION}-kded kde-kded_PATH= ${KDE_PREFIX}/bin/kded${_KDE_VERSION} kde-kdelibs4support_PORT= x11/kf${_KDE_VERSION}-kdelibs4support kde-kdelibs4support_LIB= libKF${_KDE_VERSION}KDELibs4Support.so kde-kdesu_PORT= security/kf${_KDE_VERSION}-kdesu kde-kdesu_LIB= libKF${_KDE_VERSION}Su.so kde-khtml_PORT= www/kf${_KDE_VERSION}-khtml kde-khtml_LIB= libKF${_KDE_VERSION}KHtml.so kde-kimageformats_PORT= graphics/kf${_KDE_VERSION}-kimageformats kde-kimageformats_PATH= ${QT_PLUGINDIR}/imageformats/kimg_xcf.so kde-kimageformats_TYPE= run kde-kio_PORT= devel/kf${_KDE_VERSION}-kio kde-kio_LIB= libKF${_KDE_VERSION}KIOCore.so kde-kirigami2_PORT5= x11-toolkits/kf${_KDE_VERSION}-kirigami2 kde-kirigami2_PORT6= x11-toolkits/kf${_KDE_VERSION}-kirigami kde-kirigami2_PATH5= ${QT_QMLDIR}/org/kde/kirigami.2/libKirigamiPlugin.so kde-kirigami2_PATH6= ${QT_QMLDIR}/org/kde/kirigami/libKirigamiplugin.so kde-kirigami2_PORT= ${kde-kirigami2_PORT${_KDE_VERSION}} kde-kirigami2_PATH= ${kde-kirigami2_PATH${_KDE_VERSION}} kde-kquickcharts_PORT= graphics/kf${_KDE_VERSION}-kquickcharts kde-kquickcharts_PATH5= ${QT_QMLDIR}/org/kde/quickcharts/libQuickCharts.so kde-kquickcharts_PATH6= ${QT_QMLDIR}/org/kde/quickcharts/libQuickChartsplugin.so kde-kquickcharts_PATH= ${kde-kquickcharts_PATH${_KDE_VERSION}} kde-kross_PORT= lang/kf${_KDE_VERSION}-kross kde-kross_LIB= libKF${_KDE_VERSION}KrossCore.so kde-layer-shell-qt_PORT= x11/plasma${_KDE_VERSION}-layer-shell-qt kde-layer-shell-qt_LIB= libLayerShellQtInterface.so kde-mediaplayer_PORT= multimedia/kf${_KDE_VERSION}-kmediaplayer kde-mediaplayer_LIB= libKF${_KDE_VERSION}MediaPlayer.so.5 kde-networkmanagerqt_PORT= net-mgmt/kf${_KDE_VERSION}-networkmanager-qt kde-networkmanagerqt_LIB= libKF${_KDE_VERSION}NetworkManagerQt.so kde-newstuff_PORT= devel/kf${_KDE_VERSION}-knewstuff kde-newstuff_LIB= libKF${_KDE_VERSION}NewStuffCore.so kde-notifications_PORT= devel/kf${_KDE_VERSION}-knotifications kde-notifications_LIB= libKF${_KDE_VERSION}Notifications.so kde-notifyconfig_PORT= devel/kf${_KDE_VERSION}-knotifyconfig kde-notifyconfig_LIB= libKF${_KDE_VERSION}NotifyConfig.so # Use the latest sounds from Plasma 6 kde-oxygen-sounds_PORT= audio/plasma6-oxygen-sounds kde-oxygen-sounds_PATH= ${KDE_PREFIX}/share/sounds/Oxygen-Sys-Log-In.ogg kde-oxygen-sounds_TYPE= run kde-package_PORT= devel/kf${_KDE_VERSION}-kpackage kde-package_LIB= libKF${_KDE_VERSION}Package.so kde-parts_PORT= devel/kf${_KDE_VERSION}-kparts kde-parts_LIB= libKF${_KDE_VERSION}Parts.so kde-people_PORT= devel/kf${_KDE_VERSION}-kpeople kde-people_LIB= libKF${_KDE_VERSION}People.so kde-plasma-framework_PORT= x11/kf${_KDE_VERSION}-plasma-framework kde-plasma-framework_LIB= libKF${_KDE_VERSION}Plasma.so kde-plasma-wayland-protocols_PORT= x11/plasma-wayland-protocols kde-plasma-wayland-protocols_PATH= ${KDE_PREFIX}/lib/cmake/PlasmaWaylandProtocols/PlasmaWaylandProtocolsConfig.cmake kde-plotting_PORT= graphics/kf${_KDE_VERSION}-kplotting kde-plotting_LIB= libKF${_KDE_VERSION}Plotting.so kde-prison_PORT= graphics/kf${_KDE_VERSION}-prison kde-prison_LIB= libKF${_KDE_VERSION}Prison.so kde-pty_PORT= devel/kf${_KDE_VERSION}-kpty kde-pty_LIB= libKF${_KDE_VERSION}Pty.so kde-purpose_PORT= misc/kf${_KDE_VERSION}-purpose kde-purpose_LIB= libKF${_KDE_VERSION}Purpose.so kde-qqc2-desktop-style_PORT= x11-themes/kf${_KDE_VERSION}-qqc2-desktop-style kde-qqc2-desktop-style_PATH5= ${QT_PLUGINDIR}/kf${_KDE_VERSION}/kirigami/org.kde.desktop.so kde-qqc2-desktop-style_PATH6= ${QT_QMLDIR}/org/kde/desktop/liborg_kde_desktop.so kde-qqc2-desktop-style_PATH= ${kde-qqc2-desktop-style_PATH${_KDE_VERSION}} kde-runner_PORT= x11/kf${_KDE_VERSION}-krunner kde-runner_LIB= libKF${_KDE_VERSION}Runner.so kde-service_PORT= devel/kf${_KDE_VERSION}-kservice kde-service_LIB= libKF${_KDE_VERSION}Service.so kde-solid_PORT= devel/kf${_KDE_VERSION}-solid kde-solid_LIB= libKF${_KDE_VERSION}Solid.so kde-sonnet_PORT= textproc/kf${_KDE_VERSION}-sonnet kde-sonnet_LIB= libKF${_KDE_VERSION}SonnetCore.so kde-syndication_PORT= net/kf${_KDE_VERSION}-syndication kde-syndication_LIB= libKF${_KDE_VERSION}Syndication.so kde-syntaxhighlighting_PORT= textproc/kf${_KDE_VERSION}-syntax-highlighting kde-syntaxhighlighting_LIB= libKF${_KDE_VERSION}SyntaxHighlighting.so kde-texteditor_PORT= devel/kf${_KDE_VERSION}-ktexteditor kde-texteditor_LIB= libKF${_KDE_VERSION}TextEditor.so kde-texttemplate_PORT= devel/kf${_KDE_VERSION}-ktexttemplate kde-texttemplate_LIB= libKF${_KDE_VERSION}TextTemplate.so kde-textwidgets_PORT= x11-toolkits/kf${_KDE_VERSION}-ktextwidgets kde-textwidgets_LIB= libKF${_KDE_VERSION}TextWidgets.so kde-threadweaver_PORT= devel/kf${_KDE_VERSION}-threadweaver kde-threadweaver_LIB= libKF${_KDE_VERSION}ThreadWeaver.so kde-unitconversion_PORT= devel/kf${_KDE_VERSION}-kunitconversion kde-unitconversion_LIB= libKF${_KDE_VERSION}UnitConversion.so kde-wallet_PORT= sysutils/kf${_KDE_VERSION}-kwallet kde-wallet_LIB= libKF${_KDE_VERSION}Wallet.so kde-wayland_PORT5= x11/kf${_KDE_VERSION}-kwayland kde-wayland_PORT6= x11/plasma${_KDE_VERSION}-kwayland kde-wayland_PORT= ${kde-wayland_PORT${_KDE_VERSION}} kde-wayland_LIB5= libKF${_KDE_VERSION}WaylandClient.so kde-wayland_LIB6= libKWaylandClient.so kde-wayland_LIB= ${kde-wayland_LIB${_KDE_VERSION}} kde-widgetsaddons_PORT= x11-toolkits/kf${_KDE_VERSION}-kwidgetsaddons kde-widgetsaddons_LIB= libKF${_KDE_VERSION}WidgetsAddons.so kde-windowsystem_PORT= x11/kf${_KDE_VERSION}-kwindowsystem kde-windowsystem_LIB= libKF${_KDE_VERSION}WindowSystem.so kde-xmlgui_PORT= x11-toolkits/kf${_KDE_VERSION}-kxmlgui kde-xmlgui_LIB= libKF${_KDE_VERSION}XmlGui.so kde-xmlrpcclient_PORT= net/kf${_KDE_VERSION}-kxmlrpcclient kde-xmlrpcclient_LIB= libKF${_KDE_VERSION}XmlRpcClient.so kde-calendarcore_PORT= net/kf${_KDE_VERSION}-kcalendarcore kde-calendarcore_LIB= libKF${_KDE_VERSION}CalendarCore.so kde-contacts_PORT= net/kf${_KDE_VERSION}-kcontacts kde-contacts_LIB= libKF${_KDE_VERSION}Contacts.so kde-kdav_PORT= net/kf${_KDE_VERSION}-kdav kde-kdav_LIB= libKF${_KDE_VERSION}DAV.so kde-colorscheme_PORT= x11-themes/kf${_KDE_VERSION}-kcolorscheme kde-colorscheme_LIB= libKF${_KDE_VERSION}ColorScheme.so kde-svg_PORT= graphics/kf${_KDE_VERSION}-ksvg kde-svg_LIB= libKF${_KDE_VERSION}Svg.so kde-statusnotifieritem_PORT= deskutils/kf6-kstatusnotifieritem kde-statusnotifieritem_LIB= libKF${_KDE_VERSION}StatusNotifierItem.so kde-userfeedback_PORT= sysutils/kf6-kuserfeedback kde-userfeedback_LIB= libKF${_KDE_VERSION}UserFeedbackCore.so # ====================== end of frameworks components ========================== # ====================== plasma components ===================================== kde-kpipewire_PORT= audio/plasma${_KDE_VERSION}-kpipewire kde-kpipewire_LIB= libKPipeWire.so kde-activitymanagerd_PORT= x11/plasma${_KDE_VERSION}-kactivitymanagerd kde-activitymanagerd_LIB= libkactivitymanagerd_plugin.so kde-aurorae_PORT= x11-themes/plasma${_KDE_VERSION}-aurorae kde-aurorae_PATH= ${KDE_PREFIX}/lib/libexec/plasma-apply-aurorae kde-breeze_PORT= x11-themes/plasma${_KDE_VERSION}-breeze kde-breeze_PATH= ${KDE_PREFIX}/share/QtCurve/Breeze.qtcurve kde-breeze-gtk_PORT= x11-themes/plasma${_KDE_VERSION}-breeze-gtk kde-breeze-gtk_PATH= ${KDE_PREFIX}/share/themes/Breeze/gtk-2.0/gtkrc kde-decoration_PORT= x11-wm/plasma${_KDE_VERSION}-kdecoration kde-decoration_LIB= libkdecorations3.so kde-discover_PORT= sysutils/plasma${_KDE_VERSION}-discover kde-discover_PATH= ${KDE_PREFIX}/bin/plasma-discover kde-infocenter_PORT= sysutils/plasma${_KDE_VERSION}-kinfocenter kde-infocenter_PATH= ${KDE_PREFIX}/bin/kinfocenter kde-kde-cli-tools_PORT= sysutils/plasma${_KDE_VERSION}-kde-cli-tools kde-kde-cli-tools_PATH= ${KDE_PREFIX}/bin/kde-open kde-kde-gtk-config_PORT= x11-themes/plasma${_KDE_VERSION}-kde-gtk-config kde-kde-gtk-config_PATH= ${KDE_PREFIX}/lib/kconf_update_bin/gtk_theme kde-kdeplasma-addons_PORT= x11-toolkits/plasma${_KDE_VERSION}-kdeplasma-addons kde-kdeplasma-addons_LIB= libplasmapotdprovidercore.so kde-kgamma_PORT= x11/plasma${_KDE_VERSION}-kgamma kde-kgamma_PATH= ${QT_PLUGINDIR}/plasma/kcms/systemsettings_qwidgets/kcm_kgamma.so kde-kmenuedit_PORT= sysutils/plasma${_KDE_VERSION}-kmenuedit kde-kmenuedit_PATH= ${KDE_PREFIX}/bin/kmenuedit kde-kscreen_PORT= x11/plasma${_KDE_VERSION}-kscreen kde-kscreen_PATH= ${KDE_PREFIX}/bin/kscreen-console kde-kscreenlocker_PORT= security/plasma${_KDE_VERSION}-kscreenlocker kde-kscreenlocker_LIB= libKScreenLocker.so kde-ksshaskpass_PORT= security/plasma${_KDE_VERSION}-ksshaskpass kde-ksshaskpass_PATH= ${KDE_PREFIX}/bin/ksshaskpass kde-ksystemstats_PORT= sysutils/plasma${_KDE_VERSION}-ksystemstats kde-ksystemstats_PATH= ${KDE_PREFIX}/bin/ksystemstats kde-kwallet-pam_PORT= security/plasma${_KDE_VERSION}-kwallet-pam kde-kwallet-pam_PATH= ${KDE_PREFIX}/lib/pam_kwallet5.so kde-kwin_PORT= x11-wm/plasma${_KDE_VERSION}-kwin kde-kwin_PATH= ${KDE_PREFIX}/bin/kwin_wayland kde-kwin-x11_PORT= x11-wm/plasma${_KDE_VERSION}-kwin-x11 kde-kwin-x11_PATH= ${KDE_PREFIX}/bin/kwin_x11 kde-kwrited_PORT= devel/plasma${_KDE_VERSION}-kwrited kde-kwrited_PATH= ${QT_PLUGINDIR}/kf${_KDE_VERSION}/kded/kwrited.so kde-libkscreen_PORT= x11/plasma${_KDE_VERSION}-libkscreen kde-libkscreen_LIB= libKF${_KDE_VERSION}Screen.so kde-libksysguard_PORT= sysutils/plasma${_KDE_VERSION}-libksysguard kde-libksysguard_LIB5= libksgrd.so kde-libksysguard_LIB6= libKSysGuardSystemStats.so kde-libksysguard_LIB= ${kde-libksysguard_LIB${_KDE_VERSION}} kde-milou_PORT= deskutils/plasma${_KDE_VERSION}-milou kde-milou_PATH= ${QT_QMLDIR}/org/kde/milou/libmilouqmlplugin.so kde-ocean-sound-theme_PORT= audio/plasma${_KDE_VERSION}-ocean-sound-theme kde-ocean-sound-theme_PATH= ${KDE_PREFIX}/share/sounds/ocean/index.theme kde-ocean-sound-theme_TYPE= run kde-oxygen_PORT= x11-themes/plasma${_KDE_VERSION}-oxygen kde-oxygen_PATH= ${QT_PLUGINDIR}/kstyle_config/kstyle_oxygen_config.so kde-plasma-browser-integration_PORT= www/plasma${_KDE_VERSION}-plasma-browser-integration kde-plasma-browser-integration_PATH= ${KDE_PREFIX}/bin/plasma-browser-integration-host kde-plasma-desktop_PORT= x11/plasma${_KDE_VERSION}-plasma-desktop kde-plasma-desktop_PATH= ${KDE_PREFIX}/bin/kaccess kde-plasma-disks_PORT= sysutils/plasma${_KDE_VERSION}-plasma-disks kde-plasma-disks_PATH= ${KDE_PREFIX}/lib/libexec/kf6/kauth/kded-smart-helper kde-plasma-integration_PORT= x11/plasma${_KDE_VERSION}-plasma-integration kde-plasma-integration_PATH= ${QT_PLUGINDIR}/platformthemes/KDEPlasmaPlatformTheme6.so kde-plasma-pa_PORT= audio/plasma${_KDE_VERSION}-plasma-pa kde-plasma-pa_PATH= ${QT_PLUGINDIR}/plasma/kcms/systemsettings/kcm_pulseaudio.so kde-plasma-sdk_PORT= devel/plasma${_KDE_VERSION}-plasma-sdk kde-plasma-sdk_PATH= ${KDE_PREFIX}/bin/plasmoidviewer kde-plasma-workspace_PORT= x11/plasma${_KDE_VERSION}-plasma-workspace kde-plasma-workspace_LIB= libkworkspace${_KDE_VERSION}.so kde-plasma-workspace-wallpapers_PORT= x11-themes/plasma${_KDE_VERSION}-plasma-workspace-wallpapers kde-plasma-workspace-wallpapers_PATH= ${KDE_PREFIX}/share/wallpapers/Autumn/contents/images/1280x1024.jpg kde-polkit-kde-agent-1_PORT= sysutils/plasma${_KDE_VERSION}-polkit-kde-agent-1 kde-polkit-kde-agent-1_PATH= ${KDE_PREFIX}/lib/libexec/polkit-kde-authentication-agent-1 kde-powerdevil_PORT= sysutils/plasma${_KDE_VERSION}-powerdevil kde-powerdevil_LIB= libpowerdevilcore.so kde-print-manager_PORT= print/plasma${_KDE_VERSION}-print-manager kde-print-manager_PATH= ${KDE_PREFIX}/bin/kde-print-queue kde-print-manager_TYPE= run kde-spectacle_PORT= graphics/plasma${_KDE_VERSION}-spectacle kde-spectacle_PATH= ${KDE_PREFIX}/bin/spectacle kde-spectacle_TYPE= run kde-systemmonitor_PORT= sysutils/plasma${_KDE_VERSION}-plasma-systemmonitor kde-systemmonitor_PATH= ${KDE_PREFIX}/bin/plasma-systemmonitor kde-systemmonitor_TYPE= run kde-systemsettings_PORT= sysutils/plasma${_KDE_VERSION}-systemsettings kde-systemsettings_PATH= ${KDE_PREFIX}/bin/systemsettings kde-xdg-desktop-portal-kde_PORT= deskutils/plasma${_KDE_VERSION}-xdg-desktop-portal-kde kde-xdg-desktop-portal-kde_PATH= ${KDE_PREFIX}/lib/libexec/xdg-desktop-portal-kde kde-plasma5support_PORT= devel/plasma${_KDE_VERSION}-plasma5support kde-plasma5support_LIB= libPlasma5Support.so kde-qqc2-breeze-style_PORT= x11-themes/plasma${_KDE_VERSION}-qqc2-breeze-style kde-qqc2-breeze-style_PATH= ${QT_PLUGINDIR}/kf${_KDE_VERSION}/kirigami/platform/org.kde.breeze.so kde-sddm-kcm_PORT= deskutils/plasma${_KDE_VERSION}-sddm-kcm kde-sddm-kcm_PATH= ${QT_PLUGINDIR}/plasma/kcms/systemsettings/kcm_sddm.so kde-sddm-kcm_TYPE= run kde-kirigami-addons_PORT= x11-toolkits/kirigami-addons-qt${_KDE_VERSION} kde-kirigami-addons_PATH= ${QT_QMLDIR}/org/kde/kirigamiaddons/components/libcomponentsplugin.so kde-globalacceld_PORT= x11/plasma${_KDE_VERSION}-kglobalacceld kde-globalacceld_PATH= ${QT_PLUGINDIR}/org.kde.kglobalacceld.platforms/KGlobalAccelDXcb.so kde-libplasma_PORT= x11/plasma${_KDE_VERSION}-libplasma kde-libplasma_LIB= libPlasma.so # ====================== end of plasma components ============================== # ====================== pim5 components ======================================= kde-akonadicontacts_PORT= net/akonadi-contacts kde-akonadicontacts_LIB= libKPim${_KDE_VERSION}AkonadiContactCore.so kde-akonadiimportwizard_PORT= deskutils/akonadi-import-wizard kde-akonadiimportwizard_LIB= libKPim${_KDE_VERSION}ImportWizard.so kde-akonadimime_PORT= net/akonadi-mime kde-akonadimime_LIB= libKPim${_KDE_VERSION}AkonadiMime.so kde-akonadicalendar_PORT= net/akonadi-calendar kde-akonadicalendar_LIB= libKPim${_KDE_VERSION}AkonadiCalendar.so kde-akonadisearch_PORT= net/akonadi-search kde-akonadisearch_LIB= libKPim${_KDE_VERSION}AkonadiSearchCore.so kde-calendarsupport_PORT= net/calendarsupport kde-calendarsupport_LIB= libKPim${_KDE_VERSION}CalendarSupport.so kde-calendarutils_PORT= net/kcalutils kde-calendarutils_LIB= libKPim${_KDE_VERSION}CalendarUtils.so kde-eventviews_PORT= net/eventviews kde-eventviews_LIB= libKPim${_KDE_VERSION}EventViews.so kde-gapi_PORT= net/libkgapi kde-gapi_LIB= libKPim${_KDE_VERSION}GAPIBlogger.so kde-grantleetheme_PORT= deskutils/grantleetheme kde-grantleetheme_LIB= libKPim${_KDE_VERSION}GrantleeTheme.so kde-gravatar_PORT= net/libgravatar kde-gravatar_LIB= libKPim${_KDE_VERSION}Gravatar.so kde-identitymanagement_PORT= net/kidentitymanagement kde-identitymanagement_LIB= libKPim${_KDE_VERSION}IdentityManagementCore.so kde-imap_PORT= net/kimap kde-imap_LIB= libKPim${_KDE_VERSION}IMAP.so kde-incidenceeditor_PORT= net/incidenceeditor kde-incidenceeditor_LIB= libKPim${_KDE_VERSION}IncidenceEditor.so kde-kdepim-addons_PORT= deskutils/kdepim-addons kde-kdepim-addons_PATH= ${QT_PLUGINDIR}/pim${_KDE_VERSION}/contacteditor/editorpageplugins/cryptopageplugin.so kde-kdepim-runtime_PORT= deskutils/kdepim-runtime kde-kdepim-runtime_PATH= ${KDE_PREFIX}/bin/gidmigrator kde-kitinerary_PORT= net/kitinerary kde-kitinerary_LIB= libKPim${_KDE_VERSION}Itinerary.so kde-kontactinterface_PORT= net/kontactinterface kde-kontactinterface_LIB= libKPim${_KDE_VERSION}KontactInterface.so kde-kpkpass_PORT= security/kpkpass kde-kpkpass_LIB= libKPim${_KDE_VERSION}PkPass.so kde-ksmtp_PORT= net/ksmtp kde-ksmtp_LIB= libKPim${_KDE_VERSION}SMTP.so kde-ldap_PORT= net/kldap kde-ldap_LIB= libKPim${_KDE_VERSION}LdapCore.so kde-libkdepim_PORT= deskutils/libkdepim kde-libkdepim_LIB= libKPim${_KDE_VERSION}Libkdepim.so kde-libkleo_PORT= security/libkleo kde-libkleo_LIB= libKPim${_KDE_VERSION}Libkleo.so kde-libksieve_PORT= net/libksieve kde-libksieve_LIB= libKPim${_KDE_VERSION}KSieve.so kde-mailcommon_PORT= net/mailcommon kde-mailcommon_LIB= libKPim${_KDE_VERSION}MailCommon.so kde-mailimporter_PORT= net/mailimporter kde-mailimporter_LIB= libKPim${_KDE_VERSION}MailImporter.so kde-mailtransport_PORT= net/kmailtransport kde-mailtransport_LIB= libKPim${_KDE_VERSION}MailTransport.so kde-mbox_PORT= net/kmbox kde-mbox_LIB= libKPim${_KDE_VERSION}Mbox.so kde-messagelib_PORT= net/messagelib kde-messagelib_LIB= libKPim${_KDE_VERSION}MessageList.so kde-mime_PORT= net/kmime kde-mime_LIB= libKPim${_KDE_VERSION}Mime.so kde-pimcommon_PORT= net/pimcommon kde-pimcommon_LIB= libKPim${_KDE_VERSION}PimCommon.so kde-pimtextedit_PORT= net/kpimtextedit kde-pimtextedit_LIB= libKPim${_KDE_VERSION}TextEdit.so kde-tnef_PORT= net/ktnef kde-tnef_LIB= libKPim${_KDE_VERSION}Tnef.so kde-ktextaddons_PORT= devel/ktextaddons kde-ktextaddons_LIB= libKF${_KDE_VERSION}TextAutoCorrectionCore.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-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-mimetreeparser_PORT= net/mimetreeparser kde-mimetreeparser_LIB= libKPim${_KDE_VERSION}MimeTreeParserCore.so 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-akonadi_PORT= databases/akonadi kde-akonadi_LIB= libKPim${_KDE_VERSION}AkonadiPrivate.so kde-baloo-widgets_PORT= sysutils/baloo-widgets kde-baloo-widgets_LIB= libKF${_KDE_VERSION}BalooWidgets.so kde-kate_PORT= editors/kate kde-kate_PATH= ${QT_PLUGINDIR}/ktexteditor/katebacktracebrowserplugin.so kde-libkcddb_PORT= audio/libkcddb kde-libkcddb_LIB= libKCddb${_KDE_VERSION}.so kde-libkcompactdisc_PORT= audio/libkcompactdisc kde-libkcompactdisc_LIB= libKF${_KDE_VERSION}CompactDisc.so kde-libkdcraw_PORT= graphics/libkdcraw@qt${_KDE_VERSION} kde-libkdcraw_LIB5= libKF${_KDE_VERSION}KDcraw.so kde-libkdcraw_LIB6= libKDcrawQt${_KDE_VERSION}.so kde-libkdcraw_LIB= ${kde-libkdcraw_LIB${_KDE_VERSION}} kde-libkdegames_PORT= games/libkdegames kde-libkdegames_LIB= libKDEGames${_KDE_VERSION}.so kde-libkeduvocdocument_PORT= misc/libkeduvocdocument kde-libkeduvocdocument_LIB= libKEduVocDocument.so kde-libkexiv2_PORT= graphics/libkexiv2@qt${_KDE_VERSION} kde-libkexiv2_LIB5= libKF${_KDE_VERSION}KExiv2.so kde-libkexiv2_LIB6= libKExiv2Qt${_KDE_VERSION}.so kde-libkexiv2_LIB= ${kde-libkexiv2_LIB${_KDE_VERSION}} kde-libksane_PORT= graphics/libksane kde-libksane_LIB= libKSaneWidgets${_KDE_VERSION}.so kde-marble_PORT= astro/marble kde-marble_LIB= libmarblewidget-qt6.so kde-kpublictransport_PORT= devel/kpublictransport kde-kpublictransport_LIB= libKPublicTransport.so kde-kosm_PORT= astro/kosmindoormap kde-kosm_LIB= libKOSM.so kde-okular_PORT= graphics/okular kde-okular_LIB= libOkular${_KDE_VERSION}Core.so kde-phonon_PORT= multimedia/phonon@${_QT_RELNAME} kde-phonon_LIB= libphonon4${_QT_RELNAME}.so kde-phonon-mpv_PORT= multimedia/phonon-mpv kde-phonon-mpv_PATH= ${QT_PLUGINDIR}/phonon4${_QT_RELNAME}_backend/phonon_mpv_${_QT_RELNAME}.so kde-phonon-mpv_TYPE= run kde-phonon-vlc_PORT= multimedia/phonon-vlc@${_QT_RELNAME} kde-phonon-vlc_PATH= ${QT_PLUGINDIR}/phonon4${_QT_RELNAME}_backend/phonon_vlc_${_QT_RELNAME}.so kde-phonon-vlc_TYPE= run # ====================== end of multiversion components ======================== # 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/plasma6-kpipewire/distinfo b/audio/plasma6-kpipewire/distinfo index 0638ad257c4c..f075eed8e9b0 100644 --- a/audio/plasma6-kpipewire/distinfo +++ b/audio/plasma6-kpipewire/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751380523 -SHA256 (KDE/plasma/6.4.2/kpipewire-6.4.2.tar.xz) = d59f8be954d23ac4b9f3ed28bcc5a22e8aaebeadf51c2834499b7694ca90ce1c -SIZE (KDE/plasma/6.4.2/kpipewire-6.4.2.tar.xz) = 152820 +TIMESTAMP = 1752584136 +SHA256 (KDE/plasma/6.4.3/kpipewire-6.4.3.tar.xz) = 1866d966ce61bb83ed1d45dcc0db1a8ba91971762681368a3357d86438fa9642 +SIZE (KDE/plasma/6.4.3/kpipewire-6.4.3.tar.xz) = 152816 diff --git a/audio/plasma6-ocean-sound-theme/distinfo b/audio/plasma6-ocean-sound-theme/distinfo index c3349e861177..b756b3583069 100644 --- a/audio/plasma6-ocean-sound-theme/distinfo +++ b/audio/plasma6-ocean-sound-theme/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751380525 -SHA256 (KDE/plasma/6.4.2/ocean-sound-theme-6.4.2.tar.xz) = d1b45a1a563f88aea51cc1f63e3a5112084cbcd1f0384394eb8a8d91c5c8a466 -SIZE (KDE/plasma/6.4.2/ocean-sound-theme-6.4.2.tar.xz) = 2128568 +TIMESTAMP = 1752584462 +SHA256 (KDE/plasma/6.4.3/ocean-sound-theme-6.4.3.tar.xz) = b3f8200026ef4be6023795db3d9aff2e4f86ac75d51fc0233ea269ba65428432 +SIZE (KDE/plasma/6.4.3/ocean-sound-theme-6.4.3.tar.xz) = 2128452 diff --git a/audio/plasma6-oxygen-sounds/distinfo b/audio/plasma6-oxygen-sounds/distinfo index aab49a5cfb4a..16f3a2819e35 100644 --- a/audio/plasma6-oxygen-sounds/distinfo +++ b/audio/plasma6-oxygen-sounds/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751380526 -SHA256 (KDE/plasma/6.4.2/oxygen-sounds-6.4.2.tar.xz) = 105085fb42672714280eaf60ccb2f9fde54e8fef3568674abe70b089728f4f7d -SIZE (KDE/plasma/6.4.2/oxygen-sounds-6.4.2.tar.xz) = 1935620 +TIMESTAMP = 1752584213 +SHA256 (KDE/plasma/6.4.3/oxygen-sounds-6.4.3.tar.xz) = 440566f9a84c9ce90e04b561ab97909838b519c83f7deeb574d05c933baf2e2b +SIZE (KDE/plasma/6.4.3/oxygen-sounds-6.4.3.tar.xz) = 1935532 diff --git a/audio/plasma6-plasma-pa/Makefile b/audio/plasma6-plasma-pa/Makefile index 1367c8e2449f..9c82747b2dcb 100644 --- a/audio/plasma6-plasma-pa/Makefile +++ b/audio/plasma6-plasma-pa/Makefile @@ -1,23 +1,24 @@ PORTNAME= plasma-pa DISTVERSION= ${KDE_PLASMA_VERSION} CATEGORIES= audio kde kde-plasma MAINTAINER= kde@FreeBSD.org COMMENT= Plasma applet for audio volume management using PulseAudio LIB_DEPENDS= libcanberra.so:audio/libcanberra \ libpulse.so:audio/pulseaudio \ libKF6PulseAudioQt.so:audio/pulseaudio-qt RUN_DEPENDS= ${LOCALBASE}/share/sounds/freedesktop/index.theme:audio/freedesktop-sound-theme USES= cmake compiler:c++17-lang gettext gl gnome kde:6 pkgconfig \ qt:6 tar:xz USE_KDE= config coreaddons dbusaddons doctools globalaccel i18n \ - kcmutils kdeclarative kirigami-addons libplasma \ + kcmutils kdeclarative kirigami2 libplasma \ statusnotifieritem svg \ - ecm:build + ecm:build \ + itemmodels:run kirigami-addons:run USE_GL= gl opengl USE_GNOME= glib20 USE_QT= base declarative .include diff --git a/audio/plasma6-plasma-pa/distinfo b/audio/plasma6-plasma-pa/distinfo index 0c2afb89b696..d055a8039b57 100644 --- a/audio/plasma6-plasma-pa/distinfo +++ b/audio/plasma6-plasma-pa/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751380529 -SHA256 (KDE/plasma/6.4.2/plasma-pa-6.4.2.tar.xz) = 57d71d404ad79e86dc101e28e7e83b8f4c6dbd825be1db22f29af81a2da2cd45 -SIZE (KDE/plasma/6.4.2/plasma-pa-6.4.2.tar.xz) = 196692 +TIMESTAMP = 1752584216 +SHA256 (KDE/plasma/6.4.3/plasma-pa-6.4.3.tar.xz) = 6b0e3d3ab469cf86fc18d211fcbf41251aa33a3014a32b77ec41905fd2fa4e21 +SIZE (KDE/plasma/6.4.3/plasma-pa-6.4.3.tar.xz) = 196748 diff --git a/deskutils/plasma6-milou/distinfo b/deskutils/plasma6-milou/distinfo index b03936585210..36d5453ecec7 100644 --- a/deskutils/plasma6-milou/distinfo +++ b/deskutils/plasma6-milou/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751380530 -SHA256 (KDE/plasma/6.4.2/milou-6.4.2.tar.xz) = b2657a23559a1bff85ab30b6b2f5d2e1a9c1499ed0af095ada83ad85bcb5a5a6 -SIZE (KDE/plasma/6.4.2/milou-6.4.2.tar.xz) = 50128 +TIMESTAMP = 1752584465 +SHA256 (KDE/plasma/6.4.3/milou-6.4.3.tar.xz) = d679c95b62aeb8149bd368af1d831fee79ebaaac3ee479da67c450e80fd35ff1 +SIZE (KDE/plasma/6.4.3/milou-6.4.3.tar.xz) = 50152 diff --git a/deskutils/plasma6-sddm-kcm/distinfo b/deskutils/plasma6-sddm-kcm/distinfo index 7f78adba9f0f..b132ca4095bb 100644 --- a/deskutils/plasma6-sddm-kcm/distinfo +++ b/deskutils/plasma6-sddm-kcm/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751380530 -SHA256 (KDE/plasma/6.4.2/sddm-kcm-6.4.2.tar.xz) = f7cf05ddc7e2c7633bd9e29a5fddafa6e08607d6b2034769a8f4974c8ba847cf -SIZE (KDE/plasma/6.4.2/sddm-kcm-6.4.2.tar.xz) = 103512 +TIMESTAMP = 1752584465 +SHA256 (KDE/plasma/6.4.3/sddm-kcm-6.4.3.tar.xz) = 5314123ac55388f7015621639b8d8367cc829ecef25356889298d6be548f8cf6 +SIZE (KDE/plasma/6.4.3/sddm-kcm-6.4.3.tar.xz) = 103564 diff --git a/deskutils/plasma6-xdg-desktop-portal-kde/distinfo b/deskutils/plasma6-xdg-desktop-portal-kde/distinfo index 1cb47d5a7b2d..0ab9fcd62048 100644 --- a/deskutils/plasma6-xdg-desktop-portal-kde/distinfo +++ b/deskutils/plasma6-xdg-desktop-portal-kde/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751380531 -SHA256 (KDE/plasma/6.4.2/xdg-desktop-portal-kde-6.4.2.tar.xz) = 2b674807d2a784937a0bcef0271395ad85a35475253ba9f18aba2d76d8330a53 -SIZE (KDE/plasma/6.4.2/xdg-desktop-portal-kde-6.4.2.tar.xz) = 202640 +TIMESTAMP = 1752584465 +SHA256 (KDE/plasma/6.4.3/xdg-desktop-portal-kde-6.4.3.tar.xz) = 3fec71e005abe83b3d593a74bc3304c178d605883fe3b77f915c64cf45c1fc27 +SIZE (KDE/plasma/6.4.3/xdg-desktop-portal-kde-6.4.3.tar.xz) = 202680 diff --git a/devel/plasma6-kwrited/distinfo b/devel/plasma6-kwrited/distinfo index ed4fcbc7d9fb..de862e93a8a5 100644 --- a/devel/plasma6-kwrited/distinfo +++ b/devel/plasma6-kwrited/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751380532 -SHA256 (KDE/plasma/6.4.2/kwrited-6.4.2.tar.xz) = db97dc6de45c35fc1463a9107bfd25627524de7c1c004434512da7696bcf9961 -SIZE (KDE/plasma/6.4.2/kwrited-6.4.2.tar.xz) = 23648 +TIMESTAMP = 1752584465 +SHA256 (KDE/plasma/6.4.3/kwrited-6.4.3.tar.xz) = fe144b5ed4270cbd45f71187b970e4c4e3e0035c1afc40719b1c862b8adb098b +SIZE (KDE/plasma/6.4.3/kwrited-6.4.3.tar.xz) = 23652 diff --git a/devel/plasma6-plasma-sdk/distinfo b/devel/plasma6-plasma-sdk/distinfo index dcd673b3c738..49c63f504f6e 100644 --- a/devel/plasma6-plasma-sdk/distinfo +++ b/devel/plasma6-plasma-sdk/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751380533 -SHA256 (KDE/plasma/6.4.2/plasma-sdk-6.4.2.tar.xz) = e7f0e26269d6c4f2392d85a1b68598edd1fd4c071165b7a25a496fdbe5a039e1 -SIZE (KDE/plasma/6.4.2/plasma-sdk-6.4.2.tar.xz) = 360092 +TIMESTAMP = 1752584466 +SHA256 (KDE/plasma/6.4.3/plasma-sdk-6.4.3.tar.xz) = 9b7ce36459b3f2cd91bbe0941ada3ebb38eff0149939c59dab2d0b0d3928c064 +SIZE (KDE/plasma/6.4.3/plasma-sdk-6.4.3.tar.xz) = 359996 diff --git a/devel/plasma6-plasma5support/Makefile b/devel/plasma6-plasma5support/Makefile index e13f7bfb3cc4..871802aaa585 100644 --- a/devel/plasma6-plasma5support/Makefile +++ b/devel/plasma6-plasma5support/Makefile @@ -1,16 +1,18 @@ PORTNAME= plasma5support DISTVERSION= ${KDE_PLASMA_VERSION} CATEGORIES= devel kde kde-plasma MAINTAINER= kde@FreeBSD.org COMMENT= Support components for porting from KF5/Qt5 to KF6/Qt6 USES= cmake gettext gl kde:6 qt:6 tar:xz USE_GL= gl opengl USE_KDE= colorscheme completion config configwidgets coreaddons i18n \ idletime jobwidgets kio libksysguard libplasma package \ service solid widgetsaddons xmlgui \ ecm:build USE_QT= base declarative +CMAKE_ON= CMAKE_DISABLE_FIND_PACKAGE_KF6NetworkManagerQt + .include diff --git a/devel/plasma6-plasma5support/distinfo b/devel/plasma6-plasma5support/distinfo index d187d98e2064..889db701722a 100644 --- a/devel/plasma6-plasma5support/distinfo +++ b/devel/plasma6-plasma5support/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751380534 -SHA256 (KDE/plasma/6.4.2/plasma5support-6.4.2.tar.xz) = 24a07ceff083a6a7a2d9b4152812549050623c434ef7319109963085a114aef2 -SIZE (KDE/plasma/6.4.2/plasma5support-6.4.2.tar.xz) = 228456 +TIMESTAMP = 1752584466 +SHA256 (KDE/plasma/6.4.3/plasma5support-6.4.3.tar.xz) = 1e89a8935d18d98a8fcbe02ff3477489385bb42a804e543bbb24f043f5cd8cf6 +SIZE (KDE/plasma/6.4.3/plasma5support-6.4.3.tar.xz) = 228404 diff --git a/graphics/plasma6-spectacle/distinfo b/graphics/plasma6-spectacle/distinfo index 30d02b344cc8..fe2bcbf43d46 100644 --- a/graphics/plasma6-spectacle/distinfo +++ b/graphics/plasma6-spectacle/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751380537 -SHA256 (KDE/plasma/6.4.2/spectacle-6.4.2.tar.xz) = 18b1d0b7e26680666eb86a2b0908c36d9e17a498b352944d89b901183920e0cb -SIZE (KDE/plasma/6.4.2/spectacle-6.4.2.tar.xz) = 1598176 +TIMESTAMP = 1752584468 +SHA256 (KDE/plasma/6.4.3/spectacle-6.4.3.tar.xz) = 9986fc091f913a3f0e1520bd8b3a33e9c174e03f48b4b2af3192bd8a31bb29d8 +SIZE (KDE/plasma/6.4.3/spectacle-6.4.3.tar.xz) = 1598408 diff --git a/print/plasma6-print-manager/distinfo b/print/plasma6-print-manager/distinfo index fd6e990f595b..e2e7004cd2cb 100644 --- a/print/plasma6-print-manager/distinfo +++ b/print/plasma6-print-manager/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751380540 -SHA256 (KDE/plasma/6.4.2/print-manager-6.4.2.tar.xz) = 6eb93e00065ade17137ff6b4aeec48865b5149bcfc25f7f9c593df4d1a1668bd -SIZE (KDE/plasma/6.4.2/print-manager-6.4.2.tar.xz) = 370740 +TIMESTAMP = 1752584471 +SHA256 (KDE/plasma/6.4.3/print-manager-6.4.3.tar.xz) = fdfd7fe3686d937e75c28a4cb901b93f4fa289677ef2eca94a50d83553a32d34 +SIZE (KDE/plasma/6.4.3/print-manager-6.4.3.tar.xz) = 370728 diff --git a/security/plasma6-kscreenlocker/distinfo b/security/plasma6-kscreenlocker/distinfo index b29b38d6d151..cd888278e07e 100644 --- a/security/plasma6-kscreenlocker/distinfo +++ b/security/plasma6-kscreenlocker/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751380541 -SHA256 (KDE/plasma/6.4.2/kscreenlocker-6.4.2.tar.xz) = ef2bc8c2f1f0df75c67778c4208a5ee02c0546356ef8352dd1ffdee867283cc4 -SIZE (KDE/plasma/6.4.2/kscreenlocker-6.4.2.tar.xz) = 183732 +TIMESTAMP = 1752584471 +SHA256 (KDE/plasma/6.4.3/kscreenlocker-6.4.3.tar.xz) = 3441174426fd18524ca59fa2246f9ee99c31dec0fd89eaa79705e6a32d1dcac3 +SIZE (KDE/plasma/6.4.3/kscreenlocker-6.4.3.tar.xz) = 183744 diff --git a/security/plasma6-ksshaskpass/distinfo b/security/plasma6-ksshaskpass/distinfo index 87b4a2ee1759..85e6bb88f3e3 100644 --- a/security/plasma6-ksshaskpass/distinfo +++ b/security/plasma6-ksshaskpass/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751380542 -SHA256 (KDE/plasma/6.4.2/ksshaskpass-6.4.2.tar.xz) = 6ef3811239c2ec505859f6c483927d6d69a59fbd8d6da41b385a977c231efffc -SIZE (KDE/plasma/6.4.2/ksshaskpass-6.4.2.tar.xz) = 30792 +TIMESTAMP = 1752584472 +SHA256 (KDE/plasma/6.4.3/ksshaskpass-6.4.3.tar.xz) = 965f89a01aa91c07ed5b8aed2be3521f88e98b22e1277846f12440c9760baf10 +SIZE (KDE/plasma/6.4.3/ksshaskpass-6.4.3.tar.xz) = 30796 diff --git a/security/plasma6-kwallet-pam/distinfo b/security/plasma6-kwallet-pam/distinfo index 3eb96bb2863b..2311ddd3d4b4 100644 --- a/security/plasma6-kwallet-pam/distinfo +++ b/security/plasma6-kwallet-pam/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751380542 -SHA256 (KDE/plasma/6.4.2/kwallet-pam-6.4.2.tar.xz) = fc5578ae860d74ce7695cf0b561a72bcf4730636694d8debfc10c85e97296ae9 -SIZE (KDE/plasma/6.4.2/kwallet-pam-6.4.2.tar.xz) = 22396 +TIMESTAMP = 1752584472 +SHA256 (KDE/plasma/6.4.3/kwallet-pam-6.4.3.tar.xz) = 08151ca03e7b8a8e7696927e3aadc3095cf48081748c983798dac35ab5fd0cde +SIZE (KDE/plasma/6.4.3/kwallet-pam-6.4.3.tar.xz) = 22396 diff --git a/sysutils/plasma6-discover/distinfo b/sysutils/plasma6-discover/distinfo index c6598e5274ef..751b3c8fa639 100644 --- a/sysutils/plasma6-discover/distinfo +++ b/sysutils/plasma6-discover/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751380546 -SHA256 (KDE/plasma/6.4.2/discover-6.4.2.tar.xz) = f1ddb51bcdd9815dc222c02d299424924da541b3a91a2cbf9727bd1b20dbd515 -SIZE (KDE/plasma/6.4.2/discover-6.4.2.tar.xz) = 1110056 +TIMESTAMP = 1752584474 +SHA256 (KDE/plasma/6.4.3/discover-6.4.3.tar.xz) = c2dd8238aaa8c801a12c6f29d70f24467bad59209c5fc8fae97cbbbac45dde10 +SIZE (KDE/plasma/6.4.3/discover-6.4.3.tar.xz) = 1109876 diff --git a/sysutils/plasma6-kde-cli-tools/distinfo b/sysutils/plasma6-kde-cli-tools/distinfo index d35a2d8300ff..1704c9e713e7 100644 --- a/sysutils/plasma6-kde-cli-tools/distinfo +++ b/sysutils/plasma6-kde-cli-tools/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751380547 -SHA256 (KDE/plasma/6.4.2/kde-cli-tools-6.4.2.tar.xz) = f622615044d5231a9ac933496a509b45a679e2f4f76ab9541daf19a0fedcefaa -SIZE (KDE/plasma/6.4.2/kde-cli-tools-6.4.2.tar.xz) = 638552 +TIMESTAMP = 1752584475 +SHA256 (KDE/plasma/6.4.3/kde-cli-tools-6.4.3.tar.xz) = d54cc42f8c955ef8322976655a1ed003cca24b42c1a8f517bc1c27ce17af6e28 +SIZE (KDE/plasma/6.4.3/kde-cli-tools-6.4.3.tar.xz) = 638520 diff --git a/sysutils/plasma6-kinfocenter/distinfo b/sysutils/plasma6-kinfocenter/distinfo index ad8459ff8233..b665bc59ba71 100644 --- a/sysutils/plasma6-kinfocenter/distinfo +++ b/sysutils/plasma6-kinfocenter/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751380547 -SHA256 (KDE/plasma/6.4.2/kinfocenter-6.4.2.tar.xz) = 1d25ffed7904bdb7ae4d2ff56d4173b48a15384cb970a78a145127866dd199da -SIZE (KDE/plasma/6.4.2/kinfocenter-6.4.2.tar.xz) = 758388 +TIMESTAMP = 1752584475 +SHA256 (KDE/plasma/6.4.3/kinfocenter-6.4.3.tar.xz) = 4d5f499470772a74b4f229f676feb7aefd12ec2b2d36458b8483d8dca3a48a79 +SIZE (KDE/plasma/6.4.3/kinfocenter-6.4.3.tar.xz) = 758404 diff --git a/sysutils/plasma6-kmenuedit/distinfo b/sysutils/plasma6-kmenuedit/distinfo index 17a87aa70d8e..a8d8ea8b1668 100644 --- a/sysutils/plasma6-kmenuedit/distinfo +++ b/sysutils/plasma6-kmenuedit/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751380548 -SHA256 (KDE/plasma/6.4.2/kmenuedit-6.4.2.tar.xz) = a00fd850300ff08b17bd9a52ec19e8f69822344efda17734e8655a1cbeaa352b -SIZE (KDE/plasma/6.4.2/kmenuedit-6.4.2.tar.xz) = 884860 +TIMESTAMP = 1752584475 +SHA256 (KDE/plasma/6.4.3/kmenuedit-6.4.3.tar.xz) = 94fb26effce185240a88f82bbf756a6b3b6f0a2d0556529c4a27a7f62aa79c89 +SIZE (KDE/plasma/6.4.3/kmenuedit-6.4.3.tar.xz) = 884860 diff --git a/sysutils/plasma6-ksystemstats/Makefile b/sysutils/plasma6-ksystemstats/Makefile index 94f267cd8a94..46fc36be79c1 100644 --- a/sysutils/plasma6-ksystemstats/Makefile +++ b/sysutils/plasma6-ksystemstats/Makefile @@ -1,16 +1,18 @@ PORTNAME= ksystemstats DISTVERSION= ${KDE_PLASMA_VERSION} CATEGORIES= sysutils kde kde-plasma MAINTAINER= kde@FreeBSD.org COMMENT= Plugin based system monitoring daemon LIB_DEPENDS= libudev.so:devel/libudev-devd USES= cmake gettext gl kde:6 qt:6 tar:xz USE_GL= gl opengl USE_KDE= coreaddons dbusaddons i18n kio libksysguard solid \ ecm:build USE_QT= base +CMAKE_ON= CMAKE_DISABLE_FIND_PACKAGE_KF6NetworkManagerQt + .include diff --git a/sysutils/plasma6-ksystemstats/distinfo b/sysutils/plasma6-ksystemstats/distinfo index ffe08e5d7c34..7bc9f8c630c6 100644 --- a/sysutils/plasma6-ksystemstats/distinfo +++ b/sysutils/plasma6-ksystemstats/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751380549 -SHA256 (KDE/plasma/6.4.2/ksystemstats-6.4.2.tar.xz) = 516134ecc8ac46c7bcf099d57d8889e856cccf1a361275a0d32c66cd2f65c124 -SIZE (KDE/plasma/6.4.2/ksystemstats-6.4.2.tar.xz) = 156612 +TIMESTAMP = 1752584475 +SHA256 (KDE/plasma/6.4.3/ksystemstats-6.4.3.tar.xz) = 0d1bdb518fd723555110f8dc4ed9b509b03b267e40cc2d709587af2c4ce8da0c +SIZE (KDE/plasma/6.4.3/ksystemstats-6.4.3.tar.xz) = 156520 diff --git a/sysutils/plasma6-libksysguard/distinfo b/sysutils/plasma6-libksysguard/distinfo index b4dd6dbb73a0..97b35976b800 100644 --- a/sysutils/plasma6-libksysguard/distinfo +++ b/sysutils/plasma6-libksysguard/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751380550 -SHA256 (KDE/plasma/6.4.2/libksysguard-6.4.2.tar.xz) = e571d84cdb0ba5c3de3c269b34a2766b294c523370ba2cb78d6f4e52a3bb47d9 -SIZE (KDE/plasma/6.4.2/libksysguard-6.4.2.tar.xz) = 334072 +TIMESTAMP = 1752584476 +SHA256 (KDE/plasma/6.4.3/libksysguard-6.4.3.tar.xz) = 57a353315fd20b0e466ee399d8ec6af9e7b574328311fa8717731267beb732e2 +SIZE (KDE/plasma/6.4.3/libksysguard-6.4.3.tar.xz) = 334260 diff --git a/sysutils/plasma6-plasma-disks/distinfo b/sysutils/plasma6-plasma-disks/distinfo index 5e2527364361..12d005ebfc3d 100644 --- a/sysutils/plasma6-plasma-disks/distinfo +++ b/sysutils/plasma6-plasma-disks/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751380551 -SHA256 (KDE/plasma/6.4.2/plasma-disks-6.4.2.tar.xz) = 719bcc150a46252b0ef164f909510b38c62eb0db11af16156c1d026f33465ad9 -SIZE (KDE/plasma/6.4.2/plasma-disks-6.4.2.tar.xz) = 105228 +TIMESTAMP = 1752584476 +SHA256 (KDE/plasma/6.4.3/plasma-disks-6.4.3.tar.xz) = bd6e63475642afe7222862d72d454cd9ca6c7f391f481c2b145c2ab79346c213 +SIZE (KDE/plasma/6.4.3/plasma-disks-6.4.3.tar.xz) = 105204 diff --git a/sysutils/plasma6-plasma-systemmonitor/distinfo b/sysutils/plasma6-plasma-systemmonitor/distinfo index 4a4aeccac728..0053c2fe8bc4 100644 --- a/sysutils/plasma6-plasma-systemmonitor/distinfo +++ b/sysutils/plasma6-plasma-systemmonitor/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751380552 -SHA256 (KDE/plasma/6.4.2/plasma-systemmonitor-6.4.2.tar.xz) = a4866160dbdc56fa7b85f48e632643b82d6d36674c754f9969fceadd6f3ea538 -SIZE (KDE/plasma/6.4.2/plasma-systemmonitor-6.4.2.tar.xz) = 217084 +TIMESTAMP = 1752584477 +SHA256 (KDE/plasma/6.4.3/plasma-systemmonitor-6.4.3.tar.xz) = 6856e399265526332ee9389fbcf819d3d07a0ea2ed4567d545ae088e4895d230 +SIZE (KDE/plasma/6.4.3/plasma-systemmonitor-6.4.3.tar.xz) = 217036 diff --git a/sysutils/plasma6-polkit-kde-agent-1/distinfo b/sysutils/plasma6-polkit-kde-agent-1/distinfo index 32fc33d3e794..9b7faec60f3c 100644 --- a/sysutils/plasma6-polkit-kde-agent-1/distinfo +++ b/sysutils/plasma6-polkit-kde-agent-1/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751380553 -SHA256 (KDE/plasma/6.4.2/polkit-kde-agent-1-6.4.2.tar.xz) = 2aafae6b4d048018c398f49a15ff987219831aee22fec54d08f2078634170f9a -SIZE (KDE/plasma/6.4.2/polkit-kde-agent-1-6.4.2.tar.xz) = 57576 +TIMESTAMP = 1752584477 +SHA256 (KDE/plasma/6.4.3/polkit-kde-agent-1-6.4.3.tar.xz) = 22731b0fa02e9fdcbd5926a3c5386100f20acd7a0263967216579b08445682e7 +SIZE (KDE/plasma/6.4.3/polkit-kde-agent-1-6.4.3.tar.xz) = 57604 diff --git a/sysutils/plasma6-powerdevil/distinfo b/sysutils/plasma6-powerdevil/distinfo index f566598914b5..17ebf5e2e04f 100644 --- a/sysutils/plasma6-powerdevil/distinfo +++ b/sysutils/plasma6-powerdevil/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751380554 -SHA256 (KDE/plasma/6.4.2/powerdevil-6.4.2.tar.xz) = cbf89f25efc8cb87c47c52eb575781b236a353796f73172a43b88d441662c6c5 -SIZE (KDE/plasma/6.4.2/powerdevil-6.4.2.tar.xz) = 1229252 +TIMESTAMP = 1752584478 +SHA256 (KDE/plasma/6.4.3/powerdevil-6.4.3.tar.xz) = c247d0c414905de09f1c0133028481fb0f1ecfa26d89372acefaffab15052bd6 +SIZE (KDE/plasma/6.4.3/powerdevil-6.4.3.tar.xz) = 1229460 diff --git a/sysutils/plasma6-systemsettings/distinfo b/sysutils/plasma6-systemsettings/distinfo index 7aeca2f576f2..dc5b69881098 100644 --- a/sysutils/plasma6-systemsettings/distinfo +++ b/sysutils/plasma6-systemsettings/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751380555 -SHA256 (KDE/plasma/6.4.2/systemsettings-6.4.2.tar.xz) = bc56680aed6da67dea026a0bc60574c3f3a5cfab3993131923b698d28102d60b -SIZE (KDE/plasma/6.4.2/systemsettings-6.4.2.tar.xz) = 219364 +TIMESTAMP = 1752584478 +SHA256 (KDE/plasma/6.4.3/systemsettings-6.4.3.tar.xz) = cc1cdcd710f3f5fd242486edca94d7193d45db417803ed629ac7627eb2305556 +SIZE (KDE/plasma/6.4.3/systemsettings-6.4.3.tar.xz) = 219396 diff --git a/www/plasma6-plasma-browser-integration/distinfo b/www/plasma6-plasma-browser-integration/distinfo index bb44ca4e5391..a0fef1baca0b 100644 --- a/www/plasma6-plasma-browser-integration/distinfo +++ b/www/plasma6-plasma-browser-integration/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751380555 -SHA256 (KDE/plasma/6.4.2/plasma-browser-integration-6.4.2.tar.xz) = cb85b959a81109bf2aa82f75829b0e1833c9b4c06b8819c304f7ca5e320f154b -SIZE (KDE/plasma/6.4.2/plasma-browser-integration-6.4.2.tar.xz) = 233000 +TIMESTAMP = 1752584478 +SHA256 (KDE/plasma/6.4.3/plasma-browser-integration-6.4.3.tar.xz) = 58cce717ab4ec3ae9418be05e867c2c83d23286d1dc68f2650cea18b3179abcb +SIZE (KDE/plasma/6.4.3/plasma-browser-integration-6.4.3.tar.xz) = 233044 diff --git a/x11-themes/plasma6-aurorae/distinfo b/x11-themes/plasma6-aurorae/distinfo index 27786402f3ac..585c11c574c6 100644 --- a/x11-themes/plasma6-aurorae/distinfo +++ b/x11-themes/plasma6-aurorae/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751380556 -SHA256 (KDE/plasma/6.4.2/aurorae-6.4.2.tar.xz) = 9d88ceb67308b4093c6a2b27133e808f974cf9731447facef72ee13b5f424d51 -SIZE (KDE/plasma/6.4.2/aurorae-6.4.2.tar.xz) = 56536 +TIMESTAMP = 1752584478 +SHA256 (KDE/plasma/6.4.3/aurorae-6.4.3.tar.xz) = a53321c98a8181fe5e93cf5c87beaac60918c3280ddd983426306dfae700944f +SIZE (KDE/plasma/6.4.3/aurorae-6.4.3.tar.xz) = 56540 diff --git a/x11-themes/plasma6-breeze-gtk/distinfo b/x11-themes/plasma6-breeze-gtk/distinfo index 17a7e8785216..5be8dabd956c 100644 --- a/x11-themes/plasma6-breeze-gtk/distinfo +++ b/x11-themes/plasma6-breeze-gtk/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751380560 -SHA256 (KDE/plasma/6.4.2/breeze-gtk-6.4.2.tar.xz) = 48e5b52a95176461a53bd53b3fe9513c4c9c27155cad6f8830c78bcc403cb68d -SIZE (KDE/plasma/6.4.2/breeze-gtk-6.4.2.tar.xz) = 40772 +TIMESTAMP = 1752584479 +SHA256 (KDE/plasma/6.4.3/breeze-gtk-6.4.3.tar.xz) = db91ad2a462596bc715d3091b09e86c79da0060a13c6a0de1b0324ef060ee803 +SIZE (KDE/plasma/6.4.3/breeze-gtk-6.4.3.tar.xz) = 40756 diff --git a/x11-themes/plasma6-breeze/distinfo b/x11-themes/plasma6-breeze/distinfo index 9ef201619a44..c052a936eddb 100644 --- a/x11-themes/plasma6-breeze/distinfo +++ b/x11-themes/plasma6-breeze/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751380559 -SHA256 (KDE/plasma/6.4.2/breeze-6.4.2.tar.xz) = 4607ab451d0d15f0d0815243d07fd5f5709985f7eb2bef1bf4ca1691b470aab5 -SIZE (KDE/plasma/6.4.2/breeze-6.4.2.tar.xz) = 42559436 +TIMESTAMP = 1752584479 +SHA256 (KDE/plasma/6.4.3/breeze-6.4.3.tar.xz) = 017a2dadf803a0c2d167489f5ba4d2a0011fc58fcf18c5e76fa6fc22f4844fbf +SIZE (KDE/plasma/6.4.3/breeze-6.4.3.tar.xz) = 42559664 diff --git a/x11-themes/plasma6-kde-gtk-config/distinfo b/x11-themes/plasma6-kde-gtk-config/distinfo index 59fd29c59a43..27aea8ec5028 100644 --- a/x11-themes/plasma6-kde-gtk-config/distinfo +++ b/x11-themes/plasma6-kde-gtk-config/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751380560 -SHA256 (KDE/plasma/6.4.2/kde-gtk-config-6.4.2.tar.xz) = 6fa5d6a045f47916919bdc18f1e2714763f05e620eb5a263a8ca94d707952154 -SIZE (KDE/plasma/6.4.2/kde-gtk-config-6.4.2.tar.xz) = 79044 +TIMESTAMP = 1752584479 +SHA256 (KDE/plasma/6.4.3/kde-gtk-config-6.4.3.tar.xz) = 22f72253bc801bb1757b7d56ab36bb279c1a1255ef888cadc950c5b2559b5912 +SIZE (KDE/plasma/6.4.3/kde-gtk-config-6.4.3.tar.xz) = 79036 diff --git a/x11-themes/plasma6-oxygen/distinfo b/x11-themes/plasma6-oxygen/distinfo index 7fac8422d23f..250ae9b713fe 100644 --- a/x11-themes/plasma6-oxygen/distinfo +++ b/x11-themes/plasma6-oxygen/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751380562 -SHA256 (KDE/plasma/6.4.2/oxygen-6.4.2.tar.xz) = 8bbd01e0fe5c00a31cc93fb7bb9f3cadf80e9fe8b0ce442dba924e1102f67ffa -SIZE (KDE/plasma/6.4.2/oxygen-6.4.2.tar.xz) = 2955672 +TIMESTAMP = 1752584480 +SHA256 (KDE/plasma/6.4.3/oxygen-6.4.3.tar.xz) = 7fe55d35db7e1ac019bac85b55d5026dcf99c1f4bbf18e5aef38a75bc01dcf68 +SIZE (KDE/plasma/6.4.3/oxygen-6.4.3.tar.xz) = 2954564 diff --git a/x11-themes/plasma6-plasma-workspace-wallpapers/distinfo b/x11-themes/plasma6-plasma-workspace-wallpapers/distinfo index 597c23ccda8c..ba4ebc7fd2df 100644 --- a/x11-themes/plasma6-plasma-workspace-wallpapers/distinfo +++ b/x11-themes/plasma6-plasma-workspace-wallpapers/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751380625 -SHA256 (KDE/plasma/6.4.2/plasma-workspace-wallpapers-6.4.2.tar.xz) = d3a89596f3761d6276c0cbc268f7ab8eb72386182f8d3568be9bc3cb76c19b7f -SIZE (KDE/plasma/6.4.2/plasma-workspace-wallpapers-6.4.2.tar.xz) = 146653808 +TIMESTAMP = 1752584480 +SHA256 (KDE/plasma/6.4.3/plasma-workspace-wallpapers-6.4.3.tar.xz) = f5d21dabb54edb4483b578a1a7e7e82f0e71fcad974bef24412134d4d43ac9c4 +SIZE (KDE/plasma/6.4.3/plasma-workspace-wallpapers-6.4.3.tar.xz) = 146653920 diff --git a/x11-themes/plasma6-qqc2-breeze-style/distinfo b/x11-themes/plasma6-qqc2-breeze-style/distinfo index f4abd43d9079..511120e8cd51 100644 --- a/x11-themes/plasma6-qqc2-breeze-style/distinfo +++ b/x11-themes/plasma6-qqc2-breeze-style/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751380626 -SHA256 (KDE/plasma/6.4.2/qqc2-breeze-style-6.4.2.tar.xz) = 36e05b1b227b5b659b8b0b886dc34dfec21b09925bef4ec3e71ef28325c6ec89 -SIZE (KDE/plasma/6.4.2/qqc2-breeze-style-6.4.2.tar.xz) = 66312 +TIMESTAMP = 1752584481 +SHA256 (KDE/plasma/6.4.3/qqc2-breeze-style-6.4.3.tar.xz) = 3c6cad740b03133a7085e437d0cb16aceabde280c55c022b0272ef44d3d323a0 +SIZE (KDE/plasma/6.4.3/qqc2-breeze-style-6.4.3.tar.xz) = 66320 diff --git a/x11-toolkits/plasma6-kdeplasma-addons/distinfo b/x11-toolkits/plasma6-kdeplasma-addons/distinfo index 1a77f8226640..107f8732c9eb 100644 --- a/x11-toolkits/plasma6-kdeplasma-addons/distinfo +++ b/x11-toolkits/plasma6-kdeplasma-addons/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751380627 -SHA256 (KDE/plasma/6.4.2/kdeplasma-addons-6.4.2.tar.xz) = dddf85b728df804ea39e02452e355ced196b1a35eb8e9d9d71b747f89cc166c1 -SIZE (KDE/plasma/6.4.2/kdeplasma-addons-6.4.2.tar.xz) = 940224 +TIMESTAMP = 1752584481 +SHA256 (KDE/plasma/6.4.3/kdeplasma-addons-6.4.3.tar.xz) = 7dad9176fee99f4e95f6573aab18326eeff6742609e8739b9b59c2e9f2aad19b +SIZE (KDE/plasma/6.4.3/kdeplasma-addons-6.4.3.tar.xz) = 940188 diff --git a/x11-wm/plasma6-kdecoration/distinfo b/x11-wm/plasma6-kdecoration/distinfo index a0d0068557d9..5d3bdb61c8cc 100644 --- a/x11-wm/plasma6-kdecoration/distinfo +++ b/x11-wm/plasma6-kdecoration/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751380628 -SHA256 (KDE/plasma/6.4.2/kdecoration-6.4.2.tar.xz) = d7abe73dc0930453f197b7a022fc193cd112c254af29c72f316abfe75ee75f33 -SIZE (KDE/plasma/6.4.2/kdecoration-6.4.2.tar.xz) = 57852 +TIMESTAMP = 1752584481 +SHA256 (KDE/plasma/6.4.3/kdecoration-6.4.3.tar.xz) = bd0f99bdf487a859da8b1227e3443259ad28e90f110bd3a7bcecc386fded7824 +SIZE (KDE/plasma/6.4.3/kdecoration-6.4.3.tar.xz) = 57828 diff --git a/x11-wm/plasma6-kwin-x11/distinfo b/x11-wm/plasma6-kwin-x11/distinfo index ed7e575dd5d5..c1e6d9205219 100644 --- a/x11-wm/plasma6-kwin-x11/distinfo +++ b/x11-wm/plasma6-kwin-x11/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751380631 -SHA256 (KDE/plasma/6.4.2/kwin-x11-6.4.2.tar.xz) = 6edfb204a1ab9af991bf057ae376c12595170d591d0801674bba64148d452c23 -SIZE (KDE/plasma/6.4.2/kwin-x11-6.4.2.tar.xz) = 6861736 +TIMESTAMP = 1752584482 +SHA256 (KDE/plasma/6.4.3/kwin-x11-6.4.3.tar.xz) = 4f2b60193967c24a067b9dda82d59f811f5663f5783d59e03424fc0281ccd188 +SIZE (KDE/plasma/6.4.3/kwin-x11-6.4.3.tar.xz) = 6859700 diff --git a/x11-wm/plasma6-kwin/distinfo b/x11-wm/plasma6-kwin/distinfo index 6736c3a2dd41..b043d014eaa0 100644 --- a/x11-wm/plasma6-kwin/distinfo +++ b/x11-wm/plasma6-kwin/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751380629 -SHA256 (KDE/plasma/6.4.2/kwin-6.4.2.tar.xz) = 1cb00c603bb010d450e08be27439418be659940e885a90ac4e2f5bc61ae3b71b -SIZE (KDE/plasma/6.4.2/kwin-6.4.2.tar.xz) = 8763784 +TIMESTAMP = 1752584482 +SHA256 (KDE/plasma/6.4.3/kwin-6.4.3.tar.xz) = a13568c918eca7803eb44a3a2778b860edc3f03b36797851c4f3aeeed4b502a8 +SIZE (KDE/plasma/6.4.3/kwin-6.4.3.tar.xz) = 8763908 diff --git a/x11-wm/plasma6-kwin/pkg-plist b/x11-wm/plasma6-kwin/pkg-plist index 27dbd2d459d5..3bfa1f6a08f2 100644 --- a/x11-wm/plasma6-kwin/pkg-plist +++ b/x11-wm/plasma6-kwin/pkg-plist @@ -1,1726 +1,1727 @@ bin/kwin_wayland bin/kwin_wayland_wrapper include/kwin/activities.h include/kwin/appmenu.h include/kwin/atoms.h include/kwin/client_machine.h include/kwin/compositor.h include/kwin/config-kwin.h include/kwin/core/colorlut3d.h include/kwin/core/colorpipeline.h include/kwin/core/colorpipelinestage.h include/kwin/core/colorspace.h include/kwin/core/colortransformation.h include/kwin/core/drmdevice.h include/kwin/core/gbmgraphicsbufferallocator.h include/kwin/core/graphicsbuffer.h include/kwin/core/graphicsbufferallocator.h include/kwin/core/graphicsbufferview.h include/kwin/core/iccprofile.h include/kwin/core/inputbackend.h include/kwin/core/inputdevice.h include/kwin/core/output.h include/kwin/core/outputbackend.h include/kwin/core/outputconfiguration.h include/kwin/core/outputlayer.h include/kwin/core/pixelgrid.h include/kwin/core/renderbackend.h include/kwin/core/renderjournal.h include/kwin/core/renderlayer.h include/kwin/core/renderlayerdelegate.h include/kwin/core/renderloop.h include/kwin/core/renderloop_p.h include/kwin/core/rendertarget.h include/kwin/core/renderviewport.h include/kwin/core/session.h include/kwin/core/session_consolekit.h include/kwin/core/session_logind.h include/kwin/core/session_noop.h include/kwin/core/shmgraphicsbufferallocator.h include/kwin/cursor.h include/kwin/cursorsource.h include/kwin/dbusinterface.h include/kwin/debug_console.h include/kwin/effect/animationeffect.h include/kwin/effect/effect.h include/kwin/effect/effecthandler.h include/kwin/effect/effecttogglablestate.h include/kwin/effect/effectwindow.h include/kwin/effect/globals.h include/kwin/effect/offscreeneffect.h include/kwin/effect/offscreenquickview.h include/kwin/effect/quickeffect.h include/kwin/effect/timeline.h include/kwin/effect/xcb.h include/kwin/focuschain.h include/kwin/ftrace.h include/kwin/gestures.h include/kwin/globalshortcuts.h include/kwin/group.h include/kwin/idle_inhibition.h include/kwin/idledetector.h include/kwin/input.h include/kwin/input_event.h include/kwin/input_event_spy.h include/kwin/inputmethod.h include/kwin/inputpanelv1integration.h include/kwin/inputpanelv1window.h include/kwin/internalwindow.h include/kwin/keyboard_input.h include/kwin/keyboard_layout.h include/kwin/keyboard_layout_switching.h include/kwin/keyboard_repeat.h include/kwin/killwindow.h include/kwin/kscreenintegration.h include/kwin/kwin_export.h include/kwin/layershellv1integration.h include/kwin/layershellv1window.h include/kwin/lidswitchtracker.h include/kwin/main.h include/kwin/mousebuttons.h include/kwin/netinfo.h include/kwin/onscreennotification.h include/kwin/opengl/abstract_opengl_context_attribute_builder.h include/kwin/opengl/egl_context_attribute_builder.h include/kwin/opengl/eglcontext.h include/kwin/opengl/egldisplay.h include/kwin/opengl/eglimagetexture.h include/kwin/opengl/eglnativefence.h include/kwin/opengl/eglswapchain.h include/kwin/opengl/eglutils_p.h include/kwin/opengl/glframebuffer.h include/kwin/opengl/gllut.h include/kwin/opengl/gllut3D.h include/kwin/opengl/glplatform.h include/kwin/opengl/glrendertimequery.h include/kwin/opengl/glshader.h include/kwin/opengl/glshadermanager.h include/kwin/opengl/gltexture.h include/kwin/opengl/gltexture_p.h include/kwin/opengl/glutils.h include/kwin/opengl/glvertexbuffer.h include/kwin/options.h include/kwin/osd.h include/kwin/outline.h include/kwin/outputconfigurationstore.h include/kwin/placeholderoutput.h include/kwin/placement.h include/kwin/placementtracker.h include/kwin/plugin.h include/kwin/pluginmanager.h include/kwin/pointer_input.h include/kwin/rulebooksettings.h include/kwin/rules.h include/kwin/scene/cursordelegate_opengl.h include/kwin/scene/cursordelegate_qpainter.h include/kwin/scene/cursoritem.h include/kwin/scene/cursorscene.h include/kwin/scene/decorationitem.h include/kwin/scene/dndiconitem.h include/kwin/scene/imageitem.h include/kwin/scene/item.h include/kwin/scene/itemgeometry.h include/kwin/scene/itemrenderer.h include/kwin/scene/itemrenderer_opengl.h include/kwin/scene/itemrenderer_qpainter.h include/kwin/scene/rootitem.h include/kwin/scene/scene.h include/kwin/scene/shadowitem.h include/kwin/scene/surfaceitem.h include/kwin/scene/surfaceitem_internal.h include/kwin/scene/surfaceitem_wayland.h include/kwin/scene/windowitem.h include/kwin/scene/workspacescene.h include/kwin/screenedge.h include/kwin/screenlockerwatcher.h include/kwin/shadow.h include/kwin/sm.h include/kwin/tablet_input.h include/kwin/tabletmodemanager.h include/kwin/touch_input.h include/kwin/useractions.h include/kwin/utils/c_ptr.h include/kwin/utils/common.h include/kwin/utils/cursortheme.h include/kwin/utils/damagejournal.h include/kwin/utils/drm_format_helper.h include/kwin/utils/edid.h include/kwin/utils/executable_path.h include/kwin/utils/filedescriptor.h include/kwin/utils/kernel.h include/kwin/utils/memorymap.h include/kwin/utils/orientationsensor.h include/kwin/utils/ramfile.h include/kwin/utils/realtime.h include/kwin/utils/resource.h include/kwin/utils/serviceutils.h include/kwin/utils/softwarevsyncmonitor.h include/kwin/utils/subsurfacemonitor.h include/kwin/utils/udev.h include/kwin/utils/version.h include/kwin/utils/vsyncmonitor.h include/kwin/utils/xcbutils.h include/kwin/virtualdesktops.h include/kwin/virtualdesktopsdbustypes.h include/kwin/virtualkeyboard_dbus.h include/kwin/wayland/alphamodifier_v1.h include/kwin/wayland/appmenu.h include/kwin/wayland/blur.h include/kwin/wayland/clientconnection.h include/kwin/wayland/colormanagement_v1.h include/kwin/wayland/colorrepresentation_v1.h include/kwin/wayland/compositor.h include/kwin/wayland/contenttype_v1.h include/kwin/wayland/contrast.h include/kwin/wayland/cursorshape_v1.h include/kwin/wayland/datacontroldevice_v1.h include/kwin/wayland/datacontroldevicemanager_v1.h include/kwin/wayland/datacontroloffer_v1.h include/kwin/wayland/datacontrolsource_v1.h include/kwin/wayland/datadevice.h include/kwin/wayland/datadevicemanager.h include/kwin/wayland/dataoffer.h include/kwin/wayland/datasource.h include/kwin/wayland/display.h include/kwin/wayland/dpms.h include/kwin/wayland/drmlease_v1.h include/kwin/wayland/externalbrightness_v1.h include/kwin/wayland/fifo_v1.h include/kwin/wayland/fractionalscale_v1.h include/kwin/wayland/frog_colormanagement_v1.h include/kwin/wayland/idle.h include/kwin/wayland/idleinhibit_v1.h include/kwin/wayland/idlenotify_v1.h include/kwin/wayland/inputmethod_v1.h include/kwin/wayland/keyboard.h include/kwin/wayland/keyboard_shortcuts_inhibit_v1.h include/kwin/wayland/keystate.h include/kwin/wayland/layershell_v1.h include/kwin/wayland/linux_drm_syncobj_v1.h include/kwin/wayland/lockscreen_overlay_v1.h include/kwin/wayland/output.h include/kwin/wayland/output_order_v1.h include/kwin/wayland/outputdevice_v2.h include/kwin/wayland/outputmanagement_v2.h include/kwin/wayland/plasmashell.h include/kwin/wayland/plasmavirtualdesktop.h include/kwin/wayland/plasmawindowmanagement.h include/kwin/wayland/pointer.h include/kwin/wayland/pointerconstraints_v1.h include/kwin/wayland/pointergestures_v1.h include/kwin/wayland/presentationtime.h include/kwin/wayland/primaryselectiondevice_v1.h include/kwin/wayland/primaryselectiondevicemanager_v1.h include/kwin/wayland/primaryselectionoffer_v1.h include/kwin/wayland/primaryselectionsource_v1.h include/kwin/wayland/quirks.h include/kwin/wayland/qwayland-server-alpha-modifier-v1.h include/kwin/wayland/qwayland-server-color-management-v1.h include/kwin/wayland/qwayland-server-color-representation-v1.h include/kwin/wayland/qwayland-server-content-type-v1.h include/kwin/wayland/qwayland-server-fifo-v1.h include/kwin/wayland/qwayland-server-frog-color-management-v1.h include/kwin/wayland/qwayland-server-kde-external-brightness-v1.h include/kwin/wayland/qwayland-server-linux-drm-syncobj-v1.h include/kwin/wayland/qwayland-server-presentation-time.h include/kwin/wayland/qwayland-server-single-pixel-buffer-v1.h include/kwin/wayland/qwayland-server-xdg-toplevel-tag-v1.h include/kwin/wayland/relativepointer_v1.h include/kwin/wayland/screencast_v1.h include/kwin/wayland/screenedge_v1.h include/kwin/wayland/seat.h include/kwin/wayland/securitycontext_v1.h include/kwin/wayland/server_decoration.h include/kwin/wayland/server_decoration_palette.h include/kwin/wayland/shadow.h include/kwin/wayland/singlepixelbuffer.h include/kwin/wayland/slide.h include/kwin/wayland/subcompositor.h include/kwin/wayland/surface.h include/kwin/wayland/tablet_v2.h include/kwin/wayland/tearingcontrol_v1.h +include/kwin/wayland/textinput.h include/kwin/wayland/textinput_v1.h include/kwin/wayland/textinput_v2.h include/kwin/wayland/textinput_v3.h include/kwin/wayland/touch.h include/kwin/wayland/viewporter.h include/kwin/wayland/wayland-alpha-modifier-v1-server-protocol.h include/kwin/wayland/wayland-color-management-v1-server-protocol.h include/kwin/wayland/wayland-color-representation-v1-server-protocol.h include/kwin/wayland/wayland-content-type-v1-server-protocol.h include/kwin/wayland/wayland-fifo-v1-server-protocol.h include/kwin/wayland/wayland-frog-color-management-v1-server-protocol.h include/kwin/wayland/wayland-kde-external-brightness-v1-server-protocol.h include/kwin/wayland/wayland-linux-drm-syncobj-v1-server-protocol.h include/kwin/wayland/wayland-presentation-time-server-protocol.h include/kwin/wayland/wayland-single-pixel-buffer-v1-server-protocol.h include/kwin/wayland/wayland-xdg-toplevel-tag-v1-server-protocol.h include/kwin/wayland/xdgactivation_v1.h include/kwin/wayland/xdgdecoration_v1.h include/kwin/wayland/xdgdialog_v1.h include/kwin/wayland/xdgforeign_v2.h include/kwin/wayland/xdgoutput_v1.h include/kwin/wayland/xdgsession_v1.h include/kwin/wayland/xdgshell.h include/kwin/wayland/xdgsystembell_v1.h include/kwin/wayland/xdgtoplevelicon_v1.h include/kwin/wayland/xdgtopleveltag_v1.h include/kwin/wayland/xwaylandkeyboardgrab_v1.h include/kwin/wayland/xwaylandshell_v1.h include/kwin/wayland_server.h include/kwin/waylandshellintegration.h include/kwin/waylandwindow.h include/kwin/window.h include/kwin/workspace.h include/kwin/x11eventfilter.h include/kwin/x11window.h include/kwin/xdgactivationv1.h include/kwin/xdgshellintegration.h include/kwin/xdgshellwindow.h include/kwin/xkb.h lib/cmake/KWin/FindLibdrm.cmake lib/cmake/KWin/KWinConfig.cmake lib/cmake/KWin/KWinConfigVersion.cmake lib/cmake/KWin/KWinTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KWin/KWinTargets.cmake lib/cmake/KWinDBusInterface/KWinDBusInterfaceConfig.cmake lib/kconf_update_bin/kwin-6.0-delete-desktop-switching-shortcuts lib/kconf_update_bin/kwin-6.0-remove-breeze-tabbox-default lib/kconf_update_bin/kwin-6.0-reset-active-mouse-screen lib/kconf_update_bin/kwin-6.1-remove-gridview-expose-shortcuts lib/kconf_update_bin/kwin5_update_default_rules lib/libexec/kwin-applywindowdecoration lib/libexec/kwin-tabbox-preview lib/libexec/kwin_killer_helper lib/libkcmkwincommon.so.6 lib/libkcmkwincommon.so.%%KDE_PLASMA_VERSION%% lib/libkwin.so lib/libkwin.so.6 lib/libkwin.so.%%KDE_PLASMA_VERSION%% %%QT_PLUGINDIR%%/kf6/packagestructure/kwin_aurorae.so %%QT_PLUGINDIR%%/kf6/packagestructure/kwin_decoration.so %%QT_PLUGINDIR%%/kf6/packagestructure/kwin_effect.so %%QT_PLUGINDIR%%/kf6/packagestructure/kwin_scripts.so %%QT_PLUGINDIR%%/kf6/packagestructure/kwin_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_diminactive_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_glide_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_hidecursor_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_invert_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_overview_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_tileseditor_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_trackmouse_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_windowview_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_wobblywindows_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_zoom_config.so %%QT_PLUGINDIR%%/kwin/plugins/BounceKeysPlugin.so %%QT_PLUGINDIR%%/kwin/plugins/KeyNotificationPlugin.so %%QT_PLUGINDIR%%/kwin/plugins/MouseKeysPlugin.so %%QT_PLUGINDIR%%/kwin/plugins/StickyKeysPlugin.so %%QT_PLUGINDIR%%/kwin/plugins/TouchpadShortcutsPlugin.so %%QT_PLUGINDIR%%/kwin/plugins/buttonsrebind.so %%EI%%%%QT_PLUGINDIR%%/kwin/plugins/eis.so %%QT_PLUGINDIR%%/kwin/plugins/krunnerintegration.so %%QT_PLUGINDIR%%/kwin/plugins/nightlight.so %%QT_PLUGINDIR%%/kwin/plugins/screencast.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_animations.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_kwin_effects.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_kwin_scripts.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_kwin_virtualdesktops.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_kwindecoration.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_kwinrules.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_kwinxwayland.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_virtualkeyboard.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings_qwidgets/kcm_kwinoptions.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings_qwidgets/kcm_kwinscreenedges.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings_qwidgets/kcm_kwintabbox.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings_qwidgets/kcm_kwintouchscreen.so %%QT_QMLDIR%%/org/kde/kwin/private/effects/WindowHeap.qml %%QT_QMLDIR%%/org/kde/kwin/private/effects/WindowHeapDelegate.qml %%QT_QMLDIR%%/org/kde/kwin/private/effects/effectsplugin.qmltypes %%QT_QMLDIR%%/org/kde/kwin/private/effects/kde-qmlmodule.version %%QT_QMLDIR%%/org/kde/kwin/private/effects/libeffectsplugin.so %%QT_QMLDIR%%/org/kde/kwin/private/effects/qmldir %%QT_QMLDIR%%/org/kde/kwin/private/kdecoration/kde-qmlmodule.version %%QT_QMLDIR%%/org/kde/kwin/private/kdecoration/kdecorationprivatedeclarative.qmltypes %%QT_QMLDIR%%/org/kde/kwin/private/kdecoration/libkdecorationprivatedeclarative.so %%QT_QMLDIR%%/org/kde/kwin/private/kdecoration/qmldir @comment lib/systemd/user/plasma-kwin_wayland.service share/applications/kcm_animations.desktop share/applications/kcm_kwin_effects.desktop share/applications/kcm_kwin_scripts.desktop share/applications/kcm_kwin_virtualdesktops.desktop share/applications/kcm_kwindecoration.desktop share/applications/kcm_kwinoptions.desktop share/applications/kcm_kwinrules.desktop share/applications/kcm_kwintabbox.desktop share/applications/kcm_kwinxwayland.desktop share/applications/kcm_virtualkeyboard.desktop share/applications/org.kde.kwin.killer.desktop share/config.kcfg/kwin.kcfg share/config.kcfg/kwindecorationsettings.kcfg share/config.kcfg/nightlightsettings.kcfg share/config.kcfg/virtualdesktopssettings.kcfg share/dbus-1/interfaces/org.kde.KWin.NightLight.xml share/dbus-1/interfaces/org.kde.KWin.Plugins.xml share/dbus-1/interfaces/org.kde.KWin.TabletModeManager.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.Compositing.xml share/dbus-1/interfaces/org.kde.kwin.Effects.xml share/dbus-1/interfaces/org.kde.kwin.InputDevice.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/kwinvirtualkeyboard/index.cache.bz2 share/doc/HTML/de/kcontrol/kwinvirtualkeyboard/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/kwintabbox/taskswitcher.png 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/es/kcontrol/kwindecoration/index.cache.bz2 share/doc/HTML/es/kcontrol/kwindecoration/index.docbook share/doc/HTML/es/kcontrol/kwineffects/index.cache.bz2 share/doc/HTML/es/kcontrol/kwineffects/index.docbook share/doc/HTML/es/kcontrol/kwinscreenedges/index.cache.bz2 share/doc/HTML/es/kcontrol/kwinscreenedges/index.docbook share/doc/HTML/es/kcontrol/kwintouchscreen/index.cache.bz2 share/doc/HTML/es/kcontrol/kwintouchscreen/index.docbook share/doc/HTML/es/kcontrol/kwinvirtualkeyboard/index.cache.bz2 share/doc/HTML/es/kcontrol/kwinvirtualkeyboard/index.docbook share/doc/HTML/fr/kcontrol/desktop/index.cache.bz2 share/doc/HTML/fr/kcontrol/desktop/index.docbook share/doc/HTML/fr/kcontrol/kwindecoration/index.cache.bz2 share/doc/HTML/fr/kcontrol/kwindecoration/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/kwintouchscreen/index.cache.bz2 share/doc/HTML/ru/kcontrol/kwintouchscreen/index.docbook share/doc/HTML/ru/kcontrol/kwinvirtualkeyboard/index.cache.bz2 share/doc/HTML/ru/kcontrol/kwinvirtualkeyboard/index.docbook share/doc/HTML/ru/kcontrol/windowbehaviour/index.cache.bz2 share/doc/HTML/ru/kcontrol/windowbehaviour/index.docbook share/doc/HTML/ru/kcontrol/windowspecific/akgregator-info.png share/doc/HTML/ru/kcontrol/windowspecific/akregator-attributes.png share/doc/HTML/ru/kcontrol/windowspecific/akregator-fav.png share/doc/HTML/ru/kcontrol/windowspecific/config-win-behavior.png share/doc/HTML/ru/kcontrol/windowspecific/emacs-attribute.png share/doc/HTML/ru/kcontrol/windowspecific/emacs-info.png share/doc/HTML/ru/kcontrol/windowspecific/focus-stealing-pop2top-attribute.png share/doc/HTML/ru/kcontrol/windowspecific/index.cache.bz2 share/doc/HTML/ru/kcontrol/windowspecific/index.docbook share/doc/HTML/ru/kcontrol/windowspecific/knotes-attribute.png share/doc/HTML/ru/kcontrol/windowspecific/knotes-info.png share/doc/HTML/ru/kcontrol/windowspecific/kopete-attribute-2.png share/doc/HTML/ru/kcontrol/windowspecific/kopete-chat-attribute.png share/doc/HTML/ru/kcontrol/windowspecific/kopete-chat-info.png share/doc/HTML/ru/kcontrol/windowspecific/kopete-info.png share/doc/HTML/ru/kcontrol/windowspecific/kwin-detect-window.png share/doc/HTML/ru/kcontrol/windowspecific/kwin-kopete-rules.png share/doc/HTML/ru/kcontrol/windowspecific/kwin-rule-editor.png share/doc/HTML/ru/kcontrol/windowspecific/kwin-rules-main-n-akregator.png share/doc/HTML/ru/kcontrol/windowspecific/kwin-rules-main.png share/doc/HTML/ru/kcontrol/windowspecific/kwin-rules-ordering.png share/doc/HTML/ru/kcontrol/windowspecific/kwin-window-attributes.png share/doc/HTML/ru/kcontrol/windowspecific/kwin-window-matching.png share/doc/HTML/ru/kcontrol/windowspecific/tbird-compose-attribute.png share/doc/HTML/ru/kcontrol/windowspecific/tbird-compose-info.png share/doc/HTML/ru/kcontrol/windowspecific/tbird-main-attribute.png share/doc/HTML/ru/kcontrol/windowspecific/tbird-main-info.png share/doc/HTML/ru/kcontrol/windowspecific/tbird-reminder-attribute-2.png share/doc/HTML/ru/kcontrol/windowspecific/tbird-reminder-info.png share/doc/HTML/ru/kcontrol/windowspecific/window-matching-emacs.png share/doc/HTML/ru/kcontrol/windowspecific/window-matching-init.png share/doc/HTML/ru/kcontrol/windowspecific/window-matching-knotes.png share/doc/HTML/ru/kcontrol/windowspecific/window-matching-kopete-chat.png share/doc/HTML/ru/kcontrol/windowspecific/window-matching-kopete.png share/doc/HTML/ru/kcontrol/windowspecific/window-matching-ready-akregator.png share/doc/HTML/ru/kcontrol/windowspecific/window-matching-tbird-compose.png share/doc/HTML/ru/kcontrol/windowspecific/window-matching-tbird-main.png share/doc/HTML/ru/kcontrol/windowspecific/window-matching-tbird-reminder.png share/doc/HTML/sl/kcontrol/desktop/index.cache.bz2 share/doc/HTML/sl/kcontrol/desktop/index.docbook share/doc/HTML/sl/kcontrol/kwindecoration/index.cache.bz2 share/doc/HTML/sl/kcontrol/kwindecoration/index.docbook share/doc/HTML/sl/kcontrol/kwineffects/index.cache.bz2 share/doc/HTML/sl/kcontrol/kwineffects/index.docbook share/doc/HTML/sl/kcontrol/kwinscreenedges/index.cache.bz2 share/doc/HTML/sl/kcontrol/kwinscreenedges/index.docbook share/doc/HTML/sl/kcontrol/kwintabbox/index.cache.bz2 share/doc/HTML/sl/kcontrol/kwintabbox/index.docbook share/doc/HTML/sl/kcontrol/kwintouchscreen/index.cache.bz2 share/doc/HTML/sl/kcontrol/kwintouchscreen/index.docbook share/doc/HTML/sl/kcontrol/kwinvirtualkeyboard/index.cache.bz2 share/doc/HTML/sl/kcontrol/kwinvirtualkeyboard/index.docbook share/doc/HTML/sl/kcontrol/windowbehaviour/index.cache.bz2 share/doc/HTML/sl/kcontrol/windowbehaviour/index.docbook share/doc/HTML/sl/kcontrol/windowspecific/index.cache.bz2 share/doc/HTML/sl/kcontrol/windowspecific/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/tr/kcontrol/desktop/index.cache.bz2 share/doc/HTML/tr/kcontrol/desktop/index.docbook share/doc/HTML/tr/kcontrol/kwindecoration/index.cache.bz2 share/doc/HTML/tr/kcontrol/kwindecoration/index.docbook share/doc/HTML/tr/kcontrol/kwineffects/index.cache.bz2 share/doc/HTML/tr/kcontrol/kwineffects/index.docbook share/doc/HTML/tr/kcontrol/kwinscreenedges/index.cache.bz2 share/doc/HTML/tr/kcontrol/kwinscreenedges/index.docbook share/doc/HTML/tr/kcontrol/kwintabbox/index.cache.bz2 share/doc/HTML/tr/kcontrol/kwintabbox/index.docbook share/doc/HTML/tr/kcontrol/kwintouchscreen/index.cache.bz2 share/doc/HTML/tr/kcontrol/kwintouchscreen/index.docbook share/doc/HTML/tr/kcontrol/kwinvirtualkeyboard/index.cache.bz2 share/doc/HTML/tr/kcontrol/kwinvirtualkeyboard/index.docbook share/doc/HTML/tr/kcontrol/windowbehaviour/index.cache.bz2 share/doc/HTML/tr/kcontrol/windowbehaviour/index.docbook share/doc/HTML/tr/kcontrol/windowspecific/index.cache.bz2 share/doc/HTML/tr/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.upd share/knotifications6/kwin.notifyrc share/knsrcfiles/kwineffect.knsrc share/knsrcfiles/kwinscripts.knsrc share/knsrcfiles/kwinswitcher.knsrc share/knsrcfiles/window-decorations.knsrc share/krunner/dbusplugins/kwin-runner-windows.desktop %%DATADIR%%-wayland/builtin-effects/blendchanges.json %%DATADIR%%-wayland/builtin-effects/blur.json %%DATADIR%%-wayland/builtin-effects/colorblindnesscorrection.json %%DATADIR%%-wayland/builtin-effects/colorpicker.json %%DATADIR%%-wayland/builtin-effects/contrast.json %%DATADIR%%-wayland/builtin-effects/diminactive.json %%DATADIR%%-wayland/builtin-effects/fallapart.json %%DATADIR%%-wayland/builtin-effects/glide.json %%DATADIR%%-wayland/builtin-effects/hidecursor.json %%DATADIR%%-wayland/builtin-effects/highlightwindow.json %%DATADIR%%-wayland/builtin-effects/invert.json %%DATADIR%%-wayland/builtin-effects/kscreen.json %%DATADIR%%-wayland/builtin-effects/magiclamp.json %%DATADIR%%-wayland/builtin-effects/magnifier.json %%DATADIR%%-wayland/builtin-effects/mouseclick.json %%DATADIR%%-wayland/builtin-effects/mousemark.json %%DATADIR%%-wayland/builtin-effects/outputlocator.json %%DATADIR%%-wayland/builtin-effects/overview.json %%DATADIR%%-wayland/builtin-effects/screenedge.json %%DATADIR%%-wayland/builtin-effects/screenshot.json %%DATADIR%%-wayland/builtin-effects/screentransform.json %%DATADIR%%-wayland/builtin-effects/shakecursor.json %%DATADIR%%-wayland/builtin-effects/sheet.json %%DATADIR%%-wayland/builtin-effects/showcompositing.json %%DATADIR%%-wayland/builtin-effects/showfps.json %%DATADIR%%-wayland/builtin-effects/showpaint.json %%DATADIR%%-wayland/builtin-effects/slide.json %%DATADIR%%-wayland/builtin-effects/slideback.json %%DATADIR%%-wayland/builtin-effects/slidingpopups.json %%DATADIR%%-wayland/builtin-effects/startupfeedback.json %%DATADIR%%-wayland/builtin-effects/systembell.json %%DATADIR%%-wayland/builtin-effects/thumbnailaside.json %%DATADIR%%-wayland/builtin-effects/tileseditor.json %%DATADIR%%-wayland/builtin-effects/touchpoints.json %%DATADIR%%-wayland/builtin-effects/trackmouse.json %%DATADIR%%-wayland/builtin-effects/windowview.json %%DATADIR%%-wayland/builtin-effects/wobblywindows.json %%DATADIR%%-wayland/builtin-effects/zoom.json %%DATADIR%%-wayland/effects/dialogparent/contents/code/main.js %%DATADIR%%-wayland/effects/dialogparent/metadata.json %%DATADIR%%-wayland/effects/dimscreen/contents/code/main.js %%DATADIR%%-wayland/effects/dimscreen/metadata.json %%DATADIR%%-wayland/effects/eyeonscreen/contents/code/main.js %%DATADIR%%-wayland/effects/eyeonscreen/metadata.json %%DATADIR%%-wayland/effects/fade/contents/code/main.js %%DATADIR%%-wayland/effects/fade/contents/config/main.xml %%DATADIR%%-wayland/effects/fade/metadata.json %%DATADIR%%-wayland/effects/fadedesktop/contents/code/main.js %%DATADIR%%-wayland/effects/fadedesktop/contents/config/main.xml %%DATADIR%%-wayland/effects/fadedesktop/contents/ui/config.ui %%DATADIR%%-wayland/effects/fadedesktop/metadata.json %%DATADIR%%-wayland/effects/fadingpopups/contents/code/main.js %%DATADIR%%-wayland/effects/fadingpopups/metadata.json %%DATADIR%%-wayland/effects/frozenapp/contents/code/main.js %%DATADIR%%-wayland/effects/frozenapp/metadata.json %%DATADIR%%-wayland/effects/fullscreen/contents/code/main.js %%DATADIR%%-wayland/effects/fullscreen/metadata.json %%DATADIR%%-wayland/effects/login/contents/code/main.js %%DATADIR%%-wayland/effects/login/contents/config/main.xml %%DATADIR%%-wayland/effects/login/contents/ui/config.ui %%DATADIR%%-wayland/effects/login/metadata.json %%DATADIR%%-wayland/effects/logout/contents/code/main.js %%DATADIR%%-wayland/effects/logout/metadata.json %%DATADIR%%-wayland/effects/maximize/contents/code/main.js %%DATADIR%%-wayland/effects/maximize/metadata.json %%DATADIR%%-wayland/effects/outputlocator/qml/OutputLabel.qml %%DATADIR%%-wayland/effects/scale/contents/code/main.js %%DATADIR%%-wayland/effects/scale/contents/config/main.xml %%DATADIR%%-wayland/effects/scale/contents/ui/config.ui %%DATADIR%%-wayland/effects/scale/metadata.json %%DATADIR%%-wayland/effects/sessionquit/contents/code/main.js %%DATADIR%%-wayland/effects/sessionquit/metadata.json %%DATADIR%%-wayland/effects/showcompositing/qml/main.qml %%DATADIR%%-wayland/effects/showfps/qml/main-fallback.qml %%DATADIR%%-wayland/effects/showfps/qml/main.qml %%DATADIR%%-wayland/effects/squash/contents/code/main.js %%DATADIR%%-wayland/effects/squash/metadata.json %%DATADIR%%-wayland/effects/tileseditor/qml/ResizeCorner.qml %%DATADIR%%-wayland/effects/tileseditor/qml/ResizeHandle.qml %%DATADIR%%-wayland/effects/tileseditor/qml/TileDelegate.qml %%DATADIR%%-wayland/effects/tileseditor/qml/layouts.svg %%DATADIR%%-wayland/effects/tileseditor/qml/main.qml %%DATADIR%%-wayland/effects/translucency/contents/code/main.js %%DATADIR%%-wayland/effects/translucency/contents/config/main.xml %%DATADIR%%-wayland/effects/translucency/contents/ui/config.ui %%DATADIR%%-wayland/effects/translucency/metadata.json %%DATADIR%%-wayland/effects/windowaperture/contents/code/main.js %%DATADIR%%-wayland/effects/windowaperture/metadata.json %%DATADIR%%-wayland/effects/windowview/qml/main.qml %%DATADIR%%-wayland/frames/plasma/frame_none.qml %%DATADIR%%-wayland/frames/plasma/frame_styled.qml %%DATADIR%%-wayland/frames/plasma/frame_unstyled.qml %%DATADIR%%-wayland/onscreennotification/plasma/dummydata/osd.qml %%DATADIR%%-wayland/onscreennotification/plasma/main.qml %%DATADIR%%-wayland/outline/plasma/outline.qml %%DATADIR%%-wayland/scripts/desktopchangeosd/contents/ui/main.qml %%DATADIR%%-wayland/scripts/desktopchangeosd/contents/ui/osd.qml %%DATADIR%%-wayland/scripts/desktopchangeosd/metadata.json %%DATADIR%%-wayland/scripts/minimizeall/contents/code/main.js %%DATADIR%%-wayland/scripts/minimizeall/metadata.json %%DATADIR%%-wayland/scripts/synchronizeskipswitcher/contents/code/main.js %%DATADIR%%-wayland/scripts/synchronizeskipswitcher/metadata.json %%DATADIR%%-wayland/scripts/videowall/contents/code/main.js %%DATADIR%%-wayland/scripts/videowall/contents/config/main.xml %%DATADIR%%-wayland/scripts/videowall/contents/ui/config.ui %%DATADIR%%-wayland/scripts/videowall/metadata.json %%DATADIR%%-wayland/tabbox/thumbnail_grid/contents/ui/main.qml %%DATADIR%%-wayland/tabbox/thumbnail_grid/metadata.json %%DATADIR%%-wayland/tm_inner.png %%DATADIR%%-wayland/tm_outer.png 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/ar/LC_MESSAGES/kcm_animations.mo share/locale/ar/LC_MESSAGES/kcm_kwin_effects.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/kcm_kwinxwayland.mo share/locale/ar/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/ar/LC_MESSAGES/kcmkwincommon.mo share/locale/ar/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/ar/LC_MESSAGES/kcmkwm.mo share/locale/ar/LC_MESSAGES/kwin.mo share/locale/as/LC_MESSAGES/kwin.mo share/locale/ast/LC_MESSAGES/kcm_kwin_effects.mo share/locale/ast/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/ast/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/ast/LC_MESSAGES/kcm_kwindecoration.mo share/locale/ast/LC_MESSAGES/kcm_kwinrules.mo share/locale/ast/LC_MESSAGES/kcm_kwintabbox.mo share/locale/ast/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/ast/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/ast/LC_MESSAGES/kcmkwincommon.mo share/locale/ast/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/ast/LC_MESSAGES/kcmkwm.mo share/locale/ast/LC_MESSAGES/kwin.mo share/locale/az/LC_MESSAGES/kcm_kwin_effects.mo share/locale/az/LC_MESSAGES/kcm_kwin_scripts.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/kcmkwinscreenedges.mo share/locale/az/LC_MESSAGES/kcmkwm.mo share/locale/az/LC_MESSAGES/kwin.mo share/locale/be/LC_MESSAGES/kcm_kwin_effects.mo share/locale/be/LC_MESSAGES/kcm_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/kcm_kwintabbox.mo share/locale/be/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/be/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/be/LC_MESSAGES/kcmkwincommon.mo share/locale/be/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/be/LC_MESSAGES/kcmkwm.mo share/locale/be/LC_MESSAGES/kwin.mo share/locale/be@latin/LC_MESSAGES/kwin.mo share/locale/bg/LC_MESSAGES/kcm_animations.mo share/locale/bg/LC_MESSAGES/kcm_kwin_effects.mo share/locale/bg/LC_MESSAGES/kcm_kwin_scripts.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/kcm_kwinxwayland.mo share/locale/bg/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/bg/LC_MESSAGES/kcmkwincommon.mo share/locale/bg/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/bg/LC_MESSAGES/kcmkwm.mo share/locale/bg/LC_MESSAGES/kwin.mo share/locale/bn/LC_MESSAGES/kcmkwm.mo share/locale/bn/LC_MESSAGES/kwin.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/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/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/kcmkwinscreenedges.mo share/locale/bs/LC_MESSAGES/kcmkwm.mo share/locale/bs/LC_MESSAGES/kwin.mo share/locale/ca/LC_MESSAGES/kcm_animations.mo share/locale/ca/LC_MESSAGES/kcm_kwin_effects.mo share/locale/ca/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/ca/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/ca/LC_MESSAGES/kcm_kwindecoration.mo share/locale/ca/LC_MESSAGES/kcm_kwinrules.mo share/locale/ca/LC_MESSAGES/kcm_kwintabbox.mo share/locale/ca/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/ca/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/ca/LC_MESSAGES/kcmkwincommon.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@valencia/LC_MESSAGES/kcm_animations.mo share/locale/ca@valencia/LC_MESSAGES/kcm_kwin_effects.mo share/locale/ca@valencia/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/ca@valencia/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/ca@valencia/LC_MESSAGES/kcm_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/kcm_kwinxwayland.mo share/locale/ca@valencia/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/ca@valencia/LC_MESSAGES/kcmkwincommon.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/cs/LC_MESSAGES/kcm_kwin_effects.mo share/locale/cs/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/cs/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/cs/LC_MESSAGES/kcm_kwindecoration.mo share/locale/cs/LC_MESSAGES/kcm_kwinrules.mo share/locale/cs/LC_MESSAGES/kcm_kwintabbox.mo share/locale/cs/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/cs/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/cs/LC_MESSAGES/kcmkwincommon.mo share/locale/cs/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/cs/LC_MESSAGES/kcmkwm.mo share/locale/cs/LC_MESSAGES/kwin.mo share/locale/csb/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/csb/LC_MESSAGES/kwin.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/da/LC_MESSAGES/kcm_kwin_effects.mo share/locale/da/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/da/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/da/LC_MESSAGES/kcm_kwindecoration.mo share/locale/da/LC_MESSAGES/kcm_kwinrules.mo share/locale/da/LC_MESSAGES/kcm_kwintabbox.mo share/locale/da/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/da/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/da/LC_MESSAGES/kcmkwincommon.mo share/locale/da/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/da/LC_MESSAGES/kcmkwm.mo share/locale/da/LC_MESSAGES/kwin.mo share/locale/de/LC_MESSAGES/kcm_animations.mo share/locale/de/LC_MESSAGES/kcm_kwin_effects.mo share/locale/de/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/de/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/de/LC_MESSAGES/kcm_kwindecoration.mo share/locale/de/LC_MESSAGES/kcm_kwinrules.mo share/locale/de/LC_MESSAGES/kcm_kwintabbox.mo share/locale/de/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/de/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/de/LC_MESSAGES/kcmkwincommon.mo share/locale/de/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/de/LC_MESSAGES/kcmkwm.mo share/locale/de/LC_MESSAGES/kwin.mo share/locale/el/LC_MESSAGES/kcm_kwin_effects.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/kcmkwinscreenedges.mo share/locale/el/LC_MESSAGES/kcmkwm.mo share/locale/el/LC_MESSAGES/kwin.mo share/locale/en_GB/LC_MESSAGES/kcm_kwin_effects.mo share/locale/en_GB/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/en_GB/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/en_GB/LC_MESSAGES/kcm_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_kwinxwayland.mo share/locale/en_GB/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/en_GB/LC_MESSAGES/kcmkwincommon.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/eo/LC_MESSAGES/kcm_kwin_effects.mo share/locale/eo/LC_MESSAGES/kcm_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/kcm_kwinxwayland.mo share/locale/eo/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/eo/LC_MESSAGES/kcmkwincommon.mo share/locale/eo/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/eo/LC_MESSAGES/kcmkwm.mo share/locale/eo/LC_MESSAGES/kwin.mo share/locale/es/LC_MESSAGES/kcm_animations.mo share/locale/es/LC_MESSAGES/kcm_kwin_effects.mo share/locale/es/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/es/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/es/LC_MESSAGES/kcm_kwindecoration.mo share/locale/es/LC_MESSAGES/kcm_kwinrules.mo share/locale/es/LC_MESSAGES/kcm_kwintabbox.mo share/locale/es/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/es/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/es/LC_MESSAGES/kcmkwincommon.mo share/locale/es/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/es/LC_MESSAGES/kcmkwm.mo share/locale/es/LC_MESSAGES/kwin.mo share/locale/et/LC_MESSAGES/kcm_kwin_effects.mo share/locale/et/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/et/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/et/LC_MESSAGES/kcm_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/kcmkwinscreenedges.mo share/locale/et/LC_MESSAGES/kcmkwm.mo share/locale/et/LC_MESSAGES/kwin.mo share/locale/eu/LC_MESSAGES/kcm_animations.mo share/locale/eu/LC_MESSAGES/kcm_kwin_effects.mo share/locale/eu/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/eu/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/eu/LC_MESSAGES/kcm_kwindecoration.mo share/locale/eu/LC_MESSAGES/kcm_kwinrules.mo share/locale/eu/LC_MESSAGES/kcm_kwintabbox.mo share/locale/eu/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/eu/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/eu/LC_MESSAGES/kcmkwincommon.mo share/locale/eu/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/eu/LC_MESSAGES/kcmkwm.mo share/locale/eu/LC_MESSAGES/kwin.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/kcmkwinscreenedges.mo share/locale/fa/LC_MESSAGES/kcmkwm.mo share/locale/fa/LC_MESSAGES/kwin.mo share/locale/fi/LC_MESSAGES/kcm_animations.mo share/locale/fi/LC_MESSAGES/kcm_kwin_effects.mo share/locale/fi/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/fi/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/fi/LC_MESSAGES/kcm_kwindecoration.mo share/locale/fi/LC_MESSAGES/kcm_kwinrules.mo share/locale/fi/LC_MESSAGES/kcm_kwintabbox.mo share/locale/fi/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/fi/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/fi/LC_MESSAGES/kcmkwincommon.mo share/locale/fi/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/fi/LC_MESSAGES/kcmkwm.mo share/locale/fi/LC_MESSAGES/kwin.mo share/locale/fr/LC_MESSAGES/kcm_animations.mo share/locale/fr/LC_MESSAGES/kcm_kwin_effects.mo share/locale/fr/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/fr/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/fr/LC_MESSAGES/kcm_kwindecoration.mo share/locale/fr/LC_MESSAGES/kcm_kwinrules.mo share/locale/fr/LC_MESSAGES/kcm_kwintabbox.mo share/locale/fr/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/fr/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/fr/LC_MESSAGES/kcmkwincommon.mo share/locale/fr/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/fr/LC_MESSAGES/kcmkwm.mo share/locale/fr/LC_MESSAGES/kwin.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/kcmkwinscreenedges.mo share/locale/fy/LC_MESSAGES/kcmkwm.mo share/locale/fy/LC_MESSAGES/kwin.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/kcmkwinscreenedges.mo share/locale/ga/LC_MESSAGES/kcmkwm.mo share/locale/ga/LC_MESSAGES/kwin.mo share/locale/gl/LC_MESSAGES/kcm_animations.mo share/locale/gl/LC_MESSAGES/kcm_kwin_effects.mo share/locale/gl/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/gl/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/gl/LC_MESSAGES/kcm_kwindecoration.mo share/locale/gl/LC_MESSAGES/kcm_kwinrules.mo share/locale/gl/LC_MESSAGES/kcm_kwintabbox.mo share/locale/gl/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/gl/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/gl/LC_MESSAGES/kcmkwincommon.mo share/locale/gl/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/gl/LC_MESSAGES/kcmkwm.mo share/locale/gl/LC_MESSAGES/kwin.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/kcmkwinscreenedges.mo share/locale/gu/LC_MESSAGES/kcmkwm.mo share/locale/gu/LC_MESSAGES/kwin.mo share/locale/he/LC_MESSAGES/kcm_animations.mo share/locale/he/LC_MESSAGES/kcm_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/kcm_kwinxwayland.mo share/locale/he/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/he/LC_MESSAGES/kcmkwincommon.mo share/locale/he/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/he/LC_MESSAGES/kcmkwm.mo share/locale/he/LC_MESSAGES/kwin.mo share/locale/hi/LC_MESSAGES/kcm_kwin_effects.mo share/locale/hi/LC_MESSAGES/kcm_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/kcm_kwinxwayland.mo share/locale/hi/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/hi/LC_MESSAGES/kcmkwincommon.mo share/locale/hi/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/hi/LC_MESSAGES/kcmkwm.mo share/locale/hi/LC_MESSAGES/kwin.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/kcmkwm.mo share/locale/hne/LC_MESSAGES/kwin.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/kcmkwinscreenedges.mo share/locale/hr/LC_MESSAGES/kcmkwm.mo share/locale/hr/LC_MESSAGES/kwin.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/kcmkwm.mo share/locale/hsb/LC_MESSAGES/kwin.mo share/locale/hu/LC_MESSAGES/kcm_animations.mo share/locale/hu/LC_MESSAGES/kcm_kwin_effects.mo share/locale/hu/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/hu/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/hu/LC_MESSAGES/kcm_kwindecoration.mo share/locale/hu/LC_MESSAGES/kcm_kwinrules.mo share/locale/hu/LC_MESSAGES/kcm_kwintabbox.mo share/locale/hu/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/hu/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/hu/LC_MESSAGES/kcmkwincommon.mo share/locale/hu/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/hu/LC_MESSAGES/kcmkwm.mo share/locale/hu/LC_MESSAGES/kwin.mo share/locale/ia/LC_MESSAGES/kcm_animations.mo share/locale/ia/LC_MESSAGES/kcm_kwin_effects.mo share/locale/ia/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/ia/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/ia/LC_MESSAGES/kcm_kwindecoration.mo share/locale/ia/LC_MESSAGES/kcm_kwinrules.mo share/locale/ia/LC_MESSAGES/kcm_kwintabbox.mo share/locale/ia/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/ia/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/ia/LC_MESSAGES/kcmkwincommon.mo share/locale/ia/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/ia/LC_MESSAGES/kcmkwm.mo share/locale/ia/LC_MESSAGES/kwin.mo share/locale/id/LC_MESSAGES/kcm_kwin_effects.mo share/locale/id/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/id/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/id/LC_MESSAGES/kcm_kwindecoration.mo share/locale/id/LC_MESSAGES/kcm_kwinrules.mo share/locale/id/LC_MESSAGES/kcm_kwintabbox.mo share/locale/id/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/id/LC_MESSAGES/kcmkwincommon.mo share/locale/id/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/id/LC_MESSAGES/kcmkwm.mo share/locale/id/LC_MESSAGES/kwin.mo share/locale/is/LC_MESSAGES/kcm_kwin_effects.mo share/locale/is/LC_MESSAGES/kcm_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/kcm_kwinxwayland.mo share/locale/is/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/is/LC_MESSAGES/kcmkwincommon.mo share/locale/is/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/is/LC_MESSAGES/kcmkwm.mo share/locale/is/LC_MESSAGES/kwin.mo share/locale/it/LC_MESSAGES/kcm_animations.mo share/locale/it/LC_MESSAGES/kcm_kwin_effects.mo share/locale/it/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/it/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/it/LC_MESSAGES/kcm_kwindecoration.mo share/locale/it/LC_MESSAGES/kcm_kwinrules.mo share/locale/it/LC_MESSAGES/kcm_kwintabbox.mo share/locale/it/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/it/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/it/LC_MESSAGES/kcmkwincommon.mo share/locale/it/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/it/LC_MESSAGES/kcmkwm.mo share/locale/it/LC_MESSAGES/kwin.mo share/locale/ja/LC_MESSAGES/kcm_kwin_effects.mo share/locale/ja/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/ja/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/ja/LC_MESSAGES/kcm_kwindecoration.mo share/locale/ja/LC_MESSAGES/kcm_kwinrules.mo share/locale/ja/LC_MESSAGES/kcm_kwintabbox.mo share/locale/ja/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/ja/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/ja/LC_MESSAGES/kcmkwincommon.mo share/locale/ja/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/ja/LC_MESSAGES/kcmkwm.mo share/locale/ja/LC_MESSAGES/kwin.mo share/locale/ka/LC_MESSAGES/kcm_animations.mo share/locale/ka/LC_MESSAGES/kcm_kwin_effects.mo share/locale/ka/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/ka/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/ka/LC_MESSAGES/kcm_kwindecoration.mo share/locale/ka/LC_MESSAGES/kcm_kwinrules.mo share/locale/ka/LC_MESSAGES/kcm_kwintabbox.mo share/locale/ka/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/ka/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/ka/LC_MESSAGES/kcmkwincommon.mo share/locale/ka/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/ka/LC_MESSAGES/kcmkwm.mo share/locale/ka/LC_MESSAGES/kwin.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/kcmkwinscreenedges.mo share/locale/kk/LC_MESSAGES/kcmkwm.mo share/locale/kk/LC_MESSAGES/kwin.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/kcmkwinscreenedges.mo share/locale/km/LC_MESSAGES/kcmkwm.mo share/locale/km/LC_MESSAGES/kwin.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/kcmkwinscreenedges.mo share/locale/kn/LC_MESSAGES/kcmkwm.mo share/locale/kn/LC_MESSAGES/kwin.mo share/locale/ko/LC_MESSAGES/kcm_animations.mo share/locale/ko/LC_MESSAGES/kcm_kwin_effects.mo share/locale/ko/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/ko/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/ko/LC_MESSAGES/kcm_kwindecoration.mo share/locale/ko/LC_MESSAGES/kcm_kwinrules.mo share/locale/ko/LC_MESSAGES/kcm_kwintabbox.mo share/locale/ko/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/ko/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/ko/LC_MESSAGES/kcmkwincommon.mo share/locale/ko/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/ko/LC_MESSAGES/kcmkwm.mo share/locale/ko/LC_MESSAGES/kwin.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/kcmkwm.mo share/locale/ku/LC_MESSAGES/kwin.mo share/locale/lt/LC_MESSAGES/kcm_kwin_effects.mo share/locale/lt/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/lt/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/lt/LC_MESSAGES/kcm_kwindecoration.mo share/locale/lt/LC_MESSAGES/kcm_kwinrules.mo share/locale/lt/LC_MESSAGES/kcm_kwintabbox.mo share/locale/lt/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/lt/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/lt/LC_MESSAGES/kcmkwincommon.mo share/locale/lt/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/lt/LC_MESSAGES/kcmkwm.mo share/locale/lt/LC_MESSAGES/kwin.mo share/locale/lv/LC_MESSAGES/kcm_animations.mo share/locale/lv/LC_MESSAGES/kcm_kwin_effects.mo share/locale/lv/LC_MESSAGES/kcm_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/kcm_kwinxwayland.mo share/locale/lv/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/lv/LC_MESSAGES/kcmkwincommon.mo share/locale/lv/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/lv/LC_MESSAGES/kcmkwm.mo share/locale/lv/LC_MESSAGES/kwin.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/kcmkwinscreenedges.mo share/locale/mai/LC_MESSAGES/kcmkwm.mo share/locale/mai/LC_MESSAGES/kwin.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/kcmkwm.mo share/locale/mk/LC_MESSAGES/kwin.mo share/locale/ml/LC_MESSAGES/kcm_kwin_effects.mo share/locale/ml/LC_MESSAGES/kcm_kwin_scripts.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/kcmkwinscreenedges.mo share/locale/ml/LC_MESSAGES/kcmkwm.mo share/locale/ml/LC_MESSAGES/kwin.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/kcmkwinscreenedges.mo share/locale/mr/LC_MESSAGES/kcmkwm.mo share/locale/mr/LC_MESSAGES/kwin.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/kcmkwinscreenedges.mo share/locale/ms/LC_MESSAGES/kcmkwm.mo share/locale/ms/LC_MESSAGES/kwin.mo share/locale/nb/LC_MESSAGES/kcm_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/kcm_kwinxwayland.mo share/locale/nb/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/nb/LC_MESSAGES/kcmkwincommon.mo share/locale/nb/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/nb/LC_MESSAGES/kcmkwm.mo share/locale/nb/LC_MESSAGES/kwin.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/kcmkwinscreenedges.mo share/locale/nds/LC_MESSAGES/kcmkwm.mo share/locale/nds/LC_MESSAGES/kwin.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/kcmkwm.mo share/locale/ne/LC_MESSAGES/kwin.mo share/locale/nl/LC_MESSAGES/kcm_animations.mo share/locale/nl/LC_MESSAGES/kcm_kwin_effects.mo share/locale/nl/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/nl/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/nl/LC_MESSAGES/kcm_kwindecoration.mo share/locale/nl/LC_MESSAGES/kcm_kwinrules.mo share/locale/nl/LC_MESSAGES/kcm_kwintabbox.mo share/locale/nl/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/nl/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/nl/LC_MESSAGES/kcmkwincommon.mo share/locale/nl/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/nl/LC_MESSAGES/kcmkwm.mo share/locale/nl/LC_MESSAGES/kwin.mo share/locale/nn/LC_MESSAGES/kcm_kwin_effects.mo share/locale/nn/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/nn/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/nn/LC_MESSAGES/kcm_kwindecoration.mo share/locale/nn/LC_MESSAGES/kcm_kwinrules.mo share/locale/nn/LC_MESSAGES/kcm_kwintabbox.mo share/locale/nn/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/nn/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/nn/LC_MESSAGES/kcmkwincommon.mo share/locale/nn/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/nn/LC_MESSAGES/kcmkwm.mo share/locale/nn/LC_MESSAGES/kwin.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/kcmkwm.mo share/locale/oc/LC_MESSAGES/kwin.mo share/locale/or/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/or/LC_MESSAGES/kcm_kwindecoration.mo share/locale/or/LC_MESSAGES/kcm_kwinrules.mo share/locale/or/LC_MESSAGES/kcmkwm.mo share/locale/or/LC_MESSAGES/kwin.mo share/locale/pa/LC_MESSAGES/kcm_kwin_effects.mo share/locale/pa/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/pa/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/pa/LC_MESSAGES/kcm_kwindecoration.mo share/locale/pa/LC_MESSAGES/kcm_kwinrules.mo share/locale/pa/LC_MESSAGES/kcm_kwintabbox.mo share/locale/pa/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/pa/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/pa/LC_MESSAGES/kcmkwincommon.mo share/locale/pa/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/pa/LC_MESSAGES/kcmkwm.mo share/locale/pa/LC_MESSAGES/kwin.mo share/locale/pl/LC_MESSAGES/kcm_kwin_effects.mo share/locale/pl/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/pl/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/pl/LC_MESSAGES/kcm_kwindecoration.mo share/locale/pl/LC_MESSAGES/kcm_kwinrules.mo share/locale/pl/LC_MESSAGES/kcm_kwintabbox.mo share/locale/pl/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/pl/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/pl/LC_MESSAGES/kcmkwincommon.mo share/locale/pl/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/pl/LC_MESSAGES/kcmkwm.mo share/locale/pl/LC_MESSAGES/kwin.mo share/locale/pt/LC_MESSAGES/kcm_kwin_effects.mo share/locale/pt/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/pt/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/pt/LC_MESSAGES/kcm_kwindecoration.mo share/locale/pt/LC_MESSAGES/kcm_kwinrules.mo share/locale/pt/LC_MESSAGES/kcm_kwintabbox.mo share/locale/pt/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/pt/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/pt/LC_MESSAGES/kcmkwincommon.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_BR/LC_MESSAGES/kcm_animations.mo share/locale/pt_BR/LC_MESSAGES/kcm_kwin_effects.mo share/locale/pt_BR/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/pt_BR/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/pt_BR/LC_MESSAGES/kcm_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_kwinxwayland.mo share/locale/pt_BR/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/pt_BR/LC_MESSAGES/kcmkwincommon.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/ro/LC_MESSAGES/kcm_kwin_effects.mo share/locale/ro/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/ro/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/ro/LC_MESSAGES/kcm_kwindecoration.mo share/locale/ro/LC_MESSAGES/kcm_kwinrules.mo share/locale/ro/LC_MESSAGES/kcm_kwintabbox.mo share/locale/ro/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/ro/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/ro/LC_MESSAGES/kcmkwincommon.mo share/locale/ro/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/ro/LC_MESSAGES/kcmkwm.mo share/locale/ro/LC_MESSAGES/kwin.mo share/locale/ru/LC_MESSAGES/kcm_animations.mo share/locale/ru/LC_MESSAGES/kcm_kwin_effects.mo share/locale/ru/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/ru/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/ru/LC_MESSAGES/kcm_kwindecoration.mo share/locale/ru/LC_MESSAGES/kcm_kwinrules.mo share/locale/ru/LC_MESSAGES/kcm_kwintabbox.mo share/locale/ru/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/ru/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/ru/LC_MESSAGES/kcmkwincommon.mo share/locale/ru/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/ru/LC_MESSAGES/kcmkwm.mo share/locale/ru/LC_MESSAGES/kwin.mo share/locale/sa/LC_MESSAGES/kcm_kwin_effects.mo share/locale/sa/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/sa/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/sa/LC_MESSAGES/kcm_kwindecoration.mo share/locale/sa/LC_MESSAGES/kcm_kwinrules.mo share/locale/sa/LC_MESSAGES/kcm_kwintabbox.mo share/locale/sa/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/sa/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/sa/LC_MESSAGES/kcmkwincommon.mo share/locale/sa/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/sa/LC_MESSAGES/kcmkwm.mo share/locale/sa/LC_MESSAGES/kwin.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/kcmkwm.mo share/locale/se/LC_MESSAGES/kwin.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/kcmkwinscreenedges.mo share/locale/si/LC_MESSAGES/kcmkwm.mo share/locale/si/LC_MESSAGES/kwin.mo share/locale/sk/LC_MESSAGES/kcm_kwin_effects.mo share/locale/sk/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/sk/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/sk/LC_MESSAGES/kcm_kwindecoration.mo share/locale/sk/LC_MESSAGES/kcm_kwinrules.mo share/locale/sk/LC_MESSAGES/kcm_kwintabbox.mo share/locale/sk/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/sk/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/sk/LC_MESSAGES/kcmkwincommon.mo share/locale/sk/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/sk/LC_MESSAGES/kcmkwm.mo share/locale/sk/LC_MESSAGES/kwin.mo share/locale/sl/LC_MESSAGES/kcm_animations.mo share/locale/sl/LC_MESSAGES/kcm_kwin_effects.mo share/locale/sl/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/sl/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/sl/LC_MESSAGES/kcm_kwindecoration.mo share/locale/sl/LC_MESSAGES/kcm_kwinrules.mo share/locale/sl/LC_MESSAGES/kcm_kwintabbox.mo share/locale/sl/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/sl/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/sl/LC_MESSAGES/kcmkwincommon.mo share/locale/sl/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/sl/LC_MESSAGES/kcmkwm.mo share/locale/sl/LC_MESSAGES/kwin.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/kcmkwinscreenedges.mo share/locale/sq/LC_MESSAGES/kcmkwm.mo share/locale/sq/LC_MESSAGES/kwin.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/kcmkwinscreenedges.mo share/locale/sr/LC_MESSAGES/kcmkwm.mo share/locale/sr/LC_MESSAGES/kwin.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/kcmkwinscreenedges.mo share/locale/sr@ijekavian/LC_MESSAGES/kcmkwm.mo share/locale/sr@ijekavian/LC_MESSAGES/kwin.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/kcmkwinscreenedges.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmkwm.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kwin.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/kcmkwinscreenedges.mo share/locale/sr@latin/LC_MESSAGES/kcmkwm.mo share/locale/sr@latin/LC_MESSAGES/kwin.mo share/locale/sv/LC_MESSAGES/kcm_animations.mo share/locale/sv/LC_MESSAGES/kcm_kwin_effects.mo share/locale/sv/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/sv/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/sv/LC_MESSAGES/kcm_kwindecoration.mo share/locale/sv/LC_MESSAGES/kcm_kwinrules.mo share/locale/sv/LC_MESSAGES/kcm_kwintabbox.mo share/locale/sv/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/sv/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/sv/LC_MESSAGES/kcmkwincommon.mo share/locale/sv/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/sv/LC_MESSAGES/kcmkwm.mo share/locale/sv/LC_MESSAGES/kwin.mo share/locale/ta/LC_MESSAGES/kcm_kwin_effects.mo share/locale/ta/LC_MESSAGES/kcm_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/kcm_kwintabbox.mo share/locale/ta/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/ta/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/ta/LC_MESSAGES/kcmkwincommon.mo share/locale/ta/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/ta/LC_MESSAGES/kcmkwm.mo share/locale/ta/LC_MESSAGES/kwin.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/kcmkwm.mo share/locale/te/LC_MESSAGES/kwin.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/kcmkwinscreenedges.mo share/locale/tg/LC_MESSAGES/kcmkwm.mo share/locale/tg/LC_MESSAGES/kwin.mo share/locale/th/LC_MESSAGES/kcm_kwin_effects.mo share/locale/th/LC_MESSAGES/kcm_kwin_scripts.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/kcm_virtualkeyboard.mo share/locale/th/LC_MESSAGES/kcmkwincommon.mo share/locale/th/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/th/LC_MESSAGES/kcmkwm.mo share/locale/th/LC_MESSAGES/kwin.mo share/locale/tok/LC_MESSAGES/kcm_kwinrules.mo share/locale/tr/LC_MESSAGES/kcm_animations.mo share/locale/tr/LC_MESSAGES/kcm_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/kcm_kwinxwayland.mo share/locale/tr/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/tr/LC_MESSAGES/kcmkwincommon.mo share/locale/tr/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/tr/LC_MESSAGES/kcmkwm.mo share/locale/tr/LC_MESSAGES/kwin.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/kcmkwinscreenedges.mo share/locale/ug/LC_MESSAGES/kcmkwm.mo share/locale/ug/LC_MESSAGES/kwin.mo share/locale/uk/LC_MESSAGES/kcm_animations.mo share/locale/uk/LC_MESSAGES/kcm_kwin_effects.mo share/locale/uk/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/uk/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/uk/LC_MESSAGES/kcm_kwindecoration.mo share/locale/uk/LC_MESSAGES/kcm_kwinrules.mo share/locale/uk/LC_MESSAGES/kcm_kwintabbox.mo share/locale/uk/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/uk/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/uk/LC_MESSAGES/kcmkwincommon.mo share/locale/uk/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/uk/LC_MESSAGES/kcmkwm.mo share/locale/uk/LC_MESSAGES/kwin.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@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/vi/LC_MESSAGES/kcm_kwin_effects.mo share/locale/vi/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/vi/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/vi/LC_MESSAGES/kcm_kwindecoration.mo share/locale/vi/LC_MESSAGES/kcm_kwinrules.mo share/locale/vi/LC_MESSAGES/kcm_kwintabbox.mo share/locale/vi/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/vi/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/vi/LC_MESSAGES/kcmkwincommon.mo share/locale/vi/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/vi/LC_MESSAGES/kcmkwm.mo share/locale/vi/LC_MESSAGES/kwin.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/kcmkwinscreenedges.mo share/locale/wa/LC_MESSAGES/kcmkwm.mo share/locale/wa/LC_MESSAGES/kwin.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_animations.mo share/locale/zh_CN/LC_MESSAGES/kcm_kwin_effects.mo share/locale/zh_CN/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/zh_CN/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/zh_CN/LC_MESSAGES/kcm_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_kwinxwayland.mo share/locale/zh_CN/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/zh_CN/LC_MESSAGES/kcmkwincommon.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_TW/LC_MESSAGES/kcm_animations.mo share/locale/zh_TW/LC_MESSAGES/kcm_kwin_effects.mo share/locale/zh_TW/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/zh_TW/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/zh_TW/LC_MESSAGES/kcm_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/kcm_kwinxwayland.mo share/locale/zh_TW/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/zh_TW/LC_MESSAGES/kcmkwincommon.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/qlogging-categories6/org_kde_kwin.categories diff --git a/x11/plasma6-kactivitymanagerd/distinfo b/x11/plasma6-kactivitymanagerd/distinfo index 253bf85eac70..70f0a26e9e88 100644 --- a/x11/plasma6-kactivitymanagerd/distinfo +++ b/x11/plasma6-kactivitymanagerd/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751380631 -SHA256 (KDE/plasma/6.4.2/kactivitymanagerd-6.4.2.tar.xz) = 1ab68540247b207ae14be46477b604a8e8ff03dab007e9fce160d230fe83b6c3 -SIZE (KDE/plasma/6.4.2/kactivitymanagerd-6.4.2.tar.xz) = 101588 +TIMESTAMP = 1752584482 +SHA256 (KDE/plasma/6.4.3/kactivitymanagerd-6.4.3.tar.xz) = e9eb2b063bfc469d465a8afbdf0ec76a0410ca3f68f7666c50b5012315b6a68b +SIZE (KDE/plasma/6.4.3/kactivitymanagerd-6.4.3.tar.xz) = 101548 diff --git a/x11/plasma6-kgamma/distinfo b/x11/plasma6-kgamma/distinfo index 0c6ba91f1835..ff45986a8f7d 100644 --- a/x11/plasma6-kgamma/distinfo +++ b/x11/plasma6-kgamma/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751380632 -SHA256 (KDE/plasma/6.4.2/kgamma-6.4.2.tar.xz) = ff825988ba5444d0fee6e338c643d7d31db7d1f35be2dc62ce67f6ee801c8f1b -SIZE (KDE/plasma/6.4.2/kgamma-6.4.2.tar.xz) = 87704 +TIMESTAMP = 1752584483 +SHA256 (KDE/plasma/6.4.3/kgamma-6.4.3.tar.xz) = d85f86f6fd9b0173395623b518a4060951c10f7506c561b999818e819b13ec0e +SIZE (KDE/plasma/6.4.3/kgamma-6.4.3.tar.xz) = 87664 diff --git a/x11/plasma6-kglobalacceld/distinfo b/x11/plasma6-kglobalacceld/distinfo index c40d70715220..5c6eab76c962 100644 --- a/x11/plasma6-kglobalacceld/distinfo +++ b/x11/plasma6-kglobalacceld/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751380633 -SHA256 (KDE/plasma/6.4.2/kglobalacceld-6.4.2.tar.xz) = 9f7ca2533aae3d5cd13895f47ae07bfdba4165af01ccaa460d645b3c4d2a51e4 -SIZE (KDE/plasma/6.4.2/kglobalacceld-6.4.2.tar.xz) = 56488 +TIMESTAMP = 1752584483 +SHA256 (KDE/plasma/6.4.3/kglobalacceld-6.4.3.tar.xz) = a69c787e1b133ad5e99f3f83d1a195721f27e5200cc60cdba70d8dc03acc4378 +SIZE (KDE/plasma/6.4.3/kglobalacceld-6.4.3.tar.xz) = 56480 diff --git a/x11/plasma6-kscreen/distinfo b/x11/plasma6-kscreen/distinfo index 5e54938c7641..02340adaea4c 100644 --- a/x11/plasma6-kscreen/distinfo +++ b/x11/plasma6-kscreen/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751380635 -SHA256 (KDE/plasma/6.4.2/kscreen-6.4.2.tar.xz) = 771a6c4a17c34db7628bab58ee6d1977d58eee28a4d394fb9ec208cf79e76819 -SIZE (KDE/plasma/6.4.2/kscreen-6.4.2.tar.xz) = 31776068 +TIMESTAMP = 1752584483 +SHA256 (KDE/plasma/6.4.3/kscreen-6.4.3.tar.xz) = 37ef7032a2136293cfeceb41faeff525de80c7119cd8c854116b8b300efa60a9 +SIZE (KDE/plasma/6.4.3/kscreen-6.4.3.tar.xz) = 31776464 diff --git a/x11/plasma6-kwayland/distinfo b/x11/plasma6-kwayland/distinfo index a71d76584417..76ac47b91564 100644 --- a/x11/plasma6-kwayland/distinfo +++ b/x11/plasma6-kwayland/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751380636 -SHA256 (KDE/plasma/6.4.2/kwayland-6.4.2.tar.xz) = 828dd9c1ec327721583d6f04a4413f08f6ffd9350c51de16986359aa70c808d7 -SIZE (KDE/plasma/6.4.2/kwayland-6.4.2.tar.xz) = 132836 +TIMESTAMP = 1752584483 +SHA256 (KDE/plasma/6.4.3/kwayland-6.4.3.tar.xz) = ff507d3c435407b3831ead1ea63f6dea6c778ba6a1f5b45895d5fec6f5c1f982 +SIZE (KDE/plasma/6.4.3/kwayland-6.4.3.tar.xz) = 132836 diff --git a/x11/plasma6-layer-shell-qt/distinfo b/x11/plasma6-layer-shell-qt/distinfo index c1b521679475..f48028aacecd 100644 --- a/x11/plasma6-layer-shell-qt/distinfo +++ b/x11/plasma6-layer-shell-qt/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751380636 -SHA256 (KDE/plasma/6.4.2/layer-shell-qt-6.4.2.tar.xz) = 7bead02f506e7c1efadc61588cc52e8ed2fa467ca183485c3b7280c08a5a6312 -SIZE (KDE/plasma/6.4.2/layer-shell-qt-6.4.2.tar.xz) = 35748 +TIMESTAMP = 1752584484 +SHA256 (KDE/plasma/6.4.3/layer-shell-qt-6.4.3.tar.xz) = 33e64ec0cd2d9e9547c3c3faa9c4d6a2006bf681fac361511f441b51f9dddb7c +SIZE (KDE/plasma/6.4.3/layer-shell-qt-6.4.3.tar.xz) = 35744 diff --git a/x11/plasma6-libkscreen/distinfo b/x11/plasma6-libkscreen/distinfo index a6c825db2305..0dec2a7d8c7c 100644 --- a/x11/plasma6-libkscreen/distinfo +++ b/x11/plasma6-libkscreen/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751380639 -SHA256 (KDE/plasma/6.4.2/libkscreen-6.4.2.tar.xz) = 73dfbaf6c437a5c1d01f768b4f140070d047f8fec306442acd93ab54837ec1aa -SIZE (KDE/plasma/6.4.2/libkscreen-6.4.2.tar.xz) = 122336 +TIMESTAMP = 1752584486 +SHA256 (KDE/plasma/6.4.3/libkscreen-6.4.3.tar.xz) = a25f0604110652c847e000ede6fde9f277eb38850edeabde3e3a41d2eb81b06b +SIZE (KDE/plasma/6.4.3/libkscreen-6.4.3.tar.xz) = 122376 diff --git a/x11/plasma6-libplasma/distinfo b/x11/plasma6-libplasma/distinfo index edc45b1b83e0..513c1cf12caa 100644 --- a/x11/plasma6-libplasma/distinfo +++ b/x11/plasma6-libplasma/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751380641 -SHA256 (KDE/plasma/6.4.2/libplasma-6.4.2.tar.xz) = a9bb5532e6efb30833c76b5e2e0fb1ce1aae540beb6813b69163d20b96d560ac -SIZE (KDE/plasma/6.4.2/libplasma-6.4.2.tar.xz) = 1970176 +TIMESTAMP = 1752584486 +SHA256 (KDE/plasma/6.4.3/libplasma-6.4.3.tar.xz) = f508ceced32a114462e5e31195600ee440a1a21b8eb77ba20033cfb892bb0cc8 +SIZE (KDE/plasma/6.4.3/libplasma-6.4.3.tar.xz) = 1970352 diff --git a/x11/plasma6-plasma-activities-stats/distinfo b/x11/plasma6-plasma-activities-stats/distinfo index d1e448186289..61d40b43376d 100644 --- a/x11/plasma6-plasma-activities-stats/distinfo +++ b/x11/plasma6-plasma-activities-stats/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751380647 -SHA256 (KDE/plasma/6.4.2/plasma-activities-stats-6.4.2.tar.xz) = c689f51d29f0b65a913e6d746484347d516df9a172f2c51e7bc85cade72a8e7a -SIZE (KDE/plasma/6.4.2/plasma-activities-stats-6.4.2.tar.xz) = 83020 +TIMESTAMP = 1752584491 +SHA256 (KDE/plasma/6.4.3/plasma-activities-stats-6.4.3.tar.xz) = 991002e3da9b5969b9583cd169050a23aacbe02f2d7d4ab1a19f5bd7c72b3b6b +SIZE (KDE/plasma/6.4.3/plasma-activities-stats-6.4.3.tar.xz) = 83032 diff --git a/x11/plasma6-plasma-activities/distinfo b/x11/plasma6-plasma-activities/distinfo index 84b01c01ef13..f5d8f270023f 100644 --- a/x11/plasma6-plasma-activities/distinfo +++ b/x11/plasma6-plasma-activities/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751380644 -SHA256 (KDE/plasma/6.4.2/plasma-activities-6.4.2.tar.xz) = bbca03ac6a6a71958b4426d575ec68239925cd3ed1cba5bd171b7e7b8605a8db -SIZE (KDE/plasma/6.4.2/plasma-activities-6.4.2.tar.xz) = 66388 +TIMESTAMP = 1752584489 +SHA256 (KDE/plasma/6.4.3/plasma-activities-6.4.3.tar.xz) = 1c8dca746602defacd495b9ae637c1700d3be7e7e3cc5d499a5fd669a0b98ef0 +SIZE (KDE/plasma/6.4.3/plasma-activities-6.4.3.tar.xz) = 66368 diff --git a/x11/plasma6-plasma-desktop/distinfo b/x11/plasma6-plasma-desktop/distinfo index 2c1a4a73304d..de2a2b26c17b 100644 --- a/x11/plasma6-plasma-desktop/distinfo +++ b/x11/plasma6-plasma-desktop/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751380648 -SHA256 (KDE/plasma/6.4.2/plasma-desktop-6.4.2.tar.xz) = 329691b92f368c22114604650e39db91c63870c80c0c08e853c6a040dbd30a84 -SIZE (KDE/plasma/6.4.2/plasma-desktop-6.4.2.tar.xz) = 16748724 +TIMESTAMP = 1752584492 +SHA256 (KDE/plasma/6.4.3/plasma-desktop-6.4.3.tar.xz) = 190a3f558f6b3fa92164c3f269e70ffd1e981e352dd718a43a4cb007245aa525 +SIZE (KDE/plasma/6.4.3/plasma-desktop-6.4.3.tar.xz) = 16748780 diff --git a/x11/plasma6-plasma-integration/distinfo b/x11/plasma6-plasma-integration/distinfo index f3f12d1f801e..10bb36c0fa2f 100644 --- a/x11/plasma6-plasma-integration/distinfo +++ b/x11/plasma6-plasma-integration/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751380649 -SHA256 (KDE/plasma/6.4.2/plasma-integration-6.4.2.tar.xz) = f0b56ce04ae1117cc0f22a72a600164fd2148a25b7e79dc0c4c507f88990a5cc -SIZE (KDE/plasma/6.4.2/plasma-integration-6.4.2.tar.xz) = 97828 +TIMESTAMP = 1752584492 +SHA256 (KDE/plasma/6.4.3/plasma-integration-6.4.3.tar.xz) = 71f3e643d7b7f33fc2e473850424dcfb00c3258d7fe2e271a032621333288bd7 +SIZE (KDE/plasma/6.4.3/plasma-integration-6.4.3.tar.xz) = 97824 diff --git a/x11/plasma6-plasma-workspace/Makefile b/x11/plasma6-plasma-workspace/Makefile index c083fcb7630d..5affef0be1cf 100644 --- a/x11/plasma6-plasma-workspace/Makefile +++ b/x11/plasma6-plasma-workspace/Makefile @@ -1,62 +1,63 @@ PORTNAME= plasma-workspace DISTVERSION= ${KDE_PLASMA_VERSION} CATEGORIES= x11 kde kde-plasma COMMENT= KDE Plasma Workspace MAINTAINER= kde@FreeBSD.org BUILD_DEPENDS= wayland-protocols>=0:graphics/wayland-protocols LIB_DEPENDS= libcanberra.so:audio/libcanberra \ libfontconfig.so:x11-fonts/fontconfig \ libfreetype.so:print/freetype2 \ libicui18n.so:devel/icu \ libpipewire-0.3.so:multimedia/pipewire \ libqalculate.so:math/libqalculate \ libudev.so:devel/libudev-devd \ libwayland-client.so:graphics/wayland \ libxcb-image.so:x11/xcb-util-image \ libxcb-util.so:x11/xcb-util \ libxkbcommon.so:x11/libxkbcommon \ libQCoro6Core.so:devel/qcoro@qt6 RUN_DEPENDS= kio-extras>=24.12.3:devel/kio-extras \ kio-fuse>=5.1.0_1:filesystems/kio-fuse \ mkfontscale:x11-fonts/mkfontscale \ oxygen-icons>=0:x11-themes/oxygen-icons \ xmessage:x11/xmessage \ xrdb:x11/xrdb \ xset:x11/xset USES= cmake desktop-file-utils gettext gl kde:6 pkgconfig python \ qt:6 shebangfix tar:xz xorg USE_GL= gl opengl USE_KDE= activities activities-stats archive attica auth baloo \ bookmarks colorscheme completion config configwidgets \ coreaddons crash dbusaddons doctools filemetadata globalaccel \ guiaddons holidays i18n iconthemes idletime itemmodels \ itemviews jobwidgets kcmutils kdeclarative kio kirigami-addons \ kirigami2 kpipewire kquickcharts kscreenlocker kwin \ layer-shell-qt libkexiv2 libkscreen libksysguard libplasma \ newstuff notifications notifyconfig package parts phonon \ plasma5support prison runner service solid sonnet \ statusnotifieritem svg syntaxhighlighting texteditor \ textwidgets unitconversion userfeedback wallet wayland \ widgetsaddons windowsystem xmlgui \ ecm:build plasma-wayland-protocols:build \ kwin-x11:run USE_QT= 5compat base declarative location svg wayland USE_XORG= ice sm x11 xau xcb xcursor xext xfixes xft xi xrender xtst SHEBANG_FILES= components/calendar/kconf_update/migrate-calendar-to-plugin-id.py.in -CMAKE_ON= PLASMA_X11_DEFAULT_SESSION +CMAKE_ON= PLASMA_X11_DEFAULT_SESSION \ + CMAKE_DISABLE_FIND_PACKAGE_KF6NetworkManagerQt OPTIONS_DEFINE= GTK GTK_DESC= Global menu bar support for GTK applications GTK_RUN_DEPENDS= appmenu-gtk-module>0:x11/gtk-app-menu post-patch: @${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|g' \ ${PATCH_WRKSRC}/startkde/startplasma.cpp \ ${PATCH_WRKSRC}/login-sessions/plasmawayland.desktop.cmake .include diff --git a/x11/plasma6-plasma-workspace/distinfo b/x11/plasma6-plasma-workspace/distinfo index 4b5111a2f91a..311b61db7e15 100644 --- a/x11/plasma6-plasma-workspace/distinfo +++ b/x11/plasma6-plasma-workspace/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751380651 -SHA256 (KDE/plasma/6.4.2/plasma-workspace-6.4.2.tar.xz) = ed657be39ec9bc1d4e5ba4c5e717b4ab683dd27bececfaef6e7e209f771b4850 -SIZE (KDE/plasma/6.4.2/plasma-workspace-6.4.2.tar.xz) = 20819960 +TIMESTAMP = 1752584492 +SHA256 (KDE/plasma/6.4.3/plasma-workspace-6.4.3.tar.xz) = 7254f285a91ec802b0612a7adb242d98362accdff866fc1285bb65b8048dedb8 +SIZE (KDE/plasma/6.4.3/plasma-workspace-6.4.3.tar.xz) = 20821552