Index: head/Mk/Uses/kde.mk =================================================================== --- head/Mk/Uses/kde.mk (revision 527208) +++ head/Mk/Uses/kde.mk (revision 527209) @@ -1,856 +1,856 @@ # $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.18.1 +KDE_PLASMA_VERSION?= 5.18.2 KDE_PLASMA_BRANCH?= stable # Current KDE frameworks. KDE_FRAMEWORKS_VERSION?= 5.67.0 KDE_FRAMEWORKS_BRANCH?= stable # Current KDE applications. KDE_APPLICATIONS_VERSION?= 19.12.2 KDE_APPLICATIONS_SHLIB_VER?= 5.13.2 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 . elseif ${KDE_APPLICATIONS_VERSION:R} < 19.12 MASTER_SITES?= KDE/${KDE_APPLICATIONS_BRANCH}/applications/${KDE_APPLICATIONS_VERSION}/src . else 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. 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 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 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_PATH= ${KDE_PREFIX}/bin/kded5 kde-kdelibs4support_PORT= x11/kf5-kdelibs4support kde-kdelibs4support_LIB= libKF5KDELibs4Support.so kde-kdesu_PORT= security/kf5-kdesu kde-kdesu_LIB= libKF5Su.so kde-kdewebkit_PORT= www/kf5-kdewebkit kde-kdewebkit_LIB= libKF5WebKit.so kde-khtml_PORT= www/kf5-khtml kde-khtml_LIB= libKF5KHtml.so kde-kimageformats_PORT= graphics/kf5-kimageformats kde-kimageformats_PATH= ${QT_PLUGINDIR}/imageformats/kimg_xcf.so kde-kimageformats_TYPE= run kde-kio_PORT= devel/kf5-kio kde-kio_LIB= libKF5KIOCore.so kde-kirigami2_PORT= x11-toolkits/kf5-kirigami2 kde-kirigami2_PATH= ${QT_QMLDIR}/org/kde/kirigami.2/libkirigamiplugin.so kde-kquickcharts_PORT= graphics/kf5-kquickcharts kde-kquickcharts_PATH= ${QT_QMLDIR}/org/kde/quickcharts/controls/libchartscontrolsplugin.so kde-kross_PORT= lang/kf5-kross kde-kross_LIB= libKF5KrossCore.so kde-mediaplayer_PORT= multimedia/kf5-kmediaplayer kde-mediaplayer_LIB= libKF5MediaPlayer.so.5 kde-newstuff_PORT= devel/kf5-knewstuff kde-newstuff_LIB= libKF5NewStuff.so kde-notifications_PORT= devel/kf5-knotifications kde-notifications_LIB= libKF5Notifications.so kde-notifyconfig_PORT= devel/kf5-knotifyconfig kde-notifyconfig_LIB= libKF5NotifyConfig.so kde-oxygen-icons5_PORT= x11-themes/kf5-oxygen-icons5 kde-oxygen-icons5_PATH= ${KDE_PREFIX}/share/icons/oxygen/index.theme kde-oxygen-icons5_TYPE= run kde-package_PORT= devel/kf5-kpackage kde-package_LIB= libKF5Package.so kde-parts_PORT= devel/kf5-kparts kde-parts_LIB= libKF5Parts.so kde-people_PORT= devel/kf5-kpeople kde-people_LIB= libKF5People.so kde-plasma-framework_PORT= x11/kf5-plasma-framework kde-plasma-framework_LIB= libKF5Plasma.so kde-plotting_PORT= graphics/kf5-kplotting kde-plotting_LIB= libKF5Plotting.so kde-prison_PORT= graphics/kf5-prison kde-prison_LIB= libKF5Prison.so kde-pty_PORT= devel/kf5-kpty kde-pty_LIB= libKF5Pty.so kde-purpose_PORT= misc/kf5-purpose kde-purpose_LIB= libKF5Purpose.so kde-qqc2-desktop-style_PORT= x11-themes/kf5-qqc2-desktop-style kde-qqc2-desktop-style_PATH= ${QT_PLUGINDIR}/kf5/kirigami/org.kde.desktop.so kde-runner_PORT= x11/kf5-krunner kde-runner_LIB= libKF5Runner.so kde-service_PORT= devel/kf5-kservice kde-service_PATH= ${KDE_PREFIX}/bin/kbuildsycoca5 kde-solid_PORT= devel/kf5-solid kde-solid_LIB= libKF5Solid.so kde-sonnet_PORT= textproc/kf5-sonnet kde-sonnet_LIB= libKF5SonnetCore.so kde-syndication_PORT= net/kf5-syndication kde-syndication_LIB= libKF5Syndication.so kde-syntaxhighlighting_PORT= textproc/kf5-syntax-highlighting kde-syntaxhighlighting_LIB= libKF5SyntaxHighlighting.so kde-texteditor_PORT= devel/kf5-ktexteditor kde-texteditor_LIB= libKF5TextEditor.so kde-textwidgets_PORT= x11-toolkits/kf5-ktextwidgets kde-textwidgets_LIB= libKF5TextWidgets.so kde-threadweaver_PORT= devel/kf5-threadweaver kde-threadweaver_LIB= libKF5ThreadWeaver.so kde-unitconversion_PORT= devel/kf5-kunitconversion kde-unitconversion_LIB= libKF5UnitConversion.so kde-wallet_PORT= sysutils/kf5-kwallet kde-wallet_LIB= libKF5Wallet.so kde-wayland_PORT= x11/kf5-kwayland kde-wayland_LIB= libKF5WaylandClient.so kde-widgetsaddons_PORT= x11-toolkits/kf5-kwidgetsaddons kde-widgetsaddons_LIB= libKF5WidgetsAddons.so kde-windowsystem_PORT= x11/kf5-kwindowsystem kde-windowsystem_LIB= libKF5WindowSystem.so kde-xmlgui_PORT= x11-toolkits/kf5-kxmlgui kde-xmlgui_LIB= libKF5XmlGui.so kde-xmlrpcclient_PORT= net/kf5-kxmlrpcclient kde-xmlrpcclient_LIB= libKF5XmlRpcClient.so # ====================== end of frameworks components ========================== # ====================== plasma components ===================================== kde-activitymanagerd_PORT= x11/plasma5-kactivitymanagerd kde-activitymanagerd_LIB= libkactivitymanagerd_plugin.so kde-breeze_PORT= x11-themes/plasma5-breeze kde-breeze_PATH= ${KDE_PREFIX}/share/QtCurve/Breeze.qtcurve kde-breeze-gtk_PORT= x11-themes/plasma5-breeze-gtk kde-breeze-gtk_PATH= ${KDE_PREFIX}/share/themes/Breeze/gtk-2.0/gtkrc kde-decoration_PORT= x11-wm/plasma5-kdecoration kde-decoration_LIB= libkdecorations2.so kde-discover_PORT= sysutils/plasma5-discover kde-discover_PATH= ${KDE_PREFIX}/bin/plasma-discover kde-drkonqi_PORT= sysutils/plasma5-drkonqi kde-drkonqi_PATH= ${KDE_PREFIX}/lib/libexec/drkonqi kde-hotkeys_PORT= devel/plasma5-khotkeys kde-hotkeys_LIB= libkhotkeysprivate.so.5 kde-infocenter_PORT= sysutils/plasma5-kinfocenter kde-infocenter_PATH= ${KDE_PREFIX}/bin/kinfocenter kde-kde-cli-tools_PORT= sysutils/plasma5-kde-cli-tools kde-kde-cli-tools_PATH= ${KDE_PREFIX}/bin/kcmshell5 kde-kde-gtk-config_PORT= x11-themes/plasma5-kde-gtk-config kde-kde-gtk-config_PATH= ${KDE_PREFIX}/lib/kconf_update_bin/gtk_theme kde-kdeplasma-addons_PORT= x11-toolkits/plasma5-kdeplasma-addons kde-kdeplasma-addons_PATH= ${QT_PLUGINDIR}/kcm_krunner_dictionary.so kde-kgamma5_PORT= x11/plasma5-kgamma5 kde-kgamma5_PATH= ${QT_PLUGINDIR}/kcm_kgamma.so kde-kmenuedit_PORT= sysutils/plasma5-kmenuedit kde-kmenuedit_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 527208) +++ head/audio/plasma5-plasma-pa/distinfo (revision 527209) @@ -1,3 +1,3 @@ -TIMESTAMP = 1582120727 -SHA256 (KDE/plasma/5.18.1/plasma-pa-5.18.1.tar.xz) = 0dedb6999aeafebbabfa13ab0f873245e1a127ad7b67ce87724e44e388638e8e -SIZE (KDE/plasma/5.18.1/plasma-pa-5.18.1.tar.xz) = 104840 +TIMESTAMP = 1582695454 +SHA256 (KDE/plasma/5.18.2/plasma-pa-5.18.2.tar.xz) = 350531cb0e37cdcf024632edeb2b973c206d880c062f33524b367eb550736418 +SIZE (KDE/plasma/5.18.2/plasma-pa-5.18.2.tar.xz) = 104820 Index: head/deskutils/plasma5-milou/distinfo =================================================================== --- head/deskutils/plasma5-milou/distinfo (revision 527208) +++ head/deskutils/plasma5-milou/distinfo (revision 527209) @@ -1,3 +1,3 @@ -TIMESTAMP = 1582120728 -SHA256 (KDE/plasma/5.18.1/milou-5.18.1.tar.xz) = 3a74fe8846cca7e1d01c614d5112f44f93042e0b20c60cf0c6ec10b8f18bd4c6 -SIZE (KDE/plasma/5.18.1/milou-5.18.1.tar.xz) = 64268 +TIMESTAMP = 1582695456 +SHA256 (KDE/plasma/5.18.2/milou-5.18.2.tar.xz) = 1476a8ff6ea7e9a9c5942a1be5b110f14e10b585eb3d29fdcfd07a24e1173378 +SIZE (KDE/plasma/5.18.2/milou-5.18.2.tar.xz) = 64280 Index: head/deskutils/plasma5-sddm-kcm/distinfo =================================================================== --- head/deskutils/plasma5-sddm-kcm/distinfo (revision 527208) +++ head/deskutils/plasma5-sddm-kcm/distinfo (revision 527209) @@ -1,3 +1,3 @@ -TIMESTAMP = 1582120729 -SHA256 (KDE/plasma/5.18.1/sddm-kcm-5.18.1.tar.xz) = fdae8dce63fd607ef2fd39008dfc1d98ec9c9fecd38c855066e5e588334943e4 -SIZE (KDE/plasma/5.18.1/sddm-kcm-5.18.1.tar.xz) = 62184 +TIMESTAMP = 1582695457 +SHA256 (KDE/plasma/5.18.2/sddm-kcm-5.18.2.tar.xz) = 191444ac6d7796393467f34842b6b1011c3cb9b0a040cca2d03a2e175ccfbe2e +SIZE (KDE/plasma/5.18.2/sddm-kcm-5.18.2.tar.xz) = 62144 Index: head/devel/plasma5-khotkeys/distinfo =================================================================== --- head/devel/plasma5-khotkeys/distinfo (revision 527208) +++ head/devel/plasma5-khotkeys/distinfo (revision 527209) @@ -1,3 +1,3 @@ -TIMESTAMP = 1582120731 -SHA256 (KDE/plasma/5.18.1/khotkeys-5.18.1.tar.xz) = b800399d9de8024608d3918af4484f2d36ae08a89bd0ae5ea539e508215ebd6c -SIZE (KDE/plasma/5.18.1/khotkeys-5.18.1.tar.xz) = 1854920 +TIMESTAMP = 1582695461 +SHA256 (KDE/plasma/5.18.2/khotkeys-5.18.2.tar.xz) = 9190df066c3e67b814f9b9c8cd122701bbe39fa9a03bd0fc3b42ca8a439bc878 +SIZE (KDE/plasma/5.18.2/khotkeys-5.18.2.tar.xz) = 1854916 Index: head/devel/plasma5-kwrited/distinfo =================================================================== --- head/devel/plasma5-kwrited/distinfo (revision 527208) +++ head/devel/plasma5-kwrited/distinfo (revision 527209) @@ -1,3 +1,3 @@ -TIMESTAMP = 1582120732 -SHA256 (KDE/plasma/5.18.1/kwrited-5.18.1.tar.xz) = a76548c2af73296a957ccbc04fdd859398473d2f8e3a0ffb17e2ad75499ac8e3 -SIZE (KDE/plasma/5.18.1/kwrited-5.18.1.tar.xz) = 20280 +TIMESTAMP = 1582695462 +SHA256 (KDE/plasma/5.18.2/kwrited-5.18.2.tar.xz) = 3896296124a99333353445331496c5d2da414dc0c5174747ddf6fcce833e76f1 +SIZE (KDE/plasma/5.18.2/kwrited-5.18.2.tar.xz) = 20272 Index: head/devel/plasma5-plasma-sdk/distinfo =================================================================== --- head/devel/plasma5-plasma-sdk/distinfo (revision 527208) +++ head/devel/plasma5-plasma-sdk/distinfo (revision 527209) @@ -1,3 +1,3 @@ -TIMESTAMP = 1582120734 -SHA256 (KDE/plasma/5.18.1/plasma-sdk-5.18.1.tar.xz) = 4fbf665715aac42cacb3a7b7053d2d441d176ebbdd5886872bfc25bf2c57e1ed -SIZE (KDE/plasma/5.18.1/plasma-sdk-5.18.1.tar.xz) = 262768 +TIMESTAMP = 1582695463 +SHA256 (KDE/plasma/5.18.2/plasma-sdk-5.18.2.tar.xz) = f1c86e5ba1ac0bf5377a99cc9528a129dbe4853582585e835377192530ff260f +SIZE (KDE/plasma/5.18.2/plasma-sdk-5.18.2.tar.xz) = 262836 Index: head/security/plasma5-kscreenlocker/distinfo =================================================================== --- head/security/plasma5-kscreenlocker/distinfo (revision 527208) +++ head/security/plasma5-kscreenlocker/distinfo (revision 527209) @@ -1,3 +1,3 @@ -TIMESTAMP = 1582120736 -SHA256 (KDE/plasma/5.18.1/kscreenlocker-5.18.1.tar.xz) = 4b9d4bbb075aa749f83cc74f520c37aa81b2752db5f74f0a50c80cbc824d72e3 -SIZE (KDE/plasma/5.18.1/kscreenlocker-5.18.1.tar.xz) = 125136 +TIMESTAMP = 1582695465 +SHA256 (KDE/plasma/5.18.2/kscreenlocker-5.18.2.tar.xz) = 691828d4526d707ac38cf1c2782a08d21d34bfdb766cf9d885ee78c9be40cda3 +SIZE (KDE/plasma/5.18.2/kscreenlocker-5.18.2.tar.xz) = 125148 Index: head/security/plasma5-ksshaskpass/distinfo =================================================================== --- head/security/plasma5-ksshaskpass/distinfo (revision 527208) +++ head/security/plasma5-ksshaskpass/distinfo (revision 527209) @@ -1,3 +1,3 @@ -TIMESTAMP = 1582120737 -SHA256 (KDE/plasma/5.18.1/ksshaskpass-5.18.1.tar.xz) = dccc4bc93d7691024e77b4217e7fd811b4324437409779412990d5d5425f25a2 -SIZE (KDE/plasma/5.18.1/ksshaskpass-5.18.1.tar.xz) = 22232 +TIMESTAMP = 1582695466 +SHA256 (KDE/plasma/5.18.2/ksshaskpass-5.18.2.tar.xz) = d3456e02a3779e66907459319dffb780e3e780e3bbfdcc686b2dfb7d81caf74f +SIZE (KDE/plasma/5.18.2/ksshaskpass-5.18.2.tar.xz) = 22204 Index: head/security/plasma5-kwallet-pam/distinfo =================================================================== --- head/security/plasma5-kwallet-pam/distinfo (revision 527208) +++ head/security/plasma5-kwallet-pam/distinfo (revision 527209) @@ -1,3 +1,3 @@ -TIMESTAMP = 1582120737 -SHA256 (KDE/plasma/5.18.1/kwallet-pam-5.18.1.tar.xz) = dafced390651e8c5f9572a9def3cdfbab003a32b1ced2711be31b41ab44d9e11 -SIZE (KDE/plasma/5.18.1/kwallet-pam-5.18.1.tar.xz) = 19836 +TIMESTAMP = 1582695470 +SHA256 (KDE/plasma/5.18.2/kwallet-pam-5.18.2.tar.xz) = ad9396368fe1709e9e8cde5b0c47d665178226e397f265ef0bfe2303298ee57d +SIZE (KDE/plasma/5.18.2/kwallet-pam-5.18.2.tar.xz) = 19836 Index: head/sysutils/plasma5-discover/distinfo =================================================================== --- head/sysutils/plasma5-discover/distinfo (revision 527208) +++ head/sysutils/plasma5-discover/distinfo (revision 527209) @@ -1,3 +1,3 @@ -TIMESTAMP = 1582120740 -SHA256 (KDE/plasma/5.18.1/discover-5.18.1.tar.xz) = 914f7140685a116ff385a17669be7537950d50cbb78854a1bc9430ec6972e2ba -SIZE (KDE/plasma/5.18.1/discover-5.18.1.tar.xz) = 10472384 +TIMESTAMP = 1582695472 +SHA256 (KDE/plasma/5.18.2/discover-5.18.2.tar.xz) = 941278b1845b3a7f344650630de0be040589e2f3f03c097c88f33b69b187bffc +SIZE (KDE/plasma/5.18.2/discover-5.18.2.tar.xz) = 10472644 Index: head/sysutils/plasma5-drkonqi/distinfo =================================================================== --- head/sysutils/plasma5-drkonqi/distinfo (revision 527208) +++ head/sysutils/plasma5-drkonqi/distinfo (revision 527209) @@ -1,3 +1,3 @@ -TIMESTAMP = 1582120741 -SHA256 (KDE/plasma/5.18.1/drkonqi-5.18.1.tar.xz) = 2f44291cee704c86526ddc8fa75455157d5694a1dfca5b5f57683ae70829bd86 -SIZE (KDE/plasma/5.18.1/drkonqi-5.18.1.tar.xz) = 747392 +TIMESTAMP = 1582695473 +SHA256 (KDE/plasma/5.18.2/drkonqi-5.18.2.tar.xz) = f622e9d83361956fd9de4336253ee679bffe6ded97779b201f09d4490d56b452 +SIZE (KDE/plasma/5.18.2/drkonqi-5.18.2.tar.xz) = 747500 Index: head/sysutils/plasma5-kde-cli-tools/distinfo =================================================================== --- head/sysutils/plasma5-kde-cli-tools/distinfo (revision 527208) +++ head/sysutils/plasma5-kde-cli-tools/distinfo (revision 527209) @@ -1,3 +1,3 @@ -TIMESTAMP = 1582120742 -SHA256 (KDE/plasma/5.18.1/kde-cli-tools-5.18.1.tar.xz) = d2f7250e6b557f927e2526542ede5efda9267f2f89c9b359a97c40b665c1b86c -SIZE (KDE/plasma/5.18.1/kde-cli-tools-5.18.1.tar.xz) = 591904 +TIMESTAMP = 1582695477 +SHA256 (KDE/plasma/5.18.2/kde-cli-tools-5.18.2.tar.xz) = 33339740329723d8e70e280c0dd57a3a8e149ab7dd0046fd49ef29ea79ced76a +SIZE (KDE/plasma/5.18.2/kde-cli-tools-5.18.2.tar.xz) = 591912 Index: head/sysutils/plasma5-kinfocenter/distinfo =================================================================== --- head/sysutils/plasma5-kinfocenter/distinfo (revision 527208) +++ head/sysutils/plasma5-kinfocenter/distinfo (revision 527209) @@ -1,3 +1,3 @@ -TIMESTAMP = 1582120743 -SHA256 (KDE/plasma/5.18.1/kinfocenter-5.18.1.tar.xz) = 05c628787cdc5c40256ae821d3dfd72ed16e5510e5489b678f302655edc75eaa -SIZE (KDE/plasma/5.18.1/kinfocenter-5.18.1.tar.xz) = 1255684 +TIMESTAMP = 1582695478 +SHA256 (KDE/plasma/5.18.2/kinfocenter-5.18.2.tar.xz) = 00e613deb35739d3f387fbd2de8062cdce597f15bf1153838156aae0331a0b94 +SIZE (KDE/plasma/5.18.2/kinfocenter-5.18.2.tar.xz) = 1255836 Index: head/sysutils/plasma5-kmenuedit/distinfo =================================================================== --- head/sysutils/plasma5-kmenuedit/distinfo (revision 527208) +++ head/sysutils/plasma5-kmenuedit/distinfo (revision 527209) @@ -1,3 +1,3 @@ -TIMESTAMP = 1582120744 -SHA256 (KDE/plasma/5.18.1/kmenuedit-5.18.1.tar.xz) = af7b1e50fd8d91469bda6d78916c527d9b9e1b0e9a809b5e7f4fbdfc2ac3ad5e -SIZE (KDE/plasma/5.18.1/kmenuedit-5.18.1.tar.xz) = 813956 +TIMESTAMP = 1582695480 +SHA256 (KDE/plasma/5.18.2/kmenuedit-5.18.2.tar.xz) = 51d96d7dab7180f4594e1becaa607faf5befb92c8bfa8063c935fe0b07de88fd +SIZE (KDE/plasma/5.18.2/kmenuedit-5.18.2.tar.xz) = 814016 Index: head/sysutils/plasma5-ksysguard/distinfo =================================================================== --- head/sysutils/plasma5-ksysguard/distinfo (revision 527208) +++ head/sysutils/plasma5-ksysguard/distinfo (revision 527209) @@ -1,3 +1,3 @@ -TIMESTAMP = 1582120745 -SHA256 (KDE/plasma/5.18.1/ksysguard-5.18.1.tar.xz) = d88c8c324fd5835d6287107b162b2434f43dcd3adb01bb9b2a9c4b93afb0ece2 -SIZE (KDE/plasma/5.18.1/ksysguard-5.18.1.tar.xz) = 517400 +TIMESTAMP = 1582695481 +SHA256 (KDE/plasma/5.18.2/ksysguard-5.18.2.tar.xz) = 53549f51cabf31bbf17c96492eae9025fad32c6659c412fe5c2eb5a4efbcf4e1 +SIZE (KDE/plasma/5.18.2/ksysguard-5.18.2.tar.xz) = 517436 Index: head/sysutils/plasma5-libksysguard/distinfo =================================================================== --- head/sysutils/plasma5-libksysguard/distinfo (revision 527208) +++ head/sysutils/plasma5-libksysguard/distinfo (revision 527209) @@ -1,3 +1,3 @@ -TIMESTAMP = 1582120747 -SHA256 (KDE/plasma/5.18.1/libksysguard-5.18.1.tar.xz) = 93654e348845a992158d22608cd612e6770c718ee945aafcf04a8bd50f7b1c2e -SIZE (KDE/plasma/5.18.1/libksysguard-5.18.1.tar.xz) = 610036 +TIMESTAMP = 1582695483 +SHA256 (KDE/plasma/5.18.2/libksysguard-5.18.2.tar.xz) = 5e6046b5e07282f8bb46711717eee10b8feb9a7296e220124f6f72778cc7aedd +SIZE (KDE/plasma/5.18.2/libksysguard-5.18.2.tar.xz) = 610028 Index: head/sysutils/plasma5-polkit-kde-agent-1/distinfo =================================================================== --- head/sysutils/plasma5-polkit-kde-agent-1/distinfo (revision 527208) +++ head/sysutils/plasma5-polkit-kde-agent-1/distinfo (revision 527209) @@ -1,3 +1,3 @@ -TIMESTAMP = 1582120748 -SHA256 (KDE/plasma/5.18.1/polkit-kde-agent-1-5.18.1.tar.xz) = 2ac53451bec7eca86ccc773df46b775d703a9a0cc50ee0fe64ad11185c3d36eb -SIZE (KDE/plasma/5.18.1/polkit-kde-agent-1-5.18.1.tar.xz) = 44696 +TIMESTAMP = 1582695484 +SHA256 (KDE/plasma/5.18.2/polkit-kde-agent-1-5.18.2.tar.xz) = d4c38900d1ec3986c6ebba626f92c3adb8706904bef5e98ec26215d1d388eb5d +SIZE (KDE/plasma/5.18.2/polkit-kde-agent-1-5.18.2.tar.xz) = 44720 Index: head/sysutils/plasma5-powerdevil/distinfo =================================================================== --- head/sysutils/plasma5-powerdevil/distinfo (revision 527208) +++ head/sysutils/plasma5-powerdevil/distinfo (revision 527209) @@ -1,3 +1,3 @@ -TIMESTAMP = 1582120749 -SHA256 (KDE/plasma/5.18.1/powerdevil-5.18.1.tar.xz) = d2e77be66becaa61d87da269aeaba7d6fcba2bc99276453b527b95c42209516c -SIZE (KDE/plasma/5.18.1/powerdevil-5.18.1.tar.xz) = 597404 +TIMESTAMP = 1582695485 +SHA256 (KDE/plasma/5.18.2/powerdevil-5.18.2.tar.xz) = 8f47adecc542219a2483fdeab3673f74f4d013c94d29c8535fbb7efe9ab2cb24 +SIZE (KDE/plasma/5.18.2/powerdevil-5.18.2.tar.xz) = 597296 Index: head/sysutils/plasma5-systemsettings/distinfo =================================================================== --- head/sysutils/plasma5-systemsettings/distinfo (revision 527208) +++ head/sysutils/plasma5-systemsettings/distinfo (revision 527209) @@ -1,3 +1,3 @@ -TIMESTAMP = 1582120814 -SHA256 (KDE/plasma/5.18.1/systemsettings-5.18.1.tar.xz) = 35783f8997b5a790784948ff2394d354d967719e28d03820abde483d9c207e75 -SIZE (KDE/plasma/5.18.1/systemsettings-5.18.1.tar.xz) = 175840 +TIMESTAMP = 1582695486 +SHA256 (KDE/plasma/5.18.2/systemsettings-5.18.2.tar.xz) = 0426459b8f592e22e0512300c155c34c29a2dac9949c464e6d0bf388193ff35c +SIZE (KDE/plasma/5.18.2/systemsettings-5.18.2.tar.xz) = 175828 Index: head/sysutils/plasma5-user-manager/distinfo =================================================================== --- head/sysutils/plasma5-user-manager/distinfo (revision 527208) +++ head/sysutils/plasma5-user-manager/distinfo (revision 527209) @@ -1,3 +1,3 @@ -TIMESTAMP = 1582120816 -SHA256 (KDE/plasma/5.18.1/user-manager-5.18.1.tar.xz) = 605958201e4fc8a7a2dafdf02894acfbd8359c388bf466c54a603634b883825d -SIZE (KDE/plasma/5.18.1/user-manager-5.18.1.tar.xz) = 2165956 +TIMESTAMP = 1582695487 +SHA256 (KDE/plasma/5.18.2/user-manager-5.18.2.tar.xz) = 26b177416f61c743e084fb58dffca3806d794e420fa162a01ef517df03e2d052 +SIZE (KDE/plasma/5.18.2/user-manager-5.18.2.tar.xz) = 2165940 Index: head/www/plasma5-plasma-browser-integration/distinfo =================================================================== --- head/www/plasma5-plasma-browser-integration/distinfo (revision 527208) +++ head/www/plasma5-plasma-browser-integration/distinfo (revision 527209) @@ -1,3 +1,3 @@ -TIMESTAMP = 1582120818 -SHA256 (KDE/plasma/5.18.1/plasma-browser-integration-5.18.1.tar.xz) = 683d56dc4f268f7614d3214d2f4629b83cac7e2178edcfe0e4619ffe6a5312eb -SIZE (KDE/plasma/5.18.1/plasma-browser-integration-5.18.1.tar.xz) = 155876 +TIMESTAMP = 1582695489 +SHA256 (KDE/plasma/5.18.2/plasma-browser-integration-5.18.2.tar.xz) = 988a59559c0399dab6ec2c4ad2d1b9280dd34ce5d031ff32134b3fd9de9ac3b5 +SIZE (KDE/plasma/5.18.2/plasma-browser-integration-5.18.2.tar.xz) = 155928 Index: head/x11/plasma5-kactivitymanagerd/distinfo =================================================================== --- head/x11/plasma5-kactivitymanagerd/distinfo (revision 527208) +++ head/x11/plasma5-kactivitymanagerd/distinfo (revision 527209) @@ -1,3 +1,3 @@ -TIMESTAMP = 1582120838 -SHA256 (KDE/plasma/5.18.1/kactivitymanagerd-5.18.1.tar.xz) = 236ae371a1185962ad95dad0c21b89987f7dad015b5934f62ecdc713f4ccc68c -SIZE (KDE/plasma/5.18.1/kactivitymanagerd-5.18.1.tar.xz) = 87028 +TIMESTAMP = 1582695507 +SHA256 (KDE/plasma/5.18.2/kactivitymanagerd-5.18.2.tar.xz) = a11f4d0a234ef2e56451e3122e30dea6b958682024f5ca9a40a1bf1cfc912dce +SIZE (KDE/plasma/5.18.2/kactivitymanagerd-5.18.2.tar.xz) = 86988 Index: head/x11/plasma5-kgamma5/distinfo =================================================================== --- head/x11/plasma5-kgamma5/distinfo (revision 527208) +++ head/x11/plasma5-kgamma5/distinfo (revision 527209) @@ -1,3 +1,3 @@ -TIMESTAMP = 1582120839 -SHA256 (KDE/plasma/5.18.1/kgamma5-5.18.1.tar.xz) = 370cdf9988a57509f3df395e1cc6f78505da171c18b3338cb57bfd7f7e230658 -SIZE (KDE/plasma/5.18.1/kgamma5-5.18.1.tar.xz) = 80772 +TIMESTAMP = 1582695508 +SHA256 (KDE/plasma/5.18.2/kgamma5-5.18.2.tar.xz) = 3dc1acebd9559b008b59fe681100a05f004480ba50aba5b68d394a15dd18946d +SIZE (KDE/plasma/5.18.2/kgamma5-5.18.2.tar.xz) = 80772 Index: head/x11/plasma5-kscreen/distinfo =================================================================== --- head/x11/plasma5-kscreen/distinfo (revision 527208) +++ head/x11/plasma5-kscreen/distinfo (revision 527209) @@ -1,3 +1,3 @@ -TIMESTAMP = 1582120839 -SHA256 (KDE/plasma/5.18.1/kscreen-5.18.1.tar.xz) = e863c425029cae0d52d1496eaf7993bf58aa80354825bc0cb8b25157203ea9c2 -SIZE (KDE/plasma/5.18.1/kscreen-5.18.1.tar.xz) = 113048 +TIMESTAMP = 1582695509 +SHA256 (KDE/plasma/5.18.2/kscreen-5.18.2.tar.xz) = 7e221a7a4192f91b94bc6d30d422989a18d457670c6e79c69abc103289f858d3 +SIZE (KDE/plasma/5.18.2/kscreen-5.18.2.tar.xz) = 113072 Index: head/x11/plasma5-kwayland-integration/distinfo =================================================================== --- head/x11/plasma5-kwayland-integration/distinfo (revision 527208) +++ head/x11/plasma5-kwayland-integration/distinfo (revision 527209) @@ -1,3 +1,3 @@ -TIMESTAMP = 1582120840 -SHA256 (KDE/plasma/5.18.1/kwayland-integration-5.18.1.tar.xz) = e9d582560becb11b2884df642dbb0796696a2d94d55e92e1d87db8d312f443a3 -SIZE (KDE/plasma/5.18.1/kwayland-integration-5.18.1.tar.xz) = 20496 +TIMESTAMP = 1582695510 +SHA256 (KDE/plasma/5.18.2/kwayland-integration-5.18.2.tar.xz) = e6a0d5eeaccd1bf6c27811b0deba2411b855bcc3f5916845e2eecb750360075d +SIZE (KDE/plasma/5.18.2/kwayland-integration-5.18.2.tar.xz) = 20496 Index: head/x11/plasma5-libkscreen/distinfo =================================================================== --- head/x11/plasma5-libkscreen/distinfo (revision 527208) +++ head/x11/plasma5-libkscreen/distinfo (revision 527209) @@ -1,3 +1,3 @@ -TIMESTAMP = 1582120841 -SHA256 (KDE/plasma/5.18.1/libkscreen-5.18.1.tar.xz) = 768d8c353179c44cb0f8f2be3d6c046802303d9c3f96236d3d562953cf6f5444 -SIZE (KDE/plasma/5.18.1/libkscreen-5.18.1.tar.xz) = 85472 +TIMESTAMP = 1582695511 +SHA256 (KDE/plasma/5.18.2/libkscreen-5.18.2.tar.xz) = 641ec1d3db0bf21751b3f8d6ba174fcf077d13a5a8e8b77a764e670d522906af +SIZE (KDE/plasma/5.18.2/libkscreen-5.18.2.tar.xz) = 85524 Index: head/x11/plasma5-plasma-desktop/distinfo =================================================================== --- head/x11/plasma5-plasma-desktop/distinfo (revision 527208) +++ head/x11/plasma5-plasma-desktop/distinfo (revision 527209) @@ -1,3 +1,3 @@ -TIMESTAMP = 1582120843 -SHA256 (KDE/plasma/5.18.1/plasma-desktop-5.18.1.tar.xz) = 588b228dab889b13f2942f8682fdab1765bae97f2c057fec4277be21c37aa912 -SIZE (KDE/plasma/5.18.1/plasma-desktop-5.18.1.tar.xz) = 9409180 +TIMESTAMP = 1582695514 +SHA256 (KDE/plasma/5.18.2/plasma-desktop-5.18.2.tar.xz) = 4cc9d3b2d2eb014549263013e3da81bdb408c7071e061675322efbe08701bea4 +SIZE (KDE/plasma/5.18.2/plasma-desktop-5.18.2.tar.xz) = 9409616 Index: head/x11/plasma5-plasma-integration/distinfo =================================================================== --- head/x11/plasma5-plasma-integration/distinfo (revision 527208) +++ head/x11/plasma5-plasma-integration/distinfo (revision 527209) @@ -1,3 +1,3 @@ -TIMESTAMP = 1582120844 -SHA256 (KDE/plasma/5.18.1/plasma-integration-5.18.1.tar.xz) = e59363f8d0e965d5b66b1cfe8c5df188c0b9a8b6e989f4979987b6375b87837f -SIZE (KDE/plasma/5.18.1/plasma-integration-5.18.1.tar.xz) = 57708 +TIMESTAMP = 1582695515 +SHA256 (KDE/plasma/5.18.2/plasma-integration-5.18.2.tar.xz) = 479eb0ecb66f70e25b916807932fcc765920db2516a60d62f5c368858b47449c +SIZE (KDE/plasma/5.18.2/plasma-integration-5.18.2.tar.xz) = 57696 Index: head/x11/plasma5-plasma-workspace/distinfo =================================================================== --- head/x11/plasma5-plasma-workspace/distinfo (revision 527208) +++ head/x11/plasma5-plasma-workspace/distinfo (revision 527209) @@ -1,3 +1,3 @@ -TIMESTAMP = 1582120846 -SHA256 (KDE/plasma/5.18.1/plasma-workspace-5.18.1.tar.xz) = 0b095ea91c0cb214350f08ef1c53437db222d4018fe1c9da83ba3d71d8c27f52 -SIZE (KDE/plasma/5.18.1/plasma-workspace-5.18.1.tar.xz) = 5694640 +TIMESTAMP = 1582695518 +SHA256 (KDE/plasma/5.18.2/plasma-workspace-5.18.2.tar.xz) = f530e422a549c58058b67adbbc65d64f8e0371d4148efe9f85d9382970401fc9 +SIZE (KDE/plasma/5.18.2/plasma-workspace-5.18.2.tar.xz) = 5695200 Index: head/x11-themes/plasma5-breeze/distinfo =================================================================== --- head/x11-themes/plasma5-breeze/distinfo (revision 527208) +++ head/x11-themes/plasma5-breeze/distinfo (revision 527209) @@ -1,3 +1,3 @@ -TIMESTAMP = 1582120821 -SHA256 (KDE/plasma/5.18.1/breeze-5.18.1.tar.xz) = 0d93f85ffe6be3b366a7e710442e003d0f021328bf4a35e23a2149c30d0f6a1f -SIZE (KDE/plasma/5.18.1/breeze-5.18.1.tar.xz) = 21582988 +TIMESTAMP = 1582695492 +SHA256 (KDE/plasma/5.18.2/breeze-5.18.2.tar.xz) = 0b9e8c86ff40cb63bd596e3e9641d78cb236a092fe19c9e78384409388fdfe20 +SIZE (KDE/plasma/5.18.2/breeze-5.18.2.tar.xz) = 21583136 Index: head/x11-themes/plasma5-breeze-gtk/distinfo =================================================================== --- head/x11-themes/plasma5-breeze-gtk/distinfo (revision 527208) +++ head/x11-themes/plasma5-breeze-gtk/distinfo (revision 527209) @@ -1,3 +1,3 @@ -TIMESTAMP = 1582120822 -SHA256 (KDE/plasma/5.18.1/breeze-gtk-5.18.1.tar.xz) = 9735d4b2ebd27e760455138455f947619fbc5947760069c7919d596754cf92a5 -SIZE (KDE/plasma/5.18.1/breeze-gtk-5.18.1.tar.xz) = 42360 +TIMESTAMP = 1582695493 +SHA256 (KDE/plasma/5.18.2/breeze-gtk-5.18.2.tar.xz) = d4e84944e9041a37a53fc946bf476b60460de01b6bdc031cd14f7fb103cdd243 +SIZE (KDE/plasma/5.18.2/breeze-gtk-5.18.2.tar.xz) = 42380 Index: head/x11-themes/plasma5-kde-gtk-config/distinfo =================================================================== --- head/x11-themes/plasma5-kde-gtk-config/distinfo (revision 527208) +++ head/x11-themes/plasma5-kde-gtk-config/distinfo (revision 527209) @@ -1,3 +1,3 @@ -TIMESTAMP = 1582120823 -SHA256 (KDE/plasma/5.18.1/kde-gtk-config-5.18.1.tar.xz) = e404453f73dfacd16b4cfcde11fb2c029652a20c29d3402f1518de355afd437d -SIZE (KDE/plasma/5.18.1/kde-gtk-config-5.18.1.tar.xz) = 23652 +TIMESTAMP = 1582695495 +SHA256 (KDE/plasma/5.18.2/kde-gtk-config-5.18.2.tar.xz) = 6285acf54816d8c63e11ff97699e3818dbdef5a596273b340f2f6c4e3a2d6c41 +SIZE (KDE/plasma/5.18.2/kde-gtk-config-5.18.2.tar.xz) = 23640 Index: head/x11-themes/plasma5-oxygen/distinfo =================================================================== --- head/x11-themes/plasma5-oxygen/distinfo (revision 527208) +++ head/x11-themes/plasma5-oxygen/distinfo (revision 527209) @@ -1,3 +1,3 @@ -TIMESTAMP = 1582120829 -SHA256 (KDE/plasma/5.18.1/oxygen-5.18.1.tar.xz) = ebdda6ef0c9426dae1f09293ae5beefe9b03f8008416df43c1a0a9f20d568b84 -SIZE (KDE/plasma/5.18.1/oxygen-5.18.1.tar.xz) = 4473468 +TIMESTAMP = 1582695496 +SHA256 (KDE/plasma/5.18.2/oxygen-5.18.2.tar.xz) = e11266436adf02e47f4b322c50c0e954e2b88649803ff73dc266ac3fcb724f2b +SIZE (KDE/plasma/5.18.2/oxygen-5.18.2.tar.xz) = 4471444 Index: head/x11-themes/plasma5-plasma-workspace-wallpapers/distinfo =================================================================== --- head/x11-themes/plasma5-plasma-workspace-wallpapers/distinfo (revision 527208) +++ head/x11-themes/plasma5-plasma-workspace-wallpapers/distinfo (revision 527209) @@ -1,3 +1,3 @@ -TIMESTAMP = 1582120833 -SHA256 (KDE/plasma/5.18.1/plasma-workspace-wallpapers-5.18.1.tar.xz) = 8b4809e6847000510a50bf2e265bc75958f789e0a0cf3dc07c587637fa11afc3 -SIZE (KDE/plasma/5.18.1/plasma-workspace-wallpapers-5.18.1.tar.xz) = 37110156 +TIMESTAMP = 1582695501 +SHA256 (KDE/plasma/5.18.2/plasma-workspace-wallpapers-5.18.2.tar.xz) = b5fe558d7da275834bd1cb4cdb398a619a606fe267b4d4b580cc0c8db10db1b8 +SIZE (KDE/plasma/5.18.2/plasma-workspace-wallpapers-5.18.2.tar.xz) = 37110124 Index: head/x11-toolkits/plasma5-kdeplasma-addons/distinfo =================================================================== --- head/x11-toolkits/plasma5-kdeplasma-addons/distinfo (revision 527208) +++ head/x11-toolkits/plasma5-kdeplasma-addons/distinfo (revision 527209) @@ -1,3 +1,3 @@ -TIMESTAMP = 1582120834 -SHA256 (KDE/plasma/5.18.1/kdeplasma-addons-5.18.1.tar.xz) = a2cc4bc2d0f529755a878caffc26116adcaa788272522c2ba208b2ad06e3d6e2 -SIZE (KDE/plasma/5.18.1/kdeplasma-addons-5.18.1.tar.xz) = 615076 +TIMESTAMP = 1582695502 +SHA256 (KDE/plasma/5.18.2/kdeplasma-addons-5.18.2.tar.xz) = 634b346a6d5f9352477a7edc27350ef0c229b64eaf2da08e05ea2bf9c262c4e8 +SIZE (KDE/plasma/5.18.2/kdeplasma-addons-5.18.2.tar.xz) = 614764 Index: head/x11-wm/plasma5-kdecoration/distinfo =================================================================== --- head/x11-wm/plasma5-kdecoration/distinfo (revision 527208) +++ head/x11-wm/plasma5-kdecoration/distinfo (revision 527209) @@ -1,3 +1,3 @@ -TIMESTAMP = 1582120835 -SHA256 (KDE/plasma/5.18.1/kdecoration-5.18.1.tar.xz) = 22816ea3407ded2aa82e10d2caa88aa9bf86475d6b6eec39d9564d7dc06013d2 -SIZE (KDE/plasma/5.18.1/kdecoration-5.18.1.tar.xz) = 43880 +TIMESTAMP = 1582695503 +SHA256 (KDE/plasma/5.18.2/kdecoration-5.18.2.tar.xz) = 4930680158119bbd5357ff59ee4515d77c5e21c6f7914c68b2302f409f7a7595 +SIZE (KDE/plasma/5.18.2/kdecoration-5.18.2.tar.xz) = 43872 Index: head/x11-wm/plasma5-kwin/distinfo =================================================================== --- head/x11-wm/plasma5-kwin/distinfo (revision 527208) +++ head/x11-wm/plasma5-kwin/distinfo (revision 527209) @@ -1,3 +1,3 @@ -TIMESTAMP = 1582120837 -SHA256 (KDE/plasma/5.18.1/kwin-5.18.1.tar.xz) = 3ab3e497cf231f43e8ee918f8bc666e7d5745c4858d5171f9516bd48783583da -SIZE (KDE/plasma/5.18.1/kwin-5.18.1.tar.xz) = 6275172 +TIMESTAMP = 1582695505 +SHA256 (KDE/plasma/5.18.2/kwin-5.18.2.tar.xz) = 9535d7c71ea4561a8b492ca111d62c5efeea2907070f8f510764fe5c2b29fc5a +SIZE (KDE/plasma/5.18.2/kwin-5.18.2.tar.xz) = 6272328