diff --git a/Mk/Uses/kde.mk b/Mk/Uses/kde.mk index 99e8d4dc29d7..80003e5d8ccc 100644 --- a/Mk/Uses/kde.mk +++ b/Mk/Uses/kde.mk @@ -1,1068 +1,1068 @@ # 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} . if ${CATEGORIES:Mkde-devel} 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} PKGNAMESUFFIX?= -devel . else KDE_APPLICATIONS_BRANCH?= ${KDE_APPLICATIONS5_BRANCH} KDE_APPLICATIONS_VERSION?= ${KDE_APPLICATIONS5_VERSION} KDE_APPLICATIONS_SHLIB_VER?= ${KDE_APPLICATIONS5_SHLIB_VER} KDE_APPLICATIONS_SHLIB_G_VER?= ${KDE_APPLICATIONS5_SHLIB_G_VER} . endif # Current KDE desktop. -KDE_PLASMA5_VERSION?= 5.27.9 +KDE_PLASMA5_VERSION?= 5.27.10 KDE_PLASMA5_BRANCH?= stable # Next KDE Plasma desktop KDE_PLASMA6_VERSION?= 5.90.0 KDE_PLASMA6_BRANCH?= unstable # Current KDE frameworks. KDE_FRAMEWORKS5_VERSION?= 5.112.0 KDE_FRAMEWORKS5_BRANCH?= stable # Next KDE Frameworks (Qt6 based) KDE_FRAMEWORKS6_VERSION?= 5.246.0 KDE_FRAMEWORKS6_BRANCH?= unstable # Current KDE applications. KDE_APPLICATIONS5_VERSION?= 23.08.4 KDE_APPLICATIONS5_SHLIB_VER?= 5.24.4 # G as in KDE Gear, and as in "don't make the variable name longer than required" KDE_APPLICATIONS5_SHLIB_G_VER?= 23.8.4 KDE_APPLICATIONS5_BRANCH?= stable # Next KDE applications. KDE_APPLICATIONS6_VERSION?= 24.01.80 KDE_APPLICATIONS6_SHLIB_VER?= 5.24.3 # G as in KDE Gear, and as in "don't make the variable name longer than required" KDE_APPLICATIONS6_SHLIB_G_VER?= 24.01.80 KDE_APPLICATIONS6_BRANCH?= unstable # Extended KDE universe applications. CALLIGRA_VERSION?= 2.9.11 CALLIGRA_BRANCH?= stable # ============================================================================== # === INSTALLATION PREFIXES AND HEADER LOCATION ================================ # Define unversioned prefix variable. KDE_PREFIX= ${LOCALBASE} # ============================================================================== # === CATEGORIES HANDLING -- SETTING DEFAULT VALUES ============================ # Doing MASTER_SITES magic based on the category of the port _KDE_CATEGORIES_SUPPORTED= kde-applications kde-frameworks kde-plasma 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}" 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} . 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_FRAMEWORKS_PORTING -- it maybe would be # better to rely on ${_USE_FRAMEWORKS_PORTING:S/^/k/g} _PORTINGAIDS= kjs kjsembed kdelibs4support kdesignerplugin kdewebkit khtml kmediaplayer kross kxmlrpcclient . if ${_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} . endif DIST_SUBDIR?= KDE/frameworks/${KDE_FRAMEWORKS_VERSION} . if ${_KDE_VERSION:M6} 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 # Set man-page installation prefix. CMAKE_ARGS+= -DKDE_INSTALL_MANDIR:PATH="${KDE_PREFIX}/man" \ -DMAN_INSTALL_DIR:PATH="${KDE_PREFIX}/man" # Disable autotests unless TEST_TARGET is defined. . if !defined(TEST_TARGET) CMAKE_ARGS+= -DBUILD_TESTING:BOOL=false . endif # ============================================================================== # === SET UP PLIST_SUB ========================================================= # Prefix and include directory. PLIST_SUB+= KDE_PREFIX="${KDE_PREFIX}" # KDE Applications version. PLIST_SUB+= KDE_APPLICATIONS_VERSION="${KDE_APPLICATIONS_VERSION}" \ KDE_FRAMEWORKS_VERSION="${KDE_FRAMEWORKS_VERSION}" \ KDE_PLASMA_VERSION="${KDE_PLASMA_VERSION}" # ============================================================================== _USE_KDE_BOTH= akonadi attica libkcddb libkcompactdisc libkdcraw libkdegames \ libkeduvocdocument libkexiv2 libkipi libksane okular \ baloo baloo-widgets kate marble # List of components of the KDE Frameworks distribution. # The *_TIER variables are internal, primarily for checking # that our list of frameworks matches the structure offered upstream. _USE_FRAMEWORKS_TIER1= apidox archive attica5 breeze-icons codecs config \ coreaddons dbusaddons dnssd holidays i18n idletime itemmodels \ itemviews kirigami2 kquickcharts oxygen-icons5 plotting prison \ qqc2-desktop-style solid sonnet syntaxhighlighting \ threadweaver wayland widgetsaddons windowsystem # NOT LISTED TIER1: modemmanagerqt networkmanagerqt (not applicable) _USE_FRAMEWORKS_TIER2= auth completion crash doctools \ filemetadata kimageformats jobwidgets notifications \ package pty syndication unitconversion _USE_FRAMEWORKS_TIER3= activities activities-stats baloo5 bookmarks configwidgets \ designerplugin emoticons globalaccel guiaddons \ iconthemes init kcmutils kdav kdeclarative \ kded kdesu kdewebkit kio kpipewire newstuff notifyconfig parts \ people plasma-framework purpose runner service texteditor \ textwidgets wallet xmlgui xmlrpcclient _USE_FRAMEWORKS_TIER4= frameworkintegration calendarcore contacts # Porting Aids frameworks provide code and utilities to ease the transition from # kdelibs 4 to KDE Frameworks 5. Code should aim to port away from this framework, # new projects should avoid using these libraries. _USE_FRAMEWORKS_PORTING=js jsembed kdelibs4support khtml mediaplayer kross _USE_FRAMEWORKS5_ALL= ecm \ ${_USE_FRAMEWORKS_TIER1} \ ${_USE_FRAMEWORKS_TIER2} \ ${_USE_FRAMEWORKS_TIER3} \ ${_USE_FRAMEWORKS_TIER4} \ ${_USE_FRAMEWORKS_PORTING} \ ${_USE_FRAMEWORKS_EXTRA} \ kpublictransport kosm \ plasma-wayland-protocols # TODO: fix _USE_FRAMEWORKS6_ALL= ecm colorscheme \ svg \ statusnotifieritem \ plasma-wayland-protocols \ userfeedback \ ${_USE_FRAMEWORKS_TIER1:Noxygen-icons5:Nwayland} \ ${_USE_FRAMEWORKS_TIER2} \ ${_USE_FRAMEWORKS_TIER3:Nkdewebkit:Nemoticons:Ndesignerplugin:Nactivities:Nactivities-stats:Ninit:Nplasma-framework:Nxmlrpcclient:Nkpipewire} \ ${_USE_FRAMEWORKS_TIER4} \ ${_USE_FRAMEWORKS_EXTRA} _USE_FRAMEWORKS_ALL= ${_USE_FRAMEWORKS${_KDE_VERSION}_ALL} # List of components of the KDE Plasma distribution. _USE_PLASMA_ALL= activitymanagerd breeze breeze-gtk \ decoration discover drkonqi hotkeys \ infocenter kde-cli-tools kde-gtk-config \ kdeplasma-addons kgamma5 kmenuedit kscreen \ kscreenlocker ksshaskpass ksysguard ksystemstats kwallet-pam \ kwayland-integration kwin kwrited layer-shell-qt libkscreen \ libksysguard milou oxygen oxygen-sounds plasma-browser-integration \ plasma-desktop plasma-disks plasma-integration plasma-pa \ plasma-sdk plasma-workspace plasma-workspace-wallpapers \ polkit-kde-agent-1 powerdevil systemsettings xdg-desktop-portal-kde \ kirigami-addons # List of components of the KDE PIM distribution (part of applications). _USE_KDEPIM5_ALL= akonadicontacts akonadiimportwizard akonadimime akonadinotes \ akonadicalendar akonadisearch \ calendarcore calendarsupport calendarutils \ contacts eventviews gapi grantleetheme \ gravatar identitymanagement imap \ incidenceeditor kdepim-addons \ kdepim-runtime5 kitinerary kontactinterface kpkpass \ ksmtp ldap libkdepim libkleo libksieve mailcommon \ mailimporter mailtransport mbox messagelib \ mime pimcommon pimtextedit tnef \ kalarm kontact kmail mbox-importer \ akonadiconsole akregator grantlee-editor kaddressbook \ kalarm kmail-account-wizard kmail knotes kontact \ korganizer pim-data-exporter ktextaddons _USE_PHONON_ALL= phonon phonon-backend _USE_KDE5_ALL= ${_USE_FRAMEWORKS_ALL} \ ${_USE_PLASMA_ALL} \ ${_USE_KDEPIM5_ALL} \ ${_USE_KDE_BOTH} \ ${_USE_PHONON_ALL} # TODO: fix _USE_KDE6_ALL= ecm colorscheme \ svg \ plasma-wayland-protocols \ mediaplayer \ ${_USE_FRAMEWORKS_ALL} \ ${_USE_PLASMA_ALL} \ plasma5support activities activities-stats kpipewire wayland globalacceld libplasma \ ${_USE_PHONON_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}} kde-apidox_PORT= devel/kf${_KDE_VERSION}-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-attica5_PORT= x11-toolkits/kf${_KDE_VERSION}-attica kde-attica5_LIB= libKF${_KDE_VERSION}Attica.so kde-auth_PORT= devel/kf${_KDE_VERSION}-kauth kde-auth_LIB= libKF${_KDE_VERSION}AuthCore.so kde-baloo5_PORT= sysutils/kf${_KDE_VERSION}-baloo kde-baloo5_LIB= libKF${_KDE_VERSION}Baloo.so kde-bookmarks_PORT= devel/kf${_KDE_VERSION}-kbookmarks kde-bookmarks_LIB= libKF${_KDE_VERSION}Bookmarks.so kde-breeze-icons_PORT= x11-themes/kf${_KDE_VERSION}-breeze-icons kde-breeze-icons_PATH= ${KDE_PREFIX}/share/icons/breeze/index.theme kde-breeze-icons_TYPE= run 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} kde-ecm_PORT= devel/kf${_KDE_VERSION}-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-kdewebkit_PORT= www/kf${_KDE_VERSION}-kdewebkit kde-kdewebkit_LIB= libKF${_KDE_VERSION}WebKit.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-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 kde-oxygen-icons5_PORT= x11-themes/kf${_KDE_VERSION}-oxygen-icons5 kde-oxygen-icons5_PATH= ${KDE_PREFIX}/share/icons/oxygen/index.theme kde-oxygen-icons5_TYPE= run kde-oxygen-sounds_PORT= audio/plasma${_KDE_VERSION}-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-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-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= libkdecorations2.so kde-discover_PORT= sysutils/plasma${_KDE_VERSION}-discover kde-discover_PATH= ${KDE_PREFIX}/bin/plasma-discover kde-drkonqi_PORT= sysutils/plasma${_KDE_VERSION}-drkonqi kde-drkonqi_PATH= ${KDE_PREFIX}/lib/libexec/drkonqi kde-hotkeys_PORT= devel/plasma${_KDE_VERSION}-khotkeys kde-hotkeys_LIB= libkhotkeysprivate.so.5 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-kgamma5_PORT5= x11/plasma${_KDE_VERSION}-kgamma5 kde-kgamma5_PORT6= x11/plasma${_KDE_VERSION}-kgamma kde-kgamma5_PORT= ${kde-kgamma5_PORT${_KDE_VERSION}} kde-kgamma5_PATH5= ${QT_PLUGINDIR}/plasma/kcms/systemsettings/kcm_kgamma.so kde-kgamma5_PATH6= ${QT_PLUGINDIR}/plasma/kcms/systemsettings_qwidgets/kcm_kgamma.so kde-kgamma5_PATH= ${kde-kgamma5_PATH${_KDE_VERSION}} 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-ksysguard_PORT= sysutils/plasma${_KDE_VERSION}-ksysguard kde-ksysguard_PATH= ${KDE_PREFIX}/bin/ksysguard 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_PATH5= ${KDE_PREFIX}/lib/pam_kwallet5.so kde-kwallet-pam_PATH6= ${KDE_PREFIX}/lib/security/pam_kwallet5.so kde-kwallet-pam_PATH= ${kde-kwallet-pam_PATH${_KDE_VERSION}} kde-kwayland-integration_PORT= x11/plasma${_KDE_VERSION}-kwayland-integration kde-kwayland-integration_PATH= ${QT_PLUGINDIR}/kf${_KDE_VERSION}/kwindowsystem/KF5WindowSystemKWaylandPlugin.so kde-kwin_PORT= x11-wm/plasma${_KDE_VERSION}-kwin kde-kwin_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_LIB= libksgrd.so kde-milou_PORT= deskutils/plasma${_KDE_VERSION}-milou kde-milou_PATH5= ${KDE_PREFIX}/lib/libmilou.so.5 kde-milou_PATH6= ${QT_QMLDIR}/org/kde/milou/libmilouqmlplugin.so kde-milou_PATH= ${kde-milou_PATH${_KDE_VERSION}} kde-oxygen_PORT= x11-themes/plasma${_KDE_VERSION}-oxygen kde-oxygen_PATH5= ${QT_PLUGINDIR}/styles/oxygen.so kde-oxygen_PATH6= ${QT_PLUGINDIR}/kstyle_config/kstyle_oxygen_config.so kde-oxygen_PATH= ${kde-oxygen_PATH${_KDE_VERSION}} 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_PATH5= ${KDE_PREFIX}/lib/libexec/kauth/kded-smart-helper kde-plasma-disks_PATH6= ${KDE_PREFIX}/lib/libexec/kf6/kauth/kded-smart-helper kde-plasma-disks_PATH= ${kde-plasma-disks_PATH${_KDE_VERSION}} kde-plasma-integration_PORT= x11/plasma${_KDE_VERSION}-plasma-integration kde-plasma-integration_PATH5= ${QT_PLUGINDIR}/platformthemes/KDEPlasmaPlatformTheme.so kde-plasma-integration_PATH6= ${QT_PLUGINDIR}/platformthemes/KDEPlasmaPlatformTheme6.so kde-plasma-integration_PATH= ${kde-plasma-integration_PATH${_KDE_VERSION}} 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-systemsettings_PORT= sysutils/plasma${_KDE_VERSION}-systemsettings kde-systemsettings_PATH5= ${KDE_PREFIX}/bin/systemsettings5 kde-systemsettings_PATH6= ${KDE_PREFIX}/bin/systemsettings kde-systemsettings_PATH= ${kde-systemsettings_PATH${_KDE_VERSION}} 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= libKF${_KDE_VERSION}Plasma5Support.so kde-kirigami-addons_PORT5= x11-toolkits/kirigami-addons kde-kirigami-addons_PORT6= x11-toolkits/kirigami-addons-devel kde-kirigami-addons_PORT= ${kde-kirigami-addons_PORT${_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= libKPim5AkonadiContact.so kde-akonadiimportwizard_PORT= deskutils/akonadi-import-wizard kde-akonadiimportwizard_LIB= libKPim5ImportWizard.so kde-akonadimime_PORT= net/akonadi-mime kde-akonadimime_LIB= libKPim5AkonadiMime.so kde-akonadinotes_PORT= net/akonadi-notes kde-akonadinotes_LIB= libKPim5AkonadiNotes.so kde-akonadicalendar_PORT= net/akonadi-calendar kde-akonadicalendar_LIB= libKPim5AkonadiCalendar.so kde-akonadisearch_PORT= net/akonadi-search kde-akonadisearch_LIB= libKPim5AkonadiSearchCore.so kde-calendarsupport_PORT= net/calendarsupport kde-calendarsupport_LIB= libKPim5CalendarSupport.so kde-calendarutils_PORT= net/kcalutils kde-calendarutils_LIB= libKPim5CalendarUtils.so kde-eventviews_PORT= net/eventviews kde-eventviews_LIB= libKPim5EventViews.so kde-gapi_PORT= net/libkgapi kde-gapi_LIB= libKPim5GAPIBlogger.so kde-grantleetheme_PORT= deskutils/grantleetheme kde-grantleetheme_LIB= libKPim5GrantleeTheme.so kde-gravatar_PORT= net/libgravatar kde-gravatar_LIB= libKPim5Gravatar.so kde-identitymanagement_PORT= net/kidentitymanagement kde-identitymanagement_LIB= libKPim5IdentityManagement.so kde-imap_PORT= net/kimap kde-imap_LIB= libKPim5IMAP.so kde-incidenceeditor_PORT= net/incidenceeditor kde-incidenceeditor_LIB= libKPim5IncidenceEditor.so kde-kdepim-addons_PORT= deskutils/kdepim-addons kde-kdepim-addons_PATH= ${QT_PLUGINDIR}/pim5/contacteditor/editorpageplugins/cryptopageplugin.so kde-kdepim-runtime5_PORT= deskutils/kdepim-runtime kde-kdepim-runtime5_PATH= ${KDE_PREFIX}/bin/gidmigrator kde-kitinerary_PORT= net/kitinerary kde-kitinerary_LIB= libKPim5Itinerary.so kde-kontactinterface_PORT= net/kontactinterface kde-kontactinterface_LIB= libKPim5KontactInterface.so kde-kpkpass_PORT= security/kpkpass kde-kpkpass_LIB= libKPim5PkPass.so kde-ksmtp_PORT= net/ksmtp kde-ksmtp_LIB= libKPim5SMTP.so kde-ldap_PORT= net/kldap kde-ldap_LIB= libKPim5Ldap.so kde-libkdepim_PORT= deskutils/libkdepim kde-libkdepim_LIB= libKPim5Libkdepim.so kde-libkleo_PORT= security/libkleo kde-libkleo_LIB= libKPim5Libkleo.so kde-libksieve_PORT= net/libksieve kde-libksieve_LIB= libKPim5KSieve.so kde-mailcommon_PORT= net/mailcommon kde-mailcommon_LIB= libKPim5MailCommon.so kde-mailimporter_PORT= net/mailimporter kde-mailimporter_LIB= libKPim5MailImporter.so kde-mailtransport_PORT= net/kmailtransport kde-mailtransport_LIB= libKPim5MailTransport.so kde-mbox_PORT= net/kmbox kde-mbox_LIB= libKPim5Mbox.so kde-messagelib_PORT= net/messagelib kde-messagelib_LIB= libKPim5MessageList.so kde-mime_PORT= net/kmime kde-mime_LIB= libKPim5Mime.so kde-pimcommon_PORT= net/pimcommon kde-pimcommon_LIB= libKPim5PimCommon.so kde-pimtextedit_PORT= net/kpimtextedit kde-pimtextedit_LIB= libKPim5TextEdit.so kde-tnef_PORT= net/ktnef kde-tnef_LIB= libKPim5Tnef.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-knotes_PORT= deskutils/knotes kde-knotex_PATH= ${KDE_PREFIX}/bin/knotes kde-kontact_PORT= deskutils/kontact kde-kontact_PATH= ${KDE_PREFIX}/bin/kontact kde-korganizer_PORT= deskutils/korganizer kde-korganizer_PATH= ${KDE_PREFIX}/bin/korganizer kde-mbox-importer_PORT= deskutils/mbox-importer kde-mbox-importer_PATH= ${KDE_PREFIX}/bin/mboximporter kde-pim-data-exporter_PORT= deskutils/pim-data-exporter kde-pim-data-exporter_PATH= ${KDE_PREFIX}/bin/pimdataexporter # ====================== end of pim5 components ================================ # ====================== multiversion component ================================ kde-akonadi5_PORT= databases/akonadi kde-akonadi5_LIB= libKPim5AkonadiPrivate.so kde-baloo-widgets5_PORT= sysutils/baloo-widgets kde-baloo-widgets5_LIB= libKF${_KDE_VERSION}BalooWidgets.so kde-kate5_PORT= editors/kate kde-kate5_PATH= ${QT_PLUGINDIR}/ktexteditor/katebacktracebrowserplugin.so kde-libkcddb5_PORT= audio/libkcddb kde-libkcddb5_LIB= libKF${_KDE_VERSION}Cddb.so kde-libkcompactdisc5_PORT= audio/libkcompactdisc kde-libkcompactdisc5_LIB= libKF${_KDE_VERSION}CompactDisc.so kde-libkdcraw5_PORT= graphics/libkdcraw kde-libkdcraw5_LIB= libKF${_KDE_VERSION}KDcraw.so kde-libkdegames5_PORT= games/libkdegames kde-libkdegames5_LIB= libKF${_KDE_VERSION}KDEGames.so kde-libkeduvocdocument5_PORT= misc/libkeduvocdocument kde-libkeduvocdocument5_LIB= libKEduVocDocument.so kde-libkexiv25_PORT= graphics/libkexiv2 kde-libkexiv25_LIB= libKF${_KDE_VERSION}KExiv2.so kde-libkipi5_PORT= graphics/libkipi kde-libkipi5_LIB= libKF${_KDE_VERSION}Kipi.so kde-libksane5_PORT= graphics/libksane kde-libksane5_LIB= libKF${_KDE_VERSION}Sane.so kde-marble5_PORT= astro/marble kde-marble5_LIB= libmarblewidget-qt5.so kde-kpublictransport_PORT= devel/kpublictransport kde-kpublictransport_LIB= libKPublicTransport.so kde-kosm_PORT= astro/kosmindoormap kde-kosm_LIB= libKOSM.so kde-okular5_PORT= graphics/okular kde-okular5_LIB= libOkular5Core.so kde-phonon_PORT= multimedia/phonon@${_QT_RELNAME} kde-phonon_LIB= libphonon4${_QT_RELNAME}.so kde-phonon-backend_PORT= multimedia/phonon-vlc@${_QT_RELNAME} kde-phonon-backend_PATH= ${QT_PLUGINDIR}/phonon4${_QT_RELNAME}_backend/phonon_vlc_${_QT_RELNAME}.so # ====================== end of multiversion components ======================== # ====================== select the proper multiversion component ============== . for comp in ${_USE_KDE_BOTH} kde-${comp}_PORT= ${kde-${comp}${_KDE_VERSION}_PORT} . if defined(kde-${comp}${_KDE_VERSION}_LIB) kde-${comp}_LIB= ${kde-${comp}${_KDE_VERSION}_LIB} . else . if defined(kde-${comp}${_KDE_VERSION}_PATH}) kde-${comp}_PATH= ${kde-${comp}${_KDE_VERSION}_LIB} . endif # If neither is defined, this gets caught below when checking components . endif . endfor #=============================================================================== # end of component list ######################################################## _USE_KDE_ALL= ${_USE_${_KDE_RELNAME}_ALL} # Iterate through components deprived of suffix. . for component in ${USE_KDE:O:u:C/:.+//} # Check that the component is valid. . if ${_USE_KDE_ALL:M${component}} != "" # Skip meta-components (currently none). . if defined(kde-${component}_PORT) && (defined(kde-${component}_PATH) || defined(kde-${component}_LIB)) # Check if a dependency type is explicitly requested. . if ${USE_KDE:M${component}\:*} != "" && ${USE_KDE:M${component}} == "" kde-${component}_TYPE= # empty . if ${USE_KDE:M${component}\:build} != "" kde-${component}_TYPE+= build . endif . if ${USE_KDE:M${component}\:run} != "" kde-${component}_TYPE+= run . endif . endif # ${USE_KDE:M${component}_*} != "" && ${USE_KDE:M${component}} == "" # If no dependency type is set, default to full dependency. . if !defined(kde-${component}_TYPE) kde-${component}_TYPE= build run . endif # Set real dependencies. . if defined(kde-${component}_LIB) && ${kde-${component}_TYPE:Mbuild} && ${kde-${component}_TYPE:Mrun} LIB_DEPENDS+= ${kde-${component}_LIB}:${kde-${component}_PORT} . else kde-${component}_PATH?= ${KDE_PREFIX}/lib/${kde-${component}_LIB} kde-${component}_DEPENDS= ${kde-${component}_PATH}:${kde-${component}_PORT} . if ${kde-${component}_TYPE:Mbuild} != "" BUILD_DEPENDS+= ${kde-${component}_DEPENDS} . endif . if ${kde-${component}_TYPE:Mrun} != "" RUN_DEPENDS+= ${kde-${component}_DEPENDS} . endif . endif # ${kde-${component}_LIB} && ${kde-${component}_TYPE:Mbuild} && ${kde-${component}_TYPE:Mrun} . endif # defined(kde-${component}_PORT) && defined(kde-${component}_PATH) . else # ! ${_USE_KDE_ALL:M${component}} != "" IGNORE= cannot be installed: unknown USE_KDE component '${component}' . endif # ${_USE_KDE_ALL:M${component}} != "" . endfor . endif .endif diff --git a/audio/plasma5-kpipewire/distinfo b/audio/plasma5-kpipewire/distinfo index 5de027b3214f..8b8d8740169c 100644 --- a/audio/plasma5-kpipewire/distinfo +++ b/audio/plasma5-kpipewire/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1698166145 -SHA256 (KDE/plasma/5.27.9/kpipewire-5.27.9.tar.xz) = 1b7b4f116c208f6ef5279efe99c5715e3ccea98efb7a9ee4565947b45c15d020 -SIZE (KDE/plasma/5.27.9/kpipewire-5.27.9.tar.xz) = 59796 +TIMESTAMP = 1701858711 +SHA256 (KDE/plasma/5.27.10/kpipewire-5.27.10.tar.xz) = c23ca5169ae2ef069b1d79107c5ae4ff859d8848fe6c98decfd0f357f378c3ee +SIZE (KDE/plasma/5.27.10/kpipewire-5.27.10.tar.xz) = 59772 diff --git a/audio/plasma5-oxygen-sounds/distinfo b/audio/plasma5-oxygen-sounds/distinfo index 9ca7623dc526..5717b53a7cca 100644 --- a/audio/plasma5-oxygen-sounds/distinfo +++ b/audio/plasma5-oxygen-sounds/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1698238804 -SHA256 (KDE/plasma/5.27.9/oxygen-sounds-5.27.9.tar.xz) = e1fdcbcbdd4f965dcb966b885258f94c08faf6ea359c8ac926941bdd49a63759 -SIZE (KDE/plasma/5.27.9/oxygen-sounds-5.27.9.tar.xz) = 1896428 +TIMESTAMP = 1701858711 +SHA256 (KDE/plasma/5.27.10/oxygen-sounds-5.27.10.tar.xz) = 23a1f090aaeee966476ff03aecad1f60b1e067d7948edd1b61c3a5d2b33bc35f +SIZE (KDE/plasma/5.27.10/oxygen-sounds-5.27.10.tar.xz) = 1896412 diff --git a/audio/plasma5-plasma-pa/distinfo b/audio/plasma5-plasma-pa/distinfo index e61eee8a1e17..d73359522534 100644 --- a/audio/plasma5-plasma-pa/distinfo +++ b/audio/plasma5-plasma-pa/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1698166146 -SHA256 (KDE/plasma/5.27.9/plasma-pa-5.27.9.tar.xz) = 24d5773c0fc245b98dca87f3c98f434df601a9a5630c4177c933496de60c551d -SIZE (KDE/plasma/5.27.9/plasma-pa-5.27.9.tar.xz) = 163800 +TIMESTAMP = 1701858712 +SHA256 (KDE/plasma/5.27.10/plasma-pa-5.27.10.tar.xz) = 0d713742f1472587e3e678d8ce99fb62333fbda5106dfae99cad7298316b3f08 +SIZE (KDE/plasma/5.27.10/plasma-pa-5.27.10.tar.xz) = 163772 diff --git a/deskutils/plasma5-milou/distinfo b/deskutils/plasma5-milou/distinfo index 09ed8a148dc5..c0f3a426cef2 100644 --- a/deskutils/plasma5-milou/distinfo +++ b/deskutils/plasma5-milou/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1698166147 -SHA256 (KDE/plasma/5.27.9/milou-5.27.9.tar.xz) = e896c11a4026f0025ed4d705674c6bf57347028d5134bcb51a66c87a5f8a5af8 -SIZE (KDE/plasma/5.27.9/milou-5.27.9.tar.xz) = 58564 +TIMESTAMP = 1701858713 +SHA256 (KDE/plasma/5.27.10/milou-5.27.10.tar.xz) = 7c19dd8b16cc9bdf594118bbe49e8aa6e5cf12984665377cc8bc369d5f110ac3 +SIZE (KDE/plasma/5.27.10/milou-5.27.10.tar.xz) = 58648 diff --git a/deskutils/plasma5-sddm-kcm/distinfo b/deskutils/plasma5-sddm-kcm/distinfo index 558c383adcc4..e770f45f8d73 100644 --- a/deskutils/plasma5-sddm-kcm/distinfo +++ b/deskutils/plasma5-sddm-kcm/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1698166148 -SHA256 (KDE/plasma/5.27.9/sddm-kcm-5.27.9.tar.xz) = 61ee7fc52d8eab1ab673741736424afd0905c1c9296563acee70ac5d3fe6ba68 -SIZE (KDE/plasma/5.27.9/sddm-kcm-5.27.9.tar.xz) = 93628 +TIMESTAMP = 1701858714 +SHA256 (KDE/plasma/5.27.10/sddm-kcm-5.27.10.tar.xz) = 83e43177bf83d7b2c5d617349bb913dbdb80b0354aecbcc47febd4e50d95f4ad +SIZE (KDE/plasma/5.27.10/sddm-kcm-5.27.10.tar.xz) = 93736 diff --git a/deskutils/plasma5-xdg-desktop-portal-kde/distinfo b/deskutils/plasma5-xdg-desktop-portal-kde/distinfo index bc607a178a9e..1857bf7e3185 100644 --- a/deskutils/plasma5-xdg-desktop-portal-kde/distinfo +++ b/deskutils/plasma5-xdg-desktop-portal-kde/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1698166149 -SHA256 (KDE/plasma/5.27.9/xdg-desktop-portal-kde-5.27.9.tar.xz) = abb15e026724300ebf325403a711128328af57fcf518998ecbc8741af4c45dc4 -SIZE (KDE/plasma/5.27.9/xdg-desktop-portal-kde-5.27.9.tar.xz) = 142456 +TIMESTAMP = 1701858714 +SHA256 (KDE/plasma/5.27.10/xdg-desktop-portal-kde-5.27.10.tar.xz) = bd731ff0c3e27293728292e1b07276af53ad8a4fbbb915f1d0fd77b99d7bef2b +SIZE (KDE/plasma/5.27.10/xdg-desktop-portal-kde-5.27.10.tar.xz) = 142616 diff --git a/devel/plasma5-khotkeys/distinfo b/devel/plasma5-khotkeys/distinfo index 5958bd5fef75..26f2720d3205 100644 --- a/devel/plasma5-khotkeys/distinfo +++ b/devel/plasma5-khotkeys/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1698166151 -SHA256 (KDE/plasma/5.27.9/khotkeys-5.27.9.tar.xz) = 761a5d29cba572e9b478173f803de34a08ce4999c581ef2d92618cbfb087dce8 -SIZE (KDE/plasma/5.27.9/khotkeys-5.27.9.tar.xz) = 1895220 +TIMESTAMP = 1701858715 +SHA256 (KDE/plasma/5.27.10/khotkeys-5.27.10.tar.xz) = 645c51e7b27a6bfb3105e5d5352350b651c782b43813c6a82b14ad1e09d9f6e7 +SIZE (KDE/plasma/5.27.10/khotkeys-5.27.10.tar.xz) = 1895296 diff --git a/devel/plasma5-kwrited/distinfo b/devel/plasma5-kwrited/distinfo index 12de85842143..79d39a052132 100644 --- a/devel/plasma5-kwrited/distinfo +++ b/devel/plasma5-kwrited/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1698166152 -SHA256 (KDE/plasma/5.27.9/kwrited-5.27.9.tar.xz) = e6a8e32646311c8fd51e21377806fbfebc7ab15247dfc41863ee72bb506455f4 -SIZE (KDE/plasma/5.27.9/kwrited-5.27.9.tar.xz) = 23436 +TIMESTAMP = 1701858716 +SHA256 (KDE/plasma/5.27.10/kwrited-5.27.10.tar.xz) = 5aa19eba68eb9df0ac9ee894773028f093c9fb54f8ca69cf878ee8e8ec6f4d41 +SIZE (KDE/plasma/5.27.10/kwrited-5.27.10.tar.xz) = 23488 diff --git a/devel/plasma5-plasma-sdk/distinfo b/devel/plasma5-plasma-sdk/distinfo index ce9894cc95bb..5f63bb6ea217 100644 --- a/devel/plasma5-plasma-sdk/distinfo +++ b/devel/plasma5-plasma-sdk/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1698166153 -SHA256 (KDE/plasma/5.27.9/plasma-sdk-5.27.9.tar.xz) = 7d2c30d1fd14eebef67a3d8e5a53845204808bfc23c5ab8d8e0f05d346863a83 -SIZE (KDE/plasma/5.27.9/plasma-sdk-5.27.9.tar.xz) = 321192 +TIMESTAMP = 1701858717 +SHA256 (KDE/plasma/5.27.10/plasma-sdk-5.27.10.tar.xz) = eea9ea1d0eca8a0126edb3040701331e29421fb867ee7d8352e74d1cc9690123 +SIZE (KDE/plasma/5.27.10/plasma-sdk-5.27.10.tar.xz) = 320988 diff --git a/multimedia/plasma5-plank-player/distinfo b/multimedia/plasma5-plank-player/distinfo index eca6c8e2d728..2453288ecafb 100644 --- a/multimedia/plasma5-plank-player/distinfo +++ b/multimedia/plasma5-plank-player/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1698166154 -SHA256 (KDE/plasma/5.27.9/plank-player-5.27.9.tar.xz) = 6dac0f8290a037f28deba330aec7395707003cd51a1a39c8fff12ce5c652d56d -SIZE (KDE/plasma/5.27.9/plank-player-5.27.9.tar.xz) = 158748 +TIMESTAMP = 1701858718 +SHA256 (KDE/plasma/5.27.10/plank-player-5.27.10.tar.xz) = 2b8ece5b7ea268327dbad08d0859a889cb4e0df90651b3c835dabfcc5f8e2d12 +SIZE (KDE/plasma/5.27.10/plank-player-5.27.10.tar.xz) = 158936 diff --git a/multimedia/plasma5-plank-player/pkg-plist b/multimedia/plasma5-plank-player/pkg-plist index 2b42e810f996..7fa19e4ba71a 100644 --- a/multimedia/plasma5-plank-player/pkg-plist +++ b/multimedia/plasma5-plank-player/pkg-plist @@ -1,31 +1,32 @@ bin/plank-player share/applications/org.plank.player.desktop share/icons/hicolor/128x128/apps/plank-player.png share/icons/hicolor/256x256/apps/plank-player.png share/locale/ca/LC_MESSAGES/plank-player.mo share/locale/ca@valencia/LC_MESSAGES/plank-player.mo share/locale/cs/LC_MESSAGES/plank-player.mo share/locale/de/LC_MESSAGES/plank-player.mo share/locale/en_GB/LC_MESSAGES/plank-player.mo +share/locale/eo/LC_MESSAGES/plank-player.mo share/locale/es/LC_MESSAGES/plank-player.mo share/locale/eu/LC_MESSAGES/plank-player.mo share/locale/fi/LC_MESSAGES/plank-player.mo share/locale/fr/LC_MESSAGES/plank-player.mo share/locale/gl/LC_MESSAGES/plank-player.mo share/locale/it/LC_MESSAGES/plank-player.mo share/locale/ja/LC_MESSAGES/plank-player.mo share/locale/ka/LC_MESSAGES/plank-player.mo share/locale/ko/LC_MESSAGES/plank-player.mo share/locale/nl/LC_MESSAGES/plank-player.mo share/locale/nn/LC_MESSAGES/plank-player.mo share/locale/pl/LC_MESSAGES/plank-player.mo share/locale/pt/LC_MESSAGES/plank-player.mo share/locale/pt_BR/LC_MESSAGES/plank-player.mo share/locale/ru/LC_MESSAGES/plank-player.mo share/locale/sk/LC_MESSAGES/plank-player.mo share/locale/sl/LC_MESSAGES/plank-player.mo share/locale/sv/LC_MESSAGES/plank-player.mo share/locale/tr/LC_MESSAGES/plank-player.mo share/locale/uk/LC_MESSAGES/plank-player.mo share/locale/zh_CN/LC_MESSAGES/plank-player.mo share/metainfo/org.kde.invent.plank_player.metainfo.xml diff --git a/security/plasma5-kscreenlocker/distinfo b/security/plasma5-kscreenlocker/distinfo index e5146519673b..6a239181d36d 100644 --- a/security/plasma5-kscreenlocker/distinfo +++ b/security/plasma5-kscreenlocker/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1698166155 -SHA256 (KDE/plasma/5.27.9/kscreenlocker-5.27.9.tar.xz) = e780a48c0a3686fcf34e250ff29fbb9b05ac88fa1114a15194c6b8959391874d -SIZE (KDE/plasma/5.27.9/kscreenlocker-5.27.9.tar.xz) = 161040 +TIMESTAMP = 1701858719 +SHA256 (KDE/plasma/5.27.10/kscreenlocker-5.27.10.tar.xz) = d74d80b87fc5b4915d615c288819f9006c0103ee864cadc565141bf468cb3d89 +SIZE (KDE/plasma/5.27.10/kscreenlocker-5.27.10.tar.xz) = 160956 diff --git a/security/plasma5-ksshaskpass/distinfo b/security/plasma5-ksshaskpass/distinfo index 69f9eda529a3..4e46798c3598 100644 --- a/security/plasma5-ksshaskpass/distinfo +++ b/security/plasma5-ksshaskpass/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1698166156 -SHA256 (KDE/plasma/5.27.9/ksshaskpass-5.27.9.tar.xz) = c7d8d070bfaca1385ef3374a0c66ab1f3d914b6ec96fa69dafbce68e78cf8a73 -SIZE (KDE/plasma/5.27.9/ksshaskpass-5.27.9.tar.xz) = 28032 +TIMESTAMP = 1701858720 +SHA256 (KDE/plasma/5.27.10/ksshaskpass-5.27.10.tar.xz) = d38de7ddcb9c3e58d04cb240510db7f48448e9700de443b40a9062897239e26a +SIZE (KDE/plasma/5.27.10/ksshaskpass-5.27.10.tar.xz) = 28044 diff --git a/security/plasma5-kwallet-pam/distinfo b/security/plasma5-kwallet-pam/distinfo index b05fcad42a23..6f7b127e1bf7 100644 --- a/security/plasma5-kwallet-pam/distinfo +++ b/security/plasma5-kwallet-pam/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1698166157 -SHA256 (KDE/plasma/5.27.9/kwallet-pam-5.27.9.tar.xz) = 76990faabb916c57d003b1774109485d40e6ec6a36d9b365aad7764750cb52ce -SIZE (KDE/plasma/5.27.9/kwallet-pam-5.27.9.tar.xz) = 22876 +TIMESTAMP = 1701858720 +SHA256 (KDE/plasma/5.27.10/kwallet-pam-5.27.10.tar.xz) = ac191714d637c9f43041b08f9c946ff01ffef1b77cf80f33c7ae0f819244a1fb +SIZE (KDE/plasma/5.27.10/kwallet-pam-5.27.10.tar.xz) = 22884 diff --git a/sysutils/plasma5-discover/distinfo b/sysutils/plasma5-discover/distinfo index ad9fb47396c9..d19c0e7f88b5 100644 --- a/sysutils/plasma5-discover/distinfo +++ b/sysutils/plasma5-discover/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1698166159 -SHA256 (KDE/plasma/5.27.9/discover-5.27.9.tar.xz) = e739aec39cba2e68477e38e03968dfa0ae44b05177abaa601304098185fd27d5 -SIZE (KDE/plasma/5.27.9/discover-5.27.9.tar.xz) = 870444 +TIMESTAMP = 1701858721 +SHA256 (KDE/plasma/5.27.10/discover-5.27.10.tar.xz) = 1f9189e2a759ac035a5ba83a2842a40b7034a7e5885b0836e3921b9671109fa8 +SIZE (KDE/plasma/5.27.10/discover-5.27.10.tar.xz) = 873396 diff --git a/sysutils/plasma5-discover/files/patch-CMakeLists.txt b/sysutils/plasma5-discover/files/patch-CMakeLists.txt deleted file mode 100644 index 157ffb29cb3f..000000000000 --- a/sysutils/plasma5-discover/files/patch-CMakeLists.txt +++ /dev/null @@ -1,11 +0,0 @@ ---- CMakeLists.txt.orig 2023-10-24 12:55:33 UTC -+++ CMakeLists.txt -@@ -31,7 +31,7 @@ find_package(packagekitqt5 1.0.1 CONFIG) - find_package(KF5Kirigami2 2.7.0) - - find_package(packagekitqt5 1.0.1 CONFIG) --find_package(AppStreamQt 0.15.3 CONFIG REQUIRED) -+find_package(AppStreamQt5 1.0.0 CONFIG REQUIRED) - find_package(KF5Attica 5.23 CONFIG) - find_package(KF5NewStuff 5.53 CONFIG) - diff --git a/sysutils/plasma5-discover/files/patch-libdiscover_appstream_AppStreamUtils.cpp b/sysutils/plasma5-discover/files/patch-libdiscover_appstream_AppStreamUtils.cpp deleted file mode 100644 index c8b6adf0c5ad..000000000000 --- a/sysutils/plasma5-discover/files/patch-libdiscover_appstream_AppStreamUtils.cpp +++ /dev/null @@ -1,113 +0,0 @@ ---- libdiscover/appstream/AppStreamUtils.cpp.orig 2023-10-24 12:55:33 UTC -+++ libdiscover/appstream/AppStreamUtils.cpp -@@ -7,11 +7,11 @@ - #include "AppStreamUtils.h" - - #include "utils.h" --#include --#include --#include --#include --#include -+#include -+#include -+#include -+#include -+#include - #include - #include - #include -@@ -35,10 +35,20 @@ QString AppStreamUtils::changelogToHtml(const AppStrea - - QString AppStreamUtils::changelogToHtml(const AppStream::Component &appdata) - { -- if (appdata.releases().isEmpty()) -+#if ASQ_CHECK_VERSION(1, 0, 0) -+ const auto releases = appdata.releasesPlain(); -+#else -+ const auto releases = appdata.releases(); -+#endif -+ if (releases.isEmpty()) { - return {}; -+ } - -- const auto release = appdata.releases().constFirst(); -+#if ASQ_CHECK_VERSION(1, 0, 0) -+ const auto release = releases.indexSafe(0).value(); -+#else -+ const auto release = releases.constFirst(); -+#endif - if (release.description().isEmpty()) - return {}; - -@@ -49,17 +59,19 @@ Screenshots AppStreamUtils::fetchScreenshots(const App - - Screenshots AppStreamUtils::fetchScreenshots(const AppStream::Component &appdata) - { -- const auto appdataScreenshots = appdata.screenshots(); -+ const auto appdataScreenshots = appdata.screenshotsAll(); - Screenshots ret; - ret.reserve(appdataScreenshots.size()); - for (const AppStream::Screenshot &s : appdataScreenshots) { - const auto images = s.images(); - const QUrl thumbnail = AppStreamUtils::imageOfKind(images, AppStream::Image::KindThumbnail); -- const QUrl plain = AppStreamUtils::imageOfKind(images, AppStream::Image::KindSource); -- if (plain.isEmpty()) -- qWarning() << "invalid screenshot for" << appdata.name(); -+ const QUrl full = AppStreamUtils::imageOfKind(images, AppStream::Image::KindSource); -+ if (full.isEmpty()) { -+ qWarning() << "AppStreamUtils: Invalid screenshot for" << appdata.name(); -+ } -+ const bool isAnimated = s.mediaKind() == AppStream::Screenshot::MediaKindVideo; - -- ret.append(Screenshot{plain, thumbnail.isEmpty() ? plain : thumbnail, s.mediaKind() == AppStream::Screenshot::MediaKindVideo}); -+ ret.append(Screenshot{thumbnail.isEmpty() ? full : thumbnail, full, isAnimated}); - } - return ret; - } -@@ -128,20 +140,13 @@ QString AppStreamUtils::versionString(const QString &v - - QString AppStreamUtils::versionString(const QString &version, const AppStream::Component &appdata) - { -+ Q_UNUSED(appdata); -+ - if (version.isEmpty()) { - return {}; -- } else { -- if (appdata.releases().isEmpty()) -- return version; -- -- auto release = appdata.releases().constFirst(); -- if (release.timestamp().isValid() && version.startsWith(release.version())) { -- QLocale l; -- return i18n("%1, released on %2", version, l.toString(release.timestamp().date(), QLocale::ShortFormat)); -- } else { -- return version; -- } - } -+ -+ return version; - } - - QString AppStreamUtils::contentRatingDescription(const AppStream::Component &appdata) -@@ -238,7 +243,7 @@ uint AppStreamUtils::contentRatingMinimumAge(const App - #endif - } - --static void kRemoveDuplicates(QList &input, AppStream::Bundle::Kind kind) -+static void kRemoveDuplicates(AppStream::ComponentBox &input, AppStream::Bundle::Kind kind) - { - QSet ret; - for (auto it = input.begin(); it != input.end();) { -@@ -252,9 +257,9 @@ static void kRemoveDuplicates(QList AppStreamUtils::componentsByCategories(AppStream::Pool *pool, Category *cat, AppStream::Bundle::Kind kind) -+AppStream::ComponentBox AppStreamUtils::componentsByCategories(AppStream::Pool *pool, Category *cat, AppStream::Bundle::Kind kind) - { -- QList ret; -+ AppStream::ComponentBox ret(AppStream::ComponentBox::FlagNoChecks); - for (const auto &categoryName : cat->involvedCategories()) { - ret += pool->componentsByCategories({categoryName}); - } diff --git a/sysutils/plasma5-discover/files/patch-libdiscover_appstream_AppStreamUtils.h b/sysutils/plasma5-discover/files/patch-libdiscover_appstream_AppStreamUtils.h deleted file mode 100644 index 02cef6467b97..000000000000 --- a/sysutils/plasma5-discover/files/patch-libdiscover_appstream_AppStreamUtils.h +++ /dev/null @@ -1,22 +0,0 @@ ---- libdiscover/appstream/AppStreamUtils.h.orig 2023-10-24 12:55:33 UTC -+++ libdiscover/appstream/AppStreamUtils.h -@@ -6,9 +6,9 @@ - - #pragma once - --#include --#include --#include -+#include -+#include -+#include - #include - #include - #include -@@ -38,5 +38,5 @@ Q_DECL_EXPORT uint contentRatingMinimumAge(const AppSt - Q_DECL_EXPORT AbstractResource::ContentIntensity contentRatingIntensity(const AppStream::Component &appdata); - Q_DECL_EXPORT uint contentRatingMinimumAge(const AppStream::Component &appdata); - --Q_DECL_EXPORT QList componentsByCategories(AppStream::Pool *pool, Category *cat, AppStream::Bundle::Kind kind); -+Q_DECL_EXPORT AppStream::ComponentBox componentsByCategories(AppStream::Pool *pool, Category *cat, AppStream::Bundle::Kind kind); - } diff --git a/sysutils/plasma5-discover/files/patch-libdiscover_backends_CMakeLists.txt b/sysutils/plasma5-discover/files/patch-libdiscover_backends_CMakeLists.txt deleted file mode 100644 index ed1820a7eb43..000000000000 --- a/sysutils/plasma5-discover/files/patch-libdiscover_backends_CMakeLists.txt +++ /dev/null @@ -1,16 +0,0 @@ ---- libdiscover/backends/CMakeLists.txt.orig 2023-10-24 12:55:33 UTC -+++ libdiscover/backends/CMakeLists.txt -@@ -8,11 +8,11 @@ endfunction() - Qt::Test Qt::Core ${EXTRA_LIBS}) - endfunction() - --if(KF5Attica_FOUND AND KF5NewStuff_FOUND AND AppStreamQt_FOUND) -+if(KF5Attica_FOUND AND KF5NewStuff_FOUND AND AppStreamQt5_FOUND) - add_subdirectory(KNSBackend) - endif() - --if(packagekitqt5_FOUND AND AppStreamQt_FOUND) -+if(packagekitqt5_FOUND AND AppStreamQt5_FOUND) - add_subdirectory(PackageKitBackend) - endif() - diff --git a/sysutils/plasma5-drkonqi/distinfo b/sysutils/plasma5-drkonqi/distinfo index 897449e901e8..0808b4523db4 100644 --- a/sysutils/plasma5-drkonqi/distinfo +++ b/sysutils/plasma5-drkonqi/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1698166160 -SHA256 (KDE/plasma/5.27.9/drkonqi-5.27.9.tar.xz) = 55c397f8758b998cb3fd1da9f105d5d956714cb032045382618d95ff260fdd12 -SIZE (KDE/plasma/5.27.9/drkonqi-5.27.9.tar.xz) = 861796 +TIMESTAMP = 1701858722 +SHA256 (KDE/plasma/5.27.10/drkonqi-5.27.10.tar.xz) = a3ea4794ca1d8e31cacfe78301884419cfd9daaf939c5d843718372b65657fd0 +SIZE (KDE/plasma/5.27.10/drkonqi-5.27.10.tar.xz) = 861284 diff --git a/sysutils/plasma5-kde-cli-tools/distinfo b/sysutils/plasma5-kde-cli-tools/distinfo index 36d25ee26577..321c2541d117 100644 --- a/sysutils/plasma5-kde-cli-tools/distinfo +++ b/sysutils/plasma5-kde-cli-tools/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1698166161 -SHA256 (KDE/plasma/5.27.9/kde-cli-tools-5.27.9.tar.xz) = 06f1a69f15e1fe1e815ea598008700d166becd285a6d108e1d74d26a5e477d06 -SIZE (KDE/plasma/5.27.9/kde-cli-tools-5.27.9.tar.xz) = 667364 +TIMESTAMP = 1701858723 +SHA256 (KDE/plasma/5.27.10/kde-cli-tools-5.27.10.tar.xz) = 7baa6d899cf0e14194f935cd2f2526123c40261f6fbd86dc17cf75bbc6a04d3f +SIZE (KDE/plasma/5.27.10/kde-cli-tools-5.27.10.tar.xz) = 667316 diff --git a/sysutils/plasma5-kinfocenter/distinfo b/sysutils/plasma5-kinfocenter/distinfo index 32cc1ec47771..c5629d66c28b 100644 --- a/sysutils/plasma5-kinfocenter/distinfo +++ b/sysutils/plasma5-kinfocenter/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1698166163 -SHA256 (KDE/plasma/5.27.9/kinfocenter-5.27.9.tar.xz) = 03bf74b0b9ccb24fe54cfffa0e18d3498c8722f7e9acc198b3981c2dc54ae862 -SIZE (KDE/plasma/5.27.9/kinfocenter-5.27.9.tar.xz) = 1016368 +TIMESTAMP = 1701858724 +SHA256 (KDE/plasma/5.27.10/kinfocenter-5.27.10.tar.xz) = ce5c2a34840787b50fcbc70d82ff0b4b9f8260b6814276f68c6912c4db2aca11 +SIZE (KDE/plasma/5.27.10/kinfocenter-5.27.10.tar.xz) = 1016624 diff --git a/sysutils/plasma5-kmenuedit/distinfo b/sysutils/plasma5-kmenuedit/distinfo index 95aa85e188b4..b1bd252b7a52 100644 --- a/sysutils/plasma5-kmenuedit/distinfo +++ b/sysutils/plasma5-kmenuedit/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1698166164 -SHA256 (KDE/plasma/5.27.9/kmenuedit-5.27.9.tar.xz) = c8366bca69a41ce2a5b18596f82314f9d203ea16827f34a6c5e5ea97e571ebd9 -SIZE (KDE/plasma/5.27.9/kmenuedit-5.27.9.tar.xz) = 932188 +TIMESTAMP = 1701858724 +SHA256 (KDE/plasma/5.27.10/kmenuedit-5.27.10.tar.xz) = 1c090b7e96c65043d2d75c359e536cb05a44ed6655e4e12c437ef233fa4f20d7 +SIZE (KDE/plasma/5.27.10/kmenuedit-5.27.10.tar.xz) = 932332 diff --git a/sysutils/plasma5-ksystemstats/distinfo b/sysutils/plasma5-ksystemstats/distinfo index 1ad3bccf466f..68586c5023f7 100644 --- a/sysutils/plasma5-ksystemstats/distinfo +++ b/sysutils/plasma5-ksystemstats/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1698166166 -SHA256 (KDE/plasma/5.27.9/ksystemstats-5.27.9.tar.xz) = 32dab5aa06edf7fb2702c16576bf4946a0d216abdb2265b0571883b325417951 -SIZE (KDE/plasma/5.27.9/ksystemstats-5.27.9.tar.xz) = 116580 +TIMESTAMP = 1701858726 +SHA256 (KDE/plasma/5.27.10/ksystemstats-5.27.10.tar.xz) = 5a5eda2ded432b380882ede9fbe9a30b090cfbbe6c84ce9274dd795eb01fe238 +SIZE (KDE/plasma/5.27.10/ksystemstats-5.27.10.tar.xz) = 116568 diff --git a/sysutils/plasma5-libksysguard/distinfo b/sysutils/plasma5-libksysguard/distinfo index 9188bf10903a..137719306a5d 100644 --- a/sysutils/plasma5-libksysguard/distinfo +++ b/sysutils/plasma5-libksysguard/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1698166167 -SHA256 (KDE/plasma/5.27.9/libksysguard-5.27.9.tar.xz) = 70f4ac5eeba0ddc82ba0e5537ca1e0cbb85cd46f90e387aded36dd1cc3722176 -SIZE (KDE/plasma/5.27.9/libksysguard-5.27.9.tar.xz) = 885432 +TIMESTAMP = 1701858727 +SHA256 (KDE/plasma/5.27.10/libksysguard-5.27.10.tar.xz) = 17fc33b028cb272391b68c46e93b2d806d8254e6af9399d61375d49041ff3ce5 +SIZE (KDE/plasma/5.27.10/libksysguard-5.27.10.tar.xz) = 890164 diff --git a/sysutils/plasma5-plasma-disks/distinfo b/sysutils/plasma5-plasma-disks/distinfo index a44d0e3765c6..86910e7f58a9 100644 --- a/sysutils/plasma5-plasma-disks/distinfo +++ b/sysutils/plasma5-plasma-disks/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1698166168 -SHA256 (KDE/plasma/5.27.9/plasma-disks-5.27.9.tar.xz) = 5ce5c6924338e12e3af2391d0de570a09b3aeb6b0be91a62612b0952362f7f46 -SIZE (KDE/plasma/5.27.9/plasma-disks-5.27.9.tar.xz) = 93808 +TIMESTAMP = 1701858728 +SHA256 (KDE/plasma/5.27.10/plasma-disks-5.27.10.tar.xz) = 1e8f4d145a9f16c98a5dc1ac5449ee8178b119f63b4faecd99feec25fc54587b +SIZE (KDE/plasma/5.27.10/plasma-disks-5.27.10.tar.xz) = 93880 diff --git a/sysutils/plasma5-plasma-systemmonitor/distinfo b/sysutils/plasma5-plasma-systemmonitor/distinfo index 928c748d2c10..425f5514ceaf 100644 --- a/sysutils/plasma5-plasma-systemmonitor/distinfo +++ b/sysutils/plasma5-plasma-systemmonitor/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1698166169 -SHA256 (KDE/plasma/5.27.9/plasma-systemmonitor-5.27.9.tar.xz) = 6c9c3fe107ff1d8790b536391a2a8b29ecd92c1b129850c6180304d1ddf734b1 -SIZE (KDE/plasma/5.27.9/plasma-systemmonitor-5.27.9.tar.xz) = 173248 +TIMESTAMP = 1701858729 +SHA256 (KDE/plasma/5.27.10/plasma-systemmonitor-5.27.10.tar.xz) = 64a1705797b42be1ed0be8258b11829b10f8b155e09bb4fbcf4757e2d7eb8a0e +SIZE (KDE/plasma/5.27.10/plasma-systemmonitor-5.27.10.tar.xz) = 173356 diff --git a/sysutils/plasma5-polkit-kde-agent-1/distinfo b/sysutils/plasma5-polkit-kde-agent-1/distinfo index 6693b1e25176..a0a082d6972e 100644 --- a/sysutils/plasma5-polkit-kde-agent-1/distinfo +++ b/sysutils/plasma5-polkit-kde-agent-1/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1698166171 -SHA256 (KDE/plasma/5.27.9/polkit-kde-agent-1-5.27.9.tar.xz) = 03b8c12f1dde30b1bf7ee61e55a269b5fd542a32a1d1b6b8bc5d080bdf400892 -SIZE (KDE/plasma/5.27.9/polkit-kde-agent-1-5.27.9.tar.xz) = 52776 +TIMESTAMP = 1701858730 +SHA256 (KDE/plasma/5.27.10/polkit-kde-agent-1-5.27.10.tar.xz) = a3952a2785e468317a41bbc49ae02af816646afe3108d0612730f4f2398f8bdb +SIZE (KDE/plasma/5.27.10/polkit-kde-agent-1-5.27.10.tar.xz) = 52860 diff --git a/sysutils/plasma5-powerdevil/Makefile b/sysutils/plasma5-powerdevil/Makefile index b63f322f38d1..3dac693c7e14 100644 --- a/sysutils/plasma5-powerdevil/Makefile +++ b/sysutils/plasma5-powerdevil/Makefile @@ -1,31 +1,28 @@ PORTNAME= powerdevil DISTVERSION= ${KDE_PLASMA_VERSION} PORTREVISION= 1 CATEGORIES= sysutils kde kde-plasma -PATCH_SITES= https://invent.kde.org/plasma/${PORTNAME}/-/commit/ -PATCHFILES= 105cfe2a6252b06308067037c877c7422d822e17.patch:-p1 - MAINTAINER= kde@FreeBSD.org COMMENT= Plasma5 tool to manage the power consumption settings WWW= https://www.kde.org/plasma-desktop LIB_DEPENDS= libudev.so:devel/libudev-devd RUN_DEPENDS= ${LOCALBASE}/libexec/upowerd:sysutils/upower USES= cmake compiler:c++11-lib gettext kde:5 pkgconfig qt:5 tar:xz \ xorg USE_KDE= activities auth bookmarks codecs completion config \ configwidgets coreaddons crash dbusaddons emoticons \ globalaccel guiaddons i18n iconthemes idletime init itemmodels \ itemviews jobwidgets kio kirigami2 libkscreen notifications \ notifyconfig parts plasma-workspace service solid sonnet \ textwidgets unitconversion wayland widgetsaddons windowsystem \ xmlgui \ doctools:build ecm:build USE_QT= concurrent core dbus gui network printsupport widgets \ x11extras xml \ buildtools:build qmake:build USE_XORG= x11 xcb .include diff --git a/sysutils/plasma5-powerdevil/distinfo b/sysutils/plasma5-powerdevil/distinfo index a00dc6883752..e84be072edd9 100644 --- a/sysutils/plasma5-powerdevil/distinfo +++ b/sysutils/plasma5-powerdevil/distinfo @@ -1,5 +1,3 @@ -TIMESTAMP = 1700148343 -SHA256 (KDE/plasma/5.27.9/powerdevil-5.27.9.tar.xz) = ee402c18f7239eaf8a0b1c66b316d6bf5ffa08a0a33128d3a1d2fc38a964e8f4 -SIZE (KDE/plasma/5.27.9/powerdevil-5.27.9.tar.xz) = 788132 -SHA256 (KDE/plasma/5.27.9/105cfe2a6252b06308067037c877c7422d822e17.patch) = 013e7f68aef660057a1f67664aa3e4a3bd5eda6f8b6a4b579b6b9f9ff4b6b499 -SIZE (KDE/plasma/5.27.9/105cfe2a6252b06308067037c877c7422d822e17.patch) = 22773 +TIMESTAMP = 1701958281 +SHA256 (KDE/plasma/5.27.10/powerdevil-5.27.10.tar.xz) = 06c1a3c09880dd2060e3c8026189d8568d8a0f166ea33c2584669f85a04ec8f1 +SIZE (KDE/plasma/5.27.10/powerdevil-5.27.10.tar.xz) = 788444 diff --git a/sysutils/plasma5-systemsettings/distinfo b/sysutils/plasma5-systemsettings/distinfo index 9658bd136fe5..774f8c5181b6 100644 --- a/sysutils/plasma5-systemsettings/distinfo +++ b/sysutils/plasma5-systemsettings/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1698166173 -SHA256 (KDE/plasma/5.27.9/systemsettings-5.27.9.tar.xz) = 4ba52f3abf57cee224071d9ecf1fd0a110b66ba225b81c05bfc0351be2f13861 -SIZE (KDE/plasma/5.27.9/systemsettings-5.27.9.tar.xz) = 229080 +TIMESTAMP = 1701858732 +SHA256 (KDE/plasma/5.27.10/systemsettings-5.27.10.tar.xz) = af4c47f2cbe3a5cd8789eaad69d6ab4e73909dfe7500c5a71b01f5b82c860d39 +SIZE (KDE/plasma/5.27.10/systemsettings-5.27.10.tar.xz) = 229140 diff --git a/www/plasma5-plasma-browser-integration/distinfo b/www/plasma5-plasma-browser-integration/distinfo index 70adaa016c19..4a5f812c06f9 100644 --- a/www/plasma5-plasma-browser-integration/distinfo +++ b/www/plasma5-plasma-browser-integration/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1698166174 -SHA256 (KDE/plasma/5.27.9/plasma-browser-integration-5.27.9.tar.xz) = a50c63df61b6ab03423f84f29aa46deb8bced5ddfad9de63e7b16375af332eb5 -SIZE (KDE/plasma/5.27.9/plasma-browser-integration-5.27.9.tar.xz) = 211156 +TIMESTAMP = 1701858733 +SHA256 (KDE/plasma/5.27.10/plasma-browser-integration-5.27.10.tar.xz) = a17dbeae99d25def0c8e43b03b4be58bbfc0e3986f3c25e8de2e71047ecfccce +SIZE (KDE/plasma/5.27.10/plasma-browser-integration-5.27.10.tar.xz) = 211296 diff --git a/x11-themes/plasma5-breeze-gtk/distinfo b/x11-themes/plasma5-breeze-gtk/distinfo index 70c54143b9bc..2cd0304b9ff1 100644 --- a/x11-themes/plasma5-breeze-gtk/distinfo +++ b/x11-themes/plasma5-breeze-gtk/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1698166194 -SHA256 (KDE/plasma/5.27.9/breeze-gtk-5.27.9.tar.xz) = a86b3954415eee451405ba4d38d17be0792b5d5a173eaa2f81e7e600f39a010e -SIZE (KDE/plasma/5.27.9/breeze-gtk-5.27.9.tar.xz) = 40756 +TIMESTAMP = 1701858735 +SHA256 (KDE/plasma/5.27.10/breeze-gtk-5.27.10.tar.xz) = 1da3f98cce2761bb2c9c72d0156b93cf7bf50f08d59fd64bfeb06149a87069b6 +SIZE (KDE/plasma/5.27.10/breeze-gtk-5.27.10.tar.xz) = 40760 diff --git a/x11-themes/plasma5-breeze/distinfo b/x11-themes/plasma5-breeze/distinfo index 084bd38a3a4c..700f00a0f72d 100644 --- a/x11-themes/plasma5-breeze/distinfo +++ b/x11-themes/plasma5-breeze/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1698166193 -SHA256 (KDE/plasma/5.27.9/breeze-5.27.9.tar.xz) = 5ac516295e975feeff5f16d6df5e5757cd40e636842fbba35b0b4f0e71f2464f -SIZE (KDE/plasma/5.27.9/breeze-5.27.9.tar.xz) = 87595232 +TIMESTAMP = 1701858734 +SHA256 (KDE/plasma/5.27.10/breeze-5.27.10.tar.xz) = bebc960752da9d53a9895ffc05d824cba702735428aa61347b703fea074700a2 +SIZE (KDE/plasma/5.27.10/breeze-5.27.10.tar.xz) = 87595208 diff --git a/x11-themes/plasma5-kde-gtk-config/distinfo b/x11-themes/plasma5-kde-gtk-config/distinfo index ddfc1465cfdb..47c48fa1c7cf 100644 --- a/x11-themes/plasma5-kde-gtk-config/distinfo +++ b/x11-themes/plasma5-kde-gtk-config/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1698166195 -SHA256 (KDE/plasma/5.27.9/kde-gtk-config-5.27.9.tar.xz) = 804bd87e4e2e910869574bcc09437376ae2561b78ad7c421f64e526c95619912 -SIZE (KDE/plasma/5.27.9/kde-gtk-config-5.27.9.tar.xz) = 77288 +TIMESTAMP = 1701858736 +SHA256 (KDE/plasma/5.27.10/kde-gtk-config-5.27.10.tar.xz) = 6f3b3150b138b5c309ef2c47eee2ab15b0908cacf1487cbc9d561d64f0f68e6b +SIZE (KDE/plasma/5.27.10/kde-gtk-config-5.27.10.tar.xz) = 77292 diff --git a/x11-themes/plasma5-oxygen/distinfo b/x11-themes/plasma5-oxygen/distinfo index 7b104fa400e9..253844276bbc 100644 --- a/x11-themes/plasma5-oxygen/distinfo +++ b/x11-themes/plasma5-oxygen/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1698166197 -SHA256 (KDE/plasma/5.27.9/oxygen-5.27.9.tar.xz) = 6420ebc7986d31c7e277a5862c9aaed959386e534530d10355d217b3cd36a973 -SIZE (KDE/plasma/5.27.9/oxygen-5.27.9.tar.xz) = 2785072 +TIMESTAMP = 1701858737 +SHA256 (KDE/plasma/5.27.10/oxygen-5.27.10.tar.xz) = 5b16f6e3e5ee11bb959fc0e1fd233bbb0231b54ea8eff5e14fd78003ba2d090b +SIZE (KDE/plasma/5.27.10/oxygen-5.27.10.tar.xz) = 2786068 diff --git a/x11-themes/plasma5-plasma-workspace-wallpapers/distinfo b/x11-themes/plasma5-plasma-workspace-wallpapers/distinfo index cda62ae84c7d..c7c86a9cf821 100644 --- a/x11-themes/plasma5-plasma-workspace-wallpapers/distinfo +++ b/x11-themes/plasma5-plasma-workspace-wallpapers/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1698166215 -SHA256 (KDE/plasma/5.27.9/plasma-workspace-wallpapers-5.27.9.tar.xz) = 8eb33f3a7b3e0aa4563fd72dfce6ce16ba96f974b0054bd2c0ce2f7c612473be -SIZE (KDE/plasma/5.27.9/plasma-workspace-wallpapers-5.27.9.tar.xz) = 94031672 +TIMESTAMP = 1701858738 +SHA256 (KDE/plasma/5.27.10/plasma-workspace-wallpapers-5.27.10.tar.xz) = 82862d512993b958f7f96e191ce951ff2748012292941f73cdd308f37e2e64d0 +SIZE (KDE/plasma/5.27.10/plasma-workspace-wallpapers-5.27.10.tar.xz) = 94031960 diff --git a/x11-toolkits/plasma5-kdeplasma-addons/distinfo b/x11-toolkits/plasma5-kdeplasma-addons/distinfo index 72586f236db7..00d567b3c9fb 100644 --- a/x11-toolkits/plasma5-kdeplasma-addons/distinfo +++ b/x11-toolkits/plasma5-kdeplasma-addons/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1698166217 -SHA256 (KDE/plasma/5.27.9/kdeplasma-addons-5.27.9.tar.xz) = fa26d2db5348459f3389e008cb41a3e74d0de8e8023dcf53efdc7f907f2e4f7b -SIZE (KDE/plasma/5.27.9/kdeplasma-addons-5.27.9.tar.xz) = 822664 +TIMESTAMP = 1701858738 +SHA256 (KDE/plasma/5.27.10/kdeplasma-addons-5.27.10.tar.xz) = 9e64ef3dd88aa355f49f8d2d11be3ef158431ceda6a6fe570a1288c3f50f3e8d +SIZE (KDE/plasma/5.27.10/kdeplasma-addons-5.27.10.tar.xz) = 825400 diff --git a/x11-wm/plasma5-kdecoration/distinfo b/x11-wm/plasma5-kdecoration/distinfo index 633a8d93f3ff..78741ee7e25a 100644 --- a/x11-wm/plasma5-kdecoration/distinfo +++ b/x11-wm/plasma5-kdecoration/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1698166218 -SHA256 (KDE/plasma/5.27.9/kdecoration-5.27.9.tar.xz) = 759d7f673d437e406c64edc7bafa6df9d9b184f2bd95da9edee60fce6f28537e -SIZE (KDE/plasma/5.27.9/kdecoration-5.27.9.tar.xz) = 52968 +TIMESTAMP = 1701858739 +SHA256 (KDE/plasma/5.27.10/kdecoration-5.27.10.tar.xz) = 64966cb8258b50b55da50a8ab01fd1dd201065f1512216a04ce92189df679dde +SIZE (KDE/plasma/5.27.10/kdecoration-5.27.10.tar.xz) = 52928 diff --git a/x11-wm/plasma5-kwin/distinfo b/x11-wm/plasma5-kwin/distinfo index afb0b9b6977a..da9f4066a157 100644 --- a/x11-wm/plasma5-kwin/distinfo +++ b/x11-wm/plasma5-kwin/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1698166221 -SHA256 (KDE/plasma/5.27.9/kwin-5.27.9.tar.xz) = d94f691fa6f88966d74d1307554cda59847d5907539f86e79171170a655578bb -SIZE (KDE/plasma/5.27.9/kwin-5.27.9.tar.xz) = 7633316 +TIMESTAMP = 1701858740 +SHA256 (KDE/plasma/5.27.10/kwin-5.27.10.tar.xz) = b85a25125900b62cb5a3c609961088c45a58f55004317e4f5e8ba2039ae6dac6 +SIZE (KDE/plasma/5.27.10/kwin-5.27.10.tar.xz) = 7634568 diff --git a/x11/plasma5-kactivitymanagerd/distinfo b/x11/plasma5-kactivitymanagerd/distinfo index 86852bf1cd2a..37184d3a073e 100644 --- a/x11/plasma5-kactivitymanagerd/distinfo +++ b/x11/plasma5-kactivitymanagerd/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1698166222 -SHA256 (KDE/plasma/5.27.9/kactivitymanagerd-5.27.9.tar.xz) = 568f8971965ab2429355d39decc269aa667614737c92e273aa92623fb350c9be -SIZE (KDE/plasma/5.27.9/kactivitymanagerd-5.27.9.tar.xz) = 127252 +TIMESTAMP = 1701858741 +SHA256 (KDE/plasma/5.27.10/kactivitymanagerd-5.27.10.tar.xz) = 8ee262fb6c4987fb3e66b5adec4d60d10c98adb40ed7da3372b8b342d70e5dd9 +SIZE (KDE/plasma/5.27.10/kactivitymanagerd-5.27.10.tar.xz) = 127296 diff --git a/x11/plasma5-kgamma5/Makefile b/x11/plasma5-kgamma5/Makefile index 040580ca23a2..9672ed6234e6 100644 --- a/x11/plasma5-kgamma5/Makefile +++ b/x11/plasma5-kgamma5/Makefile @@ -1,17 +1,17 @@ -PORTNAME= kgamma5 +PORTNAME= kgamma DISTVERSION= ${KDE_PLASMA_VERSION} CATEGORIES= x11 kde kde-plasma MAINTAINER= kde@FreeBSD.org COMMENT= Plasma5 display gamma settings WWW= https://www.kde.org/plasma-desktop USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz xorg USE_KDE= auth codecs config configwidgets coreaddons i18n init service \ widgetsaddons \ doctools:build ecm:build USE_QT= core gui widgets xml \ buildtools:build qmake:build USE_XORG= ice sm x11 xext xxf86vm .include diff --git a/x11/plasma5-kgamma5/distinfo b/x11/plasma5-kgamma5/distinfo index b16421f9d1dc..1c8ca58c19d4 100644 --- a/x11/plasma5-kgamma5/distinfo +++ b/x11/plasma5-kgamma5/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1698166223 -SHA256 (KDE/plasma/5.27.9/kgamma5-5.27.9.tar.xz) = c84a9bfb43cf7dd616db1226a154334fd73bc520ed3a818104e75426767044cf -SIZE (KDE/plasma/5.27.9/kgamma5-5.27.9.tar.xz) = 88448 +TIMESTAMP = 1701858742 +SHA256 (KDE/plasma/5.27.10/kgamma-5.27.10.tar.xz) = dd81bb62a35ce4fce4482ed498e4072a50f9ec1190ba2a9246139ba1e24ef570 +SIZE (KDE/plasma/5.27.10/kgamma-5.27.10.tar.xz) = 88488 diff --git a/x11/plasma5-kscreen/distinfo b/x11/plasma5-kscreen/distinfo index e3f4b3c1717c..b131c75bb7c3 100644 --- a/x11/plasma5-kscreen/distinfo +++ b/x11/plasma5-kscreen/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1698166224 -SHA256 (KDE/plasma/5.27.9/kscreen-5.27.9.tar.xz) = 32e693581202ebfe2b99d98bcf291a5d8710238e4df0764d4d5c401245a5e15b -SIZE (KDE/plasma/5.27.9/kscreen-5.27.9.tar.xz) = 185952 +TIMESTAMP = 1701858743 +SHA256 (KDE/plasma/5.27.10/kscreen-5.27.10.tar.xz) = 8987bfcdb4e8617a229090ff42c4e4142ac0b5228e9bed7c3d2f03ed4e981c3c +SIZE (KDE/plasma/5.27.10/kscreen-5.27.10.tar.xz) = 185960 diff --git a/x11/plasma5-kwayland-integration/distinfo b/x11/plasma5-kwayland-integration/distinfo index 26d283148455..e0df6181a863 100644 --- a/x11/plasma5-kwayland-integration/distinfo +++ b/x11/plasma5-kwayland-integration/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1698166225 -SHA256 (KDE/plasma/5.27.9/kwayland-integration-5.27.9.tar.xz) = 9617f0084eb3154ddf44e5040df16a31cb8b7a87d47238576869d3e4b3dfe2e5 -SIZE (KDE/plasma/5.27.9/kwayland-integration-5.27.9.tar.xz) = 25776 +TIMESTAMP = 1701858744 +SHA256 (KDE/plasma/5.27.10/kwayland-integration-5.27.10.tar.xz) = f37d054662b6b294faee9dae9a8a808023cf2ec5a0508b76fcaceb61b4a3bd9f +SIZE (KDE/plasma/5.27.10/kwayland-integration-5.27.10.tar.xz) = 25776 diff --git a/x11/plasma5-layer-shell-qt/distinfo b/x11/plasma5-layer-shell-qt/distinfo index 4525290f9fad..c81f18c85cb3 100644 --- a/x11/plasma5-layer-shell-qt/distinfo +++ b/x11/plasma5-layer-shell-qt/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1698166226 -SHA256 (KDE/plasma/5.27.9/layer-shell-qt-5.27.9.tar.xz) = 67207ed9f764280da309d735dd1b0788187a7a9efcbb4f5b2849c723ee66886f -SIZE (KDE/plasma/5.27.9/layer-shell-qt-5.27.9.tar.xz) = 18444 +TIMESTAMP = 1701858745 +SHA256 (KDE/plasma/5.27.10/layer-shell-qt-5.27.10.tar.xz) = 0aed80cf2a143033c186df5343215acd638c80e419b4e854a14bd35ba3d4c3c2 +SIZE (KDE/plasma/5.27.10/layer-shell-qt-5.27.10.tar.xz) = 18444 diff --git a/x11/plasma5-libkscreen/distinfo b/x11/plasma5-libkscreen/distinfo index 68a1cb437943..65450a72aa32 100644 --- a/x11/plasma5-libkscreen/distinfo +++ b/x11/plasma5-libkscreen/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1698166227 -SHA256 (KDE/plasma/5.27.9/libkscreen-5.27.9.tar.xz) = fa3db2a4e97f5b95ba3e6f4b30ae75d6d0ad28059650f7833b0220e220c39b2b -SIZE (KDE/plasma/5.27.9/libkscreen-5.27.9.tar.xz) = 116060 +TIMESTAMP = 1701858746 +SHA256 (KDE/plasma/5.27.10/libkscreen-5.27.10.tar.xz) = 27f59f088929bc7fb560c353fb9da98832dde5b58fde88d9c694c98fdf3aff98 +SIZE (KDE/plasma/5.27.10/libkscreen-5.27.10.tar.xz) = 116108 diff --git a/x11/plasma5-plasma-bigscreen/distinfo b/x11/plasma5-plasma-bigscreen/distinfo index c010c5f130e4..103081f55019 100644 --- a/x11/plasma5-plasma-bigscreen/distinfo +++ b/x11/plasma5-plasma-bigscreen/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1698166229 -SHA256 (KDE/plasma/5.27.9/plasma-bigscreen-5.27.9.tar.xz) = 8b930d27390747c9319eef798b80fc2dbaf41e1940cb8af257d766b4aa1eb891 -SIZE (KDE/plasma/5.27.9/plasma-bigscreen-5.27.9.tar.xz) = 1065012 +TIMESTAMP = 1701858747 +SHA256 (KDE/plasma/5.27.10/plasma-bigscreen-5.27.10.tar.xz) = 3731ab079b820e5c6c288343013c5667e82d64db869a1c84ffe549e9ee068218 +SIZE (KDE/plasma/5.27.10/plasma-bigscreen-5.27.10.tar.xz) = 1063776 diff --git a/x11/plasma5-plasma-bigscreen/pkg-plist b/x11/plasma5-plasma-bigscreen/pkg-plist index 5b5eb93c5c9e..2c54cb2ff2a1 100644 --- a/x11/plasma5-plasma-bigscreen/pkg-plist +++ b/x11/plasma5-plasma-bigscreen/pkg-plist @@ -1,375 +1,377 @@ bin/mycroft-skill-launcher.py bin/plasma-bigscreen-wayland bin/plasma-bigscreen-x11 %%QT_PLUGINDIR%%/kcms/kcm_mediacenter_audiodevice.so %%QT_PLUGINDIR%%/kcms/kcm_mediacenter_bigscreen_settings.so %%QT_PLUGINDIR%%/kcms/kcm_mediacenter_kdeconnect.so %%QT_PLUGINDIR%%/kcms/kcm_mediacenter_wifi.so %%QT_PLUGINDIR%%/plasma/applets/plasma_containment_biglauncherhomescreen.so %%QT_QMLDIR%%/org/kde/mycroft/bigscreen/AbstractDelegate.qml %%QT_QMLDIR%%/org/kde/mycroft/bigscreen/IconDelegate.qml %%QT_QMLDIR%%/org/kde/mycroft/bigscreen/NavigationSoundEffects.qml %%QT_QMLDIR%%/org/kde/mycroft/bigscreen/TileRepeater.qml %%QT_QMLDIR%%/org/kde/mycroft/bigscreen/TileView.qml %%QT_QMLDIR%%/org/kde/mycroft/bigscreen/background.svg %%QT_QMLDIR%%/org/kde/mycroft/bigscreen/libbigscreenplugin.so %%QT_QMLDIR%%/org/kde/mycroft/bigscreen/qmldir share/kpackage/genericqml/org.kde.plasma.settings/contents/ui/+mediacenter/KCMContainer.qml share/kpackage/genericqml/org.kde.plasma.settings/contents/ui/+mediacenter/ModulesListPage.qml share/kpackage/genericqml/org.kde.plasma.settings/contents/ui/+mediacenter/VirtualKeyboard.qml share/kpackage/genericqml/org.kde.plasma.settings/contents/ui/+mediacenter/VirtualKeyboardLoader.qml share/kpackage/genericqml/org.kde.plasma.settings/contents/ui/+mediacenter/main.qml share/kpackage/kcms/kcm_mediacenter_audiodevice/contents/ui/DeviceChooserPage.qml share/kpackage/kcms/kcm_mediacenter_audiodevice/contents/ui/SettingsItem.qml share/kpackage/kcms/kcm_mediacenter_audiodevice/contents/ui/code/icon.js share/kpackage/kcms/kcm_mediacenter_audiodevice/contents/ui/delegates/AudioDelegate.qml share/kpackage/kcms/kcm_mediacenter_audiodevice/contents/ui/delegates/CompactAudioDelegate.qml share/kpackage/kcms/kcm_mediacenter_audiodevice/contents/ui/delegates/VolumeObject.qml share/kpackage/kcms/kcm_mediacenter_audiodevice/contents/ui/images/green-tick-thick.svg share/kpackage/kcms/kcm_mediacenter_audiodevice/contents/ui/images/green-tick.svg share/kpackage/kcms/kcm_mediacenter_audiodevice/contents/ui/main.qml share/kpackage/kcms/kcm_mediacenter_audiodevice/contents/ui/views/RowLabelView.qml share/kpackage/kcms/kcm_mediacenter_audiodevice/contents/ui/views/TileView.qml share/kpackage/kcms/kcm_mediacenter_bigscreen_settings/contents/ui/DeviceTimeSettings.qml share/kpackage/kcms/kcm_mediacenter_bigscreen_settings/contents/ui/delegates/DatePicker.qml share/kpackage/kcms/kcm_mediacenter_bigscreen_settings/contents/ui/delegates/Digit.qml share/kpackage/kcms/kcm_mediacenter_bigscreen_settings/contents/ui/delegates/Hand.qml share/kpackage/kcms/kcm_mediacenter_bigscreen_settings/contents/ui/delegates/LocalSettingDelegate.qml share/kpackage/kcms/kcm_mediacenter_bigscreen_settings/contents/ui/delegates/ThemeDelegate.qml share/kpackage/kcms/kcm_mediacenter_bigscreen_settings/contents/ui/delegates/ThemePreview.qml share/kpackage/kcms/kcm_mediacenter_bigscreen_settings/contents/ui/delegates/TimeDelegate.qml share/kpackage/kcms/kcm_mediacenter_bigscreen_settings/contents/ui/delegates/TimePicker.qml share/kpackage/kcms/kcm_mediacenter_bigscreen_settings/contents/ui/images/green-tick-thick.svg share/kpackage/kcms/kcm_mediacenter_bigscreen_settings/contents/ui/images/green-tick.svg share/kpackage/kcms/kcm_mediacenter_bigscreen_settings/contents/ui/main.qml share/kpackage/kcms/kcm_mediacenter_kdeconnect/contents/ui/DeviceConnectionView.qml share/kpackage/kcms/kcm_mediacenter_kdeconnect/contents/ui/delegates/DeviceDelegate.qml share/kpackage/kcms/kcm_mediacenter_kdeconnect/contents/ui/delegates/PairRequest.qml share/kpackage/kcms/kcm_mediacenter_kdeconnect/contents/ui/delegates/PairedView.qml share/kpackage/kcms/kcm_mediacenter_kdeconnect/contents/ui/delegates/UnpairedView.qml share/kpackage/kcms/kcm_mediacenter_kdeconnect/contents/ui/delegates/Unreachable.qml share/kpackage/kcms/kcm_mediacenter_kdeconnect/contents/ui/images/green-tick-thick.svg share/kpackage/kcms/kcm_mediacenter_kdeconnect/contents/ui/images/green-tick.svg share/kpackage/kcms/kcm_mediacenter_kdeconnect/contents/ui/main.qml share/kpackage/kcms/kcm_mediacenter_wifi/contents/ui/DetailsText.qml share/kpackage/kcms/kcm_mediacenter_wifi/contents/ui/DeviceConnectionItem.qml share/kpackage/kcms/kcm_mediacenter_wifi/contents/ui/NetworkItem.qml share/kpackage/kcms/kcm_mediacenter_wifi/contents/ui/delegates/CompactNetworkDelegate.qml share/kpackage/kcms/kcm_mediacenter_wifi/contents/ui/delegates/NetworkDelegate.qml share/kpackage/kcms/kcm_mediacenter_wifi/contents/ui/images/green-tick-thick.svg share/kpackage/kcms/kcm_mediacenter_wifi/contents/ui/images/green-tick.svg share/kpackage/kcms/kcm_mediacenter_wifi/contents/ui/main.qml share/kpackage/kcms/kcm_mediacenter_wifi/contents/ui/views/RowLabelView.qml share/kservices5/plasma-applet-org.kde.mycroft.bigscreen.homescreen.desktop share/kservices5/plasma-applet-org.kde.plasma.mycroft.bigscreen.desktop share/kservices5/plasma-lookandfeel-org.kde.plasma.mycroft.bigscreen.desktop share/locale/ar/LC_MESSAGES/kcm_audiodevice.mo share/locale/ar/LC_MESSAGES/kcm_mediacenter_bigscreen_settings.mo share/locale/ar/LC_MESSAGES/kcm_mediacenter_kdeconnect.mo share/locale/ar/LC_MESSAGES/kcm_mediacenter_wifi.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.mycroft.bigscreen.homescreen.mo share/locale/ar/LC_MESSAGES/plasma_lookandfeel_org.kde.plasma.mycroft.bigscreen.mo share/locale/ar/LC_MESSAGES/plasma_shell_org.kde.plasma.mycroft.bigscreen.mo share/locale/az/LC_MESSAGES/kcm_audiodevice.mo share/locale/az/LC_MESSAGES/kcm_mediacenter_bigscreen_settings.mo share/locale/az/LC_MESSAGES/kcm_mediacenter_kdeconnect.mo share/locale/az/LC_MESSAGES/kcm_mediacenter_wifi.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.mycroft.bigscreen.homescreen.mo share/locale/az/LC_MESSAGES/plasma_lookandfeel_org.kde.plasma.mycroft.bigscreen.mo share/locale/az/LC_MESSAGES/plasma_shell_org.kde.plasma.mycroft.bigscreen.mo share/locale/bg/LC_MESSAGES/kcm_audiodevice.mo share/locale/bg/LC_MESSAGES/kcm_mediacenter_bigscreen_settings.mo share/locale/bg/LC_MESSAGES/kcm_mediacenter_kdeconnect.mo share/locale/bg/LC_MESSAGES/kcm_mediacenter_wifi.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.mycroft.bigscreen.homescreen.mo share/locale/bg/LC_MESSAGES/plasma_lookandfeel_org.kde.plasma.mycroft.bigscreen.mo share/locale/bg/LC_MESSAGES/plasma_shell_org.kde.plasma.mycroft.bigscreen.mo share/locale/ca/LC_MESSAGES/kcm_audiodevice.mo share/locale/ca/LC_MESSAGES/kcm_mediacenter_bigscreen_settings.mo share/locale/ca/LC_MESSAGES/kcm_mediacenter_kdeconnect.mo share/locale/ca/LC_MESSAGES/kcm_mediacenter_wifi.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.mycroft.bigscreen.homescreen.mo share/locale/ca/LC_MESSAGES/plasma_lookandfeel_org.kde.plasma.mycroft.bigscreen.mo share/locale/ca/LC_MESSAGES/plasma_shell_org.kde.plasma.mycroft.bigscreen.mo share/locale/ca@valencia/LC_MESSAGES/kcm_audiodevice.mo share/locale/ca@valencia/LC_MESSAGES/kcm_mediacenter_bigscreen_settings.mo share/locale/ca@valencia/LC_MESSAGES/kcm_mediacenter_kdeconnect.mo share/locale/ca@valencia/LC_MESSAGES/kcm_mediacenter_wifi.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.mycroft.bigscreen.homescreen.mo share/locale/ca@valencia/LC_MESSAGES/plasma_lookandfeel_org.kde.plasma.mycroft.bigscreen.mo share/locale/ca@valencia/LC_MESSAGES/plasma_shell_org.kde.plasma.mycroft.bigscreen.mo share/locale/cs/LC_MESSAGES/kcm_audiodevice.mo share/locale/cs/LC_MESSAGES/kcm_mediacenter_bigscreen_settings.mo share/locale/cs/LC_MESSAGES/kcm_mediacenter_kdeconnect.mo share/locale/cs/LC_MESSAGES/kcm_mediacenter_wifi.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.mycroft.bigscreen.homescreen.mo share/locale/cs/LC_MESSAGES/plasma_lookandfeel_org.kde.plasma.mycroft.bigscreen.mo share/locale/cs/LC_MESSAGES/plasma_shell_org.kde.plasma.mycroft.bigscreen.mo share/locale/da/LC_MESSAGES/kcm_audiodevice.mo share/locale/da/LC_MESSAGES/kcm_mediacenter_kdeconnect.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.mycroft.bigscreen.homescreen.mo share/locale/da/LC_MESSAGES/plasma_lookandfeel_org.kde.plasma.mycroft.bigscreen.mo share/locale/de/LC_MESSAGES/kcm_audiodevice.mo share/locale/de/LC_MESSAGES/kcm_mediacenter_bigscreen_settings.mo share/locale/de/LC_MESSAGES/kcm_mediacenter_kdeconnect.mo share/locale/de/LC_MESSAGES/kcm_mediacenter_wifi.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.mycroft.bigscreen.homescreen.mo share/locale/de/LC_MESSAGES/plasma_lookandfeel_org.kde.plasma.mycroft.bigscreen.mo share/locale/de/LC_MESSAGES/plasma_shell_org.kde.plasma.mycroft.bigscreen.mo share/locale/el/LC_MESSAGES/kcm_audiodevice.mo share/locale/el/LC_MESSAGES/kcm_mediacenter_kdeconnect.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.mycroft.bigscreen.homescreen.mo share/locale/el/LC_MESSAGES/plasma_lookandfeel_org.kde.plasma.mycroft.bigscreen.mo share/locale/en_GB/LC_MESSAGES/kcm_audiodevice.mo share/locale/en_GB/LC_MESSAGES/kcm_mediacenter_bigscreen_settings.mo share/locale/en_GB/LC_MESSAGES/kcm_mediacenter_kdeconnect.mo share/locale/en_GB/LC_MESSAGES/kcm_mediacenter_wifi.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.mycroft.bigscreen.homescreen.mo share/locale/en_GB/LC_MESSAGES/plasma_lookandfeel_org.kde.plasma.mycroft.bigscreen.mo share/locale/en_GB/LC_MESSAGES/plasma_shell_org.kde.plasma.mycroft.bigscreen.mo +share/locale/eo/LC_MESSAGES/plasma_lookandfeel_org.kde.plasma.mycroft.bigscreen.mo +share/locale/eo/LC_MESSAGES/plasma_shell_org.kde.plasma.mycroft.bigscreen.mo share/locale/es/LC_MESSAGES/kcm_audiodevice.mo share/locale/es/LC_MESSAGES/kcm_mediacenter_bigscreen_settings.mo share/locale/es/LC_MESSAGES/kcm_mediacenter_kdeconnect.mo share/locale/es/LC_MESSAGES/kcm_mediacenter_wifi.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.mycroft.bigscreen.homescreen.mo share/locale/es/LC_MESSAGES/plasma_lookandfeel_org.kde.plasma.mycroft.bigscreen.mo share/locale/es/LC_MESSAGES/plasma_shell_org.kde.plasma.mycroft.bigscreen.mo share/locale/et/LC_MESSAGES/kcm_audiodevice.mo share/locale/et/LC_MESSAGES/kcm_mediacenter_kdeconnect.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.mycroft.bigscreen.homescreen.mo share/locale/et/LC_MESSAGES/plasma_lookandfeel_org.kde.plasma.mycroft.bigscreen.mo share/locale/eu/LC_MESSAGES/kcm_audiodevice.mo share/locale/eu/LC_MESSAGES/kcm_mediacenter_bigscreen_settings.mo share/locale/eu/LC_MESSAGES/kcm_mediacenter_kdeconnect.mo share/locale/eu/LC_MESSAGES/kcm_mediacenter_wifi.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.mycroft.bigscreen.homescreen.mo share/locale/eu/LC_MESSAGES/plasma_lookandfeel_org.kde.plasma.mycroft.bigscreen.mo share/locale/eu/LC_MESSAGES/plasma_shell_org.kde.plasma.mycroft.bigscreen.mo share/locale/fi/LC_MESSAGES/kcm_audiodevice.mo share/locale/fi/LC_MESSAGES/kcm_mediacenter_bigscreen_settings.mo share/locale/fi/LC_MESSAGES/kcm_mediacenter_kdeconnect.mo share/locale/fi/LC_MESSAGES/kcm_mediacenter_wifi.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.mycroft.bigscreen.homescreen.mo share/locale/fi/LC_MESSAGES/plasma_lookandfeel_org.kde.plasma.mycroft.bigscreen.mo share/locale/fi/LC_MESSAGES/plasma_shell_org.kde.plasma.mycroft.bigscreen.mo share/locale/fr/LC_MESSAGES/kcm_audiodevice.mo share/locale/fr/LC_MESSAGES/kcm_mediacenter_bigscreen_settings.mo share/locale/fr/LC_MESSAGES/kcm_mediacenter_kdeconnect.mo share/locale/fr/LC_MESSAGES/kcm_mediacenter_wifi.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.mycroft.bigscreen.homescreen.mo share/locale/fr/LC_MESSAGES/plasma_lookandfeel_org.kde.plasma.mycroft.bigscreen.mo share/locale/fr/LC_MESSAGES/plasma_shell_org.kde.plasma.mycroft.bigscreen.mo share/locale/gl/LC_MESSAGES/kcm_audiodevice.mo share/locale/gl/LC_MESSAGES/kcm_mediacenter_bigscreen_settings.mo share/locale/gl/LC_MESSAGES/kcm_mediacenter_kdeconnect.mo share/locale/gl/LC_MESSAGES/kcm_mediacenter_wifi.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.mycroft.bigscreen.homescreen.mo share/locale/gl/LC_MESSAGES/plasma_lookandfeel_org.kde.plasma.mycroft.bigscreen.mo share/locale/gl/LC_MESSAGES/plasma_shell_org.kde.plasma.mycroft.bigscreen.mo share/locale/hu/LC_MESSAGES/kcm_audiodevice.mo share/locale/hu/LC_MESSAGES/kcm_mediacenter_bigscreen_settings.mo share/locale/hu/LC_MESSAGES/kcm_mediacenter_kdeconnect.mo share/locale/hu/LC_MESSAGES/kcm_mediacenter_wifi.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.mycroft.bigscreen.homescreen.mo share/locale/hu/LC_MESSAGES/plasma_lookandfeel_org.kde.plasma.mycroft.bigscreen.mo share/locale/hu/LC_MESSAGES/plasma_shell_org.kde.plasma.mycroft.bigscreen.mo share/locale/ia/LC_MESSAGES/kcm_audiodevice.mo share/locale/ia/LC_MESSAGES/kcm_mediacenter_bigscreen_settings.mo share/locale/ia/LC_MESSAGES/kcm_mediacenter_kdeconnect.mo share/locale/ia/LC_MESSAGES/kcm_mediacenter_wifi.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.mycroft.bigscreen.homescreen.mo share/locale/ia/LC_MESSAGES/plasma_lookandfeel_org.kde.plasma.mycroft.bigscreen.mo share/locale/ia/LC_MESSAGES/plasma_shell_org.kde.plasma.mycroft.bigscreen.mo share/locale/id/LC_MESSAGES/kcm_audiodevice.mo share/locale/id/LC_MESSAGES/kcm_mediacenter_bigscreen_settings.mo share/locale/id/LC_MESSAGES/kcm_mediacenter_kdeconnect.mo share/locale/id/LC_MESSAGES/kcm_mediacenter_wifi.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.mycroft.bigscreen.homescreen.mo share/locale/id/LC_MESSAGES/plasma_lookandfeel_org.kde.plasma.mycroft.bigscreen.mo share/locale/id/LC_MESSAGES/plasma_shell_org.kde.plasma.mycroft.bigscreen.mo share/locale/it/LC_MESSAGES/kcm_audiodevice.mo share/locale/it/LC_MESSAGES/kcm_mediacenter_bigscreen_settings.mo share/locale/it/LC_MESSAGES/kcm_mediacenter_kdeconnect.mo share/locale/it/LC_MESSAGES/kcm_mediacenter_wifi.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.mycroft.bigscreen.homescreen.mo share/locale/it/LC_MESSAGES/plasma_lookandfeel_org.kde.plasma.mycroft.bigscreen.mo share/locale/it/LC_MESSAGES/plasma_shell_org.kde.plasma.mycroft.bigscreen.mo share/locale/ja/LC_MESSAGES/kcm_audiodevice.mo share/locale/ja/LC_MESSAGES/kcm_mediacenter_bigscreen_settings.mo share/locale/ja/LC_MESSAGES/kcm_mediacenter_kdeconnect.mo share/locale/ja/LC_MESSAGES/kcm_mediacenter_wifi.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.mycroft.bigscreen.homescreen.mo share/locale/ja/LC_MESSAGES/plasma_lookandfeel_org.kde.plasma.mycroft.bigscreen.mo share/locale/ja/LC_MESSAGES/plasma_shell_org.kde.plasma.mycroft.bigscreen.mo share/locale/ka/LC_MESSAGES/kcm_audiodevice.mo share/locale/ka/LC_MESSAGES/kcm_mediacenter_bigscreen_settings.mo share/locale/ka/LC_MESSAGES/kcm_mediacenter_kdeconnect.mo share/locale/ka/LC_MESSAGES/kcm_mediacenter_wifi.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.mycroft.bigscreen.homescreen.mo share/locale/ka/LC_MESSAGES/plasma_lookandfeel_org.kde.plasma.mycroft.bigscreen.mo share/locale/ka/LC_MESSAGES/plasma_shell_org.kde.plasma.mycroft.bigscreen.mo share/locale/ko/LC_MESSAGES/kcm_audiodevice.mo share/locale/ko/LC_MESSAGES/kcm_mediacenter_bigscreen_settings.mo share/locale/ko/LC_MESSAGES/kcm_mediacenter_kdeconnect.mo share/locale/ko/LC_MESSAGES/kcm_mediacenter_wifi.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.mycroft.bigscreen.homescreen.mo share/locale/ko/LC_MESSAGES/plasma_lookandfeel_org.kde.plasma.mycroft.bigscreen.mo share/locale/ko/LC_MESSAGES/plasma_shell_org.kde.plasma.mycroft.bigscreen.mo share/locale/lt/LC_MESSAGES/kcm_audiodevice.mo share/locale/lt/LC_MESSAGES/kcm_mediacenter_kdeconnect.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.mycroft.bigscreen.homescreen.mo share/locale/lt/LC_MESSAGES/plasma_lookandfeel_org.kde.plasma.mycroft.bigscreen.mo share/locale/nl/LC_MESSAGES/kcm_audiodevice.mo share/locale/nl/LC_MESSAGES/kcm_mediacenter_bigscreen_settings.mo share/locale/nl/LC_MESSAGES/kcm_mediacenter_kdeconnect.mo share/locale/nl/LC_MESSAGES/kcm_mediacenter_wifi.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.mycroft.bigscreen.homescreen.mo share/locale/nl/LC_MESSAGES/plasma_lookandfeel_org.kde.plasma.mycroft.bigscreen.mo share/locale/nl/LC_MESSAGES/plasma_shell_org.kde.plasma.mycroft.bigscreen.mo share/locale/nn/LC_MESSAGES/kcm_audiodevice.mo share/locale/nn/LC_MESSAGES/kcm_mediacenter_bigscreen_settings.mo share/locale/nn/LC_MESSAGES/kcm_mediacenter_kdeconnect.mo share/locale/nn/LC_MESSAGES/kcm_mediacenter_wifi.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.mycroft.bigscreen.homescreen.mo share/locale/nn/LC_MESSAGES/plasma_lookandfeel_org.kde.plasma.mycroft.bigscreen.mo share/locale/nn/LC_MESSAGES/plasma_shell_org.kde.plasma.mycroft.bigscreen.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.mycroft.bigscreen.homescreen.mo share/locale/pl/LC_MESSAGES/kcm_audiodevice.mo share/locale/pl/LC_MESSAGES/kcm_mediacenter_bigscreen_settings.mo share/locale/pl/LC_MESSAGES/kcm_mediacenter_kdeconnect.mo share/locale/pl/LC_MESSAGES/kcm_mediacenter_wifi.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.mycroft.bigscreen.homescreen.mo share/locale/pl/LC_MESSAGES/plasma_lookandfeel_org.kde.plasma.mycroft.bigscreen.mo share/locale/pl/LC_MESSAGES/plasma_shell_org.kde.plasma.mycroft.bigscreen.mo share/locale/pt/LC_MESSAGES/kcm_audiodevice.mo share/locale/pt/LC_MESSAGES/kcm_mediacenter_bigscreen_settings.mo share/locale/pt/LC_MESSAGES/kcm_mediacenter_kdeconnect.mo share/locale/pt/LC_MESSAGES/kcm_mediacenter_wifi.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.mycroft.bigscreen.homescreen.mo share/locale/pt/LC_MESSAGES/plasma_lookandfeel_org.kde.plasma.mycroft.bigscreen.mo share/locale/pt/LC_MESSAGES/plasma_shell_org.kde.plasma.mycroft.bigscreen.mo share/locale/pt_BR/LC_MESSAGES/kcm_audiodevice.mo share/locale/pt_BR/LC_MESSAGES/kcm_mediacenter_bigscreen_settings.mo share/locale/pt_BR/LC_MESSAGES/kcm_mediacenter_kdeconnect.mo share/locale/pt_BR/LC_MESSAGES/kcm_mediacenter_wifi.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.mycroft.bigscreen.homescreen.mo share/locale/pt_BR/LC_MESSAGES/plasma_lookandfeel_org.kde.plasma.mycroft.bigscreen.mo share/locale/pt_BR/LC_MESSAGES/plasma_shell_org.kde.plasma.mycroft.bigscreen.mo share/locale/ro/LC_MESSAGES/kcm_audiodevice.mo share/locale/ro/LC_MESSAGES/kcm_mediacenter_kdeconnect.mo share/locale/ro/LC_MESSAGES/plasma_lookandfeel_org.kde.plasma.mycroft.bigscreen.mo share/locale/ro/LC_MESSAGES/plasma_shell_org.kde.plasma.mycroft.bigscreen.mo share/locale/ru/LC_MESSAGES/kcm_audiodevice.mo share/locale/ru/LC_MESSAGES/kcm_mediacenter_bigscreen_settings.mo share/locale/ru/LC_MESSAGES/kcm_mediacenter_kdeconnect.mo share/locale/ru/LC_MESSAGES/kcm_mediacenter_wifi.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.mycroft.bigscreen.homescreen.mo share/locale/ru/LC_MESSAGES/plasma_lookandfeel_org.kde.plasma.mycroft.bigscreen.mo share/locale/ru/LC_MESSAGES/plasma_shell_org.kde.plasma.mycroft.bigscreen.mo share/locale/sk/LC_MESSAGES/kcm_audiodevice.mo share/locale/sk/LC_MESSAGES/kcm_mediacenter_bigscreen_settings.mo share/locale/sk/LC_MESSAGES/kcm_mediacenter_kdeconnect.mo share/locale/sk/LC_MESSAGES/kcm_mediacenter_wifi.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.mycroft.bigscreen.homescreen.mo share/locale/sk/LC_MESSAGES/plasma_lookandfeel_org.kde.plasma.mycroft.bigscreen.mo share/locale/sk/LC_MESSAGES/plasma_shell_org.kde.plasma.mycroft.bigscreen.mo share/locale/sl/LC_MESSAGES/kcm_audiodevice.mo share/locale/sl/LC_MESSAGES/kcm_mediacenter_bigscreen_settings.mo share/locale/sl/LC_MESSAGES/kcm_mediacenter_kdeconnect.mo share/locale/sl/LC_MESSAGES/kcm_mediacenter_wifi.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.mycroft.bigscreen.homescreen.mo share/locale/sl/LC_MESSAGES/plasma_lookandfeel_org.kde.plasma.mycroft.bigscreen.mo share/locale/sl/LC_MESSAGES/plasma_shell_org.kde.plasma.mycroft.bigscreen.mo share/locale/sv/LC_MESSAGES/kcm_audiodevice.mo share/locale/sv/LC_MESSAGES/kcm_mediacenter_bigscreen_settings.mo share/locale/sv/LC_MESSAGES/kcm_mediacenter_kdeconnect.mo share/locale/sv/LC_MESSAGES/kcm_mediacenter_wifi.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.mycroft.bigscreen.homescreen.mo share/locale/sv/LC_MESSAGES/plasma_lookandfeel_org.kde.plasma.mycroft.bigscreen.mo share/locale/sv/LC_MESSAGES/plasma_shell_org.kde.plasma.mycroft.bigscreen.mo share/locale/tr/LC_MESSAGES/kcm_audiodevice.mo share/locale/tr/LC_MESSAGES/kcm_mediacenter_bigscreen_settings.mo share/locale/tr/LC_MESSAGES/kcm_mediacenter_kdeconnect.mo share/locale/tr/LC_MESSAGES/kcm_mediacenter_wifi.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.mycroft.bigscreen.homescreen.mo share/locale/tr/LC_MESSAGES/plasma_lookandfeel_org.kde.plasma.mycroft.bigscreen.mo share/locale/tr/LC_MESSAGES/plasma_shell_org.kde.plasma.mycroft.bigscreen.mo share/locale/uk/LC_MESSAGES/kcm_audiodevice.mo share/locale/uk/LC_MESSAGES/kcm_mediacenter_bigscreen_settings.mo share/locale/uk/LC_MESSAGES/kcm_mediacenter_kdeconnect.mo share/locale/uk/LC_MESSAGES/kcm_mediacenter_wifi.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.mycroft.bigscreen.homescreen.mo share/locale/uk/LC_MESSAGES/plasma_lookandfeel_org.kde.plasma.mycroft.bigscreen.mo share/locale/uk/LC_MESSAGES/plasma_shell_org.kde.plasma.mycroft.bigscreen.mo share/locale/zh_CN/LC_MESSAGES/kcm_audiodevice.mo share/locale/zh_CN/LC_MESSAGES/kcm_mediacenter_bigscreen_settings.mo share/locale/zh_CN/LC_MESSAGES/kcm_mediacenter_kdeconnect.mo share/locale/zh_CN/LC_MESSAGES/kcm_mediacenter_wifi.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.mycroft.bigscreen.homescreen.mo share/locale/zh_CN/LC_MESSAGES/plasma_lookandfeel_org.kde.plasma.mycroft.bigscreen.mo share/locale/zh_CN/LC_MESSAGES/plasma_shell_org.kde.plasma.mycroft.bigscreen.mo share/locale/zh_TW/LC_MESSAGES/kcm_audiodevice.mo share/locale/zh_TW/LC_MESSAGES/kcm_mediacenter_bigscreen_settings.mo share/locale/zh_TW/LC_MESSAGES/kcm_mediacenter_kdeconnect.mo share/locale/zh_TW/LC_MESSAGES/kcm_mediacenter_wifi.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.mycroft.bigscreen.homescreen.mo share/locale/zh_TW/LC_MESSAGES/plasma_lookandfeel_org.kde.plasma.mycroft.bigscreen.mo share/locale/zh_TW/LC_MESSAGES/plasma_shell_org.kde.plasma.mycroft.bigscreen.mo share/metainfo/org.kde.mycroft.bigscreen.homescreen.appdata.xml share/metainfo/org.kde.plasma.mycroft.bigscreen.appdata.xml share/metainfo/org.kde.plasma.mycroft.bigscreen.metainfo.xml share/plasma/look-and-feel/org.kde.plasma.mycroft.bigscreen/contents/defaults share/plasma/look-and-feel/org.kde.plasma.mycroft.bigscreen/contents/layouts/org.kde.plasma.mycroft.bigscreen-layout.js share/plasma/look-and-feel/org.kde.plasma.mycroft.bigscreen/contents/lockscreen/LockScreen.qml share/plasma/look-and-feel/org.kde.plasma.mycroft.bigscreen/contents/previews/splash.png share/plasma/look-and-feel/org.kde.plasma.mycroft.bigscreen/contents/splash/Splash.qml share/plasma/look-and-feel/org.kde.plasma.mycroft.bigscreen/contents/splash/images/busycolored.svg share/plasma/look-and-feel/org.kde.plasma.mycroft.bigscreen/contents/splash/images/busywidget.svgz share/plasma/look-and-feel/org.kde.plasma.mycroft.bigscreen/contents/splash/images/kde.svgz share/plasma/look-and-feel/org.kde.plasma.mycroft.bigscreen/contents/splash/images/logo-big.svg share/plasma/look-and-feel/org.kde.plasma.mycroft.bigscreen/contents/splash/images/logo.svg share/plasma/look-and-feel/org.kde.plasma.mycroft.bigscreen/contents/splash/images/plasma.svgz share/plasma/look-and-feel/org.kde.plasma.mycroft.bigscreen/contents/splash/images/rocket.svg share/plasma/look-and-feel/org.kde.plasma.mycroft.bigscreen/metadata.desktop share/plasma/look-and-feel/org.kde.plasma.mycroft.bigscreen/metadata.json share/plasma/plasmoids/org.kde.mycroft.bigscreen.homescreen/contents/config/config.qml share/plasma/plasmoids/org.kde.mycroft.bigscreen.homescreen/contents/config/main.xml share/plasma/plasmoids/org.kde.mycroft.bigscreen.homescreen/contents/ui/ConfigWindow.qml share/plasma/plasmoids/org.kde.mycroft.bigscreen.homescreen/contents/ui/MycroftIndicator.qml share/plasma/plasmoids/org.kde.mycroft.bigscreen.homescreen/contents/ui/MycroftWindow.qml share/plasma/plasmoids/org.kde.mycroft.bigscreen.homescreen/contents/ui/PowerManagementItem.qml share/plasma/plasmoids/org.kde.mycroft.bigscreen.homescreen/contents/ui/indicators/AbstractIndicator.qml share/plasma/plasmoids/org.kde.mycroft.bigscreen.homescreen/contents/ui/indicators/KdeConnect.qml share/plasma/plasmoids/org.kde.mycroft.bigscreen.homescreen/contents/ui/indicators/MycroftConnect.qml share/plasma/plasmoids/org.kde.mycroft.bigscreen.homescreen/contents/ui/indicators/PairWindow.qml share/plasma/plasmoids/org.kde.mycroft.bigscreen.homescreen/contents/ui/indicators/Shutdown.qml share/plasma/plasmoids/org.kde.mycroft.bigscreen.homescreen/contents/ui/indicators/Volume.qml share/plasma/plasmoids/org.kde.mycroft.bigscreen.homescreen/contents/ui/indicators/Wifi.qml share/plasma/plasmoids/org.kde.mycroft.bigscreen.homescreen/contents/ui/indicators/code/icon.js share/plasma/plasmoids/org.kde.mycroft.bigscreen.homescreen/contents/ui/launcher/FeedbackWindow.qml share/plasma/plasmoids/org.kde.mycroft.bigscreen.homescreen/contents/ui/launcher/LauncherHome.qml share/plasma/plasmoids/org.kde.mycroft.bigscreen.homescreen/contents/ui/launcher/LauncherMenu.qml share/plasma/plasmoids/org.kde.mycroft.bigscreen.homescreen/contents/ui/launcher/PlaceHolderPage.qml share/plasma/plasmoids/org.kde.mycroft.bigscreen.homescreen/contents/ui/launcher/SettingActions.qml share/plasma/plasmoids/org.kde.mycroft.bigscreen.homescreen/contents/ui/launcher/config/configGeneral.qml share/plasma/plasmoids/org.kde.mycroft.bigscreen.homescreen/contents/ui/launcher/delegates/AppDelegate.qml share/plasma/plasmoids/org.kde.mycroft.bigscreen.homescreen/contents/ui/launcher/delegates/SettingDelegate.qml share/plasma/plasmoids/org.kde.mycroft.bigscreen.homescreen/contents/ui/launcher/delegates/VoiceAppDelegate.qml share/plasma/plasmoids/org.kde.mycroft.bigscreen.homescreen/contents/ui/main.qml share/plasma/plasmoids/org.kde.mycroft.bigscreen.homescreen/metadata.desktop share/plasma/plasmoids/org.kde.mycroft.bigscreen.homescreen/metadata.json share/plasma/shells/org.kde.plasma.mycroft.bigscreen/contents/configuration/AppletConfiguration.qml share/plasma/shells/org.kde.plasma.mycroft.bigscreen/contents/configuration/ConfigCategoryDelegate.qml share/plasma/shells/org.kde.plasma.mycroft.bigscreen/contents/configuration/ConfigurationContainmentAppearance.qml share/plasma/shells/org.kde.plasma.mycroft.bigscreen/contents/configuration/ContainmentConfiguration.qml share/plasma/shells/org.kde.plasma.mycroft.bigscreen/contents/configuration/SlideshowThumbnail.png share/plasma/shells/org.kde.plasma.mycroft.bigscreen/contents/configuration/WallpaperDelegate.qml share/plasma/shells/org.kde.plasma.mycroft.bigscreen/contents/defaults share/plasma/shells/org.kde.plasma.mycroft.bigscreen/contents/layout.js share/plasma/shells/org.kde.plasma.mycroft.bigscreen/metadata.desktop share/plasma/shells/org.kde.plasma.mycroft.bigscreen/metadata.json share/sounds/plasma-bigscreen/LICENSE share/sounds/plasma-bigscreen/clicked.wav share/sounds/plasma-bigscreen/moving.wav share/wayland-sessions/plasma-bigscreen-wayland.desktop share/xsessions/plasma-bigscreen-x11.desktop diff --git a/x11/plasma5-plasma-desktop/distinfo b/x11/plasma5-plasma-desktop/distinfo index 8cf23d2b957d..4630d5172824 100644 --- a/x11/plasma5-plasma-desktop/distinfo +++ b/x11/plasma5-plasma-desktop/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1698166233 -SHA256 (KDE/plasma/5.27.9/plasma-desktop-5.27.9.tar.xz) = 6dd6f5b0bf9fa15b12b7e9424fed4fc81e330532025e052f8ba00b45f5c1f2e5 -SIZE (KDE/plasma/5.27.9/plasma-desktop-5.27.9.tar.xz) = 14721128 +TIMESTAMP = 1701858748 +SHA256 (KDE/plasma/5.27.10/plasma-desktop-5.27.10.tar.xz) = de015fc921d34da23d85998a03afa7c81d935f5d9c55261ff7a2b413c9cfd09f +SIZE (KDE/plasma/5.27.10/plasma-desktop-5.27.10.tar.xz) = 14724388 diff --git a/x11/plasma5-plasma-integration/distinfo b/x11/plasma5-plasma-integration/distinfo index 9b5722fa8eac..b72b979b5cb1 100644 --- a/x11/plasma5-plasma-integration/distinfo +++ b/x11/plasma5-plasma-integration/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1698166234 -SHA256 (KDE/plasma/5.27.9/plasma-integration-5.27.9.tar.xz) = 582a874a33d45f709e003dbd92a6c2a6e2ac0b495961536bc122d398b23e5db3 -SIZE (KDE/plasma/5.27.9/plasma-integration-5.27.9.tar.xz) = 89796 +TIMESTAMP = 1701858749 +SHA256 (KDE/plasma/5.27.10/plasma-integration-5.27.10.tar.xz) = 35f2c81e8586051acd4bbccd9c44bab7dc86a1b3f5f0988589f43777032affbb +SIZE (KDE/plasma/5.27.10/plasma-integration-5.27.10.tar.xz) = 89832 diff --git a/x11/plasma5-plasma-workspace/Makefile b/x11/plasma5-plasma-workspace/Makefile index 9db3c1bdb75a..7f7322a3e1c7 100644 --- a/x11/plasma5-plasma-workspace/Makefile +++ b/x11/plasma5-plasma-workspace/Makefile @@ -1,70 +1,70 @@ PORTNAME= plasma-workspace -DISTVERSION= ${KDE_PLASMA_VERSION}.1 +DISTVERSION= ${KDE_PLASMA_VERSION} PORTREVISION= 2 CATEGORIES= x11 kde kde-plasma MAINTAINER= kde@FreeBSD.org COMMENT= Plasma5 Plasma workspace WWW= https://www.kde.org/plasma-desktop LIB_DEPENDS= libcln.so:math/cln \ libdbusmenu-qt5.so:devel/libdbusmenu-qt@qt5 \ libfreetype.so:print/freetype2 \ libfontconfig.so:x11-fonts/fontconfig \ libicui18n.so:devel/icu \ libqalculate.so:math/libqalculate \ libwayland-client.so:graphics/wayland \ libxkbcommon.so:x11/libxkbcommon \ libxcb-image.so:x11/xcb-util-image \ libxcb-util.so:x11/xcb-util RUN_DEPENDS= ck-launch-session:sysutils/consolekit2 \ iceauth:x11/iceauth \ xmessage:x11/xmessage \ xrdb:x11/xrdb \ xset:x11/xset \ xsetroot:x11/xsetroot \ ${LOCALBASE}/libdata/pkgconfig/xkeyboard-config.pc:x11/xkeyboard-config \ iso-codes>=0:misc/iso-codes \ ${LOCALBASE}/bin/genv:sysutils/coreutils \ accountsservice>=0:sysutils/accountsservice USES= cmake compiler:c++11-lib cpe desktop-file-utils gettext gl \ kde:5 pkgconfig qt:5 tar:xz xorg USE_GL= gl USE_KDE= activities activities-stats activitymanagerd archive attica \ auth baloo bookmarks codecs completion config configwidgets \ coreaddons crash dbusaddons emoticons filemetadata globalaccel \ guiaddons holidays i18n iconthemes idletime init itemmodels \ itemviews jobwidgets js jsembed kcmutils kdeclarative kdesu \ kio kscreenlocker kwin layer-shell-qt libkscreen \ libksysguard newstuff notifications notifyconfig package parts \ people phonon plasma-framework plasma-integration prison pty runner \ service solid sonnet syntaxhighlighting texteditor textwidgets \ unitconversion wallet wayland widgetsaddons windowsystem \ xmlgui xmlrpcclient \ doctools:build ecm:build \ breeze-icons:run breeze:run kded:run kquickcharts:run \ milou:run oxygen-icons5:run USE_QT= concurrent core dbus declarative graphicaleffects gui network \ printsupport qdbus script sql svg wayland \ widgets x11extras xml \ buildtools:build qmake:build testlib:build \ paths:run quickcontrols:run USE_XORG= ice sm x11 xau xcb xcomposite xcursor xext xfixes xft xi \ xkbfile xrender xtst CPE_VENDOR= kde CMAKE_OFF= BUILD_TESTING # In 5.15 a file was moved from x11/plasma5-plasma-desktop to x11/plasma5-plasma-workspace: CONFLICTS_INSTALL= plasma5-plasma-desktop-5.14.* post-patch: @${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|g' \ ${PATCH_WRKSRC}/startkde/startplasma.cpp post-stage: ${INSTALL_SCRIPT} ${FILESDIR}/startplasma-wayland.sh ${STAGEDIR}/${LOCALBASE}/bin/ .include diff --git a/x11/plasma5-plasma-workspace/distinfo b/x11/plasma5-plasma-workspace/distinfo index 413e12d28943..ecd69d38c740 100644 --- a/x11/plasma5-plasma-workspace/distinfo +++ b/x11/plasma5-plasma-workspace/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1698342968 -SHA256 (KDE/plasma/5.27.9/plasma-workspace-5.27.9.1.tar.xz) = 8d00b691cfbb4d7218f97d0c68a677f41cba6eaf18e8fe29976c92d3718201b8 -SIZE (KDE/plasma/5.27.9/plasma-workspace-5.27.9.1.tar.xz) = 19468088 +TIMESTAMP = 1701859471 +SHA256 (KDE/plasma/5.27.10/plasma-workspace-5.27.10.tar.xz) = 525dc164c61a6730f33d54ff5013d57184b9d671786fe898ca7e054426359778 +SIZE (KDE/plasma/5.27.10/plasma-workspace-5.27.10.tar.xz) = 19476860 diff --git a/x11/plasma5-plasma-workspace/files/patch-kcms_region__language_kcmregionandlang.cpp b/x11/plasma5-plasma-workspace/files/patch-kcms_region__language_kcmregionandlang.cpp deleted file mode 100644 index 13949bc40bc6..000000000000 --- a/x11/plasma5-plasma-workspace/files/patch-kcms_region__language_kcmregionandlang.cpp +++ /dev/null @@ -1,11 +0,0 @@ ---- kcms/region_language/kcmregionandlang.cpp.orig 2023-10-25 10:05:43 UTC -+++ kcms/region_language/kcmregionandlang.cpp -@@ -61,7 +61,7 @@ KCMRegionAndLang::KCMRegionAndLang(QObject *parent, co - qRegisterMetaType(); - qmlRegisterUncreatableMetaObject(KCM_RegionAndLang::staticMetaObject, "kcmregionandlang", 1, 0, "SettingType", "Error: SettingType is an enum"); - --#ifdef GLIBC_LOCALE_GENERATED -+#if GLIBC_LOCALE_GENERATED - // fedora pre generate locales, fetch available locales from localectl. /usr/share/i18n/locales is empty in fedora - QDir glibcLocaleDir(localeFileDirPath()); - if (glibcLocaleDir.isEmpty()) { diff --git a/x11/plasma5-plasma-workspace/files/patch-kcms_region_language b/x11/plasma5-plasma-workspace/files/patch-kcms_region_language deleted file mode 100644 index ec9122268cf3..000000000000 --- a/x11/plasma5-plasma-workspace/files/patch-kcms_region_language +++ /dev/null @@ -1,25 +0,0 @@ -From 196966b02bf40a971bdf8888a2fa8ba7db0106f1 Mon Sep 17 00:00:00 2001 -From: Gleb Popov <6yearold@gmail.com> -Date: Tue, 24 Oct 2023 22:03:20 +0300 -Subject: [PATCH] kcms/region_language: Fix check for GLIBC_LOCALE. - -The GLIBC_LOCALE_AUTO is created by the #cmakedefine01 directive and thus is -always defined. ---- - config-workspace.h.cmake | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/config-workspace.h.cmake b/config-workspace.h.cmake -index b10d8bc4ae..5e252be071 100644 ---- config-workspace.h.cmake -+++ config-workspace.h.cmake -@@ -18,6 +18,6 @@ - #cmakedefine01 GLIBC_LOCALE_AUTO - #cmakedefine01 GLIBC_LOCALE_GENERATED - --#if defined(GLIBC_LOCALE_AUTO) || defined(GLIBC_LOCALE_GENERATED) -+#if GLIBC_LOCALE_AUTO == 1 || GLIBC_LOCALE_GENERATED == 1 - #define GLIBC_LOCALE - #endif --- -GitLab