diff --git a/Mk/Uses/kde.mk b/Mk/Uses/kde.mk index 9f31bde8a111..a9347dda035f 100644 --- a/Mk/Uses/kde.mk +++ b/Mk/Uses/kde.mk @@ -1,1059 +1,1059 @@ # Provides support for KDE and KF5-based ports. # # Feature: kde # Valid ARGS: 5 6 # # 5: Depend on KDE Frameworks 5 components and variables. # 6: Depend on KDE Frameworks 6 components and variables. # # Variables that can be set by a port: # # USE_KDE List of KF[56]/Plasma[56] components (other ports) that this # port depends on. # * foo:build Add a build-time dependency (BUILD_DEPENDS) # * foo:run Add a run-time dependency (RUN_DEPENDS) # * foo (default) Add both dependencies on component , or # a LIB_DEPENDS if applicable. # # To simplify the ports, also: # CATEGORIES If the port is part of one of the KDE Software distribution, # it can add, in addition to 'kde' one of the following: # kde-applications: part of applications release # kde-frameworks: part of frameworks release # kde-plasma: part of plasma release # this will then set default values for MASTER_SITES and DIST_SUBDIR # as well as CPE_VENDOR and LICENSE. # # option DOCS If the port is part of kde-applications (see CATEGORIES, # above) and has an option defined for DOCS then a dependency # for doctools:build is added. The option itself doesn't # have to do anything -- the dependency is always there. # # KDE_INVENT If the port does not have a regular release, and should # be fetched from KDE Invent (a GitLab instance) it can set # KDE_INVENT to 3 space-separated values: # * a full 40-character commit hash # * a category name inside KDE Invent # * a repository name inside KDE Invent # Default values for category and name are: # * the first item in CATEGORIES that is not "kde"; this # is useful when the FreeBSD ports category and the KDE # category are the same (which happens sometimes) # * PORTNAME, often the FreeBSD port name is the same # as the upstream name and it will not need to be specified. # Sometimes `KDE_INVENT=` will do and often # `KDE_INVENT= ` is enough. # # Setting KDE_INVENT is the equivalent of a handful of USE_GITLAB # and related settings. # # MAINTAINER: kde@FreeBSD.org .if !defined(_INCLUDE_USES_KDE_MK) _INCLUDE_USES_KDE_MK= yes _KDE_SUPPORTED= 5 6 . if empty(kde_ARGS) IGNORE= kde needs a version (${_KDE_SUPPORTED}) . endif . for ver in ${_KDE_SUPPORTED:O:u} . if ${kde_ARGS:M${ver}} . if !defined(_KDE_VERSION) _KDE_VERSION= ${ver} . else IGNORE?= cannot be installed: different KDE versions specified via kde:[${_KDE_SUPPORTED:S/ //g}] #' . endif . endif . endfor . if empty(_KDE_VERSION) IGNORE?= kde:[${_KDE_SUPPORTED:S/ //g}] needs an argument #' . else _KDE_RELNAME= KDE${_KDE_VERSION} # === VERSIONS OF THE DIFFERENT COMPONENTS ===================================== KDE_PLASMA_VERSION?= ${KDE_PLASMA${_KDE_VERSION}_VERSION} KDE_PLASMA_BRANCH?= ${KDE_PLASMA${_KDE_VERSION}_BRANCH} KDE_FRAMEWORKS_VERSION?= ${KDE_FRAMEWORKS${_KDE_VERSION}_VERSION} KDE_FRAMEWORKS_BRANCH?= ${KDE_FRAMEWORKS${_KDE_VERSION}_BRANCH} KDE_APPLICATIONS_BRANCH?= ${KDE_APPLICATIONS6_BRANCH} KDE_APPLICATIONS_VERSION?= ${KDE_APPLICATIONS6_VERSION} KDE_APPLICATIONS_SHLIB_VER?= ${KDE_APPLICATIONS6_SHLIB_VER} KDE_APPLICATIONS_SHLIB_G_VER?= ${KDE_APPLICATIONS6_SHLIB_G_VER} # Legacy KDE Plasma. KDE_PLASMA5_VERSION?= 5.27.12 KDE_PLASMA5_BRANCH?= stable # Current KDE Plasma desktop. -KDE_PLASMA6_VERSION?= 6.6.5 +KDE_PLASMA6_VERSION?= 6.6.6 KDE_PLASMA6_BRANCH?= stable # Legacy KDE frameworks (Qt5 based). KDE_FRAMEWORKS5_VERSION?= 5.116.0 KDE_FRAMEWORKS5_BRANCH?= stable # Current KDE Frameworks (Qt6 based). KDE_FRAMEWORKS6_VERSION?= 6.27.0 KDE_FRAMEWORKS6_BRANCH?= stable # Current KDE applications. # On major update: # - check and update if needed _${PORTNAME}_PROJECT_VERSION for the following ports: # audio/audiocd-kio, devel/kdevelop, games/libkdegames, games/libkmahjongg, graphics/kgraphviewer # - bump SHLIB_VER for editors/calligra. KDE_APPLICATIONS6_VERSION?= 26.04.3 KDE_APPLICATIONS6_SHLIB_VER?= 6.7.3 # G as in KDE Gear, and as in "don't make the variable name longer than required". KDE_APPLICATIONS6_SHLIB_G_VER?= ${KDE_APPLICATIONS6_VERSION} KDE_APPLICATIONS6_BRANCH?= stable # Some projects despite being a part of Gear distribution continue to use # their own versioning with mangled KDE_APPLICATIONS_VERSION as a patchlevel. # Provide more variables to ease their maintenance. KDE_APPS_MAJOR= ${KDE_APPLICATIONS_VERSION:R:R} KDE_APPS_MINOR= ${KDE_APPLICATIONS_VERSION:R:E} . if ${KDE_APPLICATIONS_BRANCH:Mstable} KDE_APPS_MICRO= 0${KDE_APPLICATIONS_VERSION:E} . else KDE_APPS_MICRO= ${KDE_APPLICATIONS_VERSION:E} . endif KDE_APPS_BASED_PATCHLEVEL?= ${KDE_APPS_MAJOR}${KDE_APPS_MINOR}${KDE_APPS_MICRO} # ============================================================================== # === INSTALLATION PREFIXES AND HEADER LOCATION ================================ # Define unversioned prefix variable. KDE_PREFIX= ${LOCALBASE} # ============================================================================== # === CATEGORIES HANDLING -- SETTING DEFAULT VALUES ============================ # Doing MASTER_SITES magic based on the category of the port _KDE_CATEGORIES_SUPPORTED= kde-applications kde-frameworks kde-plasma kde-devel . for cat in ${_KDE_CATEGORIES_SUPPORTED:Nkde-devel} . if ${CATEGORIES:M${cat}} . if !defined(_KDE_CATEGORY) _KDE_CATEGORY= ${cat} . else IGNORE?= cannot be installed: multiple kde-<...> categories specified via CATEGORIES=${CATEGORIES} #' . endif . endif . endfor # Doing source-selection if the sources are on KDE invent . if defined(KDE_INVENT) _invent_hash= ${KDE_INVENT:[1]} _invent_category= ${KDE_INVENT:[2]} _invent_name= ${KDE_INVENT:[3]} # Fill in default values if bits are missing . if empty(_invent_category) _invent_category= ${CATEGORIES:Nkde:[1]} . endif . if empty(_invent_name) _invent_name= ${PORTNAME} . endif # If valid, use it for GitLab . if empty(_invent_hash) || empty(_invent_category) || empty(_invent_name) IGNORE?= invalid KDE_INVENT value '${KDE_INVENT}' . else USE_GITLAB= yes GL_SITE= https://invent.kde.org GL_ACCOUNT= ${_invent_category} GL_PROJECT= ${_invent_name} GL_TAGNAME= ${_invent_hash} . endif . endif . if defined(_KDE_CATEGORY) # KDE is normally licensed under the LGPL 2.0. LICENSE?= LGPL20 # Set CPE Vendor Information # As _KDE_CATEGORY is set we can assume it is port release by KDE and the # vendor is therefore kde. CPE_VENDOR?= kde . if ${_KDE_CATEGORY:Mkde-applications} PORTVERSION?= ${KDE_APPLICATIONS_VERSION} MASTER_SITES?= KDE/${KDE_APPLICATIONS_BRANCH}/release-service/${KDE_APPLICATIONS_VERSION}/src # Let bsd.port.mk create the plist-entries for the documentation. # KDE Applications ports install their documentation to # ${PREFIX}/share/doc. This is only done if the port # defines OPTION DOCS -- the _KDE_OPTIONS here is to # avoid make errors when there are no options defined at all. _KDE_OPTIONS= bogus ${OPTIONS_DEFINE} . if ${_KDE_OPTIONS:MDOCS} DOCSDIR= ${PREFIX}/share/doc PORTDOCS?= HTML/* USE_KDE+= doctools:build . endif # Further pass along a SHLIB_VER PLIST_SUB PLIST_SUB+= KDE_APPLICATIONS_SHLIB_VER=${KDE_APPLICATIONS_SHLIB_VER} \ KDE_APPLICATIONS_VERSION_SHORT="${KDE_APPLICATIONS_VERSION:R:R}" . if defined(_${PORTNAME}_PROJECT_VERSION) PLIST_SUB+= SHLIB_VER_LONG=${_${PORTNAME}_PROJECT_VERSION}.${KDE_APPS_BASED_PATCHLEVEL} . endif DIST_SUBDIR?= KDE/release-service/${KDE_APPLICATIONS_VERSION} . elif ${_KDE_CATEGORY:Mkde-plasma} PORTVERSION?= ${KDE_PLASMA_VERSION} PKGNAMEPREFIX?= plasma${_KDE_VERSION}- MASTER_SITES?= KDE/${KDE_PLASMA_BRANCH}/plasma/${KDE_PLASMA_VERSION} DIST_SUBDIR?= KDE/plasma/${KDE_PLASMA_VERSION} WWW?= https://kde.org/plasma-desktop/ . if ${_KDE_VERSION:M6} DESCR= ${.CURDIR:H:H}/x11/plasma6-plasma/pkg-descr . endif . elif ${_KDE_CATEGORY:Mkde-frameworks} PORTVERSION?= ${KDE_FRAMEWORKS_VERSION} PKGNAMEPREFIX?= kf${_KDE_VERSION}- WWW?= https://api.kde.org/${PORTNAME}-index.html # This is a slight duplication of _USE_PORTINGAIDS_ALL _PORTINGAIDS= kjs kjsembed kdelibs4support kdesignerplugin khtml kmediaplayer kross kxmlrpcclient . if ${_KDE_VERSION:M5} . if ${_PORTINGAIDS:M*${PORTNAME}*} MASTER_SITES?= KDE/${KDE_FRAMEWORKS_BRANCH}/frameworks/${KDE_FRAMEWORKS_VERSION:R}/portingAids . else MASTER_SITES?= KDE/${KDE_FRAMEWORKS_BRANCH}/frameworks/${KDE_FRAMEWORKS_VERSION:R} . endif . else MASTER_SITES?= KDE/${KDE_FRAMEWORKS_BRANCH}/frameworks/${KDE_FRAMEWORKS_VERSION:R} . endif DIST_SUBDIR?= KDE/frameworks/${KDE_FRAMEWORKS_VERSION} . if ${_KDE_VERSION:M6} DIST_SUBDIR= KDE/frameworks/${KDE_FRAMEWORKS_VERSION:R} DESCR= ${.CURDIR:H:H}/x11/kf6-frameworks/pkg-descr . endif . if ${_KDE_VERSION:M5} PORTSCOUT= limit:^5\. . endif . else IGNORE?= unknown CATEGORY value '${_KDE_CATEGORY}' #' . endif . endif #defined(_KDE_CATEGORY) # ============================================================================== # === SET UP CMAKE ENVIRONMENT ================================================= # Help cmake to find files when testing ports with non-default PREFIX. CMAKE_ARGS+= -DCMAKE_PREFIX_PATH="${LOCALBASE}" # We set KDE_INSTALL_USE_QT_SYS_PATHS to install mkspecs files, plugins and # imports to the Qt 5 install directory. CMAKE_ARGS+= -DCMAKE_MODULE_PATH="${LOCALBASE};${KDE_PREFIX}" \ -DCMAKE_INSTALL_PREFIX="${KDE_PREFIX}" \ -DKDE_INSTALL_USE_QT_SYS_PATHS:BOOL=true KDE_MAN_PREFIX?= ${KDE_PREFIX}/share/man # Enforce the chosen Qt Version CMAKE_ARGS+= -DQT_MAJOR_VERSION=${_QT_VER} # Disable autotests unless TEST_TARGET is defined. . if !defined(TEST_TARGET) CMAKE_ARGS+= -DBUILD_TESTING:BOOL=false . endif # ============================================================================== # === SET UP PLIST_SUB ========================================================= # Prefix and include directory. PLIST_SUB+= KDE_PREFIX="${KDE_PREFIX}" # KDE Applications version. PLIST_SUB+= KDE_APPLICATIONS_VERSION="${KDE_APPLICATIONS_VERSION}" \ KDE_FRAMEWORKS_VERSION="${KDE_FRAMEWORKS_VERSION}" \ KDE_PLASMA_VERSION="${KDE_PLASMA_VERSION}" # ============================================================================== # List of all USE_KDE components. # TODO for KDE 7: do not mangle upstream naming: use the same name # for port directory, PORTNAME, and USE_KDE component. # Porting Aids frameworks provide code and utilities to ease the transition from # kdelibs 4 to KDE Frameworks 5. _USE_PORTINGAIDS_ALL= js jsembed kdelibs4support khtml mediaplayer kross # List of components of the KDE Frameworks distribution. # Not ported to FreeBSD: bluez-qt modemmanagerqt _USE_FRAMEWORKS5_ALL= activities activities-stats apidox archive attica \ auth baloo bookmarks breeze-icons calendarcore \ codecs completion config configwidgets contacts \ coreaddons crash dbusaddons designerplugin dnssd \ doctools ecm emoticons filemetadata frameworkintegration \ globalaccel guiaddons holidays i18n iconthemes \ idletime init itemmodels itemviews jobwidgets \ kcmutils kdav kdeclarative kded kdesu kimageformats \ kio kirigami2 kquickcharts newstuff notifications \ notifyconfig package parts people plasma-framework \ plotting prison pty purpose qqc2-desktop-style \ runner service solid sonnet syndication \ syntaxhighlighting texteditor textwidgets \ threadweaver unitconversion wallet wayland \ widgetsaddons windowsystem xmlgui xmlrpcclient \ ${_USE_PORTINGAIDS_ALL} _USE_FRAMEWORKS6_ALL= apidox archive attica auth baloo bookmarks \ breeze-icons calendarcore codecs colorscheme \ completion config configwidgets contacts coreaddons \ crash dbusaddons dnssd doctools ecm filemetadata \ frameworkintegration globalaccel guiaddons holidays \ i18n iconthemes idletime itemmodels itemviews \ jobwidgets kcmutils kdav kdeclarative kded kdesu \ kimageformats kio kirigami2 kquickcharts newstuff \ networkmanagerqt notifications notifyconfig package parts \ people plotting prison pty purpose \ qqc2-desktop-style runner service solid sonnet \ statusnotifieritem svg syndication \ syntaxhighlighting texteditor texttemplate \ textwidgets threadweaver unitconversion userfeedback \ wallet widgetsaddons windowsystem xmlgui _USE_FRAMEWORKS_ALL= ${_USE_FRAMEWORKS${_KDE_VERSION}_ALL} # List of components of the KDE Plasma distribution. _USE_PLASMA5_ALL= libksysguard oxygen-sounds _USE_PLASMA6_ALL= activities activities-stats activitymanagerd \ aurorae breeze breeze-gtk decoration discover \ globalacceld infocenter kde-cli-tools \ kde-gtk-config kdeplasma-addons kgamma kmenuedit \ knighttime \ kpipewire kscreen kscreenlocker ksshaskpass \ ksystemstats kwallet-pam kwin kwin-x11 kwrited \ layer-shell-qt libkscreen libksysguard libplasma \ milou ocean-sound-theme oxygen oxygen-sounds \ plasma-browser-integration plasma-desktop \ plasma-disks plasma-integration plasma-pa \ plasma-sdk plasma-workspace \ plasma-workspace-wallpapers plasma5support \ polkit-kde-agent-1 powerdevil print-manager \ qqc2-breeze-style sddm-kcm spectacle systemmonitor \ systemsettings wayland xdg-desktop-portal-kde _USE_PLASMA_ALL= ${_USE_PLASMA${_KDE_VERSION}_ALL} # List of frequently used components of the KDE Gears distribution. _USE_GEAR6_ALL= baloo-widgets kosm kpublictransport \ libkcddb libkdcraw \ libkdegames libkeduvocdocument libkexiv2 \ libksane marble okular _USE_GEAR_ALL= ${_USE_GEAR${_KDE_VERSION}_ALL} # List of components of the KDE PIM distribution (part of KDE Gears). _USE_KDEPIM_ALL= akonadi akonadicalendar akonadiconsole \ akonadicontacts akonadiimportwizard akonadimime \ akonadisearch akregator calendarsupport \ calendarutils eventviews gapi grantlee-editor \ grantleetheme gravatar identitymanagement imap \ incidenceeditor kaddressbook kalarm kdepim-addons \ kdepim-runtime kitinerary kmail kmail-account-wizard \ kontact kontactinterface korganizer kpkpass ksmtp \ ldap libkdepim libkleo libksieve mailcommon \ mailimporter mailtransport mbox mbox-importer \ messagelib mime mimetreeparser pim-data-exporter \ pimcommon pimtextedit tnef # List of frequently used KDE releated software for any KDE/Qt version. _USE_KDE_EXTRA5_ALL= kirigami-addons phonon phonon-vlc \ plasma-wayland-protocols _USE_KDE_EXTRA6_ALL= kirigami-addons phonon phonon-mpv phonon-vlc \ plasma-wayland-protocols ktextaddons _USE_KDE_EXTRA_ALL= ${_USE_KDE_EXTRA${_KDE_VERSION}_ALL} _USE_KDE5_ALL= ${_USE_FRAMEWORKS_ALL} \ ${_USE_PLASMA_ALL} \ ${_USE_GEAR_ALL} \ ${_USE_KDE_EXTRA_ALL} _USE_KDE6_ALL= ${_USE_FRAMEWORKS_ALL} \ ${_USE_PLASMA_ALL} \ ${_USE_KDEPIM_ALL} \ ${_USE_GEAR_ALL} \ ${_USE_KDE_EXTRA_ALL} # ====================== frameworks components ================================= kde-activities_PORT5= x11/kf${_KDE_VERSION}-kactivities kde-activities_PORT6= x11/plasma${_KDE_VERSION}-plasma-activities kde-activities_PORT= ${kde-activities_PORT${_KDE_VERSION}} kde-activities_LIB5= libKF${_KDE_VERSION}Activities.so kde-activities_LIB6= libPlasmaActivities.so kde-activities_LIB= ${kde-activities_LIB${_KDE_VERSION}} kde-activities-stats_PORT5= x11/kf${_KDE_VERSION}-kactivities-stats kde-activities-stats_PORT6= x11/plasma${_KDE_VERSION}-plasma-activities-stats kde-activities-stats_PORT= ${kde-activities-stats_PORT${_KDE_VERSION}} kde-activities-stats_LIB5= libKF${_KDE_VERSION}ActivitiesStats.so kde-activities-stats_LIB6= libPlasmaActivitiesStats.so kde-activities-stats_LIB= ${kde-activities-stats_LIB${_KDE_VERSION}} # Use KApiDox tools from KDE Frameworks 6 kde-apidox_PORT= devel/kf6-kapidox kde-apidox_PATH= ${KDE_PREFIX}/bin/kapidox-generate kde-apidox_TYPE= run kde-archive_PORT= archivers/kf${_KDE_VERSION}-karchive kde-archive_LIB= libKF${_KDE_VERSION}Archive.so kde-attica_PORT= x11-toolkits/kf${_KDE_VERSION}-attica kde-attica_LIB= libKF${_KDE_VERSION}Attica.so kde-auth_PORT= devel/kf${_KDE_VERSION}-kauth kde-auth_LIB= libKF${_KDE_VERSION}AuthCore.so kde-baloo_PORT= sysutils/kf${_KDE_VERSION}-baloo kde-baloo_LIB= libKF${_KDE_VERSION}Baloo.so kde-bookmarks_PORT= devel/kf${_KDE_VERSION}-kbookmarks kde-bookmarks_LIB= libKF${_KDE_VERSION}Bookmarks.so # Use the latest icons from KDE Frameworks 6 kde-breeze-icons_PORT= x11-themes/kf6-breeze-icons kde-breeze-icons_PATH= ${KDE_PREFIX}/share/icons/breeze/index.theme kde-codecs_PORT= textproc/kf${_KDE_VERSION}-kcodecs kde-codecs_LIB= libKF${_KDE_VERSION}Codecs.so kde-completion_PORT= x11-toolkits/kf${_KDE_VERSION}-kcompletion kde-completion_LIB= libKF${_KDE_VERSION}Completion.so kde-config_PORT= devel/kf${_KDE_VERSION}-kconfig kde-config_LIB= libKF${_KDE_VERSION}ConfigCore.so kde-configwidgets_PORT= x11-toolkits/kf${_KDE_VERSION}-kconfigwidgets kde-configwidgets_LIB= libKF${_KDE_VERSION}ConfigWidgets.so kde-coreaddons_PORT= devel/kf${_KDE_VERSION}-kcoreaddons kde-coreaddons_LIB= libKF${_KDE_VERSION}CoreAddons.so kde-crash_PORT= devel/kf${_KDE_VERSION}-kcrash kde-crash_LIB= libKF${_KDE_VERSION}Crash.so kde-dbusaddons_PORT= devel/kf${_KDE_VERSION}-kdbusaddons kde-dbusaddons_LIB= libKF${_KDE_VERSION}DBusAddons.so kde-designerplugin_PORT= x11-toolkits/kf${_KDE_VERSION}-kdesignerplugin kde-designerplugin_PATH= ${KDE_PREFIX}/bin/kgendesignerplugin kde-designerplugin_TYPE= run kde-dnssd_PORT= dns/kf${_KDE_VERSION}-kdnssd kde-dnssd_LIB= libKF${_KDE_VERSION}DNSSD.so kde-doctools_PORT= devel/kf${_KDE_VERSION}-kdoctools kde-doctools_PATH= ${KDE_PREFIX}/bin/meinproc${_KDE_VERSION} # Use ECM from KDE Frameworks 6 for everything kde-ecm_PORT= devel/kf6-extra-cmake-modules kde-ecm_PATH= ${LOCALBASE}/share/ECM/cmake/ECMConfig.cmake kde-emoticons_PORT= x11-themes/kf${_KDE_VERSION}-kemoticons kde-emoticons_LIB= libKF${_KDE_VERSION}Emoticons.so kde-filemetadata_PORT= devel/kf${_KDE_VERSION}-kfilemetadata kde-filemetadata_LIB= libKF${_KDE_VERSION}FileMetaData.so kde-frameworkintegration_PORT= x11/kf${_KDE_VERSION}-frameworkintegration kde-frameworkintegration_LIB= libKF${_KDE_VERSION}Style.so kde-globalaccel_PORT= x11/kf${_KDE_VERSION}-kglobalaccel kde-globalaccel_LIB= libKF${_KDE_VERSION}GlobalAccel.so kde-guiaddons_PORT= x11-toolkits/kf${_KDE_VERSION}-kguiaddons kde-guiaddons_LIB= libKF${_KDE_VERSION}GuiAddons.so kde-holidays_PORT= net/kf${_KDE_VERSION}-kholidays kde-holidays_LIB= libKF${_KDE_VERSION}Holidays.so kde-i18n_PORT= devel/kf${_KDE_VERSION}-ki18n kde-i18n_LIB= libKF${_KDE_VERSION}I18n.so kde-iconthemes_PORT= x11-themes/kf${_KDE_VERSION}-kiconthemes kde-iconthemes_LIB= libKF${_KDE_VERSION}IconThemes.so kde-idletime_PORT= devel/kf${_KDE_VERSION}-kidletime kde-idletime_LIB= libKF${_KDE_VERSION}IdleTime.so kde-init_PORT= x11/kf${_KDE_VERSION}-kinit kde-init_PATH= ${KDE_PREFIX}/bin/kdeinit5 kde-itemmodels_PORT= devel/kf${_KDE_VERSION}-kitemmodels kde-itemmodels_LIB= libKF${_KDE_VERSION}ItemModels.so kde-itemviews_PORT= x11-toolkits/kf${_KDE_VERSION}-kitemviews kde-itemviews_LIB= libKF${_KDE_VERSION}ItemViews.so kde-jobwidgets_PORT= x11-toolkits/kf${_KDE_VERSION}-kjobwidgets kde-jobwidgets_LIB= libKF${_KDE_VERSION}JobWidgets.so kde-js_PORT= www/kf${_KDE_VERSION}-kjs kde-js_LIB= libKF${_KDE_VERSION}JS.so kde-jsembed_PORT= www/kf${_KDE_VERSION}-kjsembed kde-jsembed_LIB= libKF${_KDE_VERSION}JsEmbed.so kde-kcmutils_PORT= devel/kf${_KDE_VERSION}-kcmutils kde-kcmutils_LIB= libKF${_KDE_VERSION}KCMUtils.so kde-kdeclarative_PORT= devel/kf${_KDE_VERSION}-kdeclarative kde-kdeclarative_LIB5= libKF${_KDE_VERSION}Declarative.so kde-kdeclarative_LIB6= libKF${_KDE_VERSION}CalendarEvents.so kde-kdeclarative_LIB= ${kde-kdeclarative_LIB${_KDE_VERSION}} kde-kded_PORT= x11/kf${_KDE_VERSION}-kded kde-kded_PATH= ${KDE_PREFIX}/bin/kded${_KDE_VERSION} kde-kdelibs4support_PORT= x11/kf${_KDE_VERSION}-kdelibs4support kde-kdelibs4support_LIB= libKF${_KDE_VERSION}KDELibs4Support.so kde-kdesu_PORT= security/kf${_KDE_VERSION}-kdesu kde-kdesu_LIB= libKF${_KDE_VERSION}Su.so kde-khtml_PORT= www/kf${_KDE_VERSION}-khtml kde-khtml_LIB= libKF${_KDE_VERSION}KHtml.so kde-kimageformats_PORT= graphics/kf${_KDE_VERSION}-kimageformats kde-kimageformats_PATH= ${QT_PLUGINDIR}/imageformats/kimg_xcf.so kde-kimageformats_TYPE= run kde-kio_PORT= devel/kf${_KDE_VERSION}-kio kde-kio_LIB= libKF${_KDE_VERSION}KIOCore.so kde-kirigami2_PORT5= x11-toolkits/kf${_KDE_VERSION}-kirigami2 kde-kirigami2_PORT6= x11-toolkits/kf${_KDE_VERSION}-kirigami kde-kirigami2_PATH5= ${QT_QMLDIR}/org/kde/kirigami.2/libKirigamiPlugin.so kde-kirigami2_PATH6= ${QT_QMLDIR}/org/kde/kirigami/libKirigamiplugin.so kde-kirigami2_PORT= ${kde-kirigami2_PORT${_KDE_VERSION}} kde-kirigami2_PATH= ${kde-kirigami2_PATH${_KDE_VERSION}} kde-kquickcharts_PORT= graphics/kf${_KDE_VERSION}-kquickcharts kde-kquickcharts_PATH5= ${QT_QMLDIR}/org/kde/quickcharts/libQuickCharts.so kde-kquickcharts_PATH6= ${QT_QMLDIR}/org/kde/quickcharts/libQuickChartsplugin.so kde-kquickcharts_PATH= ${kde-kquickcharts_PATH${_KDE_VERSION}} kde-kross_PORT= lang/kf${_KDE_VERSION}-kross kde-kross_LIB= libKF${_KDE_VERSION}KrossCore.so kde-layer-shell-qt_PORT= x11/plasma${_KDE_VERSION}-layer-shell-qt kde-layer-shell-qt_LIB= libLayerShellQtInterface.so kde-mediaplayer_PORT= multimedia/kf${_KDE_VERSION}-kmediaplayer kde-mediaplayer_LIB= libKF${_KDE_VERSION}MediaPlayer.so.5 kde-networkmanagerqt_PORT= net-mgmt/kf${_KDE_VERSION}-networkmanager-qt kde-networkmanagerqt_LIB= libKF${_KDE_VERSION}NetworkManagerQt.so kde-newstuff_PORT= devel/kf${_KDE_VERSION}-knewstuff kde-newstuff_LIB= libKF${_KDE_VERSION}NewStuffCore.so kde-notifications_PORT= devel/kf${_KDE_VERSION}-knotifications kde-notifications_LIB= libKF${_KDE_VERSION}Notifications.so kde-notifyconfig_PORT= devel/kf${_KDE_VERSION}-knotifyconfig kde-notifyconfig_LIB= libKF${_KDE_VERSION}NotifyConfig.so # Use the latest sounds from Plasma 6 kde-oxygen-sounds_PORT= audio/plasma6-oxygen-sounds kde-oxygen-sounds_PATH= ${KDE_PREFIX}/share/sounds/Oxygen-Sys-Log-In.ogg kde-oxygen-sounds_TYPE= run kde-package_PORT= devel/kf${_KDE_VERSION}-kpackage kde-package_LIB= libKF${_KDE_VERSION}Package.so kde-parts_PORT= devel/kf${_KDE_VERSION}-kparts kde-parts_LIB= libKF${_KDE_VERSION}Parts.so kde-people_PORT= devel/kf${_KDE_VERSION}-kpeople kde-people_LIB= libKF${_KDE_VERSION}People.so kde-plasma-framework_PORT= x11/kf${_KDE_VERSION}-plasma-framework kde-plasma-framework_LIB= libKF${_KDE_VERSION}Plasma.so kde-plasma-wayland-protocols_PORT= x11/plasma-wayland-protocols kde-plasma-wayland-protocols_PATH= ${KDE_PREFIX}/share/cmake/PlasmaWaylandProtocols/PlasmaWaylandProtocolsConfig.cmake kde-plotting_PORT= graphics/kf${_KDE_VERSION}-kplotting kde-plotting_LIB= libKF${_KDE_VERSION}Plotting.so kde-prison_PORT= graphics/kf${_KDE_VERSION}-prison kde-prison_LIB= libKF${_KDE_VERSION}Prison.so kde-pty_PORT= devel/kf${_KDE_VERSION}-kpty kde-pty_LIB= libKF${_KDE_VERSION}Pty.so kde-purpose_PORT= misc/kf${_KDE_VERSION}-purpose kde-purpose_LIB= libKF${_KDE_VERSION}Purpose.so kde-qqc2-desktop-style_PORT= x11-themes/kf${_KDE_VERSION}-qqc2-desktop-style kde-qqc2-desktop-style_PATH5= ${QT_PLUGINDIR}/kf${_KDE_VERSION}/kirigami/org.kde.desktop.so kde-qqc2-desktop-style_PATH6= ${QT_QMLDIR}/org/kde/desktop/liborg_kde_desktop.so kde-qqc2-desktop-style_PATH= ${kde-qqc2-desktop-style_PATH${_KDE_VERSION}} kde-runner_PORT= x11/kf${_KDE_VERSION}-krunner kde-runner_LIB= libKF${_KDE_VERSION}Runner.so kde-service_PORT= devel/kf${_KDE_VERSION}-kservice kde-service_LIB= libKF${_KDE_VERSION}Service.so kde-solid_PORT= devel/kf${_KDE_VERSION}-solid kde-solid_LIB= libKF${_KDE_VERSION}Solid.so kde-sonnet_PORT= textproc/kf${_KDE_VERSION}-sonnet kde-sonnet_LIB= libKF${_KDE_VERSION}SonnetCore.so kde-syndication_PORT= net/kf${_KDE_VERSION}-syndication kde-syndication_LIB= libKF${_KDE_VERSION}Syndication.so kde-syntaxhighlighting_PORT= textproc/kf${_KDE_VERSION}-syntax-highlighting kde-syntaxhighlighting_LIB= libKF${_KDE_VERSION}SyntaxHighlighting.so kde-texteditor_PORT= devel/kf${_KDE_VERSION}-ktexteditor kde-texteditor_LIB= libKF${_KDE_VERSION}TextEditor.so kde-texttemplate_PORT= devel/kf${_KDE_VERSION}-ktexttemplate kde-texttemplate_LIB= libKF${_KDE_VERSION}TextTemplate.so kde-textwidgets_PORT= x11-toolkits/kf${_KDE_VERSION}-ktextwidgets kde-textwidgets_LIB= libKF${_KDE_VERSION}TextWidgets.so kde-threadweaver_PORT= devel/kf${_KDE_VERSION}-threadweaver kde-threadweaver_LIB= libKF${_KDE_VERSION}ThreadWeaver.so kde-unitconversion_PORT= devel/kf${_KDE_VERSION}-kunitconversion kde-unitconversion_LIB= libKF${_KDE_VERSION}UnitConversion.so kde-wallet_PORT= sysutils/kf${_KDE_VERSION}-kwallet kde-wallet_LIB= libKF${_KDE_VERSION}Wallet.so kde-wayland_PORT5= x11/kf${_KDE_VERSION}-kwayland kde-wayland_PORT6= x11/plasma${_KDE_VERSION}-kwayland kde-wayland_PORT= ${kde-wayland_PORT${_KDE_VERSION}} kde-wayland_LIB5= libKF${_KDE_VERSION}WaylandClient.so kde-wayland_LIB6= libKWaylandClient.so kde-wayland_LIB= ${kde-wayland_LIB${_KDE_VERSION}} kde-widgetsaddons_PORT= x11-toolkits/kf${_KDE_VERSION}-kwidgetsaddons kde-widgetsaddons_LIB= libKF${_KDE_VERSION}WidgetsAddons.so kde-windowsystem_PORT= x11/kf${_KDE_VERSION}-kwindowsystem kde-windowsystem_LIB= libKF${_KDE_VERSION}WindowSystem.so kde-xmlgui_PORT= x11-toolkits/kf${_KDE_VERSION}-kxmlgui kde-xmlgui_LIB= libKF${_KDE_VERSION}XmlGui.so kde-xmlrpcclient_PORT= net/kf${_KDE_VERSION}-kxmlrpcclient kde-xmlrpcclient_LIB= libKF${_KDE_VERSION}XmlRpcClient.so kde-calendarcore_PORT= net/kf${_KDE_VERSION}-kcalendarcore kde-calendarcore_LIB= libKF${_KDE_VERSION}CalendarCore.so kde-contacts_PORT= net/kf${_KDE_VERSION}-kcontacts kde-contacts_LIB= libKF${_KDE_VERSION}Contacts.so kde-kdav_PORT= net/kf${_KDE_VERSION}-kdav kde-kdav_LIB= libKF${_KDE_VERSION}DAV.so kde-colorscheme_PORT= x11-themes/kf${_KDE_VERSION}-kcolorscheme kde-colorscheme_LIB= libKF${_KDE_VERSION}ColorScheme.so kde-svg_PORT= graphics/kf${_KDE_VERSION}-ksvg kde-svg_LIB= libKF${_KDE_VERSION}Svg.so kde-statusnotifieritem_PORT= deskutils/kf6-kstatusnotifieritem kde-statusnotifieritem_LIB= libKF${_KDE_VERSION}StatusNotifierItem.so kde-userfeedback_PORT= sysutils/kf6-kuserfeedback kde-userfeedback_LIB= libKF${_KDE_VERSION}UserFeedbackCore.so # ====================== end of frameworks components ========================== # ====================== plasma components ===================================== kde-kpipewire_PORT= audio/plasma${_KDE_VERSION}-kpipewire kde-kpipewire_LIB= libKPipeWire.so kde-activitymanagerd_PORT= x11/plasma${_KDE_VERSION}-kactivitymanagerd kde-activitymanagerd_LIB= libkactivitymanagerd_plugin.so kde-aurorae_PORT= x11-themes/plasma${_KDE_VERSION}-aurorae kde-aurorae_PATH= ${KDE_PREFIX}/lib/libexec/plasma-apply-aurorae kde-breeze_PORT= x11-themes/plasma${_KDE_VERSION}-breeze kde-breeze_PATH= ${KDE_PREFIX}/share/QtCurve/Breeze.qtcurve kde-breeze-gtk_PORT= x11-themes/plasma${_KDE_VERSION}-breeze-gtk kde-breeze-gtk_PATH= ${KDE_PREFIX}/share/themes/Breeze/gtk-2.0/gtkrc kde-decoration_PORT= x11-wm/plasma${_KDE_VERSION}-kdecoration kde-decoration_LIB= libkdecorations3.so kde-discover_PORT= sysutils/plasma${_KDE_VERSION}-discover kde-discover_PATH= ${KDE_PREFIX}/bin/plasma-discover kde-infocenter_PORT= sysutils/plasma${_KDE_VERSION}-kinfocenter kde-infocenter_PATH= ${KDE_PREFIX}/bin/kinfocenter kde-kde-cli-tools_PORT= sysutils/plasma${_KDE_VERSION}-kde-cli-tools kde-kde-cli-tools_PATH= ${KDE_PREFIX}/bin/kde-open kde-kde-gtk-config_PORT= x11-themes/plasma${_KDE_VERSION}-kde-gtk-config kde-kde-gtk-config_PATH= ${KDE_PREFIX}/lib/kconf_update_bin/gtk_theme kde-kdeplasma-addons_PORT= x11-toolkits/plasma${_KDE_VERSION}-kdeplasma-addons kde-kdeplasma-addons_LIB= libplasmapotdprovidercore.so kde-kgamma_PORT= x11/plasma${_KDE_VERSION}-kgamma kde-kgamma_PATH= ${QT_PLUGINDIR}/plasma/kcms/systemsettings_qwidgets/kcm_kgamma.so kde-kmenuedit_PORT= sysutils/plasma${_KDE_VERSION}-kmenuedit kde-kmenuedit_PATH= ${KDE_PREFIX}/bin/kmenuedit kde-knighttime_PORT= sysutils/plasma${_KDE_VERSION}-knighttime kde-knighttime_LIB= libKNightTime.so kde-kscreen_PORT= x11/plasma${_KDE_VERSION}-kscreen kde-kscreen_PATH= ${KDE_PREFIX}/bin/kscreen-console kde-kscreenlocker_PORT= security/plasma${_KDE_VERSION}-kscreenlocker kde-kscreenlocker_LIB= libKScreenLocker.so kde-ksshaskpass_PORT= security/plasma${_KDE_VERSION}-ksshaskpass kde-ksshaskpass_PATH= ${KDE_PREFIX}/bin/ksshaskpass kde-ksystemstats_PORT= sysutils/plasma${_KDE_VERSION}-ksystemstats kde-ksystemstats_PATH= ${KDE_PREFIX}/bin/ksystemstats kde-kwallet-pam_PORT= security/plasma${_KDE_VERSION}-kwallet-pam kde-kwallet-pam_PATH= ${KDE_PREFIX}/lib/pam_kwallet5.so kde-kwin_PORT= x11-wm/plasma${_KDE_VERSION}-kwin kde-kwin_PATH= ${KDE_PREFIX}/bin/kwin_wayland kde-kwin-x11_PORT= x11-wm/plasma${_KDE_VERSION}-kwin-x11 kde-kwin-x11_PATH= ${KDE_PREFIX}/bin/kwin_x11 kde-kwrited_PORT= devel/plasma${_KDE_VERSION}-kwrited kde-kwrited_PATH= ${QT_PLUGINDIR}/kf${_KDE_VERSION}/kded/kwrited.so kde-libkscreen_PORT= x11/plasma${_KDE_VERSION}-libkscreen kde-libkscreen_LIB= libKF${_KDE_VERSION}Screen.so kde-libksysguard_PORT= sysutils/plasma${_KDE_VERSION}-libksysguard kde-libksysguard_LIB5= libksgrd.so kde-libksysguard_LIB6= libKSysGuardSystemStats.so kde-libksysguard_LIB= ${kde-libksysguard_LIB${_KDE_VERSION}} kde-milou_PORT= deskutils/plasma${_KDE_VERSION}-milou kde-milou_PATH= ${QT_QMLDIR}/org/kde/milou/libmilou.so kde-ocean-sound-theme_PORT= audio/plasma${_KDE_VERSION}-ocean-sound-theme kde-ocean-sound-theme_PATH= ${KDE_PREFIX}/share/sounds/ocean/index.theme kde-ocean-sound-theme_TYPE= run kde-oxygen_PORT= x11-themes/plasma${_KDE_VERSION}-oxygen kde-oxygen_PATH= ${QT_PLUGINDIR}/kstyle_config/kstyle_oxygen_config.so kde-plasma-browser-integration_PORT= www/plasma${_KDE_VERSION}-plasma-browser-integration kde-plasma-browser-integration_PATH= ${KDE_PREFIX}/bin/plasma-browser-integration-host kde-plasma-desktop_PORT= x11/plasma${_KDE_VERSION}-plasma-desktop kde-plasma-desktop_PATH= ${KDE_PREFIX}/bin/kaccess kde-plasma-disks_PORT= sysutils/plasma${_KDE_VERSION}-plasma-disks kde-plasma-disks_PATH= ${KDE_PREFIX}/lib/libexec/kf6/kauth/kded-smart-helper kde-plasma-integration_PORT= x11/plasma${_KDE_VERSION}-plasma-integration kde-plasma-integration_PATH= ${QT_PLUGINDIR}/platformthemes/KDEPlasmaPlatformTheme6.so kde-plasma-pa_PORT= audio/plasma${_KDE_VERSION}-plasma-pa kde-plasma-pa_PATH= ${QT_PLUGINDIR}/plasma/kcms/systemsettings/kcm_pulseaudio.so kde-plasma-sdk_PORT= devel/plasma${_KDE_VERSION}-plasma-sdk kde-plasma-sdk_PATH= ${KDE_PREFIX}/bin/plasmoidviewer kde-plasma-workspace_PORT= x11/plasma${_KDE_VERSION}-plasma-workspace kde-plasma-workspace_LIB= libkworkspace${_KDE_VERSION}.so kde-plasma-workspace-wallpapers_PORT= x11-themes/plasma${_KDE_VERSION}-plasma-workspace-wallpapers kde-plasma-workspace-wallpapers_PATH= ${KDE_PREFIX}/share/wallpapers/Autumn/contents/images/1280x1024.jpg kde-polkit-kde-agent-1_PORT= sysutils/plasma${_KDE_VERSION}-polkit-kde-agent-1 kde-polkit-kde-agent-1_PATH= ${KDE_PREFIX}/lib/libexec/polkit-kde-authentication-agent-1 kde-powerdevil_PORT= sysutils/plasma${_KDE_VERSION}-powerdevil kde-powerdevil_LIB= libpowerdevilcore.so kde-print-manager_PORT= print/plasma${_KDE_VERSION}-print-manager kde-print-manager_PATH= ${KDE_PREFIX}/bin/kde-print-queue kde-print-manager_TYPE= run kde-spectacle_PORT= graphics/plasma${_KDE_VERSION}-spectacle kde-spectacle_PATH= ${KDE_PREFIX}/bin/spectacle kde-spectacle_TYPE= run kde-systemmonitor_PORT= sysutils/plasma${_KDE_VERSION}-plasma-systemmonitor kde-systemmonitor_PATH= ${KDE_PREFIX}/bin/plasma-systemmonitor kde-systemmonitor_TYPE= run kde-systemsettings_PORT= sysutils/plasma${_KDE_VERSION}-systemsettings kde-systemsettings_PATH= ${KDE_PREFIX}/bin/systemsettings kde-xdg-desktop-portal-kde_PORT= deskutils/plasma${_KDE_VERSION}-xdg-desktop-portal-kde kde-xdg-desktop-portal-kde_PATH= ${KDE_PREFIX}/lib/libexec/xdg-desktop-portal-kde kde-plasma5support_PORT= devel/plasma${_KDE_VERSION}-plasma5support kde-plasma5support_LIB= libPlasma5Support.so kde-qqc2-breeze-style_PORT= x11-themes/plasma${_KDE_VERSION}-qqc2-breeze-style kde-qqc2-breeze-style_PATH= ${QT_PLUGINDIR}/kf${_KDE_VERSION}/kirigami/platform/org.kde.breeze.so kde-sddm-kcm_PORT= deskutils/plasma${_KDE_VERSION}-sddm-kcm kde-sddm-kcm_PATH= ${QT_PLUGINDIR}/plasma/kcms/systemsettings/kcm_sddm.so kde-sddm-kcm_TYPE= run kde-kirigami-addons_PORT= x11-toolkits/kirigami-addons-qt${_KDE_VERSION} kde-kirigami-addons_PATH= ${QT_QMLDIR}/org/kde/kirigamiaddons/components/libcomponentsplugin.so kde-globalacceld_PORT= x11/plasma${_KDE_VERSION}-kglobalacceld kde-globalacceld_PATH= ${QT_PLUGINDIR}/org.kde.kglobalacceld.platforms/KGlobalAccelDXcb.so kde-libplasma_PORT= x11/plasma${_KDE_VERSION}-libplasma kde-libplasma_LIB= libPlasma.so # ====================== end of plasma components ============================== # ====================== pim5 components ======================================= kde-akonadicontacts_PORT= net/akonadi-contacts kde-akonadicontacts_LIB= libKPim${_KDE_VERSION}AkonadiContactCore.so kde-akonadiimportwizard_PORT= deskutils/akonadi-import-wizard kde-akonadiimportwizard_LIB= libKPim${_KDE_VERSION}ImportWizard.so kde-akonadimime_PORT= net/akonadi-mime kde-akonadimime_LIB= libKPim${_KDE_VERSION}AkonadiMime.so kde-akonadicalendar_PORT= net/akonadi-calendar kde-akonadicalendar_LIB= libKPim${_KDE_VERSION}AkonadiCalendar.so kde-akonadisearch_PORT= net/akonadi-search kde-akonadisearch_LIB= libKPim${_KDE_VERSION}AkonadiSearchCore.so kde-calendarsupport_PORT= net/calendarsupport kde-calendarsupport_LIB= libKPim${_KDE_VERSION}CalendarSupport.so kde-calendarutils_PORT= net/kcalutils kde-calendarutils_LIB= libKPim${_KDE_VERSION}CalendarUtils.so kde-eventviews_PORT= net/eventviews kde-eventviews_LIB= libKPim${_KDE_VERSION}EventViews.so kde-gapi_PORT= net/libkgapi kde-gapi_LIB= libKPim${_KDE_VERSION}GAPIBlogger.so kde-grantleetheme_PORT= deskutils/grantleetheme kde-grantleetheme_LIB= libKPim${_KDE_VERSION}GrantleeTheme.so kde-gravatar_PORT= net/libgravatar kde-gravatar_LIB= libKPim${_KDE_VERSION}Gravatar.so kde-identitymanagement_PORT= net/kidentitymanagement kde-identitymanagement_LIB= libKPim${_KDE_VERSION}IdentityManagementCore.so kde-imap_PORT= net/kimap kde-imap_LIB= libKPim${_KDE_VERSION}IMAP.so kde-incidenceeditor_PORT= net/incidenceeditor kde-incidenceeditor_LIB= libKPim${_KDE_VERSION}IncidenceEditor.so kde-kdepim-addons_PORT= deskutils/kdepim-addons kde-kdepim-addons_PATH= ${QT_PLUGINDIR}/pim${_KDE_VERSION}/contacteditor/editorpageplugins/cryptopageplugin.so kde-kdepim-runtime_PORT= deskutils/kdepim-runtime kde-kdepim-runtime_PATH= ${KDE_PREFIX}/bin/gidmigrator kde-kitinerary_PORT= net/kitinerary kde-kitinerary_LIB= libKPim${_KDE_VERSION}Itinerary.so kde-kontactinterface_PORT= net/kontactinterface kde-kontactinterface_LIB= libKPim${_KDE_VERSION}KontactInterface.so kde-kpkpass_PORT= security/kpkpass kde-kpkpass_LIB= libKPim${_KDE_VERSION}PkPass.so kde-ksmtp_PORT= net/ksmtp kde-ksmtp_LIB= libKPim${_KDE_VERSION}SMTP.so kde-ldap_PORT= net/kldap kde-ldap_LIB= libKPim${_KDE_VERSION}LdapCore.so kde-libkdepim_PORT= deskutils/libkdepim kde-libkdepim_LIB= libKPim${_KDE_VERSION}Libkdepim.so kde-libkleo_PORT= security/libkleo kde-libkleo_LIB= libKPim${_KDE_VERSION}Libkleo.so kde-libksieve_PORT= net/libksieve kde-libksieve_LIB= libKPim${_KDE_VERSION}KSieve.so kde-mailcommon_PORT= net/mailcommon kde-mailcommon_LIB= libKPim${_KDE_VERSION}MailCommon.so kde-mailimporter_PORT= net/mailimporter kde-mailimporter_LIB= libKPim${_KDE_VERSION}MailImporter.so kde-mailtransport_PORT= net/kmailtransport kde-mailtransport_LIB= libKPim${_KDE_VERSION}MailTransport.so kde-mbox_PORT= net/kmbox kde-mbox_LIB= libKPim${_KDE_VERSION}Mbox.so kde-messagelib_PORT= net/messagelib kde-messagelib_LIB= libKPim${_KDE_VERSION}MessageList.so kde-mime_PORT= net/kmime kde-mime_LIB= libKPim${_KDE_VERSION}Mime.so kde-pimcommon_PORT= net/pimcommon kde-pimcommon_LIB= libKPim${_KDE_VERSION}PimCommon.so kde-pimtextedit_PORT= net/kpimtextedit kde-pimtextedit_LIB= libKPim${_KDE_VERSION}TextEdit.so kde-tnef_PORT= net/ktnef kde-tnef_LIB= libKPim${_KDE_VERSION}Tnef.so kde-ktextaddons_PORT= devel/ktextaddons kde-ktextaddons_LIB= libKF${_KDE_VERSION}TextAutoCorrectionCore.so # PIM Applications kde-akonadiconsole_PORT= deskutils/akonadiconsole kde-akonadiconsole_PATH= ${KDE_PREFIX}/bin/akonadiconsole kde-akregator_PORT= deskutils/akregator kde-akregator_PATH= ${KDE_PREFIX}/bin/akregator kde-grantlee-editor_PORT= deskutils/grantlee-editor kde-grantlee-editor_PATH= ${KDE_PREFIX}/bin/contactthemeeditor kde-kaddressbook_PORT= deskutils/kaddressbook kde-kaddressbook_PATH= ${KDE_PREFIX}/bin/kaddressbook kde-kalarm_PORT= deskutils/kalarm kde-kalarm_PATH= ${KDE_PREFIX}/bin/kalarm kde-kmail_PORT= deskutils/kmail kde-kmail_PATH= ${KDE_PREFIX}/bin/kmail kde-kmail-account-wizard_PORT= deskutils/kmail-account-wizard kde-kmail-account-wizard_PATH= ${KDE_PREFIX}/bin/accountwizard kde-kontact_PORT= deskutils/kontact kde-kontact_PATH= ${KDE_PREFIX}/bin/kontact kde-korganizer_PORT= deskutils/korganizer kde-korganizer_PATH= ${KDE_PREFIX}/bin/korganizer kde-mbox-importer_PORT= deskutils/mbox-importer kde-mbox-importer_PATH= ${KDE_PREFIX}/bin/mboximporter kde-mimetreeparser_PORT= net/mimetreeparser kde-mimetreeparser_LIB= libKPim${_KDE_VERSION}MimeTreeParserCore.so kde-pim-data-exporter_PORT= deskutils/pim-data-exporter kde-pim-data-exporter_PATH= ${KDE_PREFIX}/bin/pimdataexporter # ====================== end of pim5 components ================================ # ====================== multiversion component ================================ kde-akonadi_PORT= databases/akonadi kde-akonadi_LIB= libKPim${_KDE_VERSION}AkonadiPrivate.so kde-baloo-widgets_PORT= sysutils/baloo-widgets kde-baloo-widgets_LIB= libKF${_KDE_VERSION}BalooWidgets.so kde-libkcddb_PORT= audio/libkcddb kde-libkcddb_LIB= libKCddb${_KDE_VERSION}.so kde-libkdcraw_PORT= graphics/libkdcraw kde-libkdcraw_LIB= libKDcrawQt6.so kde-libkdegames_PORT= games/libkdegames kde-libkdegames_LIB= libKDEGames${_KDE_VERSION}.so kde-libkeduvocdocument_PORT= misc/libkeduvocdocument kde-libkeduvocdocument_LIB= libKEduVocDocument.so kde-libkexiv2_PORT= graphics/libkexiv2 kde-libkexiv2_LIB= libKExiv2Qt6.so kde-libksane_PORT= graphics/libksane kde-libksane_LIB= libKSaneWidgets${_KDE_VERSION}.so kde-marble_PORT= astro/marble kde-marble_LIB= libmarblewidget-qt6.so kde-kpublictransport_PORT= devel/kpublictransport kde-kpublictransport_LIB= libKPublicTransport.so kde-kosm_PORT= astro/kosmindoormap kde-kosm_LIB= libKOSM.so kde-okular_PORT= graphics/okular kde-okular_LIB= libOkular${_KDE_VERSION}Core.so kde-phonon_PORT= multimedia/phonon@${_QT_RELNAME} kde-phonon_LIB= libphonon4${_QT_RELNAME}.so kde-phonon-mpv_PORT= multimedia/phonon-mpv kde-phonon-mpv_PATH= ${QT_PLUGINDIR}/phonon4${_QT_RELNAME}_backend/phonon_mpv_${_QT_RELNAME}.so kde-phonon-mpv_TYPE= run kde-phonon-vlc_PORT= multimedia/phonon-vlc@${_QT_RELNAME} kde-phonon-vlc_PATH= ${QT_PLUGINDIR}/phonon4${_QT_RELNAME}_backend/phonon_vlc_${_QT_RELNAME}.so kde-phonon-vlc_TYPE= run # ====================== end of multiversion components ======================== # end of component list ######################################################## _USE_KDE_ALL= ${_USE_${_KDE_RELNAME}_ALL} # Iterate through components deprived of suffix. . for component in ${USE_KDE:O:u:C/:.+//} # Check that the component is valid. . if ${_USE_KDE_ALL:M${component}} != "" # Skip meta-components (currently none). . if defined(kde-${component}_PORT) && (defined(kde-${component}_PATH) || defined(kde-${component}_LIB)) # Check if a dependency type is explicitly requested. . if ${USE_KDE:M${component}\:*} != "" && ${USE_KDE:M${component}} == "" kde-${component}_TYPE= # empty . if ${USE_KDE:M${component}\:build} != "" kde-${component}_TYPE+= build . endif . if ${USE_KDE:M${component}\:run} != "" kde-${component}_TYPE+= run . endif . endif # ${USE_KDE:M${component}_*} != "" && ${USE_KDE:M${component}} == "" # If no dependency type is set, default to full dependency. . if !defined(kde-${component}_TYPE) kde-${component}_TYPE= build run . endif # Set real dependencies. . if defined(kde-${component}_LIB) && ${kde-${component}_TYPE:Mbuild} && ${kde-${component}_TYPE:Mrun} LIB_DEPENDS+= ${kde-${component}_LIB}:${kde-${component}_PORT} . else kde-${component}_PATH?= ${KDE_PREFIX}/lib/${kde-${component}_LIB} kde-${component}_DEPENDS= ${kde-${component}_PATH}:${kde-${component}_PORT} . if ${kde-${component}_TYPE:Mbuild} != "" BUILD_DEPENDS+= ${kde-${component}_DEPENDS} . endif . if ${kde-${component}_TYPE:Mrun} != "" RUN_DEPENDS+= ${kde-${component}_DEPENDS} . endif . endif # ${kde-${component}_LIB} && ${kde-${component}_TYPE:Mbuild} && ${kde-${component}_TYPE:Mrun} . endif # defined(kde-${component}_PORT) && defined(kde-${component}_PATH) . else # ! ${_USE_KDE_ALL:M${component}} != "" IGNORE= cannot be installed: unknown USE_KDE component '${component}' . endif # ${_USE_KDE_ALL:M${component}} != "" . endfor . endif .endif diff --git a/audio/plasma6-kpipewire/distinfo b/audio/plasma6-kpipewire/distinfo index 5dd23e1a0a07..a9d4e941ec9c 100644 --- a/audio/plasma6-kpipewire/distinfo +++ b/audio/plasma6-kpipewire/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1778603241 -SHA256 (KDE/plasma/6.6.5/kpipewire-6.6.5.tar.xz) = 7aed7f721c5ba05f20812ea8cde047dcc6e3375ba521bbddd82c25915abf334d -SIZE (KDE/plasma/6.6.5/kpipewire-6.6.5.tar.xz) = 153908 +TIMESTAMP = 1783435803 +SHA256 (KDE/plasma/6.6.6/kpipewire-6.6.6.tar.xz) = a7d5f4d440b0fb4cf185fa26d88e9cbc0ce377444fa7061552361f520f485730 +SIZE (KDE/plasma/6.6.6/kpipewire-6.6.6.tar.xz) = 153808 diff --git a/audio/plasma6-ocean-sound-theme/distinfo b/audio/plasma6-ocean-sound-theme/distinfo index c07179c679ba..85eeb0253cdd 100644 --- a/audio/plasma6-ocean-sound-theme/distinfo +++ b/audio/plasma6-ocean-sound-theme/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1778603242 -SHA256 (KDE/plasma/6.6.5/ocean-sound-theme-6.6.5.tar.xz) = 46b76160e6998e03b3990c669d6da166bd785da356841193eb548b35811dc6df -SIZE (KDE/plasma/6.6.5/ocean-sound-theme-6.6.5.tar.xz) = 2124136 +TIMESTAMP = 1783435804 +SHA256 (KDE/plasma/6.6.6/ocean-sound-theme-6.6.6.tar.xz) = fcb5b87bf748e21257dcdc95a0e2ccb063f9762dab4c5c36a8f5b58e053c9708 +SIZE (KDE/plasma/6.6.6/ocean-sound-theme-6.6.6.tar.xz) = 2124108 diff --git a/audio/plasma6-oxygen-sounds/distinfo b/audio/plasma6-oxygen-sounds/distinfo index d3c5afc0e251..fbcf68891f05 100644 --- a/audio/plasma6-oxygen-sounds/distinfo +++ b/audio/plasma6-oxygen-sounds/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1778603242 -SHA256 (KDE/plasma/6.6.5/oxygen-sounds-6.6.5.tar.xz) = 4c648555fe7ccb9bcf46fb0b4452da85c5821201445eb72ec45b5d95e57942f6 -SIZE (KDE/plasma/6.6.5/oxygen-sounds-6.6.5.tar.xz) = 1935592 +TIMESTAMP = 1783435805 +SHA256 (KDE/plasma/6.6.6/oxygen-sounds-6.6.6.tar.xz) = 915458b8634d64616364b893ac557198969841f8bbce626ddd8e99ae40d21988 +SIZE (KDE/plasma/6.6.6/oxygen-sounds-6.6.6.tar.xz) = 1935440 diff --git a/audio/plasma6-plasma-pa/distinfo b/audio/plasma6-plasma-pa/distinfo index 1ef04400ee5e..b0bfb395f41f 100644 --- a/audio/plasma6-plasma-pa/distinfo +++ b/audio/plasma6-plasma-pa/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1778603244 -SHA256 (KDE/plasma/6.6.5/plasma-pa-6.6.5.tar.xz) = b63c01981ea0d329fd08013eff24b247b60922abe1497be01234660c15cb3826 -SIZE (KDE/plasma/6.6.5/plasma-pa-6.6.5.tar.xz) = 202752 +TIMESTAMP = 1783435808 +SHA256 (KDE/plasma/6.6.6/plasma-pa-6.6.6.tar.xz) = c16fcc68a954ed69d0fe0c8b0a23e306c97512c66b885d0d4dc247aa0419fd4b +SIZE (KDE/plasma/6.6.6/plasma-pa-6.6.6.tar.xz) = 202776 diff --git a/deskutils/plasma6-milou/distinfo b/deskutils/plasma6-milou/distinfo index 72c42bb2db7b..bb89c5d404fc 100644 --- a/deskutils/plasma6-milou/distinfo +++ b/deskutils/plasma6-milou/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1778603245 -SHA256 (KDE/plasma/6.6.5/milou-6.6.5.tar.xz) = 3f6285e5fb6a9dc7634352bb3aff802dc391040e92cd3c7f1b9601dd9d5c54d0 -SIZE (KDE/plasma/6.6.5/milou-6.6.5.tar.xz) = 49940 +TIMESTAMP = 1783435808 +SHA256 (KDE/plasma/6.6.6/milou-6.6.6.tar.xz) = 80144bb3dc2cb135ca9cceb6af962fbb1548ed039f8973dba7f17a915e4170ca +SIZE (KDE/plasma/6.6.6/milou-6.6.6.tar.xz) = 49956 diff --git a/deskutils/plasma6-sddm-kcm/distinfo b/deskutils/plasma6-sddm-kcm/distinfo index 410d40b0f556..b049dc07bed4 100644 --- a/deskutils/plasma6-sddm-kcm/distinfo +++ b/deskutils/plasma6-sddm-kcm/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1778603246 -SHA256 (KDE/plasma/6.6.5/sddm-kcm-6.6.5.tar.xz) = 449811823f1f68add9642eae2127e2aa1f0761cf8ce3c37db7c27e616e8bffd8 -SIZE (KDE/plasma/6.6.5/sddm-kcm-6.6.5.tar.xz) = 105252 +TIMESTAMP = 1783435810 +SHA256 (KDE/plasma/6.6.6/sddm-kcm-6.6.6.tar.xz) = fce3d98d4743ede136be8901bcdb85717f1982744ae71a592261b5307819e14d +SIZE (KDE/plasma/6.6.6/sddm-kcm-6.6.6.tar.xz) = 105248 diff --git a/deskutils/plasma6-xdg-desktop-portal-kde/Makefile b/deskutils/plasma6-xdg-desktop-portal-kde/Makefile index e60989e326a9..cbc9d93f7081 100644 --- a/deskutils/plasma6-xdg-desktop-portal-kde/Makefile +++ b/deskutils/plasma6-xdg-desktop-portal-kde/Makefile @@ -1,25 +1,24 @@ PORTNAME= xdg-desktop-portal-kde DISTVERSION= ${KDE_PLASMA_VERSION} -PORTREVISION= 1 CATEGORIES= deskutils kde kde-plasma MAINTAINER= kde@FreeBSD.org COMMENT= Backend implementation for xdg-desktop-portal that is using Qt/KDE BUILD_DEPENDS= ${LOCALBASE}/include/linux/input-event-codes.h:devel/evdev-proto \ wayland-protocols>=0:graphics/wayland-protocols LIB_DEPENDS= libwayland-client.so:graphics/wayland \ libxkbcommon.so:x11/libxkbcommon RUN_DEPENDS= xdg-desktop-portal>0:deskutils/xdg-desktop-portal USES= cmake gettext gl kde:6 pkgconfig qt:6 tar:xz xorg USE_KDE= bookmarks completion config coreaddons globalaccel guiaddons \ i18n iconthemes itemviews jobwidgets kio kirigami2 \ notifications service solid statusnotifieritem wayland \ widgetsaddons windowsystem \ ecm:build plasma-wayland-protocols:build USE_QT= base declarative wayland USE_XORG= x11 USE_GL= gl opengl .include diff --git a/deskutils/plasma6-xdg-desktop-portal-kde/distinfo b/deskutils/plasma6-xdg-desktop-portal-kde/distinfo index 3c2ca67aeb7d..f2560584c3b6 100644 --- a/deskutils/plasma6-xdg-desktop-portal-kde/distinfo +++ b/deskutils/plasma6-xdg-desktop-portal-kde/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1778603247 -SHA256 (KDE/plasma/6.6.5/xdg-desktop-portal-kde-6.6.5.tar.xz) = 21d699585294064fce7c74dee685c2093ef73dd095797913e68ef14780856b27 -SIZE (KDE/plasma/6.6.5/xdg-desktop-portal-kde-6.6.5.tar.xz) = 229024 +TIMESTAMP = 1783435810 +SHA256 (KDE/plasma/6.6.6/xdg-desktop-portal-kde-6.6.6.tar.xz) = 5015d0346985e0b5d259d656a099a1bb3af8409e6b6241030c2fdfeedacd9e78 +SIZE (KDE/plasma/6.6.6/xdg-desktop-portal-kde-6.6.6.tar.xz) = 229052 diff --git a/devel/plasma6-kwrited/distinfo b/devel/plasma6-kwrited/distinfo index a80236d46699..39c32e591f3c 100644 --- a/devel/plasma6-kwrited/distinfo +++ b/devel/plasma6-kwrited/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1778603248 -SHA256 (KDE/plasma/6.6.5/kwrited-6.6.5.tar.xz) = b9df634be2aa1442d8247d6250a87d7dfb1ccd6f9bcd01c0e62102d5ab6936a7 -SIZE (KDE/plasma/6.6.5/kwrited-6.6.5.tar.xz) = 23500 +TIMESTAMP = 1783435811 +SHA256 (KDE/plasma/6.6.6/kwrited-6.6.6.tar.xz) = 38ed877b80f3cbf69bea3cd6a22245a89b64866a5c2dbaeb8d35a559755d680d +SIZE (KDE/plasma/6.6.6/kwrited-6.6.6.tar.xz) = 23504 diff --git a/devel/plasma6-plasma-sdk/distinfo b/devel/plasma6-plasma-sdk/distinfo index d6fda7a1769b..288e23e33efa 100644 --- a/devel/plasma6-plasma-sdk/distinfo +++ b/devel/plasma6-plasma-sdk/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1778603249 -SHA256 (KDE/plasma/6.6.5/plasma-sdk-6.6.5.tar.xz) = ed540a8bda1a633881fca41f7dfe96ae17c9a654b71374a79e86cf547efcc959 -SIZE (KDE/plasma/6.6.5/plasma-sdk-6.6.5.tar.xz) = 362760 +TIMESTAMP = 1783435812 +SHA256 (KDE/plasma/6.6.6/plasma-sdk-6.6.6.tar.xz) = 4a6e3ca769f7a9137a5193e839b56a77ad7921299c4c90470393fd417e33eaf7 +SIZE (KDE/plasma/6.6.6/plasma-sdk-6.6.6.tar.xz) = 362588 diff --git a/devel/plasma6-plasma5support/distinfo b/devel/plasma6-plasma5support/distinfo index 6a195d685daa..558ed2030942 100644 --- a/devel/plasma6-plasma5support/distinfo +++ b/devel/plasma6-plasma5support/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1778603249 -SHA256 (KDE/plasma/6.6.5/plasma5support-6.6.5.tar.xz) = 5f45687e2d281cdfc0666a0ad777adfcbbbb2534284ca6450d3aa7d700b9f763 -SIZE (KDE/plasma/6.6.5/plasma5support-6.6.5.tar.xz) = 835408 +TIMESTAMP = 1783435813 +SHA256 (KDE/plasma/6.6.6/plasma5support-6.6.6.tar.xz) = 1037f4da0488379679f2b42af699d4fcbe1ff8f280745a05ad868e8978ab40ab +SIZE (KDE/plasma/6.6.6/plasma5support-6.6.6.tar.xz) = 835368 diff --git a/graphics/plasma6-spectacle/distinfo b/graphics/plasma6-spectacle/distinfo index bfc2a35aa2c8..abd73a9d13c2 100644 --- a/graphics/plasma6-spectacle/distinfo +++ b/graphics/plasma6-spectacle/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1778603251 -SHA256 (KDE/plasma/6.6.5/spectacle-6.6.5.tar.xz) = a37df7731a6bc89bc23ac08ad1f995ce9f1efb330f3ebad9bf926dca6ebb5fc7 -SIZE (KDE/plasma/6.6.5/spectacle-6.6.5.tar.xz) = 1609908 +TIMESTAMP = 1783435815 +SHA256 (KDE/plasma/6.6.6/spectacle-6.6.6.tar.xz) = de257c8e53b1a5ee01e8246a39a1a6da5ae44f3820d5fd086e58d0f2290af343 +SIZE (KDE/plasma/6.6.6/spectacle-6.6.6.tar.xz) = 1610072 diff --git a/print/plasma6-print-manager/distinfo b/print/plasma6-print-manager/distinfo index b6ed728fc782..70b1b9b00993 100644 --- a/print/plasma6-print-manager/distinfo +++ b/print/plasma6-print-manager/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1778603253 -SHA256 (KDE/plasma/6.6.5/print-manager-6.6.5.tar.xz) = 65e1e6f559411995c68516f45c5e7b7fc242bfa2b68711e6204b319981a3ae6d -SIZE (KDE/plasma/6.6.5/print-manager-6.6.5.tar.xz) = 386332 +TIMESTAMP = 1783435818 +SHA256 (KDE/plasma/6.6.6/print-manager-6.6.6.tar.xz) = e57bfc3f8a4ea52fdd5a32380889c416c5b551f61028b318b27b0b759308bc71 +SIZE (KDE/plasma/6.6.6/print-manager-6.6.6.tar.xz) = 386360 diff --git a/security/plasma6-kscreenlocker/distinfo b/security/plasma6-kscreenlocker/distinfo index d80d36b7a0ab..643832729ca1 100644 --- a/security/plasma6-kscreenlocker/distinfo +++ b/security/plasma6-kscreenlocker/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1778603254 -SHA256 (KDE/plasma/6.6.5/kscreenlocker-6.6.5.tar.xz) = 9ba0aee32364051eeb213d48dd3c208ae0ce7062190a30f855735ba4efe389cc -SIZE (KDE/plasma/6.6.5/kscreenlocker-6.6.5.tar.xz) = 186664 +TIMESTAMP = 1783435819 +SHA256 (KDE/plasma/6.6.6/kscreenlocker-6.6.6.tar.xz) = 6192ef5fec7d3b088461bf6091d205a402876916db12015e04ffaa1e4ecbba3e +SIZE (KDE/plasma/6.6.6/kscreenlocker-6.6.6.tar.xz) = 186656 diff --git a/security/plasma6-ksshaskpass/distinfo b/security/plasma6-ksshaskpass/distinfo index 23d68b0c6de4..bdc13d744bd9 100644 --- a/security/plasma6-ksshaskpass/distinfo +++ b/security/plasma6-ksshaskpass/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1778603255 -SHA256 (KDE/plasma/6.6.5/ksshaskpass-6.6.5.tar.xz) = b0e88a2546a39a269578eedef5ea28149a719a7ac9757019e9ff3f9254d75a42 -SIZE (KDE/plasma/6.6.5/ksshaskpass-6.6.5.tar.xz) = 32472 +TIMESTAMP = 1783435820 +SHA256 (KDE/plasma/6.6.6/ksshaskpass-6.6.6.tar.xz) = 210a1abd73bc8bd4ee60bdf585665b67ff1342140945c90f4c5accad6e6feb74 +SIZE (KDE/plasma/6.6.6/ksshaskpass-6.6.6.tar.xz) = 32528 diff --git a/security/plasma6-kwallet-pam/distinfo b/security/plasma6-kwallet-pam/distinfo index 408e482d4d63..7683c2816ef1 100644 --- a/security/plasma6-kwallet-pam/distinfo +++ b/security/plasma6-kwallet-pam/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1778603255 -SHA256 (KDE/plasma/6.6.5/kwallet-pam-6.6.5.tar.xz) = 5434a50f421867fc11190389bdebc43404b64cadcc7d87b1f08ff95ef199853e -SIZE (KDE/plasma/6.6.5/kwallet-pam-6.6.5.tar.xz) = 22368 +TIMESTAMP = 1783435820 +SHA256 (KDE/plasma/6.6.6/kwallet-pam-6.6.6.tar.xz) = 16e5355c6e33c9ea5fa137233f7a0db845cb16d010842bf45559c450acfc3536 +SIZE (KDE/plasma/6.6.6/kwallet-pam-6.6.6.tar.xz) = 22376 diff --git a/sysutils/plasma6-discover/distinfo b/sysutils/plasma6-discover/distinfo index aefc203b0d5f..2d14c100cd9e 100644 --- a/sysutils/plasma6-discover/distinfo +++ b/sysutils/plasma6-discover/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1778603257 -SHA256 (KDE/plasma/6.6.5/discover-6.6.5.tar.xz) = 0d1471adf4b0b3bf92ac93225e2e4860493677f3fb9a02dbf44b193ae7c15357 -SIZE (KDE/plasma/6.6.5/discover-6.6.5.tar.xz) = 1147380 +TIMESTAMP = 1783435824 +SHA256 (KDE/plasma/6.6.6/discover-6.6.6.tar.xz) = 7c571dc9641696e9486c5e3aaada1d10d9db866da060e6d19314b4c6bc47c179 +SIZE (KDE/plasma/6.6.6/discover-6.6.6.tar.xz) = 1147420 diff --git a/sysutils/plasma6-kde-cli-tools/distinfo b/sysutils/plasma6-kde-cli-tools/distinfo index 0131634ee48a..6d0f260d2af8 100644 --- a/sysutils/plasma6-kde-cli-tools/distinfo +++ b/sysutils/plasma6-kde-cli-tools/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1778603258 -SHA256 (KDE/plasma/6.6.5/kde-cli-tools-6.6.5.tar.xz) = 17eca02cf3d50d266c85f444bfef3b7c1c07a59b2cdebf6ca24e6fd81b80d122 -SIZE (KDE/plasma/6.6.5/kde-cli-tools-6.6.5.tar.xz) = 637860 +TIMESTAMP = 1783435824 +SHA256 (KDE/plasma/6.6.6/kde-cli-tools-6.6.6.tar.xz) = 054df0281b687bb89d48bdcf71e2268e3acf083977103f30a44fca4bca1a2f14 +SIZE (KDE/plasma/6.6.6/kde-cli-tools-6.6.6.tar.xz) = 637668 diff --git a/sysutils/plasma6-kinfocenter/distinfo b/sysutils/plasma6-kinfocenter/distinfo index 7d3bf2b9bbdb..2efb0c3cf9a0 100644 --- a/sysutils/plasma6-kinfocenter/distinfo +++ b/sysutils/plasma6-kinfocenter/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1778603259 -SHA256 (KDE/plasma/6.6.5/kinfocenter-6.6.5.tar.xz) = 9b777f870f120939e374215ce2ced389571d4bdeb4f6f0092c908b8c2e0c2fd6 -SIZE (KDE/plasma/6.6.5/kinfocenter-6.6.5.tar.xz) = 763716 +TIMESTAMP = 1783435825 +SHA256 (KDE/plasma/6.6.6/kinfocenter-6.6.6.tar.xz) = f4b52a7509653ec2c55c28d8e4a8216d9ddf26b038f0595fafb58c05b9b39894 +SIZE (KDE/plasma/6.6.6/kinfocenter-6.6.6.tar.xz) = 763760 diff --git a/sysutils/plasma6-kmenuedit/distinfo b/sysutils/plasma6-kmenuedit/distinfo index 39ca4f284b9c..ba78b3df44bd 100644 --- a/sysutils/plasma6-kmenuedit/distinfo +++ b/sysutils/plasma6-kmenuedit/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1778603259 -SHA256 (KDE/plasma/6.6.5/kmenuedit-6.6.5.tar.xz) = 1c24f15e13d16ad9c0643ea2a0849420329fd10b62fd262b48cdade678274828 -SIZE (KDE/plasma/6.6.5/kmenuedit-6.6.5.tar.xz) = 887596 +TIMESTAMP = 1783435826 +SHA256 (KDE/plasma/6.6.6/kmenuedit-6.6.6.tar.xz) = ae8e76977c54acb82756663b8667ea402aa28b4781e7c40f32353e10abea5a2c +SIZE (KDE/plasma/6.6.6/kmenuedit-6.6.6.tar.xz) = 887580 diff --git a/sysutils/plasma6-knighttime/distinfo b/sysutils/plasma6-knighttime/distinfo index 045fb4a4edc3..aa1571346bc8 100644 --- a/sysutils/plasma6-knighttime/distinfo +++ b/sysutils/plasma6-knighttime/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1778603260 -SHA256 (KDE/plasma/6.6.5/knighttime-6.6.5.tar.xz) = 5f26692a864540b993351106f5469fd17939bd55e79f931c8f97395d9c5a809d -SIZE (KDE/plasma/6.6.5/knighttime-6.6.5.tar.xz) = 40284 +TIMESTAMP = 1783435827 +SHA256 (KDE/plasma/6.6.6/knighttime-6.6.6.tar.xz) = 14e64b34157d256b5e5c261c4888120b8401562545e0e5bb738895d665d5ac93 +SIZE (KDE/plasma/6.6.6/knighttime-6.6.6.tar.xz) = 40316 diff --git a/sysutils/plasma6-ksystemstats/Makefile b/sysutils/plasma6-ksystemstats/Makefile index f55aab85afdb..46fc36be79c1 100644 --- a/sysutils/plasma6-ksystemstats/Makefile +++ b/sysutils/plasma6-ksystemstats/Makefile @@ -1,19 +1,18 @@ PORTNAME= ksystemstats DISTVERSION= ${KDE_PLASMA_VERSION} -PORTREVISION= 1 CATEGORIES= sysutils kde kde-plasma MAINTAINER= kde@FreeBSD.org COMMENT= Plugin based system monitoring daemon LIB_DEPENDS= libudev.so:devel/libudev-devd USES= cmake gettext gl kde:6 qt:6 tar:xz USE_GL= gl opengl USE_KDE= coreaddons dbusaddons i18n kio libksysguard solid \ ecm:build USE_QT= base CMAKE_ON= CMAKE_DISABLE_FIND_PACKAGE_KF6NetworkManagerQt .include diff --git a/sysutils/plasma6-ksystemstats/distinfo b/sysutils/plasma6-ksystemstats/distinfo index 98d16db87871..2f1439f8229d 100644 --- a/sysutils/plasma6-ksystemstats/distinfo +++ b/sysutils/plasma6-ksystemstats/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1778603261 -SHA256 (KDE/plasma/6.6.5/ksystemstats-6.6.5.tar.xz) = 6b5e2f2a6aaae97489e75818e7f83c2586578022760821c677cdebcefa542e36 -SIZE (KDE/plasma/6.6.5/ksystemstats-6.6.5.tar.xz) = 160516 +TIMESTAMP = 1783435828 +SHA256 (KDE/plasma/6.6.6/ksystemstats-6.6.6.tar.xz) = a18924429810c4e1394516f8d4489f1cc4732bd3b452b0c3b0967f37d1c603fa +SIZE (KDE/plasma/6.6.6/ksystemstats-6.6.6.tar.xz) = 160564 diff --git a/sysutils/plasma6-libksysguard/distinfo b/sysutils/plasma6-libksysguard/distinfo index 355dbfe3021c..f988c8acf29a 100644 --- a/sysutils/plasma6-libksysguard/distinfo +++ b/sysutils/plasma6-libksysguard/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1778603261 -SHA256 (KDE/plasma/6.6.5/libksysguard-6.6.5.tar.xz) = f088854a021028b7b0f6a735c89e9aa53bd13e903af11ed16a49c944e33b00df -SIZE (KDE/plasma/6.6.5/libksysguard-6.6.5.tar.xz) = 337696 +TIMESTAMP = 1783435829 +SHA256 (KDE/plasma/6.6.6/libksysguard-6.6.6.tar.xz) = a423bac4bceef0c5a42957e7ea153b5395b55b62848cb4f40e098e1d263fc366 +SIZE (KDE/plasma/6.6.6/libksysguard-6.6.6.tar.xz) = 337732 diff --git a/sysutils/plasma6-plasma-disks/distinfo b/sysutils/plasma6-plasma-disks/distinfo index e7dcc610f815..91c3ebe0cea4 100644 --- a/sysutils/plasma6-plasma-disks/distinfo +++ b/sysutils/plasma6-plasma-disks/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1778603262 -SHA256 (KDE/plasma/6.6.5/plasma-disks-6.6.5.tar.xz) = 660609a1f489c197d35419aeacbc08ec724c5e13538a736eb3d81ac331b9f639 -SIZE (KDE/plasma/6.6.5/plasma-disks-6.6.5.tar.xz) = 107588 +TIMESTAMP = 1783435830 +SHA256 (KDE/plasma/6.6.6/plasma-disks-6.6.6.tar.xz) = 50de3e3bcee5f02fd61d91e8c4c450c1785c3323259cb64389131d18e781a67d +SIZE (KDE/plasma/6.6.6/plasma-disks-6.6.6.tar.xz) = 107624 diff --git a/sysutils/plasma6-plasma-systemmonitor/distinfo b/sysutils/plasma6-plasma-systemmonitor/distinfo index 1dd95e1b5de3..15a2d8dd000f 100644 --- a/sysutils/plasma6-plasma-systemmonitor/distinfo +++ b/sysutils/plasma6-plasma-systemmonitor/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1778603263 -SHA256 (KDE/plasma/6.6.5/plasma-systemmonitor-6.6.5.tar.xz) = b6ebf7c1e6f7a42c91a0b511971fd67041d4d9b617edc3a4fc0b08af4a0ec78f -SIZE (KDE/plasma/6.6.5/plasma-systemmonitor-6.6.5.tar.xz) = 239128 +TIMESTAMP = 1783435831 +SHA256 (KDE/plasma/6.6.6/plasma-systemmonitor-6.6.6.tar.xz) = 711287978a280985f74042ac6108d1b66cc82545ac6a7cc26ccc1397978372a1 +SIZE (KDE/plasma/6.6.6/plasma-systemmonitor-6.6.6.tar.xz) = 239124 diff --git a/sysutils/plasma6-polkit-kde-agent-1/distinfo b/sysutils/plasma6-polkit-kde-agent-1/distinfo index 09bfde56ab15..c9db5da88d40 100644 --- a/sysutils/plasma6-polkit-kde-agent-1/distinfo +++ b/sysutils/plasma6-polkit-kde-agent-1/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1778603263 -SHA256 (KDE/plasma/6.6.5/polkit-kde-agent-1-6.6.5.tar.xz) = 91990b9cd13f205a9963f88fe605942b9e8b6ee9e9103431216bf511944ce127 -SIZE (KDE/plasma/6.6.5/polkit-kde-agent-1-6.6.5.tar.xz) = 57332 +TIMESTAMP = 1783435832 +SHA256 (KDE/plasma/6.6.6/polkit-kde-agent-1-6.6.6.tar.xz) = 25e4fbe3c8ed8648369e8efed2bcf9d3630bcd154cbc9df13b5000fd337b0742 +SIZE (KDE/plasma/6.6.6/polkit-kde-agent-1-6.6.6.tar.xz) = 57344 diff --git a/sysutils/plasma6-powerdevil/distinfo b/sysutils/plasma6-powerdevil/distinfo index a11f4880f46b..f7b2b70884c5 100644 --- a/sysutils/plasma6-powerdevil/distinfo +++ b/sysutils/plasma6-powerdevil/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1778603264 -SHA256 (KDE/plasma/6.6.5/powerdevil-6.6.5.tar.xz) = b125f64e73cc8dcf9e3e7e3f154f4febb4406426597cad6ebbe8c48332e35e7b -SIZE (KDE/plasma/6.6.5/powerdevil-6.6.5.tar.xz) = 1252336 +TIMESTAMP = 1783435833 +SHA256 (KDE/plasma/6.6.6/powerdevil-6.6.6.tar.xz) = 18f2e1aa3b49848d9ba3ad38f1097090424edb3b17a474d2da3b81fb2e083e17 +SIZE (KDE/plasma/6.6.6/powerdevil-6.6.6.tar.xz) = 1252384 diff --git a/sysutils/plasma6-systemsettings/distinfo b/sysutils/plasma6-systemsettings/distinfo index 1a296c627acf..29380a9021b7 100644 --- a/sysutils/plasma6-systemsettings/distinfo +++ b/sysutils/plasma6-systemsettings/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1778603265 -SHA256 (KDE/plasma/6.6.5/systemsettings-6.6.5.tar.xz) = 61334eff64567ad209e279f60c6d1ab13b670f9a300fde9480fe93596232a986 -SIZE (KDE/plasma/6.6.5/systemsettings-6.6.5.tar.xz) = 222020 +TIMESTAMP = 1783435834 +SHA256 (KDE/plasma/6.6.6/systemsettings-6.6.6.tar.xz) = f3fff49edaa2a9ebd1fb4800fd1653824dee254dcc08e491cbaa343c5312bbfe +SIZE (KDE/plasma/6.6.6/systemsettings-6.6.6.tar.xz) = 221968 diff --git a/www/plasma6-plasma-browser-integration/distinfo b/www/plasma6-plasma-browser-integration/distinfo index 3b3e1774edc6..8853deda2b44 100644 --- a/www/plasma6-plasma-browser-integration/distinfo +++ b/www/plasma6-plasma-browser-integration/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1778603265 -SHA256 (KDE/plasma/6.6.5/plasma-browser-integration-6.6.5.tar.xz) = 3c54bf15cd70c48f26bb65e6d787a013a86f2375d8fefd2c0acab650b37846f9 -SIZE (KDE/plasma/6.6.5/plasma-browser-integration-6.6.5.tar.xz) = 240248 +TIMESTAMP = 1783435835 +SHA256 (KDE/plasma/6.6.6/plasma-browser-integration-6.6.6.tar.xz) = 0dd880b0d632b9d8b35d27125f2588cd7b43af039cf9c8c0f217da5c086b2c71 +SIZE (KDE/plasma/6.6.6/plasma-browser-integration-6.6.6.tar.xz) = 240252 diff --git a/x11-themes/plasma6-aurorae/distinfo b/x11-themes/plasma6-aurorae/distinfo index be0cebe06601..f5390af8a207 100644 --- a/x11-themes/plasma6-aurorae/distinfo +++ b/x11-themes/plasma6-aurorae/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1778603266 -SHA256 (KDE/plasma/6.6.5/aurorae-6.6.5.tar.xz) = e7c3de710a75f99df8c4f80a741e3d1e90e5c5cadae44a3d180861d0f5c9dcf9 -SIZE (KDE/plasma/6.6.5/aurorae-6.6.5.tar.xz) = 66528 +TIMESTAMP = 1783435836 +SHA256 (KDE/plasma/6.6.6/aurorae-6.6.6.tar.xz) = 5b1b3a89d763de3048ca15386ee8a0dca7c1db6a822b3b08c8357c5273f56eee +SIZE (KDE/plasma/6.6.6/aurorae-6.6.6.tar.xz) = 66660 diff --git a/x11-themes/plasma6-breeze-gtk/distinfo b/x11-themes/plasma6-breeze-gtk/distinfo index 67b6af3acfa9..8542dbed450b 100644 --- a/x11-themes/plasma6-breeze-gtk/distinfo +++ b/x11-themes/plasma6-breeze-gtk/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1778603268 -SHA256 (KDE/plasma/6.6.5/breeze-gtk-6.6.5.tar.xz) = 76caad4ca2e3ce8b02ae1ebe0c068101bb07db51da47f88fa3a40cdce393abf6 -SIZE (KDE/plasma/6.6.5/breeze-gtk-6.6.5.tar.xz) = 40796 +TIMESTAMP = 1783435853 +SHA256 (KDE/plasma/6.6.6/breeze-gtk-6.6.6.tar.xz) = 10ae66b5e36b0579e290f307dfeaa65dbb1f531e78a23b0a764d1a43871f141d +SIZE (KDE/plasma/6.6.6/breeze-gtk-6.6.6.tar.xz) = 40784 diff --git a/x11-themes/plasma6-breeze/distinfo b/x11-themes/plasma6-breeze/distinfo index da32363d2e5c..8da14cdcbcc0 100644 --- a/x11-themes/plasma6-breeze/distinfo +++ b/x11-themes/plasma6-breeze/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1778603267 -SHA256 (KDE/plasma/6.6.5/breeze-6.6.5.tar.xz) = 06c4c3e466cd03a8c1e411a38b04756b6e145879a560534b2fc44666d41330f4 -SIZE (KDE/plasma/6.6.5/breeze-6.6.5.tar.xz) = 42473388 +TIMESTAMP = 1783435852 +SHA256 (KDE/plasma/6.6.6/breeze-6.6.6.tar.xz) = cb47a18baa4a9e92038cd099ac17a637019a905d5570e0a477a0f8c51e539699 +SIZE (KDE/plasma/6.6.6/breeze-6.6.6.tar.xz) = 42473064 diff --git a/x11-themes/plasma6-kde-gtk-config/distinfo b/x11-themes/plasma6-kde-gtk-config/distinfo index f92b42ed20cf..f60264e702e5 100644 --- a/x11-themes/plasma6-kde-gtk-config/distinfo +++ b/x11-themes/plasma6-kde-gtk-config/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1778603269 -SHA256 (KDE/plasma/6.6.5/kde-gtk-config-6.6.5.tar.xz) = 2902a012ba85d2d201f879d17f0b4f51910e43a1cb0d761788b063b0c17d7b10 -SIZE (KDE/plasma/6.6.5/kde-gtk-config-6.6.5.tar.xz) = 79196 +TIMESTAMP = 1783435854 +SHA256 (KDE/plasma/6.6.6/kde-gtk-config-6.6.6.tar.xz) = 242bf21195bcf2afad2d6b36c47aab4ff9af67547b43cce8ae038c46a92e19e7 +SIZE (KDE/plasma/6.6.6/kde-gtk-config-6.6.6.tar.xz) = 79200 diff --git a/x11-themes/plasma6-oxygen/distinfo b/x11-themes/plasma6-oxygen/distinfo index b00f482b75a3..72f7d2dfc767 100644 --- a/x11-themes/plasma6-oxygen/distinfo +++ b/x11-themes/plasma6-oxygen/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1778603269 -SHA256 (KDE/plasma/6.6.5/oxygen-6.6.5.tar.xz) = 40348c7beb911ec61cb96c4cbb5ea2e611e189faf4e4c9d2b29813bc28f72b4a -SIZE (KDE/plasma/6.6.5/oxygen-6.6.5.tar.xz) = 2974268 +TIMESTAMP = 1783435858 +SHA256 (KDE/plasma/6.6.6/oxygen-6.6.6.tar.xz) = 5a3d4de313528920a8fa01a6f462d943fddee46be99ede34a62f8161c3f2c030 +SIZE (KDE/plasma/6.6.6/oxygen-6.6.6.tar.xz) = 2971096 diff --git a/x11-themes/plasma6-plasma-workspace-wallpapers/distinfo b/x11-themes/plasma6-plasma-workspace-wallpapers/distinfo index 1d725b33d2f0..6de5f5591e0c 100644 --- a/x11-themes/plasma6-plasma-workspace-wallpapers/distinfo +++ b/x11-themes/plasma6-plasma-workspace-wallpapers/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1778603280 -SHA256 (KDE/plasma/6.6.5/plasma-workspace-wallpapers-6.6.5.tar.xz) = 4a021dbda761da7aaf7192e8d038aa1f2305a576a57f2384f54bc8ed90731418 -SIZE (KDE/plasma/6.6.5/plasma-workspace-wallpapers-6.6.5.tar.xz) = 226402604 +TIMESTAMP = 1783435875 +SHA256 (KDE/plasma/6.6.6/plasma-workspace-wallpapers-6.6.6.tar.xz) = ffd2e4a31e2c88767abb7334b06b7b8460fa23cab54a4eaa8f516c22b1c4a1b5 +SIZE (KDE/plasma/6.6.6/plasma-workspace-wallpapers-6.6.6.tar.xz) = 226402020 diff --git a/x11-themes/plasma6-qqc2-breeze-style/distinfo b/x11-themes/plasma6-qqc2-breeze-style/distinfo index d03086a4e9ee..9da329fc35c0 100644 --- a/x11-themes/plasma6-qqc2-breeze-style/distinfo +++ b/x11-themes/plasma6-qqc2-breeze-style/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1778603281 -SHA256 (KDE/plasma/6.6.5/qqc2-breeze-style-6.6.5.tar.xz) = 8d279f966903219721941ea9f41681630dc14fa45769d9c672c57493f6c99603 -SIZE (KDE/plasma/6.6.5/qqc2-breeze-style-6.6.5.tar.xz) = 66192 +TIMESTAMP = 1783435876 +SHA256 (KDE/plasma/6.6.6/qqc2-breeze-style-6.6.6.tar.xz) = 862821ec129eadc0f7b26e6cfe09dff3c1f188899df5d3449192a64e524b2ac3 +SIZE (KDE/plasma/6.6.6/qqc2-breeze-style-6.6.6.tar.xz) = 66176 diff --git a/x11-toolkits/plasma6-kdeplasma-addons/distinfo b/x11-toolkits/plasma6-kdeplasma-addons/distinfo index 4c9d3ac9cfce..38051235a540 100644 --- a/x11-toolkits/plasma6-kdeplasma-addons/distinfo +++ b/x11-toolkits/plasma6-kdeplasma-addons/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1778603281 -SHA256 (KDE/plasma/6.6.5/kdeplasma-addons-6.6.5.tar.xz) = 48fdae7cfaa26042a59027fbe8df83789b172458bc2af0a23a015a04b8071af9 -SIZE (KDE/plasma/6.6.5/kdeplasma-addons-6.6.5.tar.xz) = 1113680 +TIMESTAMP = 1783435878 +SHA256 (KDE/plasma/6.6.6/kdeplasma-addons-6.6.6.tar.xz) = f0cc7cae7cbe187fd4fa235057031cb73e8ef100f22128b004d8daf4d96d9193 +SIZE (KDE/plasma/6.6.6/kdeplasma-addons-6.6.6.tar.xz) = 1114136 diff --git a/x11-wm/plasma6-kdecoration/distinfo b/x11-wm/plasma6-kdecoration/distinfo index 4f00553250ae..684873de86c1 100644 --- a/x11-wm/plasma6-kdecoration/distinfo +++ b/x11-wm/plasma6-kdecoration/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1778603282 -SHA256 (KDE/plasma/6.6.5/kdecoration-6.6.5.tar.xz) = 06e8ed04b8f3cdcd3057a9e2d23291ef41a3976f96fc8cf917479218871aa9fd -SIZE (KDE/plasma/6.6.5/kdecoration-6.6.5.tar.xz) = 61468 +TIMESTAMP = 1783435879 +SHA256 (KDE/plasma/6.6.6/kdecoration-6.6.6.tar.xz) = 90069fa5afa958823ad0cce264f531082360a0d1c5c1948e2bb5aa0887e27646 +SIZE (KDE/plasma/6.6.6/kdecoration-6.6.6.tar.xz) = 61528 diff --git a/x11-wm/plasma6-kwin-x11/Makefile b/x11-wm/plasma6-kwin-x11/Makefile index 9a94ba38d448..7869eb7d7a69 100644 --- a/x11-wm/plasma6-kwin-x11/Makefile +++ b/x11-wm/plasma6-kwin-x11/Makefile @@ -1,45 +1,44 @@ PORTNAME= kwin-x11 DISTVERSION= ${KDE_PLASMA_VERSION} -PORTREVISION= 1 CATEGORIES= x11-wm kde kde-plasma COMMENT= Easy to use, but flexible, X Window Manager MAINTAINER= kde@FreeBSD.org BUILD_DEPENDS= ${LOCALBASE}/include/linux/input.h:devel/evdev-proto \ hwdata>0:misc/hwdata \ wayland-protocols>0:graphics/wayland-protocols LIB_DEPENDS= libdisplay-info.so:sysutils/libdisplay-info \ libdrm.so:graphics/libdrm \ libepoxy.so:graphics/libepoxy \ libfontconfig.so:x11-fonts/fontconfig \ libfreetype.so:print/freetype2 \ liblcms2.so:graphics/lcms2 \ libpipewire-0.3.so:multimedia/pipewire \ libqaccessibilityclient-qt6.so:accessibility/libqaccessibilityclient \ libudev.so:devel/libudev-devd \ libwayland-client.so:graphics/wayland \ libxcb-cursor.so:x11/xcb-util-cursor \ libxcb-icccm.so:x11/xcb-util-wm \ libxcb-keysyms.so:x11/xcb-util-keysyms \ libxkbcommon.so:x11/libxkbcommon RUN_DEPENDS= hwdata>0:misc/hwdata USES= cmake gettext gl kde:6 pkgconfig python qt:6 shebangfix tar:xz \ xorg USE_GL= egl gbm gl opengl USE_KDE= auth breeze colorscheme config \ configwidgets coreaddons crash dbusaddons decoration \ globalaccel globalacceld guiaddons i18n idletime kcmutils \ kdeclarative knighttime kscreenlocker libplasma newstuff \ notifications package runner service svg widgetsaddons \ windowsystem xmlgui \ ecm:build plasma-wayland-protocols:build \ aurorae:run breeze:run USE_QT= base declarative sensors tools wayland USE_XORG= ice sm x11 xcb xext xi BINARY_ALIAS= python3=${PYTHON_CMD} SHEBANG_FILES= src/plugins/strip-effect-metadata.py .include diff --git a/x11-wm/plasma6-kwin-x11/distinfo b/x11-wm/plasma6-kwin-x11/distinfo index f55d092b948d..8af67f834469 100644 --- a/x11-wm/plasma6-kwin-x11/distinfo +++ b/x11-wm/plasma6-kwin-x11/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1778603284 -SHA256 (KDE/plasma/6.6.5/kwin-x11-6.6.5.tar.xz) = d5172772d5b9dd6ef0f3230cb5f8a78df9148dd07019d8f282a0931cad946b24 -SIZE (KDE/plasma/6.6.5/kwin-x11-6.6.5.tar.xz) = 6888164 +TIMESTAMP = 1783435887 +SHA256 (KDE/plasma/6.6.6/kwin-x11-6.6.6.tar.xz) = 7b4e62b9c9271669b3a0a5f868d851ab8101b951794bc923790829705803918c +SIZE (KDE/plasma/6.6.6/kwin-x11-6.6.6.tar.xz) = 6887932 diff --git a/x11-wm/plasma6-kwin/Makefile b/x11-wm/plasma6-kwin/Makefile index 6d96b800e13b..1d88cb6068f1 100644 --- a/x11-wm/plasma6-kwin/Makefile +++ b/x11-wm/plasma6-kwin/Makefile @@ -1,62 +1,61 @@ PORTNAME= kwin DISTVERSION= ${KDE_PLASMA_VERSION} -PORTREVISION= 2 CATEGORIES= x11-wm kde kde-plasma COMMENT= Easy to use, but flexible, Wayland Compositor MAINTAINER= kde@FreeBSD.org BUILD_DEPENDS= ${LOCALBASE}/include/linux/input.h:devel/evdev-proto \ hwdata>0:misc/hwdata \ wayland-protocols>0:graphics/wayland-protocols LIB_DEPENDS= libdisplay-info.so:sysutils/libdisplay-info \ libdrm.so:graphics/libdrm \ libepoxy.so:graphics/libepoxy \ libinput.so:x11/libinput \ liblcms2.so:graphics/lcms2 \ libpipewire-0.3.so:multimedia/pipewire \ libqaccessibilityclient-qt6.so:accessibility/libqaccessibilityclient \ libudev.so:devel/libudev-devd \ libwayland-client.so:graphics/wayland \ libxcb-icccm.so:x11/xcb-util-wm \ libxcb-keysyms.so:x11/xcb-util-keysyms \ libxcvt.so:x11/libxcvt \ libxkbcommon.so:x11/libxkbcommon RUN_DEPENDS= hwdata>0:misc/hwdata \ Xwayland:x11-servers/xwayland USES= cmake gettext gl kde:6 pkgconfig python qt:6 shebangfix tar:xz \ xorg USE_GL= egl gbm gl opengl USE_KDE= auth colorscheme config \ coreaddons crash dbusaddons decoration \ globalaccel globalacceld guiaddons holidays i18n idletime kcmutils \ kdeclarative knighttime kpipewire kscreenlocker libplasma newstuff \ notifications package runner service svg wayland widgetsaddons \ windowsystem xmlgui \ ecm:build plasma-wayland-protocols:build \ aurorae:run breeze:run USE_QT= base declarative multimedia sensors tools wayland USE_XORG= ice sm x11 xcb xext xi DATADIR= ${PREFIX}/share/kwin-wayland BINARY_ALIAS= python3=${PYTHON_CMD} SHEBANG_FILES= src/plugins/strip-effect-metadata.py CONFLICTS_INSTALL= theseus-ship # bin/kwin_wayland OPTIONS_DEFINE= EI OPTIONS_DEFAULT= EI OPTIONS_SUB= yes EI_DESC= Emulated input for Wayland EI_LIB_DEPENDS= libei.so:x11/libei EI_CMAKE_BOOL= KWIN_BUILD_EIS .include .if ${OPSYS} == FreeBSD && ${OSVERSION} < 1500050 LIB_DEPENDS+= libinotify.so.0:devel/libinotify .endif .include diff --git a/x11-wm/plasma6-kwin/distinfo b/x11-wm/plasma6-kwin/distinfo index 5d7e6a43d336..8ddabb9966c5 100644 --- a/x11-wm/plasma6-kwin/distinfo +++ b/x11-wm/plasma6-kwin/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1778603283 -SHA256 (KDE/plasma/6.6.5/kwin-6.6.5.tar.xz) = 6c187ce7a5506090b438ef900103836fa0537674dde8b31e5b497ef321643cb4 -SIZE (KDE/plasma/6.6.5/kwin-6.6.5.tar.xz) = 8887468 +TIMESTAMP = 1783435880 +SHA256 (KDE/plasma/6.6.6/kwin-6.6.6.tar.xz) = 76314bb5053943003c089bd8997b159c70a8bc35ba87dc3a10885ade8f561953 +SIZE (KDE/plasma/6.6.6/kwin-6.6.6.tar.xz) = 8890212 diff --git a/x11/plasma6-kactivitymanagerd/distinfo b/x11/plasma6-kactivitymanagerd/distinfo index 102903357d01..89e87c3f8325 100644 --- a/x11/plasma6-kactivitymanagerd/distinfo +++ b/x11/plasma6-kactivitymanagerd/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1778603284 -SHA256 (KDE/plasma/6.6.5/kactivitymanagerd-6.6.5.tar.xz) = 859bb8e7a6efb4210a82512abec4d7b6ea9ac6f883a2b1db4d3de5ca11452224 -SIZE (KDE/plasma/6.6.5/kactivitymanagerd-6.6.5.tar.xz) = 98788 +TIMESTAMP = 1783435888 +SHA256 (KDE/plasma/6.6.6/kactivitymanagerd-6.6.6.tar.xz) = eab7d1743f8052f5a54b04e38e803732d5fbdc463bf0f28dda18820259fc609e +SIZE (KDE/plasma/6.6.6/kactivitymanagerd-6.6.6.tar.xz) = 98892 diff --git a/x11/plasma6-kgamma/distinfo b/x11/plasma6-kgamma/distinfo index 54a3cc42cdbe..a296740c0074 100644 --- a/x11/plasma6-kgamma/distinfo +++ b/x11/plasma6-kgamma/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1778603285 -SHA256 (KDE/plasma/6.6.5/kgamma-6.6.5.tar.xz) = fab70445c88c98ce907e896d8c71cbf7771044880b5ef116fee969863e53360a -SIZE (KDE/plasma/6.6.5/kgamma-6.6.5.tar.xz) = 87212 +TIMESTAMP = 1783435889 +SHA256 (KDE/plasma/6.6.6/kgamma-6.6.6.tar.xz) = 971c5494f34bed79f400fadae2a62e610f2192d69f8751f8190a6e0ac3512258 +SIZE (KDE/plasma/6.6.6/kgamma-6.6.6.tar.xz) = 87244 diff --git a/x11/plasma6-kglobalacceld/distinfo b/x11/plasma6-kglobalacceld/distinfo index 4d025467dad5..df4aca03a805 100644 --- a/x11/plasma6-kglobalacceld/distinfo +++ b/x11/plasma6-kglobalacceld/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1778603286 -SHA256 (KDE/plasma/6.6.5/kglobalacceld-6.6.5.tar.xz) = 33c95fb7b3cddab5766e0cb063a721af5f796b2841114183a6246e0ef557edc3 -SIZE (KDE/plasma/6.6.5/kglobalacceld-6.6.5.tar.xz) = 57780 +TIMESTAMP = 1783435889 +SHA256 (KDE/plasma/6.6.6/kglobalacceld-6.6.6.tar.xz) = 5ae182caece0c09637ecdf3288cc078f59f582fd011a9ca9cca421d453d90f4e +SIZE (KDE/plasma/6.6.6/kglobalacceld-6.6.6.tar.xz) = 57780 diff --git a/x11/plasma6-kscreen/distinfo b/x11/plasma6-kscreen/distinfo index 357da695360b..ba176ee9b1a7 100644 --- a/x11/plasma6-kscreen/distinfo +++ b/x11/plasma6-kscreen/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1778603286 -SHA256 (KDE/plasma/6.6.5/kscreen-6.6.5.tar.xz) = 753ebc00cf75359c2e7ba3aabb20ff3596d0fbbe2f0b6d3ed6098d27282a3276 -SIZE (KDE/plasma/6.6.5/kscreen-6.6.5.tar.xz) = 1749748 +TIMESTAMP = 1783435892 +SHA256 (KDE/plasma/6.6.6/kscreen-6.6.6.tar.xz) = 7b7fc0855951a888c2766f8a1384cc793a9da46346297561a8f7638241c62cac +SIZE (KDE/plasma/6.6.6/kscreen-6.6.6.tar.xz) = 1749684 diff --git a/x11/plasma6-kwayland-integration/distinfo b/x11/plasma6-kwayland-integration/distinfo index 5223f38e2d2a..641b17ba2188 100644 --- a/x11/plasma6-kwayland-integration/distinfo +++ b/x11/plasma6-kwayland-integration/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1778603288 -SHA256 (KDE/plasma/6.6.5/kwayland-integration-6.6.5.tar.xz) = 2720764c73963fe06bd78e2eca329eba61fb625dff6d3dcf4a68ec167766ce6e -SIZE (KDE/plasma/6.6.5/kwayland-integration-6.6.5.tar.xz) = 26448 +TIMESTAMP = 1783435893 +SHA256 (KDE/plasma/6.6.6/kwayland-integration-6.6.6.tar.xz) = 92f9ba06d330640ade6a5f95e4d33956be3f0f286013ed9b9e22a52533d359c3 +SIZE (KDE/plasma/6.6.6/kwayland-integration-6.6.6.tar.xz) = 26428 diff --git a/x11/plasma6-kwayland/distinfo b/x11/plasma6-kwayland/distinfo index 1c101b35d5f3..cfacc2412ab2 100644 --- a/x11/plasma6-kwayland/distinfo +++ b/x11/plasma6-kwayland/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1778603287 -SHA256 (KDE/plasma/6.6.5/kwayland-6.6.5.tar.xz) = afbcd53ca8a5fb501038415f1473c3d11556eb56ed8f653ece03f77d799cad01 -SIZE (KDE/plasma/6.6.5/kwayland-6.6.5.tar.xz) = 132864 +TIMESTAMP = 1783435893 +SHA256 (KDE/plasma/6.6.6/kwayland-6.6.6.tar.xz) = a83a51c1f7ceecb8e1b1059c01930da0dd43149553059d8cf9b6f77cb53b7077 +SIZE (KDE/plasma/6.6.6/kwayland-6.6.6.tar.xz) = 132840 diff --git a/x11/plasma6-layer-shell-qt/distinfo b/x11/plasma6-layer-shell-qt/distinfo index 59f3a339a04c..e2f0001dca26 100644 --- a/x11/plasma6-layer-shell-qt/distinfo +++ b/x11/plasma6-layer-shell-qt/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1778603288 -SHA256 (KDE/plasma/6.6.5/layer-shell-qt-6.6.5.tar.xz) = e8c145545ac49d5325f16ff710b521deab6e5b9745fcc18ab431252224a8f982 -SIZE (KDE/plasma/6.6.5/layer-shell-qt-6.6.5.tar.xz) = 36564 +TIMESTAMP = 1783435894 +SHA256 (KDE/plasma/6.6.6/layer-shell-qt-6.6.6.tar.xz) = ee3385f48787417d62ac8697881127407e5daa2a53483d363a1212b586307a4e +SIZE (KDE/plasma/6.6.6/layer-shell-qt-6.6.6.tar.xz) = 36564 diff --git a/x11/plasma6-libkscreen/distinfo b/x11/plasma6-libkscreen/distinfo index bef360dd1721..0e7f9fbaeb17 100644 --- a/x11/plasma6-libkscreen/distinfo +++ b/x11/plasma6-libkscreen/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1778603290 -SHA256 (KDE/plasma/6.6.5/libkscreen-6.6.5.tar.xz) = f2fd11f2f65ff9ca4ff3b50b9953018a929b1bf3263b32ec171c4298e4662149 -SIZE (KDE/plasma/6.6.5/libkscreen-6.6.5.tar.xz) = 119904 +TIMESTAMP = 1783435896 +SHA256 (KDE/plasma/6.6.6/libkscreen-6.6.6.tar.xz) = 8ccbc98b8025e6c2ab326f4f22f9370dc523811cd8b0f2de279f075deba13e49 +SIZE (KDE/plasma/6.6.6/libkscreen-6.6.6.tar.xz) = 119872 diff --git a/x11/plasma6-libplasma/distinfo b/x11/plasma6-libplasma/distinfo index b6e9434281c3..4496b37ece53 100644 --- a/x11/plasma6-libplasma/distinfo +++ b/x11/plasma6-libplasma/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1778603291 -SHA256 (KDE/plasma/6.6.5/libplasma-6.6.5.tar.xz) = 82e02b2098f4bac90f28cdd4f9d3a4da4557440ec8347220d8fee293c1f98d8b -SIZE (KDE/plasma/6.6.5/libplasma-6.6.5.tar.xz) = 1971716 +TIMESTAMP = 1783435899 +SHA256 (KDE/plasma/6.6.6/libplasma-6.6.6.tar.xz) = 95dfa2df6043276d909664ad3bc596bea21c1415e11f107aff31905291f8755e +SIZE (KDE/plasma/6.6.6/libplasma-6.6.6.tar.xz) = 1971592 diff --git a/x11/plasma6-plasma-activities-stats/distinfo b/x11/plasma6-plasma-activities-stats/distinfo index 2658aebe3177..5cacd36fdd77 100644 --- a/x11/plasma6-plasma-activities-stats/distinfo +++ b/x11/plasma6-plasma-activities-stats/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1778603296 -SHA256 (KDE/plasma/6.6.5/plasma-activities-stats-6.6.5.tar.xz) = 93af76f5c4171d089cd9a4f502bba63a65f2a371aa1a83c0c6cfb0021a5efba6 -SIZE (KDE/plasma/6.6.5/plasma-activities-stats-6.6.5.tar.xz) = 83492 +TIMESTAMP = 1783435903 +SHA256 (KDE/plasma/6.6.6/plasma-activities-stats-6.6.6.tar.xz) = dcc30b610d8d76c344b40b4796cb877497dc39db572d6671e9cade935c8e8325 +SIZE (KDE/plasma/6.6.6/plasma-activities-stats-6.6.6.tar.xz) = 83508 diff --git a/x11/plasma6-plasma-activities/distinfo b/x11/plasma6-plasma-activities/distinfo index e5f5ab595c19..5dc1eb00eba7 100644 --- a/x11/plasma6-plasma-activities/distinfo +++ b/x11/plasma6-plasma-activities/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1778603294 -SHA256 (KDE/plasma/6.6.5/plasma-activities-6.6.5.tar.xz) = 54d06a22a5765aa1e92834885d02abc7ce1bf8d6bda9533bb3472d4fef575562 -SIZE (KDE/plasma/6.6.5/plasma-activities-6.6.5.tar.xz) = 63024 +TIMESTAMP = 1783435901 +SHA256 (KDE/plasma/6.6.6/plasma-activities-6.6.6.tar.xz) = 444079a56ab5e3a5807100171afe083a102cedac09c50bccc52aea5085cf2fb3 +SIZE (KDE/plasma/6.6.6/plasma-activities-6.6.6.tar.xz) = 62992 diff --git a/x11/plasma6-plasma-desktop/Makefile b/x11/plasma6-plasma-desktop/Makefile index 642be8b41f08..99fbb3dbfd23 100644 --- a/x11/plasma6-plasma-desktop/Makefile +++ b/x11/plasma6-plasma-desktop/Makefile @@ -1,62 +1,61 @@ PORTNAME= plasma-desktop DISTVERSION= ${KDE_PLASMA_VERSION} -PORTREVISION= 1 CATEGORIES= x11 kde kde-plasma MAINTAINER= kde@FreeBSD.org COMMENT= KDE Plasma shell for desktop form factor BUILD_DEPENDS= wayland-protocols>=0:graphics/wayland-protocols \ xf86-input-libinput>0:x11-drivers/xf86-input-libinput \ libinput>0:x11/libinput LIB_DEPENDS= libcanberra.so:audio/libcanberra \ libicuuc.so:devel/icu \ libkaccounts6.so:net-im/kaccounts-integration \ liboauth2plugin.so:sysutils/signon-plugin-oauth2 \ libpackagekitqt6.so:ports-mgmt/packagekit-qt \ libwayland-client.so:graphics/wayland \ libxcb-util.so:x11/xcb-util \ libxkbcommon.so:x11/libxkbcommon \ libxkbfile.so:x11/libxkbfile RUN_DEPENDS= noto-emoji>0:x11-fonts/noto-emoji \ xdg-user-dir:devel/xdg-user-dirs USES= cmake gettext gl gnome kde:6 pkgconfig python qt:6 tar:xz xorg USE_GL= gl opengl USE_GNOME= intltool USE_KDE= activities activities-stats attica auth baloo bookmarks \ codecs colorscheme completion config configwidgets coreaddons \ crash dbusaddons doctools filemetadata globalaccel guiaddons \ i18n iconthemes itemmodels itemviews jobwidgets kcmutils kio \ libksysguard libplasma newstuff notifications notifyconfig \ package plasma-workspace plasma5support runner service solid \ sonnet svg widgetsaddons windowsystem xmlgui \ ecm:build \ kirigami-addons:run kirigami2:run kpipewire:run \ qqc2-desktop-style:run USE_QT= 5compat base declarative svg wayland USE_XORG= x11 xcb xcursor xext xfixes xi xrender OPTIONS_DEFINE= SDL X11 OPTIONS_DEFAULT= X11 OPTIONS_GROUP= IM IM_DESC= Input Method Support OPTIONS_GROUP_IM= IBUS SCIM OPTIONS_SUB= yes IBUS_DESC= Enable IBUS backend for input dialog IBUS_LIB_DEPENDS= libibus-1.0.so:textproc/ibus IBUS_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_IBus SCIM_DESC= Enable SCIM backend for input dialog SCIM_LIB_DEPENDS= libscim-1.0.so:textproc/scim SCIM_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_SCIM SDL_DESC= Enable gamecontroller System Settings module SDL_USES= sdl SDL_USE= sdl=sdl2 SDL_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_SDL2 X11_RUN_DEPENDS= xf86-input-libinput>0:x11-drivers/xf86-input-libinput .include diff --git a/x11/plasma6-plasma-desktop/distinfo b/x11/plasma6-plasma-desktop/distinfo index 9a38f4c30fb5..4697cce04c3b 100644 --- a/x11/plasma6-plasma-desktop/distinfo +++ b/x11/plasma6-plasma-desktop/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1778603297 -SHA256 (KDE/plasma/6.6.5/plasma-desktop-6.6.5.tar.xz) = 1d758dffcc42e1d3fbbfea0500009d3dc795cf1313b93b574da83624177085f3 -SIZE (KDE/plasma/6.6.5/plasma-desktop-6.6.5.tar.xz) = 17082520 +TIMESTAMP = 1783435905 +SHA256 (KDE/plasma/6.6.6/plasma-desktop-6.6.6.tar.xz) = dbaf12ac8dcf8a12ba3ea097c11e71e846be4b36737ef62420e11cf37a4f638e +SIZE (KDE/plasma/6.6.6/plasma-desktop-6.6.6.tar.xz) = 17080812 diff --git a/x11/plasma6-plasma-integration/distinfo b/x11/plasma6-plasma-integration/distinfo index 3688f014729c..1945fb90b9b0 100644 --- a/x11/plasma6-plasma-integration/distinfo +++ b/x11/plasma6-plasma-integration/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1778603298 -SHA256 (KDE/plasma/6.6.5/plasma-integration-6.6.5.tar.xz) = c28482dc8d3387b9a770fdc999dd13480b14714568395c8d86bd568b0181920a -SIZE (KDE/plasma/6.6.5/plasma-integration-6.6.5.tar.xz) = 99920 +TIMESTAMP = 1783435906 +SHA256 (KDE/plasma/6.6.6/plasma-integration-6.6.6.tar.xz) = 95e4a6cdfafccad908781d4f6fc68a8c64e85a40295ef502d875c07aec6dd63c +SIZE (KDE/plasma/6.6.6/plasma-integration-6.6.6.tar.xz) = 99932 diff --git a/x11/plasma6-plasma-workspace/Makefile b/x11/plasma6-plasma-workspace/Makefile index ead2d2663ade..acdbd445048f 100644 --- a/x11/plasma6-plasma-workspace/Makefile +++ b/x11/plasma6-plasma-workspace/Makefile @@ -1,65 +1,62 @@ PORTNAME= plasma-workspace DISTVERSION= ${KDE_PLASMA_VERSION} -PORTREVISION= 1 CATEGORIES= x11 kde kde-plasma -PATCH_SITES= https://invent.kde.org/plasma/plasma-workspace/-/commit/ -PATCHFILES= faf0e944008a8ce3182e11a2ee192b1589c5661a.patch:-p1 COMMENT= Various components for Plasma-based environment MAINTAINER= kde@FreeBSD.org BUILD_DEPENDS= wayland-protocols>=0:graphics/wayland-protocols LIB_DEPENDS= libcanberra.so:audio/libcanberra \ libfontconfig.so:x11-fonts/fontconfig \ libfreetype.so:print/freetype2 \ libicui18n.so:devel/icu \ libpipewire-0.3.so:multimedia/pipewire \ libqalculate.so:math/libqalculate \ libudev.so:devel/libudev-devd \ libwayland-client.so:graphics/wayland \ libxcb-image.so:x11/xcb-util-image \ libxcb-util.so:x11/xcb-util \ libxkbcommon.so:x11/libxkbcommon \ libQCoro6Core.so:devel/qcoro RUN_DEPENDS= kio-extras>=24.12.3:devel/kio-extras \ kio-fuse>=5.1.0_1:filesystems/kio-fuse \ mkfontscale:x11-fonts/mkfontscale \ oxygen-icons>=0:x11-themes/oxygen-icons \ xmessage:x11/xmessage \ xrdb:x11/xrdb \ xset:x11/xset USES= cmake desktop-file-utils gettext gl kde:6 pkgconfig python \ qt:6 shebangfix tar:xz xorg USE_GL= gl opengl USE_KDE= activities activities-stats archive attica auth baloo \ bookmarks colorscheme completion config configwidgets \ coreaddons crash dbusaddons doctools filemetadata globalaccel \ guiaddons holidays i18n iconthemes idletime itemmodels \ itemviews jobwidgets kcmutils kdeclarative kio kirigami-addons \ kirigami2 kpipewire kquickcharts kscreenlocker kwin \ layer-shell-qt libkexiv2 libkscreen libksysguard libplasma \ newstuff notifications package parts \ prison runner service solid sonnet \ statusnotifieritem svg syntaxhighlighting texteditor \ textwidgets userfeedback wallet wayland \ widgetsaddons windowsystem xmlgui \ ecm:build plasma-wayland-protocols:build \ kwin-x11:run USE_QT= 5compat base declarative location svg wayland USE_XORG= ice sm x11 xau xcb xcursor xext xfixes xft xi xrender xtst SHEBANG_FILES= components/calendar/kconf_update/migrate-calendar-to-plugin-id.py.in CMAKE_ON= CMAKE_DISABLE_FIND_PACKAGE_KF6NetworkManagerQt OPTIONS_DEFINE= GTK GTK_DESC= Global menu bar support for GTK applications GTK_RUN_DEPENDS= appmenu-gtk-module>0:x11/gtk-app-menu post-patch: @${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|g' \ ${PATCH_WRKSRC}/startkde/startplasma.cpp \ ${PATCH_WRKSRC}/login-sessions/plasmawayland.desktop.cmake .include diff --git a/x11/plasma6-plasma-workspace/distinfo b/x11/plasma6-plasma-workspace/distinfo index a23f99dc276d..50e35b650f52 100644 --- a/x11/plasma6-plasma-workspace/distinfo +++ b/x11/plasma6-plasma-workspace/distinfo @@ -1,5 +1,3 @@ -TIMESTAMP = 1779966416 -SHA256 (KDE/plasma/6.6.5/plasma-workspace-6.6.5.tar.xz) = 64d753cadcb9cde6ac09eeedf6b02ec5ccdfbd01722c5e9f2533fd0993b0d854 -SIZE (KDE/plasma/6.6.5/plasma-workspace-6.6.5.tar.xz) = 19352580 -SHA256 (KDE/plasma/6.6.5/faf0e944008a8ce3182e11a2ee192b1589c5661a.patch) = d1ef01a5677e6a941ec45dd5c61ca525fad31a1218e74eb6cf42e50bf287e8a9 -SIZE (KDE/plasma/6.6.5/faf0e944008a8ce3182e11a2ee192b1589c5661a.patch) = 2474 +TIMESTAMP = 1783436060 +SHA256 (KDE/plasma/6.6.6/plasma-workspace-6.6.6.tar.xz) = c9ffe4110b59e465ab2d5d431db2185fec6ea109fa39e4f3cac04c9553c28a7b +SIZE (KDE/plasma/6.6.6/plasma-workspace-6.6.6.tar.xz) = 19353172