Index: head/Mk/Uses/kde.mk =================================================================== --- head/Mk/Uses/kde.mk (revision 517334) +++ head/Mk/Uses/kde.mk (revision 517335) @@ -1,851 +1,851 @@ # $FreeBSD$ # # Provides support for KDE and KF5-based ports. # # Feature: kde # Valid ARGS: 5 # # 5: Depend on KDE Frameworks 5 components and variables. # # Variables that can be set by a port: # # USE_KDE List of KF5/Plasma5 components (other ports) that this # port depends on. # * foo_build Add a build-time dependency (BUILD_DEPENDS) # * foo_run Add a run-time dependency (RUN_DEPENDS) # * foo (default) Add both dependencies on component , or # a LIB_DEPENDS if applicable. # # To simplify the ports, also: # CATEGORIES If the port is part of one of the KDE Software distribution, # it can add, in addition to 'kde' one of the following: # kde-application: part of applications release # kde-frameworks: part of frameworks release # kde-plasma: part of plasma release # this will then set default values for MASTER_SITES and DIST_SUBDIR # as well as CPE_VENDOR and LICENSE. # # MAINTAINER: kde@FreeBSD.org .if !defined(_INCLUDE_USES_KDE_MK) _INCLUDE_USES_KDE_MK= yes _KDE_SUPPORTED= 5 . if empty(kde_ARGS) IGNORE= kde needs a version (${_KDE_SUPPORTED}) . endif . for ver in ${_KDE_SUPPORTED:O:u} . if ${kde_ARGS:M${ver}} . if !defined(_KDE_VERSION) _KDE_VERSION= ${ver} . else IGNORE?= cannot be installed: different KDE versions specified via kde:[${_KDE_SUPPORTED:S/ //g}] #' . endif . endif . endfor . if empty(_KDE_VERSION) IGNORE?= kde:[${_KDE_SUPPORTED:S/ //g}] needs an argument #' . else _KDE_RELNAME= KDE${_KDE_VERSION} # === VERSIONS OF THE DIFFERENT COMPONENTS ===================================== # Current KDE desktop. -KDE_PLASMA_VERSION?= 5.17.2 +KDE_PLASMA_VERSION?= 5.17.3 KDE_PLASMA_BRANCH?= stable # Current KDE frameworks. KDE_FRAMEWORKS_VERSION?= 5.63.0 KDE_FRAMEWORKS_BRANCH?= stable # Current KDE applications. KDE_APPLICATIONS_VERSION?= 19.08.3 KDE_APPLICATIONS_SHLIB_VER?= 5.12.3 KDE_APPLICATIONS_BRANCH?= stable # Upstream moves old software to Attic/. Specify the newest applications release there. # Only the major version is used for the comparison. _KDE_APPLICATIONS_ATTIC_VERSION= 17.08.3 # Extended KDE universe applications. CALLIGRA_VERSION?= 2.9.11 CALLIGRA_BRANCH?= stable # ============================================================================== # === INSTALLATION PREFIXES AND HEADER LOCATION ================================ # Define unversioned prefix variable. KDE_PREFIX= ${LOCALBASE} # ============================================================================== # === CATEGORIES HANDLING -- SETTING DEFAULT VALUES ============================ # Doing MASTER_SITES magic based on the category of the port _KDE_CATEGORIES_SUPPORTED= kde-applications kde-frameworks kde-plasma . for cat in ${_KDE_CATEGORIES_SUPPORTED} . if ${CATEGORIES:M${cat}} . if !defined(_KDE_CATEGORY) _KDE_CATEGORY= ${cat} . else IGNORE?= cannot be installed: multiple kde-<...> categories specified via CATEGORIES=${CATEGORIES} #' . endif . endif . endfor . if defined(_KDE_CATEGORY) # KDE is normally licensed under the LGPL 2.0. LICENSE?= LGPL20 # Set CPE Vendor Information # As _KDE_CATEGORY is set we can assume it is port release by KDE and the # vendor is therefore kde. CPE_VENDOR?= kde . if ${_KDE_CATEGORY:Mkde-applications} PORTVERSION?= ${KDE_APPLICATIONS_VERSION} # Decide where the file lies on KDE's servers: Check whether the file lies in Attic . if ${KDE_APPLICATIONS_VERSION:R:R} <= ${_KDE_APPLICATIONS_ATTIC_VERSION:R:R} MASTER_SITES?= KDE/Attic/applications/${KDE_APPLICATIONS_VERSION}/src . else MASTER_SITES?= KDE/${KDE_APPLICATIONS_BRANCH}/applications/${KDE_APPLICATIONS_VERSION}/src # Let bsd.port.mk create the plist-entries for the documentation. # KDE Applications ports install their documentation to # ${PREFIX}/share/doc. DOCSDIR= ${PREFIX}/share/doc PORTDOCS?= HTML/* # Further pass along a SHLIB_VER PLIST_SUB PLIST_SUB+= KDE_APPLICATIONS_SHLIB_VER=${KDE_APPLICATIONS_SHLIB_VER} \ KDE_APPLICATIONS_VERSION_SHORT="${KDE_APPLICATIONS_VERSION:R:R}" . endif DIST_SUBDIR?= KDE/applications/${KDE_APPLICATIONS_VERSION} . elif ${_KDE_CATEGORY:Mkde-plasma} PORTVERSION?= ${KDE_PLASMA_VERSION} PKGNAMEPREFIX?= plasma5- MASTER_SITES?= KDE/${KDE_PLASMA_BRANCH}/plasma/${KDE_PLASMA_VERSION} DIST_SUBDIR?= KDE/plasma/${KDE_PLASMA_VERSION} . elif ${_KDE_CATEGORY:Mkde-frameworks} PORTVERSION?= ${KDE_FRAMEWORKS_VERSION} PKGNAMEPREFIX?= kf5- # This is a slight duplication of _USE_FRAMEWORKS_PORTING -- it maybe would be # better to rely on ${_USE_FRAMEWORKS_PORTING:S/^/k/g} _PORTINGAIDS= kjs kjsembed kdelibs4support kdesignerplugin kdewebkit khtml kmediaplayer kross . if ${_PORTINGAIDS:M*${PORTNAME}*} MASTER_SITES?= KDE/${KDE_FRAMEWORKS_BRANCH}/frameworks/${KDE_FRAMEWORKS_VERSION:R}/portingAids . else MASTER_SITES?= KDE/${KDE_FRAMEWORKS_BRANCH}/frameworks/${KDE_FRAMEWORKS_VERSION:R} . endif DIST_SUBDIR?= KDE/frameworks/${KDE_FRAMEWORKS_VERSION} . else IGNORE?= unknown CATEGORY value '${_KDE_CATEGORY}' #' . endif . endif #defined(_KDE_CATEGORY) # ============================================================================== # ==== SETUP CMAKE ENVIRONMENT ================================================= # Help cmake to find files when testing ports with non-default PREFIX. CMAKE_ARGS+= -DCMAKE_PREFIX_PATH="${LOCALBASE}" . if ${_KDE_VERSION:M*5*} # We set KDE_INSTALL_USE_QT_SYS_PATHS to install mkspecs files, plugins and # imports to the Qt 5 install directory. CMAKE_ARGS+= -DBUILD_TESTING:BOOL=OFF \ -DCMAKE_MODULE_PATH="${LOCALBASE};${KDE_PREFIX}" \ -DCMAKE_INSTALL_PREFIX="${KDE_PREFIX}" \ -DKDE_INSTALL_USE_QT_SYS_PATHS:BOOL=TRUE . endif # Set man-page installation prefix. CMAKE_ARGS+= -DKDE_INSTALL_MANDIR:PATH="${KDE_PREFIX}/man" \ -DMAN_INSTALL_DIR:PATH="${KDE_PREFIX}/man" # ============================================================================== # === SET-UP PLIST_SUB ========================================================= # Prefix and include directory. PLIST_SUB+= KDE_PREFIX="${KDE_PREFIX}" # KDE Applications version. PLIST_SUB+= KDE_APPLICATIONS_VERSION="${KDE_APPLICATIONS_VERSION}" . if ${_KDE_VERSION:M*5*} PLIST_SUB+= KDE_PLASMA_VERSION="${KDE_PLASMA_VERSION}" \ KDE_FRAMEWORKS_VERSION="${KDE_FRAMEWORKS_VERSION}" . endif # ============================================================================== _USE_KDE_BOTH= akonadi attica libkcddb libkcompactdisc libkdcraw libkdegames \ libkeduvocdocument libkexiv2 libkipi libksane okular \ baloo baloo-widgets kate marble # List of components of the KDE Frameworks distribution. # The *_TIER variables are internal, primarily for checking # that our list of frameworks matches the structure offered upstream. _USE_FRAMEWORKS_TIER1= apidox archive attica5 breeze-icons codecs config \ coreaddons dbusaddons dnssd holidays i18n idletime itemmodels \ itemviews kirigami2 oxygen-icons5 plotting prison \ qqc2-desktop-style solid sonnet syntaxhighlighting \ threadweaver wayland widgetsaddons windowsystem # NOT LISTED TIER1: modemmanagerqt networkmanagerqt (not applicable) _USE_FRAMEWORKS_TIER2= auth completion crash doctools \ filemetadata kimageformats jobwidgets notifications \ package pty syndication unitconversion _USE_FRAMEWORKS_TIER3= activities activities-stats baloo5 bookmarks configwidgets \ designerplugin emoticons globalaccel guiaddons \ iconthemes init kcmutils kdeclarative \ kded kdesu kdewebkit kio newstuff notifyconfig parts \ people plasma-framework purpose runner service texteditor \ textwidgets wallet xmlgui xmlrpcclient _USE_FRAMEWORKS_TIER4= frameworkintegration calendarcore contacts # Porting Aids frameworks provide code and utilities to ease the transition from # kdelibs 4 to KDE Frameworks 5. Code should aim to port away from this framework, # new projects should avoid using these libraries. _USE_FRAMEWORKS_PORTING=js jsembed kdelibs4support khtml mediaplayer kross _USE_FRAMEWORKS_ALL= ecm \ ${_USE_FRAMEWORKS_TIER1} \ ${_USE_FRAMEWORKS_TIER2} \ ${_USE_FRAMEWORKS_TIER3} \ ${_USE_FRAMEWORKS_TIER4} \ ${_USE_FRAMEWORKS_PORTING} \ ${_USE_FRAMEWORKS_EXTRA} # List of components of the KDE Plasma distribution. _USE_PLASMA_ALL= activitymanagerd breeze breeze-gtk \ decoration discover drkonqi hotkeys \ infocenter kde-cli-tools kde-gtk-config \ kdeplasma-addons kgamma5 kmenuedit kscreen \ kscreenlocker ksshaskpass ksysguard kwallet-pam \ kwayland-integration kwin kwrited libkscreen \ libksysguard milou oxygen plasma-browser-integration \ plasma-desktop plasma-integration plasma-pa \ plasma-sdk plasma-workspace plasma-workspace-wallpapers \ polkit-kde-agent-1 powerdevil systemsettings \ user-manager # List of components of the KDE PIM distribution (part of applications). _USE_KDEPIM5_ALL= akonadicontacts akonadiimportwizard akonadimime akonadinotes \ akonadicalendar akonadisearch alarmcalendar \ blog calendarcore calendarsupport calendarutils \ contacts eventviews gapi grantleetheme \ gravatar identitymanagement imap \ incidenceeditor kdepim-addons kdepim-apps-libs \ kdepim-runtime5 kitinerary kontactinterface kpimdav kpkpass \ ksmtp ldap libkdepim libkleo libksieve mailcommon \ mailimporter mailtransport mbox messagelib \ mime pimcommon pimtextedit tnef \ kalarm kontact kmail mbox-importer \ akonadiconsole akregator grantlee-editor kaddressbook \ kalarm kmail-account-wizard kmail knotes kontact \ korganizer pim-data-exporter _USE_KDE5_ALL= ${_USE_FRAMEWORKS_ALL} \ ${_USE_PLASMA_ALL} \ ${_USE_KDEPIM5_ALL} \ ${_USE_KDE_BOTH} # ====================== frameworks components ================================= kde-activities_PORT= x11/kf5-kactivities kde-activities_LIB= libKF5Activities.so kde-activities-stats_PORT= x11/kf5-kactivities-stats kde-activities-stats_LIB= libKF5ActivitiesStats.so kde-apidox_PORT= devel/kf5-kapidox kde-apidox_PATH= ${KDE_PREFIX}/bin/kapidox_generate kde-apidox_TYPE= run kde-archive_PORT= archivers/kf5-karchive kde-archive_LIB= libKF5Archive.so kde-attica5_PORT= x11-toolkits/kf5-attica kde-attica5_LIB= libKF5Attica.so kde-auth_PORT= devel/kf5-kauth kde-auth_LIB= libKF5Auth.so kde-baloo5_PORT= sysutils/kf5-baloo kde-baloo5_LIB= libKF5Baloo.so kde-bookmarks_PORT= devel/kf5-kbookmarks kde-bookmarks_LIB= libKF5Bookmarks.so kde-breeze-icons_PORT= x11-themes/kf5-breeze-icons kde-breeze-icons_PATH= ${KDE_PREFIX}/share/icons/breeze/index.theme kde-breeze-icons_TYPE= run kde-codecs_PORT= textproc/kf5-kcodecs kde-codecs_LIB= libKF5Codecs.so kde-completion_PORT= x11-toolkits/kf5-kcompletion kde-completion_LIB= libKF5Completion.so kde-config_PORT= devel/kf5-kconfig kde-config_LIB= libKF5ConfigCore.so kde-configwidgets_PORT= x11-toolkits/kf5-kconfigwidgets kde-configwidgets_LIB= libKF5ConfigWidgets.so kde-coreaddons_PORT= devel/kf5-kcoreaddons kde-coreaddons_LIB= libKF5CoreAddons.so kde-crash_PORT= devel/kf5-kcrash kde-crash_LIB= libKF5Crash.so kde-dbusaddons_PORT= devel/kf5-kdbusaddons kde-dbusaddons_LIB= libKF5DBusAddons.so kde-designerplugin_PORT= x11-toolkits/kf5-kdesignerplugin kde-designerplugin_PATH= ${KDE_PREFIX}/bin/kgendesignerplugin kde-designerplugin_TYPE= run kde-dnssd_PORT= dns/kf5-kdnssd kde-dnssd_LIB= libKF5DNSSD.so kde-doctools_PORT= devel/kf5-kdoctools kde-doctools_PATH= ${KDE_PREFIX}/bin/meinproc5 kde-ecm_PORT= devel/kf5-extra-cmake-modules kde-ecm_PATH= ${LOCALBASE}/share/ECM/cmake/ECMConfig.cmake kde-emoticons_PORT= x11-themes/kf5-kemoticons kde-emoticons_LIB= libKF5Emoticons.so kde-filemetadata_PORT= devel/kf5-kfilemetadata kde-filemetadata_LIB= libKF5FileMetaData.so kde-frameworkintegration_PORT= x11/kf5-frameworkintegration kde-frameworkintegration_LIB= libKF5Style.so kde-globalaccel_PORT= x11/kf5-kglobalaccel kde-globalaccel_LIB= libKF5GlobalAccel.so kde-guiaddons_PORT= x11-toolkits/kf5-kguiaddons kde-guiaddons_LIB= libKF5GuiAddons.so kde-holidays_PORT= net/kf5-kholidays kde-holidays_LIB= libKF5Holidays.so kde-i18n_PORT= devel/kf5-ki18n kde-i18n_LIB= libKF5I18n.so kde-iconthemes_PORT= x11-themes/kf5-kiconthemes kde-iconthemes_LIB= libKF5IconThemes.so kde-idletime_PORT= devel/kf5-kidletime kde-idletime_LIB= libKF5IdleTime.so kde-init_PORT= x11/kf5-kinit kde-init_PATH= ${KDE_PREFIX}/bin/kdeinit5 kde-itemmodels_PORT= devel/kf5-kitemmodels kde-itemmodels_LIB= libKF5ItemModels.so kde-itemviews_PORT= x11-toolkits/kf5-kitemviews kde-itemviews_LIB= libKF5ItemViews.so kde-jobwidgets_PORT= x11-toolkits/kf5-kjobwidgets kde-jobwidgets_LIB= libKF5JobWidgets.so kde-js_PORT= www/kf5-kjs kde-js_LIB= libKF5JS.so kde-jsembed_PORT= www/kf5-kjsembed kde-jsembed_LIB= libKF5JsEmbed.so kde-kcmutils_PORT= devel/kf5-kcmutils kde-kcmutils_LIB= libKF5KCMUtils.so kde-kdeclarative_PORT= devel/kf5-kdeclarative kde-kdeclarative_LIB= libKF5Declarative.so kde-kded_PORT= x11/kf5-kded kde-kded_LIB= libkdeinit5_kded5.so kde-kdelibs4support_PORT= x11/kf5-kdelibs4support kde-kdelibs4support_LIB= libKF5KDELibs4Support.so kde-kdesu_PORT= security/kf5-kdesu kde-kdesu_LIB= libKF5Su.so kde-kdewebkit_PORT= www/kf5-kdewebkit kde-kdewebkit_LIB= libKF5WebKit.so kde-khtml_PORT= www/kf5-khtml kde-khtml_LIB= libKF5KHtml.so kde-kimageformats_PORT= graphics/kf5-kimageformats kde-kimageformats_PATH= ${QT_PLUGINDIR}/imageformats/kimg_xcf.so kde-kimageformats_TYPE= run kde-kio_PORT= devel/kf5-kio kde-kio_LIB= libKF5KIOCore.so kde-kirigami2_PORT= x11-toolkits/kf5-kirigami2 kde-kirigami2_PATH= ${QT_QMLDIR}/org/kde/kirigami.2/libkirigamiplugin.so kde-kross_PORT= lang/kf5-kross kde-kross_LIB= libKF5KrossCore.so kde-mediaplayer_PORT= multimedia/kf5-kmediaplayer kde-mediaplayer_LIB= libKF5MediaPlayer.so.5 kde-newstuff_PORT= devel/kf5-knewstuff kde-newstuff_LIB= libKF5NewStuff.so kde-notifications_PORT= devel/kf5-knotifications kde-notifications_LIB= libKF5Notifications.so kde-notifyconfig_PORT= devel/kf5-knotifyconfig kde-notifyconfig_LIB= libKF5NotifyConfig.so kde-oxygen-icons5_PORT= x11-themes/kf5-oxygen-icons5 kde-oxygen-icons5_PATH= ${KDE_PREFIX}/share/icons/oxygen/index.theme kde-oxygen-icons5_TYPE= run kde-package_PORT= devel/kf5-kpackage kde-package_LIB= libKF5Package.so kde-parts_PORT= devel/kf5-kparts kde-parts_LIB= libKF5Parts.so kde-people_PORT= devel/kf5-kpeople kde-people_LIB= libKF5People.so kde-plasma-framework_PORT= x11/kf5-plasma-framework kde-plasma-framework_LIB= libKF5Plasma.so kde-plotting_PORT= graphics/kf5-kplotting kde-plotting_LIB= libKF5Plotting.so kde-prison_PORT= graphics/kf5-prison kde-prison_LIB= libKF5Prison.so kde-pty_PORT= devel/kf5-kpty kde-pty_LIB= libKF5Pty.so kde-purpose_PORT= misc/kf5-purpose kde-purpose_LIB= libKF5Purpose.so kde-qqc2-desktop-style_PORT= x11-themes/kf5-qqc2-desktop-style kde-qqc2-desktop-style_PATH= ${QT_PLUGINDIR}/kf5/kirigami/org.kde.desktop.so kde-runner_PORT= x11/kf5-krunner kde-runner_LIB= libKF5Runner.so kde-service_PORT= devel/kf5-kservice kde-service_PATH= ${KDE_PREFIX}/bin/kbuildsycoca5 kde-solid_PORT= devel/kf5-solid kde-solid_LIB= libKF5Solid.so kde-sonnet_PORT= textproc/kf5-sonnet kde-sonnet_LIB= libKF5SonnetCore.so kde-syndication_PORT= net/kf5-syndication kde-syndication_LIB= libKF5Syndication.so kde-syntaxhighlighting_PORT= textproc/kf5-syntax-highlighting kde-syntaxhighlighting_LIB= libKF5SyntaxHighlighting.so kde-texteditor_PORT= devel/kf5-ktexteditor kde-texteditor_LIB= libKF5TextEditor.so kde-textwidgets_PORT= x11-toolkits/kf5-ktextwidgets kde-textwidgets_LIB= libKF5TextWidgets.so kde-threadweaver_PORT= devel/kf5-threadweaver kde-threadweaver_LIB= libKF5ThreadWeaver.so kde-unitconversion_PORT= devel/kf5-kunitconversion kde-unitconversion_LIB= libKF5UnitConversion.so kde-wallet_PORT= sysutils/kf5-kwallet kde-wallet_LIB= libKF5Wallet.so kde-wayland_PORT= x11/kf5-kwayland kde-wayland_LIB= libKF5WaylandClient.so kde-widgetsaddons_PORT= x11-toolkits/kf5-kwidgetsaddons kde-widgetsaddons_LIB= libKF5WidgetsAddons.so kde-windowsystem_PORT= x11/kf5-kwindowsystem kde-windowsystem_LIB= libKF5WindowSystem.so kde-xmlgui_PORT= x11-toolkits/kf5-kxmlgui kde-xmlgui_LIB= libKF5XmlGui.so kde-xmlrpcclient_PORT= net/kf5-kxmlrpcclient kde-xmlrpcclient_LIB= libKF5XmlRpcClient.so # ====================== end of frameworks components ========================== # ====================== plasma components ===================================== kde-activitymanagerd_PORT= x11/plasma5-kactivitymanagerd kde-activitymanagerd_LIB= libkactivitymanagerd_plugin.so kde-breeze_PORT= x11-themes/plasma5-breeze kde-breeze_PATH= ${KDE_PREFIX}/share/QtCurve/Breeze.qtcurve kde-breeze-gtk_PORT= x11-themes/plasma5-breeze-gtk kde-breeze-gtk_PATH= ${KDE_PREFIX}/lib/kconf_update_bin/gtkbreeze5.5 kde-decoration_PORT= x11-wm/plasma5-kdecoration kde-decoration_LIB= libkdecorations2.so kde-discover_PORT= sysutils/plasma5-discover kde-discover_PATH= ${KDE_PREFIX}/bin/plasma-discover kde-drkonqi_PORT= sysutils/plasma5-drkonqi kde-drkonqi_PATH= ${KDE_PREFIX}/lib/libexec/drkonqi kde-hotkeys_PORT= devel/plasma5-khotkeys kde-hotkeys_LIB= libkhotkeysprivate.so.5 kde-infocenter_PORT= sysutils/plasma5-kinfocenter kde-infocenter_PATH= ${KDE_PREFIX}/bin/kinfocenter kde-kde-cli-tools_PORT= sysutils/plasma5-kde-cli-tools kde-kde-cli-tools_PATH= ${KDE_PREFIX}/bin/kcmshell5 kde-kde-gtk-config_PORT= x11-themes/plasma5-kde-gtk-config kde-kde-gtk-config_PATH= ${QT_PLUGINDIR}/kcm_kdegtkconfig.so kde-kdeplasma-addons_PORT= x11-toolkits/plasma5-kdeplasma-addons kde-kdeplasma-addons_PATH= ${QT_PLUGINDIR}/kcm_krunner_dictionary.so kde-kgamma5_PORT= x11/plasma5-kgamma5 kde-kgamma5_PATH= ${QT_PLUGINDIR}/kcm_kgamma.so kde-kmenuedit_PORT= sysutils/plasma5-kmenuedit kde-kmenuedit_LIB= libkdeinit5_kmenuedit.so kde-kscreen_PORT= x11/plasma5-kscreen kde-kscreen_PATH= ${KDE_PREFIX}/bin/kscreen-console kde-kscreenlocker_PORT= security/plasma5-kscreenlocker kde-kscreenlocker_LIB= libKScreenLocker.so kde-ksshaskpass_PORT= security/plasma5-ksshaskpass kde-ksshaskpass_PATH= ${KDE_PREFIX}/bin/ksshaskpass kde-ksysguard_PORT= sysutils/plasma5-ksysguard kde-ksysguard_PATH= ${KDE_PREFIX}/bin/ksysguard kde-kwallet-pam_PORT= security/plasma5-kwallet-pam kde-kwallet-pam_PATH= ${KDE_PREFIX}/lib/pam_kwallet5.so kde-kwayland-integration_PORT= x11/plasma5-kwayland-integration kde-kwayland-integration_PATH= ${QT_PLUGINDIR}/kf5/org.kde.kidletime.platforms/KF5IdleTimeKWaylandPlugin.so kde-kwin_PORT= x11-wm/plasma5-kwin kde-kwin_PATH= ${KDE_PREFIX}/bin/kwin_x11 kde-kwrited_PORT= devel/plasma5-kwrited kde-kwrited_PATH= ${QT_PLUGINDIR}/kf5/kded/kwrited.so kde-libkscreen_PORT= x11/plasma5-libkscreen kde-libkscreen_LIB= libKF5Screen.so kde-libksysguard_PORT= sysutils/plasma5-libksysguard kde-libksysguard_LIB= libksgrd.so kde-milou_PORT= deskutils/plasma5-milou kde-milou_LIB= libmilou.so.5 kde-oxygen_PORT= x11-themes/plasma5-oxygen kde-oxygen_PATH= ${QT_PLUGINDIR}/styles/oxygen.so kde-plasma-browser-integration_PORT= www/plasma5-plasma-browser-integration kde-plasma-browser-integration_PATH= ${KDE_PREFIX}/bin/plasma-browser-integration-host kde-plasma-desktop_PORT= x11/plasma5-plasma-desktop kde-plasma-desktop_PATH= ${KDE_PREFIX}/bin/krdb kde-plasma-integration_PORT= x11/plasma5-plasma-integration kde-plasma-integration_PATH= ${QT_PLUGINDIR}/platformthemes/KDEPlasmaPlatformTheme.so kde-plasma-pa_PORT= audio/plasma5-plasma-pa kde-plasma-pa_PATH= ${QT_PLUGINDIR}/kcms/kcm_pulseaudio.so kde-plasma-sdk_PORT= devel/plasma5-plasma-sdk kde-plasma-sdk_PATH= ${KDE_PREFIX}/bin/plasmoidviewer kde-plasma-workspace_PORT= x11/plasma5-plasma-workspace kde-plasma-workspace_LIB= libkdeinit5_kcminit.so kde-plasma-workspace-wallpapers_PORT= x11-themes/plasma5-plasma-workspace-wallpapers kde-plasma-workspace-wallpapers_PATH= ${KDE_PREFIX}/share/wallpapers/Autumn/contents/images/1280x1024.jpg kde-polkit-kde-agent-1_PORT= sysutils/plasma5-polkit-kde-agent-1 kde-polkit-kde-agent-1_PATH= ${KDE_PREFIX}/lib/libexec/polkit-kde-authentication-agent-1 kde-powerdevil_PORT= sysutils/plasma5-powerdevil kde-powerdevil_LIB= libpowerdevilcore.so kde-systemsettings_PORT= sysutils/plasma5-systemsettings kde-systemsettings_PATH= ${KDE_PREFIX}/bin/systemsettings5 kde-user-manager_PORT= sysutils/plasma5-user-manager kde-user-manager_PATH= ${QT_PLUGINDIR}/user_manager.so # ====================== end of plasma components ============================== # ====================== pim5 components ======================================= kde-akonadicontacts_PORT= net/akonadi-contacts kde-akonadicontacts_LIB= libKF5AkonadiContact.so kde-akonadiimportwizard_PORT= deskutils/akonadi-import-wizard kde-akonadiimportwizard_LIB= libKPimImportWizard.so kde-akonadimime_PORT= net/akonadi-mime kde-akonadimime_LIB= libKF5AkonadiMime.so kde-akonadinotes_PORT= net/akonadi-notes kde-akonadinotes_LIB= libKF5AkonadiNotes.so kde-akonadicalendar_PORT= net/akonadi-calendar kde-akonadicalendar_LIB= libKF5AkonadiCalendar.so kde-akonadisearch_PORT= net/akonadi-search kde-akonadisearch_LIB= libKF5AkonadiSearchCore.so kde-alarmcalendar_PORT= net/kalarmcal kde-alarmcalendar_LIB= libKF5AlarmCalendar.so kde-blog_PORT= net/kblog kde-blog_LIB= libKF5Blog.so kde-calendarsupport_PORT= net/calendarsupport kde-calendarsupport_LIB= libKF5CalendarSupport.so kde-calendarcore_PORT= net/kf5-kcalendarcore kde-calendarcore_LIB= libKF5CalendarCore.so kde-calendarutils_PORT= net/kcalutils kde-calendarutils_LIB= libKF5CalendarUtils.so kde-contacts_PORT= net/kf5-kcontacts kde-contacts_LIB= libKF5Contacts.so kde-eventviews_PORT= net/eventviews kde-eventviews_LIB= libKF5EventViews.so kde-gapi_PORT= net/libkgapi kde-gapi_LIB= libKPimGAPICore.so kde-grantleetheme_PORT= deskutils/grantleetheme kde-grantleetheme_LIB= libKF5GrantleeTheme.so kde-gravatar_PORT= net/libgravatar kde-gravatar_LIB= libKF5Gravatar.so kde-identitymanagement_PORT= net/kidentitymanagement kde-identitymanagement_LIB= libKF5IdentityManagement.so kde-imap_PORT= net/kimap kde-imap_LIB= libKF5IMAP.so kde-incidenceeditor_PORT= net/incidenceeditor kde-incidenceeditor_LIB= libKF5IncidenceEditor.so kde-kdepim-addons_PORT= deskutils/kdepim-addons kde-kdepim-addons_PATH= ${KDE_PREFIX}/lib/contacteditor/editorpageplugins/cryptopageplugin.so kde-kdepim-apps-libs_PORT= deskutils/kdepim-apps-libs kde-kdepim-apps-libs_LIB= libKF5SendLater.so kde-kdepim-runtime5_PORT= deskutils/kdepim-runtime kde-kdepim-runtime5_PATH= ${KDE_PREFIX}/bin/gidmigrator kde-kitinerary_PORT= net/kitinerary kde-kitinerary_LIB= libKPimItinerary.so kde-kontactinterface_PORT= net/kontactinterface kde-kontactinterface_LIB= libKF5KontactInterface.so kde-kpimdav_PORT= net/kdav kde-kpimdav_LIB= libKPimKDAV.so kde-kpkpass_PORT= security/kpkpass kde-kpkpass_LIB= libKPimPkPass.so kde-ksmtp_PORT= net/ksmtp kde-ksmtp_LIB= libKPimSMTP.so kde-ldap_PORT= net/kldap kde-ldap_LIB= libKF5Ldap.so kde-libkdepim_PORT= deskutils/libkdepim kde-libkdepim_LIB= libKF5Libkdepim.so kde-libkleo_PORT= security/libkleo kde-libkleo_LIB= libKF5Libkleo.so kde-libksieve_PORT= net/libksieve kde-libksieve_LIB= libKF5KSieve.so kde-mailcommon_PORT= net/mailcommon kde-mailcommon_LIB= libKF5MailCommon.so kde-mailimporter_PORT= net/mailimporter kde-mailimporter_LIB= libKF5MailImporter.so kde-mailtransport_PORT= net/kmailtransport kde-mailtransport_LIB= libKF5MailTransport.so kde-mbox_PORT= net/kmbox kde-mbox_LIB= libKF5Mbox.so kde-messagelib_PORT= net/messagelib kde-messagelib_LIB= libKF5MessageList.so kde-mime_PORT= net/kmime kde-mime_LIB= libKF5Mime.so kde-pimcommon_PORT= net/pimcommon kde-pimcommon_LIB= libKF5PimCommon.so kde-pimtextedit_PORT= net/kpimtextedit kde-pimtextedit_LIB= libKF5PimTextEdit.so kde-tnef_PORT= net/ktnef kde-tnef_LIB= libKF5Tnef.so # PIM Applications kde-akonadiconsole_PORT= deskutils/akonadiconsole kde-akonadiconsole_PATH= ${KDE_PREFIX}/bin/akonadiconsole kde-akregator_PORT= deskutils/akregator kde-akregator_PATH= ${KDE_PREFIX}/bin/akregator kde-grantlee-editor_PORT= deskutils/grantlee-editor kde-grantlee-editor_PATH= ${KDE_PREFIX}/bin/contactthemeeditor kde-kaddressbook_PORT= deskutils/kaddressbook kde-kaddressbook_PATH= ${KDE_PREFIX}/bin/kaddressbook kde-kalarm_PORT= deskutils/kalarm kde-kalarm_PATH= ${KDE_PREFIX}/bin/kalarm kde-kmail_PORT= deskutils/kmail kde-kmail_PATH= ${KDE_PREFIX}/bin/kmail kde-kmail-account-wizard_PORT= deskutils/kmail-account-wizard kde-kmail-account-wizard_PATH= ${KDE_PREFIX}/bin/accountwizard kde-knotes_PORT= deskutils/knotes kde-knotex_PATH= ${KDE_PREFIX}/bin/knotes kde-kontact_PORT= deskutils/kontact kde-kontact_PATH= ${KDE_PREFIX}/bin/kontact kde-korganizer_PORT= deskutils/korganizer kde-korganizer_PATH= ${KDE_PREFIX}/bin/korganizer kde-mbox-importer_PORT= deskutils/mbox-importer kde-mbox-importer_PATH= ${KDE_PREFIX}/bin/mboximporter kde-pim-data-exporter_PORT= deskutils/pim-data-exporter kde-pim-data-exporter_PATH= ${KDE_PREFIX}/bin/pimdataexporter # ====================== end of pim5 components ================================ # ====================== multiversion component ================================ kde-akonadi5_PORT= databases/akonadi kde-akonadi5_LIB= libKF5AkonadiPrivate.so kde-baloo-widgets5_PORT= sysutils/baloo-widgets kde-baloo-widgets5_LIB= libKF5BalooWidgets.so kde-kate5_PORT= editors/kate kde-kate5_PATH= ${QT_PLUGINDIR}/ktexteditor/katebacktracebrowserplugin.so kde-libkcddb5_PORT= audio/libkcddb kde-libkcddb5_LIB= libKF5Cddb.so kde-libkcompactdisc5_PORT= audio/libkcompactdisc kde-libkcompactdisc5_LIB= libKF5CompactDisc.so kde-libkdcraw5_PORT= graphics/libkdcraw kde-libkdcraw5_LIB= libKF5KDcraw.so kde-libkdegames5_PORT= games/libkdegames kde-libkdegames5_LIB= libKF5KDEGames.so kde-libkeduvocdocument5_PORT= misc/libkeduvocdocument kde-libkeduvocdocument5_LIB= libKEduVocDocument.so kde-libkexiv25_PORT= graphics/libkexiv2 kde-libkexiv25_LIB= libKF5KExiv2.so kde-libkipi5_PORT= graphics/libkipi kde-libkipi5_LIB= libKF5Kipi.so kde-libksane5_PORT= graphics/libksane kde-libksane5_LIB= libKF5Sane.so kde-marble5_PORT= astro/marble kde-marble5_LIB= libmarblewidget-qt5.so kde-okular5_PORT= graphics/okular kde-okular5_LIB= libOkular5Core.so # ====================== end of multiversion components ======================== # ====================== select the proper multiversion component ============== . for comp in ${_USE_KDE_BOTH} kde-${comp}_PORT= ${kde-${comp}${_KDE_VERSION}_PORT} . if defined(kde-${comp}${_KDE_VERSION}_LIB) kde-${comp}_LIB= ${kde-${comp}${_KDE_VERSION}_LIB} . else . if defined(kde-${comp}${_KDE_VERSION}_PATH}) kde-${comp}_PATH= ${kde-${comp}${_KDE_VERSION}_LIB} . endif # If neither is defined, this gets caught below when checking components . endif . endfor #=============================================================================== # end of component list ######################################################## _USE_KDE_ALL= ${_USE_${_KDE_RELNAME}_ALL} # Iterate through components deprived of suffix. . for component in ${USE_KDE:O:u:C/_.+//} # Check that the component is valid. . if ${_USE_KDE_ALL:M${component}} != "" # Skip meta-components (currently none). . if defined(kde-${component}_PORT) && (defined(kde-${component}_PATH) || defined(kde-${component}_LIB)) # Check if a dependency type is explicitly requested. . if ${USE_KDE:M${component}_*} != "" && ${USE_KDE:M${component}} == "" kde-${component}_TYPE= # empty . if ${USE_KDE:M${component}_build} != "" kde-${component}_TYPE+= build . endif . if ${USE_KDE:M${component}_run} != "" kde-${component}_TYPE+= run . endif . endif # ${USE_KDE:M${component}_*} != "" && ${USE_KDE:M${component}} == "" # If no dependency type is set, default to full dependency. . if !defined(kde-${component}_TYPE) kde-${component}_TYPE= build run . endif # Set real dependencies. . if defined(kde-${component}_LIB) && ${kde-${component}_TYPE:Mbuild} && ${kde-${component}_TYPE:Mrun} LIB_DEPENDS+= ${kde-${component}_LIB}:${kde-${component}_PORT} . else kde-${component}_PATH?= ${KDE_PREFIX}/lib/${kde-${component}_LIB} kde-${component}_DEPENDS= ${kde-${component}_PATH}:${kde-${component}_PORT} . if ${kde-${component}_TYPE:Mbuild} != "" BUILD_DEPENDS+= ${kde-${component}_DEPENDS} . endif . if ${kde-${component}_TYPE:Mrun} != "" RUN_DEPENDS+= ${kde-${component}_DEPENDS} . endif . endif # ${kde-${component}_LIB} && ${kde-${component}_TYPE:Mbuild} && ${kde-${component}_TYPE:Mrun} . endif # defined(kde-${component}_PORT) && defined(kde-${component}_PATH) . else # ! ${_USE_KDE_ALL:M${component}} != "" IGNORE= cannot be installed: unknown USE_KDE component '${component}' . endif # ${_USE_KDE_ALL:M${component}} != "" . endfor . endif .endif Index: head/audio/plasma5-plasma-pa/distinfo =================================================================== --- head/audio/plasma5-plasma-pa/distinfo (revision 517334) +++ head/audio/plasma5-plasma-pa/distinfo (revision 517335) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572423199 -SHA256 (KDE/plasma/5.17.2/plasma-pa-5.17.2.tar.xz) = 6c78e852c3eb665000fdfac7901fb568d565552aaace4219c4a051d29b6e8d8b -SIZE (KDE/plasma/5.17.2/plasma-pa-5.17.2.tar.xz) = 103952 +TIMESTAMP = 1573566492 +SHA256 (KDE/plasma/5.17.3/plasma-pa-5.17.3.tar.xz) = 338a91dcd8950b8b4c16cd5094855ac575327ee38bcc6eaea15fe44f1ddb50fb +SIZE (KDE/plasma/5.17.3/plasma-pa-5.17.3.tar.xz) = 103716 Index: head/deskutils/plasma5-milou/distinfo =================================================================== --- head/deskutils/plasma5-milou/distinfo (revision 517334) +++ head/deskutils/plasma5-milou/distinfo (revision 517335) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572423200 -SHA256 (KDE/plasma/5.17.2/milou-5.17.2.tar.xz) = 94fb7cb59c4aef514ec004f83ea05d90439098d75b43e525b7035b4f61c3d0c3 -SIZE (KDE/plasma/5.17.2/milou-5.17.2.tar.xz) = 63376 +TIMESTAMP = 1573566493 +SHA256 (KDE/plasma/5.17.3/milou-5.17.3.tar.xz) = fbb7193d654b8be9a0d17f0e421a1e900f8b8e08d40bd3fed45635ca74e02837 +SIZE (KDE/plasma/5.17.3/milou-5.17.3.tar.xz) = 63120 Index: head/deskutils/plasma5-sddm-kcm/distinfo =================================================================== --- head/deskutils/plasma5-sddm-kcm/distinfo (revision 517334) +++ head/deskutils/plasma5-sddm-kcm/distinfo (revision 517335) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572423221 -SHA256 (KDE/plasma/5.17.2/sddm-kcm-5.17.2.tar.xz) = 29afa561cdd157761d662f3e52226e7b6d8ab6c5fd67bbde073c226ac396e9c1 -SIZE (KDE/plasma/5.17.2/sddm-kcm-5.17.2.tar.xz) = 58824 +TIMESTAMP = 1573566495 +SHA256 (KDE/plasma/5.17.3/sddm-kcm-5.17.3.tar.xz) = 046b24116ced4e11e85523021fc6b3bfbe6c97f03e30cc747cd66d3a717355f5 +SIZE (KDE/plasma/5.17.3/sddm-kcm-5.17.3.tar.xz) = 58680 Index: head/devel/plasma5-khotkeys/distinfo =================================================================== --- head/devel/plasma5-khotkeys/distinfo (revision 517334) +++ head/devel/plasma5-khotkeys/distinfo (revision 517335) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572423243 -SHA256 (KDE/plasma/5.17.2/khotkeys-5.17.2.tar.xz) = ecd01c235e9895d1e7b8cbff8baa6ff53a99ae2d8bc2c4c10ef06ac15e47b582 -SIZE (KDE/plasma/5.17.2/khotkeys-5.17.2.tar.xz) = 1854392 +TIMESTAMP = 1573566497 +SHA256 (KDE/plasma/5.17.3/khotkeys-5.17.3.tar.xz) = 77dc49b9d7025276804a8064b526e70943e3c88babbbd0645d6916d4d985f7d6 +SIZE (KDE/plasma/5.17.3/khotkeys-5.17.3.tar.xz) = 1851432 Index: head/devel/plasma5-kwrited/distinfo =================================================================== --- head/devel/plasma5-kwrited/distinfo (revision 517334) +++ head/devel/plasma5-kwrited/distinfo (revision 517335) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572423245 -SHA256 (KDE/plasma/5.17.2/kwrited-5.17.2.tar.xz) = d57525305db38cb202cf87eca19b0893a0397fb6c19bf9736591d522731d1582 -SIZE (KDE/plasma/5.17.2/kwrited-5.17.2.tar.xz) = 20032 +TIMESTAMP = 1573566499 +SHA256 (KDE/plasma/5.17.3/kwrited-5.17.3.tar.xz) = 343d51d01dfde4a837492d67a3d8aa13411c2d47f51f89fa34edde1dd0d696d2 +SIZE (KDE/plasma/5.17.3/kwrited-5.17.3.tar.xz) = 20040 Index: head/devel/plasma5-plasma-sdk/distinfo =================================================================== --- head/devel/plasma5-plasma-sdk/distinfo (revision 517334) +++ head/devel/plasma5-plasma-sdk/distinfo (revision 517335) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572423246 -SHA256 (KDE/plasma/5.17.2/plasma-sdk-5.17.2.tar.xz) = 59f8351567242e05c8f435af57621fe12d3e60628b4b0347e138fc9a60bd10b3 -SIZE (KDE/plasma/5.17.2/plasma-sdk-5.17.2.tar.xz) = 257992 +TIMESTAMP = 1573566500 +SHA256 (KDE/plasma/5.17.3/plasma-sdk-5.17.3.tar.xz) = 8d2ce9c6120d2c194000c665489771bd71aea6188d78abfec855dabe125f2c89 +SIZE (KDE/plasma/5.17.3/plasma-sdk-5.17.3.tar.xz) = 258560 Index: head/security/plasma5-kscreenlocker/distinfo =================================================================== --- head/security/plasma5-kscreenlocker/distinfo (revision 517334) +++ head/security/plasma5-kscreenlocker/distinfo (revision 517335) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572423268 -SHA256 (KDE/plasma/5.17.2/kscreenlocker-5.17.2.tar.xz) = a116794a29ce44cd17855b271a988d9a70138fda286906a161cb4dde4fb9e357 -SIZE (KDE/plasma/5.17.2/kscreenlocker-5.17.2.tar.xz) = 123688 +TIMESTAMP = 1573566502 +SHA256 (KDE/plasma/5.17.3/kscreenlocker-5.17.3.tar.xz) = d74efdeb4166162b4d0df994fee97ae1ef4201931ca56eecca487ab11acda2ef +SIZE (KDE/plasma/5.17.3/kscreenlocker-5.17.3.tar.xz) = 123624 Index: head/security/plasma5-ksshaskpass/distinfo =================================================================== --- head/security/plasma5-ksshaskpass/distinfo (revision 517334) +++ head/security/plasma5-ksshaskpass/distinfo (revision 517335) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572423269 -SHA256 (KDE/plasma/5.17.2/ksshaskpass-5.17.2.tar.xz) = a20aac7ba5c1df6c72fa9cfc9573698c9c54e8f8f6b4727f3a50ac5f0faf4093 -SIZE (KDE/plasma/5.17.2/ksshaskpass-5.17.2.tar.xz) = 21500 +TIMESTAMP = 1573566504 +SHA256 (KDE/plasma/5.17.3/ksshaskpass-5.17.3.tar.xz) = 5a5c4f78808ebc0272abaaff03aa9a89928740348b0f7c735761a1fa334ca81f +SIZE (KDE/plasma/5.17.3/ksshaskpass-5.17.3.tar.xz) = 21188 Index: head/security/plasma5-kwallet-pam/distinfo =================================================================== --- head/security/plasma5-kwallet-pam/distinfo (revision 517334) +++ head/security/plasma5-kwallet-pam/distinfo (revision 517335) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572423269 -SHA256 (KDE/plasma/5.17.2/kwallet-pam-5.17.2.tar.xz) = 92d94286e3c4316851f1a43010ce4dc813b6e8f74eb990849f0fa392340fdf7a -SIZE (KDE/plasma/5.17.2/kwallet-pam-5.17.2.tar.xz) = 19712 +TIMESTAMP = 1573566504 +SHA256 (KDE/plasma/5.17.3/kwallet-pam-5.17.3.tar.xz) = 7b3f20bf1a1ed35293fe82359ec069879dcca6b71f8622e2706c6f48477100f0 +SIZE (KDE/plasma/5.17.3/kwallet-pam-5.17.3.tar.xz) = 19596 Index: head/sysutils/plasma5-discover/distinfo =================================================================== --- head/sysutils/plasma5-discover/distinfo (revision 517334) +++ head/sysutils/plasma5-discover/distinfo (revision 517335) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572423272 -SHA256 (KDE/plasma/5.17.2/discover-5.17.2.tar.xz) = e9740b8bfe36ee7e76e8eeaa2ca659552bc358be07eec66f4ede9bcd44e5b5ba -SIZE (KDE/plasma/5.17.2/discover-5.17.2.tar.xz) = 10448116 +TIMESTAMP = 1573566507 +SHA256 (KDE/plasma/5.17.3/discover-5.17.3.tar.xz) = 2019dff13548d304bcf7b7abcef90ebedc8cfbfcdefa8a28344c5200fe3aa611 +SIZE (KDE/plasma/5.17.3/discover-5.17.3.tar.xz) = 10447620 Index: head/sysutils/plasma5-drkonqi/distinfo =================================================================== --- head/sysutils/plasma5-drkonqi/distinfo (revision 517334) +++ head/sysutils/plasma5-drkonqi/distinfo (revision 517335) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572423276 -SHA256 (KDE/plasma/5.17.2/drkonqi-5.17.2.tar.xz) = a133ab23403e4f92844769f842afbe1116cda7fd15f0588f1fe610f6fc3f2ce5 -SIZE (KDE/plasma/5.17.2/drkonqi-5.17.2.tar.xz) = 739932 +TIMESTAMP = 1573566509 +SHA256 (KDE/plasma/5.17.3/drkonqi-5.17.3.tar.xz) = ceda42c9f53ae58b0e983d881d66acaf0b409c4e2cb55e9aa2e18ded714415e4 +SIZE (KDE/plasma/5.17.3/drkonqi-5.17.3.tar.xz) = 737440 Index: head/sysutils/plasma5-kde-cli-tools/distinfo =================================================================== --- head/sysutils/plasma5-kde-cli-tools/distinfo (revision 517334) +++ head/sysutils/plasma5-kde-cli-tools/distinfo (revision 517335) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572423297 -SHA256 (KDE/plasma/5.17.2/kde-cli-tools-5.17.2.tar.xz) = fb8a0600b06d6f1c663403d26f5f395b94984bb912078062b426f8924880083c -SIZE (KDE/plasma/5.17.2/kde-cli-tools-5.17.2.tar.xz) = 591820 +TIMESTAMP = 1573566511 +SHA256 (KDE/plasma/5.17.3/kde-cli-tools-5.17.3.tar.xz) = 584a139c0334164053663e87da0b640ab8af582e3521c06767e525b44cd9f4b3 +SIZE (KDE/plasma/5.17.3/kde-cli-tools-5.17.3.tar.xz) = 590648 Index: head/sysutils/plasma5-kinfocenter/distinfo =================================================================== --- head/sysutils/plasma5-kinfocenter/distinfo (revision 517334) +++ head/sysutils/plasma5-kinfocenter/distinfo (revision 517335) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572423318 -SHA256 (KDE/plasma/5.17.2/kinfocenter-5.17.2.tar.xz) = 1691df791a609572fcf09f952b98baff0a51d950088e25e212710aaff9dc4e7e -SIZE (KDE/plasma/5.17.2/kinfocenter-5.17.2.tar.xz) = 1344056 +TIMESTAMP = 1573566513 +SHA256 (KDE/plasma/5.17.3/kinfocenter-5.17.3.tar.xz) = a692b7132c4827398b61815f8f2860b98434a0710106588e0ccb5a33dd03205e +SIZE (KDE/plasma/5.17.3/kinfocenter-5.17.3.tar.xz) = 1340968 Index: head/sysutils/plasma5-kmenuedit/distinfo =================================================================== --- head/sysutils/plasma5-kmenuedit/distinfo (revision 517334) +++ head/sysutils/plasma5-kmenuedit/distinfo (revision 517335) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572423320 -SHA256 (KDE/plasma/5.17.2/kmenuedit-5.17.2.tar.xz) = a99e4985ce2591d8d7f6b444f323ca709f68caa3bee334fd8e5ca6afafc7503f -SIZE (KDE/plasma/5.17.2/kmenuedit-5.17.2.tar.xz) = 815900 +TIMESTAMP = 1573566515 +SHA256 (KDE/plasma/5.17.3/kmenuedit-5.17.3.tar.xz) = a49946813e681a9a06db48dc81d44229255ab5879091a804596a3d3f47804e07 +SIZE (KDE/plasma/5.17.3/kmenuedit-5.17.3.tar.xz) = 814472 Index: head/sysutils/plasma5-ksysguard/distinfo =================================================================== --- head/sysutils/plasma5-ksysguard/distinfo (revision 517334) +++ head/sysutils/plasma5-ksysguard/distinfo (revision 517335) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572423321 -SHA256 (KDE/plasma/5.17.2/ksysguard-5.17.2.tar.xz) = 8dab9531d13ec4a00c3a65b08771433ced0b5ed636beab2f9830b372d9f4fc12 -SIZE (KDE/plasma/5.17.2/ksysguard-5.17.2.tar.xz) = 514500 +TIMESTAMP = 1573566517 +SHA256 (KDE/plasma/5.17.3/ksysguard-5.17.3.tar.xz) = 18f3d94a02e4d8bdc198bca8f5d319407956ef60e0a9d52159de86fac32efcbd +SIZE (KDE/plasma/5.17.3/ksysguard-5.17.3.tar.xz) = 514352 Index: head/sysutils/plasma5-libksysguard/distinfo =================================================================== --- head/sysutils/plasma5-libksysguard/distinfo (revision 517334) +++ head/sysutils/plasma5-libksysguard/distinfo (revision 517335) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572423323 -SHA256 (KDE/plasma/5.17.2/libksysguard-5.17.2.tar.xz) = 7d4fa8ca098586d48e96e15a35183df9cd1060f2a0ec49f66423600e53355478 -SIZE (KDE/plasma/5.17.2/libksysguard-5.17.2.tar.xz) = 606348 +TIMESTAMP = 1573566518 +SHA256 (KDE/plasma/5.17.3/libksysguard-5.17.3.tar.xz) = 28019970d8b067cab2fd0d45d29f1f408da78b7a164bf9ffda52e7190e0a1a41 +SIZE (KDE/plasma/5.17.3/libksysguard-5.17.3.tar.xz) = 603052 Index: head/sysutils/plasma5-polkit-kde-agent-1/distinfo =================================================================== --- head/sysutils/plasma5-polkit-kde-agent-1/distinfo (revision 517334) +++ head/sysutils/plasma5-polkit-kde-agent-1/distinfo (revision 517335) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572423324 -SHA256 (KDE/plasma/5.17.2/polkit-kde-agent-1-5.17.2.tar.xz) = bae0cb8c6281774fb78602d950ef242cfd578472c60e5c5ca062900afdff75a2 -SIZE (KDE/plasma/5.17.2/polkit-kde-agent-1-5.17.2.tar.xz) = 43268 +TIMESTAMP = 1573566520 +SHA256 (KDE/plasma/5.17.3/polkit-kde-agent-1-5.17.3.tar.xz) = d2e96d12854e181c120e38ac991f39594aeb7c3c55e5bf38738473f2c5e4633f +SIZE (KDE/plasma/5.17.3/polkit-kde-agent-1-5.17.3.tar.xz) = 43076 Index: head/sysutils/plasma5-powerdevil/distinfo =================================================================== --- head/sysutils/plasma5-powerdevil/distinfo (revision 517334) +++ head/sysutils/plasma5-powerdevil/distinfo (revision 517335) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572423346 -SHA256 (KDE/plasma/5.17.2/powerdevil-5.17.2.tar.xz) = 303386cc438407200da22cbc14a53e04174b6f0bae933bc43f0d69ac3bdf7623 -SIZE (KDE/plasma/5.17.2/powerdevil-5.17.2.tar.xz) = 594556 +TIMESTAMP = 1573566522 +SHA256 (KDE/plasma/5.17.3/powerdevil-5.17.3.tar.xz) = 7ee1d5ed16ab3cc66268d17175c237a8e9a4cf5f1869f8a99d12379ae764d0ec +SIZE (KDE/plasma/5.17.3/powerdevil-5.17.3.tar.xz) = 594324 Index: head/sysutils/plasma5-systemsettings/distinfo =================================================================== --- head/sysutils/plasma5-systemsettings/distinfo (revision 517334) +++ head/sysutils/plasma5-systemsettings/distinfo (revision 517335) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572423347 -SHA256 (KDE/plasma/5.17.2/systemsettings-5.17.2.tar.xz) = 9a195e8132df84b3ea7da3f864feee81cfe175fddd0bbd4822ca8cd9a5c2979e -SIZE (KDE/plasma/5.17.2/systemsettings-5.17.2.tar.xz) = 172696 +TIMESTAMP = 1573566524 +SHA256 (KDE/plasma/5.17.3/systemsettings-5.17.3.tar.xz) = df28ef37abc904155ddd2895e014f3a98e6ea8571c3b07ca5d4e605f0490ca94 +SIZE (KDE/plasma/5.17.3/systemsettings-5.17.3.tar.xz) = 172544 Index: head/sysutils/plasma5-user-manager/distinfo =================================================================== --- head/sysutils/plasma5-user-manager/distinfo (revision 517334) +++ head/sysutils/plasma5-user-manager/distinfo (revision 517335) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572423348 -SHA256 (KDE/plasma/5.17.2/user-manager-5.17.2.tar.xz) = a930810ca3f75d6aad22d0071da20236c638e2791b017d0e594b2a687952c271 -SIZE (KDE/plasma/5.17.2/user-manager-5.17.2.tar.xz) = 2163752 +TIMESTAMP = 1573566525 +SHA256 (KDE/plasma/5.17.3/user-manager-5.17.3.tar.xz) = c226ce0648d8a11a1ee10a89fafee131770096fd7d977fbacd37d0ac621c614f +SIZE (KDE/plasma/5.17.3/user-manager-5.17.3.tar.xz) = 2163632 Index: head/www/plasma5-plasma-browser-integration/distinfo =================================================================== --- head/www/plasma5-plasma-browser-integration/distinfo (revision 517334) +++ head/www/plasma5-plasma-browser-integration/distinfo (revision 517335) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572423349 -SHA256 (KDE/plasma/5.17.2/plasma-browser-integration-5.17.2.tar.xz) = e95fcc00f27628119d196ad681f48b882379aa38e3f897dc003909a16aad69a1 -SIZE (KDE/plasma/5.17.2/plasma-browser-integration-5.17.2.tar.xz) = 146080 +TIMESTAMP = 1573566527 +SHA256 (KDE/plasma/5.17.3/plasma-browser-integration-5.17.3.tar.xz) = 4149dbffcb6f4289b2acf2a8d4679e52340a58d61ed8bec291b6b5a940a7034d +SIZE (KDE/plasma/5.17.3/plasma-browser-integration-5.17.3.tar.xz) = 146204 Index: head/x11/plasma5-kactivitymanagerd/distinfo =================================================================== --- head/x11/plasma5-kactivitymanagerd/distinfo (revision 517334) +++ head/x11/plasma5-kactivitymanagerd/distinfo (revision 517335) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572423447 -SHA256 (KDE/plasma/5.17.2/kactivitymanagerd-5.17.2.tar.xz) = 74dd669315cf41fbd79ec5bd209bdef9955263c63ec4c55c5ab7402a35e49340 -SIZE (KDE/plasma/5.17.2/kactivitymanagerd-5.17.2.tar.xz) = 86580 +TIMESTAMP = 1573566547 +SHA256 (KDE/plasma/5.17.3/kactivitymanagerd-5.17.3.tar.xz) = 840f05d0fe253491c5d3bfa1953b68a7bf44e671a18baa56c99d5b6e1358130a +SIZE (KDE/plasma/5.17.3/kactivitymanagerd-5.17.3.tar.xz) = 86468 Index: head/x11/plasma5-kgamma5/distinfo =================================================================== --- head/x11/plasma5-kgamma5/distinfo (revision 517334) +++ head/x11/plasma5-kgamma5/distinfo (revision 517335) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572423468 -SHA256 (KDE/plasma/5.17.2/kgamma5-5.17.2.tar.xz) = fca731f2abc82566ec5f15d697171de00efe74c0b44a414787724246bd5adf5c -SIZE (KDE/plasma/5.17.2/kgamma5-5.17.2.tar.xz) = 80156 +TIMESTAMP = 1573566549 +SHA256 (KDE/plasma/5.17.3/kgamma5-5.17.3.tar.xz) = 5f2428fdd7365cc2b99f3974b6155fbec28dcf2863dbb7caab421c5bc1156003 +SIZE (KDE/plasma/5.17.3/kgamma5-5.17.3.tar.xz) = 80220 Index: head/x11/plasma5-kscreen/distinfo =================================================================== --- head/x11/plasma5-kscreen/distinfo (revision 517334) +++ head/x11/plasma5-kscreen/distinfo (revision 517335) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572423469 -SHA256 (KDE/plasma/5.17.2/kscreen-5.17.2.tar.xz) = 0c7ad59ebf89cbf74a748aac6c7d08007b48170d1c18affbf2b230809e487957 -SIZE (KDE/plasma/5.17.2/kscreen-5.17.2.tar.xz) = 99476 +TIMESTAMP = 1573566550 +SHA256 (KDE/plasma/5.17.3/kscreen-5.17.3.tar.xz) = fe387d0a51236de1c24947d4b3e6de6cdfd9d36133ae5b2f66eca321ec12095e +SIZE (KDE/plasma/5.17.3/kscreen-5.17.3.tar.xz) = 99316 Index: head/x11/plasma5-kwayland-integration/distinfo =================================================================== --- head/x11/plasma5-kwayland-integration/distinfo (revision 517334) +++ head/x11/plasma5-kwayland-integration/distinfo (revision 517335) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572423470 -SHA256 (KDE/plasma/5.17.2/kwayland-integration-5.17.2.tar.xz) = 27740c241d7b14ce4ac9d7b999d8ed75011a68fdfc8f2a3df662d6078ed123a7 -SIZE (KDE/plasma/5.17.2/kwayland-integration-5.17.2.tar.xz) = 20172 +TIMESTAMP = 1573566552 +SHA256 (KDE/plasma/5.17.3/kwayland-integration-5.17.3.tar.xz) = 4f7b0ad0a0fb57068e971235c59f041153663562cf876bdd8c4182e6f4adab4e +SIZE (KDE/plasma/5.17.3/kwayland-integration-5.17.3.tar.xz) = 20108 Index: head/x11/plasma5-libkscreen/distinfo =================================================================== --- head/x11/plasma5-libkscreen/distinfo (revision 517334) +++ head/x11/plasma5-libkscreen/distinfo (revision 517335) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572423491 -SHA256 (KDE/plasma/5.17.2/libkscreen-5.17.2.tar.xz) = 7dbd01b18b8e8e7f84799cb4ee558cf82db840a716bd209b53ae32d018ffd4f1 -SIZE (KDE/plasma/5.17.2/libkscreen-5.17.2.tar.xz) = 82852 +TIMESTAMP = 1573566554 +SHA256 (KDE/plasma/5.17.3/libkscreen-5.17.3.tar.xz) = 14f29c3ae4c57f4e312c51716825bf342714ccb428ee425266d2521b17276ffa +SIZE (KDE/plasma/5.17.3/libkscreen-5.17.3.tar.xz) = 82748 Index: head/x11/plasma5-plasma-desktop/distinfo =================================================================== --- head/x11/plasma5-plasma-desktop/distinfo (revision 517334) +++ head/x11/plasma5-plasma-desktop/distinfo (revision 517335) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572423514 -SHA256 (KDE/plasma/5.17.2/plasma-desktop-5.17.2.tar.xz) = 9ab540c31240f97495500a50f3ecc052a894ea7607e125204e85d75a52d6d4d3 -SIZE (KDE/plasma/5.17.2/plasma-desktop-5.17.2.tar.xz) = 9451928 +TIMESTAMP = 1573566557 +SHA256 (KDE/plasma/5.17.3/plasma-desktop-5.17.3.tar.xz) = 728c456421bc24f6d37da00f7cb24fa6935999ba6fdd4de08b24577b3aec1844 +SIZE (KDE/plasma/5.17.3/plasma-desktop-5.17.3.tar.xz) = 9445392 Index: head/x11/plasma5-plasma-integration/distinfo =================================================================== --- head/x11/plasma5-plasma-integration/distinfo (revision 517334) +++ head/x11/plasma5-plasma-integration/distinfo (revision 517335) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572423535 -SHA256 (KDE/plasma/5.17.2/plasma-integration-5.17.2.tar.xz) = 3a03ca65098dee856b5e2a75da63d07872da9e72b0148746109c108e4917e993 -SIZE (KDE/plasma/5.17.2/plasma-integration-5.17.2.tar.xz) = 56292 +TIMESTAMP = 1573566558 +SHA256 (KDE/plasma/5.17.3/plasma-integration-5.17.3.tar.xz) = 66d8aab85e24897e58ddcf2333e471cac7def8b1f26668fe2263fb4c80116f80 +SIZE (KDE/plasma/5.17.3/plasma-integration-5.17.3.tar.xz) = 56308 Index: head/x11/plasma5-plasma-integration/pkg-plist =================================================================== --- head/x11/plasma5-plasma-integration/pkg-plist (revision 517334) +++ head/x11/plasma5-plasma-integration/pkg-plist (revision 517335) @@ -1,49 +1,50 @@ %%QT_PLUGINDIR%%/platformthemes/KDEPlasmaPlatformTheme.so share/kconf_update/fonts_akregator.pl share/kconf_update/fonts_akregator.upd share/kconf_update/fonts_global.pl share/kconf_update/fonts_global.upd share/kconf_update/fonts_global_toolbar.upd share/kconf_update/fonts_kate.pl share/kconf_update/fonts_kate.upd share/locale/ar/LC_MESSAGES/plasmaintegration5.mo share/locale/ast/LC_MESSAGES/plasmaintegration5.mo share/locale/ca/LC_MESSAGES/plasmaintegration5.mo share/locale/ca@valencia/LC_MESSAGES/plasmaintegration5.mo share/locale/cs/LC_MESSAGES/plasmaintegration5.mo share/locale/da/LC_MESSAGES/plasmaintegration5.mo share/locale/de/LC_MESSAGES/plasmaintegration5.mo share/locale/el/LC_MESSAGES/plasmaintegration5.mo share/locale/en_GB/LC_MESSAGES/plasmaintegration5.mo share/locale/es/LC_MESSAGES/plasmaintegration5.mo share/locale/et/LC_MESSAGES/plasmaintegration5.mo share/locale/eu/LC_MESSAGES/plasmaintegration5.mo share/locale/fi/LC_MESSAGES/plasmaintegration5.mo share/locale/fr/LC_MESSAGES/plasmaintegration5.mo share/locale/gl/LC_MESSAGES/plasmaintegration5.mo share/locale/he/LC_MESSAGES/plasmaintegration5.mo share/locale/hu/LC_MESSAGES/plasmaintegration5.mo share/locale/ia/LC_MESSAGES/plasmaintegration5.mo share/locale/id/LC_MESSAGES/plasmaintegration5.mo share/locale/it/LC_MESSAGES/plasmaintegration5.mo +share/locale/ja/LC_MESSAGES/plasmaintegration5.mo share/locale/ko/LC_MESSAGES/plasmaintegration5.mo share/locale/lt/LC_MESSAGES/plasmaintegration5.mo share/locale/nb/LC_MESSAGES/plasmaintegration5.mo share/locale/nl/LC_MESSAGES/plasmaintegration5.mo share/locale/nn/LC_MESSAGES/plasmaintegration5.mo share/locale/pa/LC_MESSAGES/plasmaintegration5.mo share/locale/pl/LC_MESSAGES/plasmaintegration5.mo share/locale/pt/LC_MESSAGES/plasmaintegration5.mo share/locale/pt_BR/LC_MESSAGES/plasmaintegration5.mo share/locale/ru/LC_MESSAGES/plasmaintegration5.mo share/locale/sk/LC_MESSAGES/plasmaintegration5.mo share/locale/sl/LC_MESSAGES/plasmaintegration5.mo share/locale/sr/LC_MESSAGES/plasmaintegration5.mo share/locale/sr@ijekavian/LC_MESSAGES/plasmaintegration5.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasmaintegration5.mo share/locale/sr@latin/LC_MESSAGES/plasmaintegration5.mo share/locale/sv/LC_MESSAGES/plasmaintegration5.mo share/locale/tr/LC_MESSAGES/plasmaintegration5.mo share/locale/uk/LC_MESSAGES/plasmaintegration5.mo share/locale/zh_CN/LC_MESSAGES/plasmaintegration5.mo share/locale/zh_TW/LC_MESSAGES/plasmaintegration5.mo Index: head/x11/plasma5-plasma-workspace/Makefile =================================================================== --- head/x11/plasma5-plasma-workspace/Makefile (revision 517334) +++ head/x11/plasma5-plasma-workspace/Makefile (revision 517335) @@ -1,53 +1,52 @@ # $FreeBSD$ PORTNAME= plasma-workspace DISTVERSION= ${KDE_PLASMA_VERSION} -PORTREVISION= 3 CATEGORIES= x11 kde kde-plasma MAINTAINER= kde@FreeBSD.org COMMENT= Plasma5 Plasma workspace LIB_DEPENDS= libcln.so:math/cln \ libdbusmenu-qt5.so:devel/libdbusmenu-qt \ libqalculate.so:math/libqalculate \ libxcb-image.so:x11/xcb-util-image \ libxcb-util.so:x11/xcb-util RUN_DEPENDS= ck-launch-session:sysutils/consolekit2\ iceauth:x11/iceauth \ xsetroot:x11/xsetroot \ xset:x11/xset \ xmessage:x11/xmessage \ ${LOCALBASE}/libdata/pkgconfig/xkeyboard-config.pc:x11/xkeyboard-config \ iso-codes>=0:misc/iso-codes \ ${LOCALBASE}/bin/genv:sysutils/coreutils USES= cmake compiler:c++11-lib cpe gettext kde:5 pkgconfig \ qt:5 tar:xz xorg USE_KDE= activities activities-stats activitymanagerd attica auth baloo bookmarks \ codecs completion config configwidgets coreaddons crash \ dbusaddons doctools emoticons filemetadata globalaccel \ guiaddons holidays i18n iconthemes idletime init itemmodels \ itemviews jobwidgets js jsembed kcmutils kdeclarative \ kdelibs4support kdesu kdewebkit kio kscreenlocker \ notifications package pty kwin libkscreen libksysguard \ newstuff notifyconfig parts people plasma-framework \ plasma-integration prison runner service solid sonnet \ texteditor textwidgets unitconversion wallet wayland \ widgetsaddons windowsystem xmlgui xmlrpcclient \ breeze_run breeze-icons_run oxygen-icons5_run \ kded_run milou_run USE_QT= concurrent core declarative dbus graphicaleffects gui network phonon4 \ printsupport qdbus quickcontrols_run script sql \ testlib webkit widgets x11extras xml \ paths_run \ buildtools_build qmake_build USE_XORG= ice sm x11 xau xcb xcomposite xext xfixes xft xkbfile xrender xtst CMAKE_OFF= BUILD_TESTING # In 5.15 a file was moved from x11/plasma5-plasma-desktop to x11/plasma5-plasma-workspace: CONFLICTS_INSTALL= plasma5-plasma-desktop-5.14.* .include Index: head/x11/plasma5-plasma-workspace/distinfo =================================================================== --- head/x11/plasma5-plasma-workspace/distinfo (revision 517334) +++ head/x11/plasma5-plasma-workspace/distinfo (revision 517335) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572423557 -SHA256 (KDE/plasma/5.17.2/plasma-workspace-5.17.2.tar.xz) = 02a56bcd2c771b359bf9fdd216094f1aa74b95221ff87960776aae18012a0d6d -SIZE (KDE/plasma/5.17.2/plasma-workspace-5.17.2.tar.xz) = 4962148 +TIMESTAMP = 1573566560 +SHA256 (KDE/plasma/5.17.3/plasma-workspace-5.17.3.tar.xz) = d346271f5b55ead66b02da389aea9e0f5842c01faa5a33d03946d83b083da888 +SIZE (KDE/plasma/5.17.3/plasma-workspace-5.17.3.tar.xz) = 4958180 Index: head/x11-themes/plasma5-breeze/distinfo =================================================================== --- head/x11-themes/plasma5-breeze/distinfo (revision 517334) +++ head/x11-themes/plasma5-breeze/distinfo (revision 517335) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572423372 -SHA256 (KDE/plasma/5.17.2/breeze-5.17.2.tar.xz) = 042d41c0b12afa47a0fe6fe72cb23eb2261312955307ab905ba55201d814b095 -SIZE (KDE/plasma/5.17.2/breeze-5.17.2.tar.xz) = 16578712 +TIMESTAMP = 1573566530 +SHA256 (KDE/plasma/5.17.3/breeze-5.17.3.tar.xz) = 89dde39b69e857d102e60e7b33cc5dd3481539484678ff8cdb30393d5a4d28c6 +SIZE (KDE/plasma/5.17.3/breeze-5.17.3.tar.xz) = 16579140 Index: head/x11-themes/plasma5-breeze-gtk/distinfo =================================================================== --- head/x11-themes/plasma5-breeze-gtk/distinfo (revision 517334) +++ head/x11-themes/plasma5-breeze-gtk/distinfo (revision 517335) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572423373 -SHA256 (KDE/plasma/5.17.2/breeze-gtk-5.17.2.tar.xz) = d89fd00df51d8631d14b99138393a9daf679599ade1d1b299407dc96c1640c02 -SIZE (KDE/plasma/5.17.2/breeze-gtk-5.17.2.tar.xz) = 44304 +TIMESTAMP = 1573566532 +SHA256 (KDE/plasma/5.17.3/breeze-gtk-5.17.3.tar.xz) = 9b72b49a872b204522f6b65aff0504d3c40f568f3c8217d725a6c8a3867f1174 +SIZE (KDE/plasma/5.17.3/breeze-gtk-5.17.3.tar.xz) = 44164 Index: head/x11-themes/plasma5-kde-gtk-config/distinfo =================================================================== --- head/x11-themes/plasma5-kde-gtk-config/distinfo (revision 517334) +++ head/x11-themes/plasma5-kde-gtk-config/distinfo (revision 517335) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572423395 -SHA256 (KDE/plasma/5.17.2/kde-gtk-config-5.17.2.tar.xz) = 81f678af545be51212160ce9b824b282bb9f7626679a4b540b935bf4d606a1ba -SIZE (KDE/plasma/5.17.2/kde-gtk-config-5.17.2.tar.xz) = 154556 +TIMESTAMP = 1573566534 +SHA256 (KDE/plasma/5.17.3/kde-gtk-config-5.17.3.tar.xz) = d25e45e31ead82e06a1091626a906a9e8cf023b4595b631b9b89be0a15b74575 +SIZE (KDE/plasma/5.17.3/kde-gtk-config-5.17.3.tar.xz) = 154332 Index: head/x11-themes/plasma5-oxygen/distinfo =================================================================== --- head/x11-themes/plasma5-oxygen/distinfo (revision 517334) +++ head/x11-themes/plasma5-oxygen/distinfo (revision 517335) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572423417 -SHA256 (KDE/plasma/5.17.2/oxygen-5.17.2.tar.xz) = ca7f57ad8bd14b452041e55aa05770d6eff9b1230a5e48e5d6e624762f8645f1 -SIZE (KDE/plasma/5.17.2/oxygen-5.17.2.tar.xz) = 4465224 +TIMESTAMP = 1573566536 +SHA256 (KDE/plasma/5.17.3/oxygen-5.17.3.tar.xz) = b514bd99638850237a4adc88b485920fbd04fe6646a0669ec7934d6613c143aa +SIZE (KDE/plasma/5.17.3/oxygen-5.17.3.tar.xz) = 4466848 Index: head/x11-themes/plasma5-plasma-workspace-wallpapers/distinfo =================================================================== --- head/x11-themes/plasma5-plasma-workspace-wallpapers/distinfo (revision 517334) +++ head/x11-themes/plasma5-plasma-workspace-wallpapers/distinfo (revision 517335) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572423421 -SHA256 (KDE/plasma/5.17.2/plasma-workspace-wallpapers-5.17.2.tar.xz) = fd35ccae41085091d8898b5d119004ab96a799cee9cf8faa838d8baa7df0333e -SIZE (KDE/plasma/5.17.2/plasma-workspace-wallpapers-5.17.2.tar.xz) = 34173080 +TIMESTAMP = 1573566539 +SHA256 (KDE/plasma/5.17.3/plasma-workspace-wallpapers-5.17.3.tar.xz) = 44d0f93a09db2703d526903b6da1330c6290645022bf72352bde08f61a1339ed +SIZE (KDE/plasma/5.17.3/plasma-workspace-wallpapers-5.17.3.tar.xz) = 34172244 Index: head/x11-toolkits/plasma5-kdeplasma-addons/distinfo =================================================================== --- head/x11-toolkits/plasma5-kdeplasma-addons/distinfo (revision 517334) +++ head/x11-toolkits/plasma5-kdeplasma-addons/distinfo (revision 517335) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572423422 -SHA256 (KDE/plasma/5.17.2/kdeplasma-addons-5.17.2.tar.xz) = 05946299e2a58d923eb0667fcdb0c19ecd45ed4a242b364ac1f040bb770b5a9b -SIZE (KDE/plasma/5.17.2/kdeplasma-addons-5.17.2.tar.xz) = 606488 +TIMESTAMP = 1573566541 +SHA256 (KDE/plasma/5.17.3/kdeplasma-addons-5.17.3.tar.xz) = ae1e88249558a40413a31ea97599aa7534fff6c018096435cd15d514f20b499f +SIZE (KDE/plasma/5.17.3/kdeplasma-addons-5.17.3.tar.xz) = 603772 Index: head/x11-wm/plasma5-kdecoration/distinfo =================================================================== --- head/x11-wm/plasma5-kdecoration/distinfo (revision 517334) +++ head/x11-wm/plasma5-kdecoration/distinfo (revision 517335) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572423423 -SHA256 (KDE/plasma/5.17.2/kdecoration-5.17.2.tar.xz) = 80842366805d38557aac93c747e3a20bcc778dfd41b7fd2fecc96159cb906c11 -SIZE (KDE/plasma/5.17.2/kdecoration-5.17.2.tar.xz) = 43024 +TIMESTAMP = 1573566543 +SHA256 (KDE/plasma/5.17.3/kdecoration-5.17.3.tar.xz) = 9c0bb9f0d8ac8df73adbd68606260503e4fc389888da47d92635f3f2a6a2a0bb +SIZE (KDE/plasma/5.17.3/kdecoration-5.17.3.tar.xz) = 42836 Index: head/x11-wm/plasma5-kwin/distinfo =================================================================== --- head/x11-wm/plasma5-kwin/distinfo (revision 517334) +++ head/x11-wm/plasma5-kwin/distinfo (revision 517335) @@ -1,3 +1,3 @@ -TIMESTAMP = 1572423445 -SHA256 (KDE/plasma/5.17.2/kwin-5.17.2.tar.xz) = 987a6035b85497193996d3917421012ac16451d4c935e0d1fef014d8cfd57db8 -SIZE (KDE/plasma/5.17.2/kwin-5.17.2.tar.xz) = 6254516 +TIMESTAMP = 1573566546 +SHA256 (KDE/plasma/5.17.3/kwin-5.17.3.tar.xz) = fba18f7d8a3f97a1852313ebc9ba65094957fda8deefc09c27fd0a97207b2513 +SIZE (KDE/plasma/5.17.3/kwin-5.17.3.tar.xz) = 6241292