Index: head/Mk/Uses/kde.mk =================================================================== --- head/Mk/Uses/kde.mk (revision 514560) +++ head/Mk/Uses/kde.mk (revision 514561) @@ -1,851 +1,851 @@ # $FreeBSD$ # # Provides support for KDE and KF5-based ports. # # Feature: kde # Valid ARGS: 5 # # 5: Depend on KDE Frameworks 5 components and variables. # # Variables that can be set by a port: # # USE_KDE List of KF5/Plasma5 components (other ports) that this # port depends on. # * foo_build Add a build-time dependency (BUILD_DEPENDS) # * foo_run Add a run-time dependency (RUN_DEPENDS) # * foo (default) Add both dependencies on component , or # a LIB_DEPENDS if applicable. # # To simplify the ports, also: # CATEGORIES If the port is part of one of the KDE Software distribution, # it can add, in addition to 'kde' one of the following: # kde-application: part of applications release # kde-frameworks: part of frameworks release # kde-plasma: part of plasma release # this will then set default values for MASTER_SITES and DIST_SUBDIR # as well as CPE_VENDOR and LICENSE. # # MAINTAINER: kde@FreeBSD.org .if !defined(_INCLUDE_USES_KDE_MK) _INCLUDE_USES_KDE_MK= yes _KDE_SUPPORTED= 5 . if empty(kde_ARGS) IGNORE= kde needs a version (${_KDE_SUPPORTED}) . endif . for ver in ${_KDE_SUPPORTED:O:u} . if ${kde_ARGS:M${ver}} . if !defined(_KDE_VERSION) _KDE_VERSION= ${ver} . else IGNORE?= cannot be installed: different KDE versions specified via kde:[${_KDE_SUPPORTED:S/ //g}] #' . endif . endif . endfor . if empty(_KDE_VERSION) IGNORE?= kde:[${_KDE_SUPPORTED:S/ //g}] needs an argument #' . else _KDE_RELNAME= KDE${_KDE_VERSION} # === VERSIONS OF THE DIFFERENT COMPONENTS ===================================== # Current KDE desktop. KDE_PLASMA_VERSION?= 5.16.5 KDE_PLASMA_BRANCH?= stable # Current KDE frameworks. KDE_FRAMEWORKS_VERSION?= 5.62.0 KDE_FRAMEWORKS_BRANCH?= stable # Current KDE applications. -KDE_APPLICATIONS_VERSION?= 19.08.1 -KDE_APPLICATIONS_SHLIB_VER?= 5.12.1 +KDE_APPLICATIONS_VERSION?= 19.08.2 +KDE_APPLICATIONS_SHLIB_VER?= 5.12.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 . else MASTER_SITES?= KDE/${KDE_APPLICATIONS_BRANCH}/applications/${KDE_APPLICATIONS_VERSION}/src # Let bsd.port.mk create the plist-entries for the documentation. # KDE Applications ports install their documentation to # ${PREFIX}/share/doc. DOCSDIR= ${PREFIX}/share/doc PORTDOCS?= HTML/* # Further pass along a SHLIB_VER PLIST_SUB PLIST_SUB+= KDE_APPLICATIONS_SHLIB_VER=${KDE_APPLICATIONS_SHLIB_VER} \ KDE_APPLICATIONS_VERSION_SHORT="${KDE_APPLICATIONS_VERSION:R:R}" . endif DIST_SUBDIR?= KDE/applications/${KDE_APPLICATIONS_VERSION} . elif ${_KDE_CATEGORY:Mkde-plasma} PORTVERSION?= ${KDE_PLASMA_VERSION} PKGNAMEPREFIX?= plasma5- MASTER_SITES?= KDE/${KDE_PLASMA_BRANCH}/plasma/${KDE_PLASMA_VERSION} DIST_SUBDIR?= KDE/plasma/${KDE_PLASMA_VERSION} . elif ${_KDE_CATEGORY:Mkde-frameworks} PORTVERSION?= ${KDE_FRAMEWORKS_VERSION} PKGNAMEPREFIX?= kf5- # This is a slight duplication of _USE_FRAMEWORKS_PORTING -- it maybe would be # better to rely on ${_USE_FRAMEWORKS_PORTING:S/^/k/g} _PORTINGAIDS= kjs kjsembed kdelibs4support kdesignerplugin kdewebkit khtml kmediaplayer kross . if ${_PORTINGAIDS:M*${PORTNAME}*} MASTER_SITES?= KDE/${KDE_FRAMEWORKS_BRANCH}/frameworks/${KDE_FRAMEWORKS_VERSION:R}/portingAids . else MASTER_SITES?= KDE/${KDE_FRAMEWORKS_BRANCH}/frameworks/${KDE_FRAMEWORKS_VERSION:R} . endif DIST_SUBDIR?= KDE/frameworks/${KDE_FRAMEWORKS_VERSION} . else IGNORE?= unknown CATEGORY value '${_KDE_CATEGORY}' #' . endif . endif #defined(_KDE_CATEGORY) # ============================================================================== # ==== SETUP CMAKE ENVIRONMENT ================================================= # Help cmake to find files when testing ports with non-default PREFIX. CMAKE_ARGS+= -DCMAKE_PREFIX_PATH="${LOCALBASE}" . if ${_KDE_VERSION:M*5*} # We set KDE_INSTALL_USE_QT_SYS_PATHS to install mkspecs files, plugins and # imports to the Qt 5 install directory. CMAKE_ARGS+= -DBUILD_TESTING:BOOL=OFF \ -DCMAKE_MODULE_PATH="${LOCALBASE};${KDE_PREFIX}" \ -DCMAKE_INSTALL_PREFIX="${KDE_PREFIX}" \ -DKDE_INSTALL_USE_QT_SYS_PATHS:BOOL=TRUE . endif # Set man-page installation prefix. CMAKE_ARGS+= -DKDE_INSTALL_MANDIR:PATH="${KDE_PREFIX}/man" \ -DMAN_INSTALL_DIR:PATH="${KDE_PREFIX}/man" # ============================================================================== # === SET-UP PLIST_SUB ========================================================= # Prefix and include directory. PLIST_SUB+= KDE_PREFIX="${KDE_PREFIX}" # KDE Applications version. PLIST_SUB+= KDE_APPLICATIONS_VERSION="${KDE_APPLICATIONS_VERSION}" . if ${_KDE_VERSION:M*5*} PLIST_SUB+= KDE_PLASMA_VERSION="${KDE_PLASMA_VERSION}" \ KDE_FRAMEWORKS_VERSION="${KDE_FRAMEWORKS_VERSION}" . endif # ============================================================================== _USE_KDE_BOTH= akonadi attica libkcddb libkcompactdisc libkdcraw libkdegames \ libkeduvocdocument libkexiv2 libkipi libksane okular \ baloo baloo-widgets kate marble # List of components of the KDE Frameworks distribution. # The *_TIER variables are internal, primarily for checking # that our list of frameworks matches the structure offered upstream. _USE_FRAMEWORKS_TIER1= apidox archive attica5 breeze-icons codecs config \ coreaddons dbusaddons dnssd holidays i18n idletime itemmodels \ itemviews kirigami2 oxygen-icons5 plotting prison \ qqc2-desktop-style solid sonnet syntaxhighlighting \ threadweaver wayland widgetsaddons windowsystem # NOT LISTED TIER1: modemmanagerqt networkmanagerqt (not applicable) _USE_FRAMEWORKS_TIER2= auth completion crash doctools \ filemetadata kimageformats jobwidgets notifications \ package pty syndication unitconversion _USE_FRAMEWORKS_TIER3= activities activities-stats baloo5 bookmarks configwidgets \ designerplugin emoticons globalaccel guiaddons \ iconthemes init kcmutils kdeclarative \ kded kdesu kdewebkit kio newstuff notifyconfig parts \ people plasma-framework purpose runner service texteditor \ textwidgets wallet xmlgui xmlrpcclient _USE_FRAMEWORKS_TIER4= frameworkintegration # Porting Aids frameworks provide code and utilities to ease the transition from # kdelibs 4 to KDE Frameworks 5. Code should aim to port away from this framework, # new projects should avoid using these libraries. _USE_FRAMEWORKS_PORTING=js jsembed kdelibs4support khtml mediaplayer kross _USE_FRAMEWORKS_ALL= ecm \ ${_USE_FRAMEWORKS_TIER1} \ ${_USE_FRAMEWORKS_TIER2} \ ${_USE_FRAMEWORKS_TIER3} \ ${_USE_FRAMEWORKS_TIER4} \ ${_USE_FRAMEWORKS_PORTING} \ ${_USE_FRAMEWORKS_EXTRA} # List of components of the KDE Plasma distribution. _USE_PLASMA_ALL= activitymanagerd breeze breeze-gtk \ decoration discover drkonqi hotkeys \ infocenter kde-cli-tools kde-gtk-config \ kdeplasma-addons kgamma5 kmenuedit kscreen \ kscreenlocker ksshaskpass ksysguard kwallet-pam \ kwayland-integration kwin kwrited libkscreen \ libksysguard milou oxygen plasma-browser-integration \ plasma-desktop plasma-integration plasma-pa \ plasma-sdk plasma-workspace plasma-workspace-wallpapers \ polkit-kde-agent-1 powerdevil systemsettings \ user-manager # List of components of the KDE PIM distribution (part of applications). _USE_KDEPIM5_ALL= akonadicontacts akonadiimportwizard akonadimime akonadinotes \ akonadicalendar akonadisearch alarmcalendar \ blog calendarcore calendarsupport calendarutils \ contacts eventviews gapi grantleetheme \ gravatar identitymanagement imap \ incidenceeditor kdepim-addons kdepim-apps-libs \ kdepim-runtime5 kitinerary kontactinterface kpimdav kpkpass \ ksmtp ldap libkdepim libkleo libksieve mailcommon \ mailimporter mailtransport mbox messagelib \ mime pimcommon pimtextedit tnef \ kalarm kontact kmail mbox-importer \ akonadiconsole akregator grantlee-editor kaddressbook \ kalarm kmail-account-wizard kmail knotes kontact \ korganizer pim-data-exporter _USE_KDE5_ALL= ${_USE_FRAMEWORKS_ALL} \ ${_USE_PLASMA_ALL} \ ${_USE_KDEPIM5_ALL} \ ${_USE_KDE_BOTH} # ====================== frameworks components ================================= kde-activities_PORT= x11/kf5-kactivities kde-activities_LIB= libKF5Activities.so kde-activities-stats_PORT= x11/kf5-kactivities-stats kde-activities-stats_LIB= libKF5ActivitiesStats.so kde-apidox_PORT= devel/kf5-kapidox kde-apidox_PATH= ${KDE_PREFIX}/bin/kapidox_generate kde-apidox_TYPE= run kde-archive_PORT= archivers/kf5-karchive kde-archive_LIB= libKF5Archive.so kde-attica5_PORT= x11-toolkits/kf5-attica kde-attica5_LIB= libKF5Attica.so kde-auth_PORT= devel/kf5-kauth kde-auth_LIB= libKF5Auth.so kde-baloo5_PORT= sysutils/kf5-baloo kde-baloo5_LIB= libKF5Baloo.so kde-bookmarks_PORT= devel/kf5-kbookmarks kde-bookmarks_LIB= libKF5Bookmarks.so kde-breeze-icons_PORT= x11-themes/kf5-breeze-icons kde-breeze-icons_PATH= ${KDE_PREFIX}/share/icons/breeze/index.theme kde-breeze-icons_TYPE= run kde-codecs_PORT= textproc/kf5-kcodecs kde-codecs_LIB= libKF5Codecs.so kde-completion_PORT= x11-toolkits/kf5-kcompletion kde-completion_LIB= libKF5Completion.so kde-config_PORT= devel/kf5-kconfig kde-config_LIB= libKF5ConfigCore.so kde-configwidgets_PORT= x11-toolkits/kf5-kconfigwidgets kde-configwidgets_LIB= libKF5ConfigWidgets.so kde-coreaddons_PORT= devel/kf5-kcoreaddons kde-coreaddons_LIB= libKF5CoreAddons.so kde-crash_PORT= devel/kf5-kcrash kde-crash_LIB= libKF5Crash.so kde-dbusaddons_PORT= devel/kf5-kdbusaddons kde-dbusaddons_LIB= libKF5DBusAddons.so kde-designerplugin_PORT= x11-toolkits/kf5-kdesignerplugin kde-designerplugin_PATH= ${KDE_PREFIX}/bin/kgendesignerplugin kde-designerplugin_TYPE= run kde-dnssd_PORT= dns/kf5-kdnssd kde-dnssd_LIB= libKF5DNSSD.so kde-doctools_PORT= devel/kf5-kdoctools kde-doctools_PATH= ${KDE_PREFIX}/bin/meinproc5 kde-ecm_PORT= devel/kf5-extra-cmake-modules kde-ecm_PATH= ${LOCALBASE}/share/ECM/cmake/ECMConfig.cmake kde-emoticons_PORT= x11-themes/kf5-kemoticons kde-emoticons_LIB= libKF5Emoticons.so kde-filemetadata_PORT= devel/kf5-kfilemetadata kde-filemetadata_LIB= libKF5FileMetaData.so kde-frameworkintegration_PORT= x11/kf5-frameworkintegration kde-frameworkintegration_LIB= libKF5Style.so kde-globalaccel_PORT= x11/kf5-kglobalaccel kde-globalaccel_LIB= libKF5GlobalAccel.so kde-guiaddons_PORT= x11-toolkits/kf5-kguiaddons kde-guiaddons_LIB= libKF5GuiAddons.so kde-holidays_PORT= net/kf5-kholidays kde-holidays_LIB= libKF5Holidays.so kde-i18n_PORT= devel/kf5-ki18n kde-i18n_LIB= libKF5I18n.so kde-iconthemes_PORT= x11-themes/kf5-kiconthemes kde-iconthemes_LIB= libKF5IconThemes.so kde-idletime_PORT= devel/kf5-kidletime kde-idletime_LIB= libKF5IdleTime.so kde-init_PORT= x11/kf5-kinit kde-init_PATH= ${KDE_PREFIX}/bin/kdeinit5 kde-itemmodels_PORT= devel/kf5-kitemmodels kde-itemmodels_LIB= libKF5ItemModels.so kde-itemviews_PORT= x11-toolkits/kf5-kitemviews kde-itemviews_LIB= libKF5ItemViews.so kde-jobwidgets_PORT= x11-toolkits/kf5-kjobwidgets kde-jobwidgets_LIB= libKF5JobWidgets.so kde-js_PORT= www/kf5-kjs kde-js_LIB= libKF5JS.so kde-jsembed_PORT= www/kf5-kjsembed kde-jsembed_LIB= libKF5JsEmbed.so kde-kcmutils_PORT= devel/kf5-kcmutils kde-kcmutils_LIB= libKF5KCMUtils.so kde-kdeclarative_PORT= devel/kf5-kdeclarative kde-kdeclarative_LIB= libKF5Declarative.so kde-kded_PORT= x11/kf5-kded kde-kded_LIB= libkdeinit5_kded5.so kde-kdelibs4support_PORT= x11/kf5-kdelibs4support kde-kdelibs4support_LIB= libKF5KDELibs4Support.so kde-kdesu_PORT= security/kf5-kdesu kde-kdesu_LIB= libKF5Su.so kde-kdewebkit_PORT= www/kf5-kdewebkit kde-kdewebkit_LIB= libKF5WebKit.so kde-khtml_PORT= www/kf5-khtml kde-khtml_LIB= libKF5KHtml.so kde-kimageformats_PORT= graphics/kf5-kimageformats kde-kimageformats_PATH= ${QT_PLUGINDIR}/imageformats/kimg_xcf.so kde-kimageformats_TYPE= run kde-kio_PORT= devel/kf5-kio kde-kio_LIB= libKF5KIOCore.so kde-kirigami2_PORT= x11-toolkits/kf5-kirigami2 kde-kirigami2_PATH= ${QT_QMLDIR}/org/kde/kirigami.2/libkirigamiplugin.so kde-kross_PORT= lang/kf5-kross kde-kross_LIB= libKF5KrossCore.so kde-mediaplayer_PORT= multimedia/kf5-kmediaplayer kde-mediaplayer_LIB= libKF5MediaPlayer.so.5 kde-newstuff_PORT= devel/kf5-knewstuff kde-newstuff_LIB= libKF5NewStuff.so kde-notifications_PORT= devel/kf5-knotifications kde-notifications_LIB= libKF5Notifications.so kde-notifyconfig_PORT= devel/kf5-knotifyconfig kde-notifyconfig_LIB= libKF5NotifyConfig.so kde-oxygen-icons5_PORT= x11-themes/kf5-oxygen-icons5 kde-oxygen-icons5_PATH= ${KDE_PREFIX}/share/icons/oxygen/index.theme kde-oxygen-icons5_TYPE= run kde-package_PORT= devel/kf5-kpackage kde-package_LIB= libKF5Package.so kde-parts_PORT= devel/kf5-kparts kde-parts_LIB= libKF5Parts.so kde-people_PORT= devel/kf5-kpeople kde-people_LIB= libKF5People.so kde-plasma-framework_PORT= x11/kf5-plasma-framework kde-plasma-framework_LIB= libKF5Plasma.so kde-plotting_PORT= graphics/kf5-kplotting kde-plotting_LIB= libKF5Plotting.so kde-prison_PORT= graphics/kf5-prison kde-prison_LIB= libKF5Prison.so kde-pty_PORT= devel/kf5-kpty kde-pty_LIB= libKF5Pty.so kde-purpose_PORT= misc/kf5-purpose kde-purpose_LIB= libKF5Purpose.so kde-qqc2-desktop-style_PORT= x11-themes/kf5-qqc2-desktop-style kde-qqc2-desktop-style_PATH= ${QT_PLUGINDIR}/kf5/kirigami/org.kde.desktop.so kde-runner_PORT= x11/kf5-krunner kde-runner_LIB= libKF5Runner.so kde-service_PORT= devel/kf5-kservice kde-service_PATH= ${KDE_PREFIX}/bin/kbuildsycoca5 kde-solid_PORT= devel/kf5-solid kde-solid_LIB= libKF5Solid.so kde-sonnet_PORT= textproc/kf5-sonnet kde-sonnet_LIB= libKF5SonnetCore.so kde-syndication_PORT= net/kf5-syndication kde-syndication_LIB= libKF5Syndication.so kde-syntaxhighlighting_PORT= textproc/kf5-syntax-highlighting kde-syntaxhighlighting_LIB= libKF5SyntaxHighlighting.so kde-texteditor_PORT= devel/kf5-ktexteditor kde-texteditor_LIB= libKF5TextEditor.so kde-textwidgets_PORT= x11-toolkits/kf5-ktextwidgets kde-textwidgets_LIB= libKF5TextWidgets.so kde-threadweaver_PORT= devel/kf5-threadweaver kde-threadweaver_LIB= libKF5ThreadWeaver.so kde-unitconversion_PORT= devel/kf5-kunitconversion kde-unitconversion_LIB= libKF5UnitConversion.so kde-wallet_PORT= sysutils/kf5-kwallet kde-wallet_LIB= libKF5Wallet.so kde-wayland_PORT= x11/kf5-kwayland kde-wayland_LIB= libKF5WaylandClient.so kde-widgetsaddons_PORT= x11-toolkits/kf5-kwidgetsaddons kde-widgetsaddons_LIB= libKF5WidgetsAddons.so kde-windowsystem_PORT= x11/kf5-kwindowsystem kde-windowsystem_LIB= libKF5WindowSystem.so kde-xmlgui_PORT= x11-toolkits/kf5-kxmlgui kde-xmlgui_LIB= libKF5XmlGui.so kde-xmlrpcclient_PORT= net/kf5-kxmlrpcclient kde-xmlrpcclient_LIB= libKF5XmlRpcClient.so # ====================== end of frameworks components ========================== # ====================== plasma components ===================================== kde-activitymanagerd_PORT= x11/plasma5-kactivitymanagerd kde-activitymanagerd_LIB= libkactivitymanagerd_plugin.so kde-breeze_PORT= x11-themes/plasma5-breeze kde-breeze_PATH= ${KDE_PREFIX}/share/QtCurve/Breeze.qtcurve kde-breeze-gtk_PORT= x11-themes/plasma5-breeze-gtk kde-breeze-gtk_PATH= ${KDE_PREFIX}/lib/kconf_update_bin/gtkbreeze5.5 kde-decoration_PORT= x11-wm/plasma5-kdecoration kde-decoration_LIB= libkdecorations2.so kde-discover_PORT= sysutils/plasma5-discover kde-discover_PATH= ${KDE_PREFIX}/bin/plasma-discover kde-drkonqi_PORT= sysutils/plasma5-drkonqi kde-drkonqi_PATH= ${KDE_PREFIX}/lib/libexec/drkonqi kde-hotkeys_PORT= devel/plasma5-khotkeys kde-hotkeys_LIB= libkhotkeysprivate.so.5 kde-infocenter_PORT= sysutils/plasma5-kinfocenter kde-infocenter_PATH= ${KDE_PREFIX}/bin/kinfocenter kde-kde-cli-tools_PORT= sysutils/plasma5-kde-cli-tools kde-kde-cli-tools_PATH= ${KDE_PREFIX}/bin/kcmshell5 kde-kde-gtk-config_PORT= x11-themes/plasma5-kde-gtk-config kde-kde-gtk-config_PATH= ${QT_PLUGINDIR}/kcm_kdegtkconfig.so kde-kdeplasma-addons_PORT= x11-toolkits/plasma5-kdeplasma-addons kde-kdeplasma-addons_PATH= ${QT_PLUGINDIR}/kcm_krunner_dictionary.so kde-kgamma5_PORT= x11/plasma5-kgamma5 kde-kgamma5_PATH= ${QT_PLUGINDIR}/kcm_kgamma.so kde-kmenuedit_PORT= sysutils/plasma5-kmenuedit kde-kmenuedit_LIB= libkdeinit5_kmenuedit.so kde-kscreen_PORT= x11/plasma5-kscreen kde-kscreen_PATH= ${KDE_PREFIX}/bin/kscreen-console kde-kscreenlocker_PORT= security/plasma5-kscreenlocker kde-kscreenlocker_LIB= libKScreenLocker.so kde-ksshaskpass_PORT= security/plasma5-ksshaskpass kde-ksshaskpass_PATH= ${KDE_PREFIX}/bin/ksshaskpass kde-ksysguard_PORT= sysutils/plasma5-ksysguard kde-ksysguard_PATH= ${KDE_PREFIX}/bin/ksysguard kde-kwallet-pam_PORT= security/plasma5-kwallet-pam kde-kwallet-pam_PATH= ${KDE_PREFIX}/lib/pam_kwallet5.so kde-kwayland-integration_PORT= x11/plasma5-kwayland-integration kde-kwayland-integration_PATH= ${QT_PLUGINDIR}/kf5/org.kde.kidletime.platforms/KF5IdleTimeKWaylandPlugin.so kde-kwin_PORT= x11-wm/plasma5-kwin kde-kwin_PATH= ${KDE_PREFIX}/bin/kwin_x11 kde-kwrited_PORT= devel/plasma5-kwrited kde-kwrited_PATH= ${QT_PLUGINDIR}/kf5/kded/kwrited.so kde-libkscreen_PORT= x11/plasma5-libkscreen kde-libkscreen_LIB= libKF5Screen.so kde-libksysguard_PORT= sysutils/plasma5-libksysguard kde-libksysguard_LIB= libksgrd.so kde-milou_PORT= deskutils/plasma5-milou kde-milou_LIB= libmilou.so.5 kde-oxygen_PORT= x11-themes/plasma5-oxygen kde-oxygen_PATH= ${QT_PLUGINDIR}/styles/oxygen.so kde-plasma-browser-integration_PORT= www/plasma5-plasma-browser-integration kde-plasma-browser-integration_PATH= ${KDE_PREFIX}/bin/plasma-browser-integration-host kde-plasma-desktop_PORT= x11/plasma5-plasma-desktop kde-plasma-desktop_PATH= ${KDE_PREFIX}/bin/krdb kde-plasma-integration_PORT= x11/plasma5-plasma-integration kde-plasma-integration_PATH= ${QT_PLUGINDIR}/platformthemes/KDEPlasmaPlatformTheme.so kde-plasma-pa_PORT= audio/plasma5-plasma-pa kde-plasma-pa_PATH= ${QT_PLUGINDIR}/kcms/kcm_pulseaudio.so kde-plasma-sdk_PORT= devel/plasma5-plasma-sdk kde-plasma-sdk_PATH= ${KDE_PREFIX}/bin/plasmoidviewer kde-plasma-workspace_PORT= x11/plasma5-plasma-workspace kde-plasma-workspace_LIB= libkdeinit5_kcminit.so kde-plasma-workspace-wallpapers_PORT= x11-themes/plasma5-plasma-workspace-wallpapers kde-plasma-workspace-wallpapers_PATH= ${KDE_PREFIX}/share/wallpapers/Autumn/contents/images/1280x1024.jpg kde-polkit-kde-agent-1_PORT= sysutils/plasma5-polkit-kde-agent-1 kde-polkit-kde-agent-1_PATH= ${KDE_PREFIX}/lib/libexec/polkit-kde-authentication-agent-1 kde-powerdevil_PORT= sysutils/plasma5-powerdevil kde-powerdevil_LIB= libpowerdevilcore.so kde-systemsettings_PORT= sysutils/plasma5-systemsettings kde-systemsettings_PATH= ${KDE_PREFIX}/bin/systemsettings5 kde-user-manager_PORT= sysutils/plasma5-user-manager kde-user-manager_PATH= ${QT_PLUGINDIR}/user_manager.so # ====================== end of plasma components ============================== # ====================== pim5 components ======================================= kde-akonadicontacts_PORT= net/akonadi-contacts kde-akonadicontacts_LIB= libKF5AkonadiContact.so kde-akonadiimportwizard_PORT= deskutils/akonadi-import-wizard kde-akonadiimportwizard_LIB= libKPimImportWizard.so kde-akonadimime_PORT= net/akonadi-mime kde-akonadimime_LIB= libKF5AkonadiMime.so kde-akonadinotes_PORT= net/akonadi-notes kde-akonadinotes_LIB= libKF5AkonadiNotes.so kde-akonadicalendar_PORT= net/akonadi-calendar kde-akonadicalendar_LIB= libKF5AkonadiCalendar.so kde-akonadisearch_PORT= net/akonadi-search kde-akonadisearch_LIB= libKF5AkonadiSearchCore.so kde-alarmcalendar_PORT= net/kalarmcal kde-alarmcalendar_LIB= libKF5AlarmCalendar.so kde-blog_PORT= net/kblog kde-blog_LIB= libKF5Blog.so kde-calendarsupport_PORT= net/calendarsupport kde-calendarsupport_LIB= libKF5CalendarSupport.so kde-calendarcore_PORT= net/kcalcore kde-calendarcore_LIB= libKF5CalendarCore.so kde-calendarutils_PORT= net/kcalutils kde-calendarutils_LIB= libKF5CalendarUtils.so kde-contacts_PORT= net/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/accessibility/kmag/distinfo =================================================================== --- head/accessibility/kmag/distinfo (revision 514560) +++ head/accessibility/kmag/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537090 -SHA256 (KDE/applications/19.08.1/kmag-19.08.1.tar.xz) = 28504935665df18246cc6db4288dc2b33f24ed7114007df008f4310ce8792ceb -SIZE (KDE/applications/19.08.1/kmag-19.08.1.tar.xz) = 673888 +TIMESTAMP = 1570544196 +SHA256 (KDE/applications/19.08.2/kmag-19.08.2.tar.xz) = 6e8ecfab87dca12804a5a8d0a8adf1545e9e17039e0f9667b10a8f2832512e71 +SIZE (KDE/applications/19.08.2/kmag-19.08.2.tar.xz) = 674000 Index: head/accessibility/kmousetool/distinfo =================================================================== --- head/accessibility/kmousetool/distinfo (revision 514560) +++ head/accessibility/kmousetool/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537101 -SHA256 (KDE/applications/19.08.1/kmousetool-19.08.1.tar.xz) = d9a3164a0709fa0d2fc3e30ade2bd42c86fb73c7cf4adc341dd7e11e686f7956 -SIZE (KDE/applications/19.08.1/kmousetool-19.08.1.tar.xz) = 113592 +TIMESTAMP = 1570544217 +SHA256 (KDE/applications/19.08.2/kmousetool-19.08.2.tar.xz) = 7cdc327e82548bf70c4ef4feab7a30938f3aefa1e80fccb343ce0d5ca8976ccb +SIZE (KDE/applications/19.08.2/kmousetool-19.08.2.tar.xz) = 113528 Index: head/accessibility/kmouth/distinfo =================================================================== --- head/accessibility/kmouth/distinfo (revision 514560) +++ head/accessibility/kmouth/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537101 -SHA256 (KDE/applications/19.08.1/kmouth-19.08.1.tar.xz) = 531b7b3716fea8c679c5c39c7c04214cb561430182747ce08a9854a76105821e -SIZE (KDE/applications/19.08.1/kmouth-19.08.1.tar.xz) = 1964544 +TIMESTAMP = 1570544217 +SHA256 (KDE/applications/19.08.2/kmouth-19.08.2.tar.xz) = 7a71d9d15d6a5f72c86f41e874f7cb3b45d8edaae2b3bd5409b20bd7bad4a0d3 +SIZE (KDE/applications/19.08.2/kmouth-19.08.2.tar.xz) = 1964932 Index: head/archivers/ark/distinfo =================================================================== --- head/archivers/ark/distinfo (revision 514560) +++ head/archivers/ark/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537101 -SHA256 (KDE/applications/19.08.1/ark-19.08.1.tar.xz) = b5638bc4559d775d0a0c2aee022cadc021543bf92e8be6b9b803c50e7e7f1835 -SIZE (KDE/applications/19.08.1/ark-19.08.1.tar.xz) = 2585216 +TIMESTAMP = 1570544218 +SHA256 (KDE/applications/19.08.2/ark-19.08.2.tar.xz) = 63fcec0a32d806cfc82fb1c136b5e037bfe75459b148ac08c00be7e45ac70c50 +SIZE (KDE/applications/19.08.2/ark-19.08.2.tar.xz) = 2584864 Index: head/archivers/ark/pkg-plist =================================================================== --- head/archivers/ark/pkg-plist (revision 514560) +++ head/archivers/ark/pkg-plist (revision 514561) @@ -1,95 +1,95 @@ bin/ark share/qlogging-categories5/ark.categories lib/libkerfuffle.so.%%KDE_APPLICATIONS_VERSION_SHORT%% -lib/libkerfuffle.so.19.8.1 +lib/libkerfuffle.so.19.8.2 %%QT_PLUGINDIR%%/arkpart.so %%QT_PLUGINDIR%%/kerfuffle/kerfuffle_cli7z.so %%QT_PLUGINDIR%%/kerfuffle/kerfuffle_clirar.so %%QT_PLUGINDIR%%/kerfuffle/kerfuffle_cliunarchiver.so %%QT_PLUGINDIR%%/kerfuffle/kerfuffle_clizip.so %%QT_PLUGINDIR%%/kerfuffle/kerfuffle_libarchive.so %%QT_PLUGINDIR%%/kerfuffle/kerfuffle_libarchive_readonly.so %%QT_PLUGINDIR%%/kerfuffle/kerfuffle_libbz2.so %%QT_PLUGINDIR%%/kerfuffle/kerfuffle_libgz.so %%QT_PLUGINDIR%%/kerfuffle/kerfuffle_libxz.so %%ZIP%%%%QT_PLUGINDIR%%/kerfuffle/kerfuffle_libzip.so %%QT_PLUGINDIR%%/kf5/kfileitemaction/compressfileitemaction.so %%QT_PLUGINDIR%%/kf5/kfileitemaction/extractfileitemaction.so %%QT_PLUGINDIR%%/kf5/kio_dnd/extracthere.so man/ca/man1/ark.1.gz man/de/man1/ark.1.gz man/es/man1/ark.1.gz man/fr/man1/ark.1.gz man/gl/man1/ark.1.gz man/it/man1/ark.1.gz man/man1/ark.1.gz man/nl/man1/ark.1.gz man/pt/man1/ark.1.gz man/pt_BR/man1/ark.1.gz man/sr/man1/ark.1.gz man/sv/man1/ark.1.gz man/uk/man1/ark.1.gz share/applications/org.kde.ark.desktop share/config.kcfg/ark.kcfg share/icons/hicolor/128x128/apps/ark.png share/icons/hicolor/48x48/apps/ark.png share/icons/hicolor/64x64/apps/ark.png share/icons/hicolor/scalable/apps/ark.svgz share/kservices5/ark_part.desktop share/kservicetypes5/kerfufflePlugin.desktop share/kxmlgui5/ark/ark_viewer.rc share/locale/ar/LC_MESSAGES/ark.mo share/locale/bg/LC_MESSAGES/ark.mo share/locale/bs/LC_MESSAGES/ark.mo share/locale/ca/LC_MESSAGES/ark.mo share/locale/ca@valencia/LC_MESSAGES/ark.mo share/locale/cs/LC_MESSAGES/ark.mo share/locale/da/LC_MESSAGES/ark.mo share/locale/de/LC_MESSAGES/ark.mo share/locale/el/LC_MESSAGES/ark.mo share/locale/en_GB/LC_MESSAGES/ark.mo share/locale/eo/LC_MESSAGES/ark.mo share/locale/es/LC_MESSAGES/ark.mo share/locale/et/LC_MESSAGES/ark.mo share/locale/eu/LC_MESSAGES/ark.mo share/locale/fa/LC_MESSAGES/ark.mo share/locale/fi/LC_MESSAGES/ark.mo share/locale/fr/LC_MESSAGES/ark.mo share/locale/ga/LC_MESSAGES/ark.mo share/locale/gl/LC_MESSAGES/ark.mo share/locale/he/LC_MESSAGES/ark.mo share/locale/hi/LC_MESSAGES/ark.mo share/locale/hr/LC_MESSAGES/ark.mo share/locale/hu/LC_MESSAGES/ark.mo share/locale/ia/LC_MESSAGES/ark.mo share/locale/id/LC_MESSAGES/ark.mo share/locale/is/LC_MESSAGES/ark.mo share/locale/it/LC_MESSAGES/ark.mo share/locale/ja/LC_MESSAGES/ark.mo share/locale/kk/LC_MESSAGES/ark.mo share/locale/km/LC_MESSAGES/ark.mo share/locale/ko/LC_MESSAGES/ark.mo share/locale/lt/LC_MESSAGES/ark.mo share/locale/lv/LC_MESSAGES/ark.mo share/locale/mr/LC_MESSAGES/ark.mo share/locale/nb/LC_MESSAGES/ark.mo share/locale/nds/LC_MESSAGES/ark.mo share/locale/nl/LC_MESSAGES/ark.mo share/locale/nn/LC_MESSAGES/ark.mo share/locale/pa/LC_MESSAGES/ark.mo share/locale/pl/LC_MESSAGES/ark.mo share/locale/pt/LC_MESSAGES/ark.mo share/locale/pt_BR/LC_MESSAGES/ark.mo share/locale/ro/LC_MESSAGES/ark.mo share/locale/ru/LC_MESSAGES/ark.mo share/locale/sk/LC_MESSAGES/ark.mo share/locale/sl/LC_MESSAGES/ark.mo share/locale/sr/LC_MESSAGES/ark.mo share/locale/sv/LC_MESSAGES/ark.mo share/locale/tr/LC_MESSAGES/ark.mo share/locale/ug/LC_MESSAGES/ark.mo share/locale/uk/LC_MESSAGES/ark.mo share/locale/zh_CN/LC_MESSAGES/ark.mo share/locale/zh_TW/LC_MESSAGES/ark.mo share/metainfo/org.kde.ark.appdata.xml share/mime/packages/kerfuffle.xml Index: head/astro/libkgeomap/Makefile =================================================================== --- head/astro/libkgeomap/Makefile (revision 514560) +++ head/astro/libkgeomap/Makefile (revision 514561) @@ -1,29 +1,29 @@ # $FreeBSD$ PORTNAME= libkgeomap DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 2 CATEGORIES= astro kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE library for browsing photos on a map LICENSE= GPLv2+ BSD3CLAUSE LICENSE_COMB= multi LICENSE_FILE_GPLv2+ = ${WRKSRC}/COPYING LICENSE_FILE_BSD3CLAUSE=${WRKSRC}/COPYING-CMAKE-SCRIPTS BUILD_DEPENDS= ${LOCALBASE}/include/boost/graph/buffer_concepts.hpp:devel/boost-libs +LIB_DEPENDS= libopencv_video.so:graphics/opencv USES= cmake compiler:c++11-lang gettext kde:5 pkgconfig \ qt:5 tar:xz USE_KDE= config coreaddons ecm i18n kio marble service textwidgets USE_QT= concurrent core dbus declarative gui location network \ printsupport webchannel webengine webkit widgets xml \ buildtools_build qmake_build USE_LDCONFIG= yes OPTIONS_DEFINE= DOCS .include Index: head/astro/libkgeomap/distinfo =================================================================== --- head/astro/libkgeomap/distinfo (revision 514560) +++ head/astro/libkgeomap/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537102 -SHA256 (KDE/applications/19.08.1/libkgeomap-19.08.1.tar.xz) = aed369217007698beaa3230bf5b5360602d44ca6d333026158b15666f3670555 -SIZE (KDE/applications/19.08.1/libkgeomap-19.08.1.tar.xz) = 150876 +TIMESTAMP = 1570544219 +SHA256 (KDE/applications/19.08.2/libkgeomap-19.08.2.tar.xz) = 145692b900d87a84b74507b53ddc05947e6c1cce46381d8960559b5907296219 +SIZE (KDE/applications/19.08.2/libkgeomap-19.08.2.tar.xz) = 150664 Index: head/astro/marble/distinfo =================================================================== --- head/astro/marble/distinfo (revision 514560) +++ head/astro/marble/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537102 -SHA256 (KDE/applications/19.08.1/marble-19.08.1.tar.xz) = 7e09e3037287be117e47de402d1f5ea7dd49f625ccf4a46d1d016a527d487e9e -SIZE (KDE/applications/19.08.1/marble-19.08.1.tar.xz) = 52300764 +TIMESTAMP = 1570544220 +SHA256 (KDE/applications/19.08.2/marble-19.08.2.tar.xz) = 4add63522a51fdea7b425f29bd3d35c558a0b881336ff6a90bfc07483acbf6a6 +SIZE (KDE/applications/19.08.2/marble-19.08.2.tar.xz) = 52327484 Index: head/audio/audiocd-kio/distinfo =================================================================== --- head/audio/audiocd-kio/distinfo (revision 514560) +++ head/audio/audiocd-kio/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537103 -SHA256 (KDE/applications/19.08.1/audiocd-kio-19.08.1.tar.xz) = e072ed20f07fe246267b3e7c459812fe63d94125a1d2fbcda1c0403e9fe0a520 -SIZE (KDE/applications/19.08.1/audiocd-kio-19.08.1.tar.xz) = 356276 +TIMESTAMP = 1570544221 +SHA256 (KDE/applications/19.08.2/audiocd-kio-19.08.2.tar.xz) = 383c0e9055b0093661b589395288bb8d173372572490a4ba4960d214b2746b3a +SIZE (KDE/applications/19.08.2/audiocd-kio-19.08.2.tar.xz) = 356008 Index: head/audio/juk/distinfo =================================================================== --- head/audio/juk/distinfo (revision 514560) +++ head/audio/juk/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537103 -SHA256 (KDE/applications/19.08.1/juk-19.08.1.tar.xz) = f91de1fa697fba3fe73a086b0f3c254959fbceb769d3752353ee2078b86611f9 -SIZE (KDE/applications/19.08.1/juk-19.08.1.tar.xz) = 1864900 +TIMESTAMP = 1570544221 +SHA256 (KDE/applications/19.08.2/juk-19.08.2.tar.xz) = b3f0e006d6defa58e0724088a1c99c1c412bc5764f8d1bebadf31b5f331d51d3 +SIZE (KDE/applications/19.08.2/juk-19.08.2.tar.xz) = 1866212 Index: head/audio/juk/pkg-plist =================================================================== --- head/audio/juk/pkg-plist (revision 514560) +++ head/audio/juk/pkg-plist (revision 514561) @@ -1,70 +1,70 @@ bin/juk share/applications/org.kde.juk.desktop share/dbus-1/interfaces/org.kde.juk.collection.xml share/dbus-1/interfaces/org.kde.juk.player.xml share/dbus-1/interfaces/org.kde.juk.search.xml share/icons/hicolor/128x128/apps/juk.png share/icons/hicolor/16x16/apps/juk.png share/icons/hicolor/32x32/apps/juk.png share/icons/hicolor/48x48/apps/juk.png share/icons/hicolor/64x64/apps/juk.png %%DATADIR%%/pics/playing.png %%DATADIR%%/pics/theme.svg +share/knotifications5/juk.notifyrc share/kservices5/ServiceMenus/jukservicemenu.desktop -share/kxmlgui5/juk/juk.notifyrc share/kxmlgui5/juk/jukui-rtl.rc share/kxmlgui5/juk/jukui.rc share/locale/ar/LC_MESSAGES/juk.mo share/locale/bg/LC_MESSAGES/juk.mo share/locale/bs/LC_MESSAGES/juk.mo share/locale/ca/LC_MESSAGES/juk.mo share/locale/ca@valencia/LC_MESSAGES/juk.mo share/locale/cs/LC_MESSAGES/juk.mo share/locale/da/LC_MESSAGES/juk.mo share/locale/de/LC_MESSAGES/juk.mo share/locale/el/LC_MESSAGES/juk.mo share/locale/en_GB/LC_MESSAGES/juk.mo share/locale/eo/LC_MESSAGES/juk.mo share/locale/es/LC_MESSAGES/juk.mo share/locale/et/LC_MESSAGES/juk.mo share/locale/eu/LC_MESSAGES/juk.mo share/locale/fa/LC_MESSAGES/juk.mo share/locale/fi/LC_MESSAGES/juk.mo share/locale/fr/LC_MESSAGES/juk.mo share/locale/ga/LC_MESSAGES/juk.mo share/locale/gl/LC_MESSAGES/juk.mo share/locale/he/LC_MESSAGES/juk.mo share/locale/hi/LC_MESSAGES/juk.mo share/locale/hr/LC_MESSAGES/juk.mo share/locale/hu/LC_MESSAGES/juk.mo share/locale/ia/LC_MESSAGES/juk.mo share/locale/id/LC_MESSAGES/juk.mo share/locale/is/LC_MESSAGES/juk.mo share/locale/it/LC_MESSAGES/juk.mo share/locale/ja/LC_MESSAGES/juk.mo share/locale/kk/LC_MESSAGES/juk.mo share/locale/km/LC_MESSAGES/juk.mo share/locale/ko/LC_MESSAGES/juk.mo share/locale/lt/LC_MESSAGES/juk.mo share/locale/lv/LC_MESSAGES/juk.mo share/locale/mr/LC_MESSAGES/juk.mo share/locale/nb/LC_MESSAGES/juk.mo share/locale/nds/LC_MESSAGES/juk.mo share/locale/nl/LC_MESSAGES/juk.mo share/locale/nn/LC_MESSAGES/juk.mo share/locale/pa/LC_MESSAGES/juk.mo share/locale/pl/LC_MESSAGES/juk.mo share/locale/pt/LC_MESSAGES/juk.mo share/locale/pt_BR/LC_MESSAGES/juk.mo share/locale/ro/LC_MESSAGES/juk.mo share/locale/ru/LC_MESSAGES/juk.mo share/locale/sk/LC_MESSAGES/juk.mo share/locale/sl/LC_MESSAGES/juk.mo share/locale/sr/LC_MESSAGES/juk.mo share/locale/sv/LC_MESSAGES/juk.mo share/locale/tr/LC_MESSAGES/juk.mo share/locale/ug/LC_MESSAGES/juk.mo share/locale/uk/LC_MESSAGES/juk.mo share/locale/zh_CN/LC_MESSAGES/juk.mo share/locale/zh_TW/LC_MESSAGES/juk.mo share/metainfo/org.kde.juk.appdata.xml Index: head/audio/kmix/distinfo =================================================================== --- head/audio/kmix/distinfo (revision 514560) +++ head/audio/kmix/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537113 -SHA256 (KDE/applications/19.08.1/kmix-19.08.1.tar.xz) = a6006ab35bdfc2896188aa99ba50f1b28e8d5172ec8a1068efb15a50c43f87a7 -SIZE (KDE/applications/19.08.1/kmix-19.08.1.tar.xz) = 1005284 +TIMESTAMP = 1570544242 +SHA256 (KDE/applications/19.08.2/kmix-19.08.2.tar.xz) = 5d852df8b54d3abca98db4aa2b259973231fed0a597d511d54fb41c6389ce61a +SIZE (KDE/applications/19.08.2/kmix-19.08.2.tar.xz) = 1005640 Index: head/audio/kwave/distinfo =================================================================== --- head/audio/kwave/distinfo (revision 514560) +++ head/audio/kwave/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537114 -SHA256 (KDE/applications/19.08.1/kwave-19.08.1.tar.xz) = 6febc3d01c15f94fa0f75a731a375b76642c2cdce9afc373a5c1e92fb3753891 -SIZE (KDE/applications/19.08.1/kwave-19.08.1.tar.xz) = 6196012 +TIMESTAMP = 1570544243 +SHA256 (KDE/applications/19.08.2/kwave-19.08.2.tar.xz) = 7836b7737d3f578f6d44b40dddf8b3abae53eaa84b3352bfed242eb6ef3d5604 +SIZE (KDE/applications/19.08.2/kwave-19.08.2.tar.xz) = 6194828 Index: head/audio/libkcddb/distinfo =================================================================== --- head/audio/libkcddb/distinfo (revision 514560) +++ head/audio/libkcddb/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537114 -SHA256 (KDE/applications/19.08.1/libkcddb-19.08.1.tar.xz) = f73d3f802e1ffec6b75246505cbec5a7baa328b808c23b42608e05fd8c7b30a5 -SIZE (KDE/applications/19.08.1/libkcddb-19.08.1.tar.xz) = 423668 +TIMESTAMP = 1570544244 +SHA256 (KDE/applications/19.08.2/libkcddb-19.08.2.tar.xz) = f3e4c650b0abe10f281037bd6c805243a656fecdfc046a8586324c760ba90e48 +SIZE (KDE/applications/19.08.2/libkcddb-19.08.2.tar.xz) = 423708 Index: head/audio/libkcompactdisc/distinfo =================================================================== --- head/audio/libkcompactdisc/distinfo (revision 514560) +++ head/audio/libkcompactdisc/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537114 -SHA256 (KDE/applications/19.08.1/libkcompactdisc-19.08.1.tar.xz) = 53d206967d98e9ee8254aca58d1ba34458761106c323deb449fa94bed1e24037 -SIZE (KDE/applications/19.08.1/libkcompactdisc-19.08.1.tar.xz) = 88948 +TIMESTAMP = 1570544244 +SHA256 (KDE/applications/19.08.2/libkcompactdisc-19.08.2.tar.xz) = e185f528a4c6fea1b789186fe64a183197afc447c8cb939c9b6b9957f60d04e0 +SIZE (KDE/applications/19.08.2/libkcompactdisc-19.08.2.tar.xz) = 89016 Index: head/databases/akonadi/Makefile =================================================================== --- head/databases/akonadi/Makefile (revision 514560) +++ head/databases/akonadi/Makefile (revision 514561) @@ -1,65 +1,64 @@ # $FreeBSD$ PORTNAME= akonadi DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= databases kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Storage server for KDE-Pim LICENSE= LGPL21 LIB_DEPENDS= libboost_thread.so:devel/boost-libs # Let process generate meaningful backtrace on core dump. BUILD_DEPENDS= xsltproc:textproc/libxslt CONFLICTS= akonadi-[0-9]* akonadi-kf5-git-[0-9]* USES= cmake compiler:c++11-lib gettext kde:5 \ qt:5 shared-mime-info tar:xz USE_GNOME= libxml2 USE_KDE= auth codecs completion config configwidgets coreaddons crash \ dbusaddons ecm guiaddons i18n iconthemes itemmodels itemviews \ kio service windowsystem widgetsaddons xmlgui \ designerplugin_build designerplugin_run USE_QT= concurrent core dbus designer gui network sql testlib widgets xml \ buildtools_build qmake_build CMAKE_ARGS+= -DCMAKE_REQUIRED_INCLUDES:STRING="${LOCALBASE}/include" USE_LDCONFIG= yes OPTIONS_MULTI= DB OPTIONS_MULTI_DB= MYSQL PGSQL SQLITE OPTIONS_SUB= yes MYSQL_DESC= Install MySQL Qt plugin and server MYSQL_USES= qt:5 MYSQL_USE= MYSQL=server QT=sql-mysql_run PGSQL_DESC= Install PostgreSQL Qt plugin # Do not add a dependency on PostgreSQL server as someone preferring # it over MySQL might like to use some advanced configuration, like a # remote server. #PGSQL_USE= PGSQL=server PGSQL_USES= qt:5 PGSQL_USE= QT=sql-pgsql_run SQLITE_DESC= Enable SQLite backend SQLITE_USES= qt:5 sqlite:3 SQLITE_USE= QT=sql-sqlite3_run SQLITE_CMAKE_ON= -DAKONADI_BUILD_QSQLITE:BOOL=ON SQLITE_CMAKE_OFF= -DAKONADI_BUILD_QSQLITE:BOOL=OFF OPTIONS_DEFAULT= MYSQL OPTIONS_DEFINE= DOCS post-patch: # To avoid overflow, MySQL settings need to be lower than # INT_MAX / kern.hz. This setting assumes kern.hz=2000, and # it's nothing but a temporary hack. ${REINPLACE_CMD} -e '/wait_timeout/ s|31536000|1073741|' \ ${PATCH_WRKSRC}/src/server/storage/*.conf .include Index: head/databases/akonadi/distinfo =================================================================== --- head/databases/akonadi/distinfo (revision 514560) +++ head/databases/akonadi/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537125 -SHA256 (KDE/applications/19.08.1/akonadi-19.08.1.tar.xz) = 32233b59c696a5053f2ee4b7368804635a04e2a5f6d3605848eadafa0306c44d -SIZE (KDE/applications/19.08.1/akonadi-19.08.1.tar.xz) = 1577172 +TIMESTAMP = 1570544265 +SHA256 (KDE/applications/19.08.2/akonadi-19.08.2.tar.xz) = f67f0fac07d480739b2d6715862ee47a93fd38f057ac7ef888ed8ddfdc99934f +SIZE (KDE/applications/19.08.2/akonadi-19.08.2.tar.xz) = 1578452 Index: head/deskutils/akonadi-calendar-tools/distinfo =================================================================== --- head/deskutils/akonadi-calendar-tools/distinfo (revision 514560) +++ head/deskutils/akonadi-calendar-tools/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537125 -SHA256 (KDE/applications/19.08.1/akonadi-calendar-tools-19.08.1.tar.xz) = 033fae40bcbdcfa52981026f783b7cc8fecde384d6683747cd3f307bd43b2570 -SIZE (KDE/applications/19.08.1/akonadi-calendar-tools-19.08.1.tar.xz) = 223888 +TIMESTAMP = 1570544266 +SHA256 (KDE/applications/19.08.2/akonadi-calendar-tools-19.08.2.tar.xz) = a352c2bf8659ad7939f31009b8e35e8b1e629162f681a70999e5e88f9aaf6cbb +SIZE (KDE/applications/19.08.2/akonadi-calendar-tools-19.08.2.tar.xz) = 224508 Index: head/deskutils/akonadi-import-wizard/distinfo =================================================================== --- head/deskutils/akonadi-import-wizard/distinfo (revision 514560) +++ head/deskutils/akonadi-import-wizard/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537126 -SHA256 (KDE/applications/19.08.1/akonadi-import-wizard-19.08.1.tar.xz) = d66088ded8917f6034de8981ce71d5d0e1808f6d58f7fdb7e0a806ff0834e27b -SIZE (KDE/applications/19.08.1/akonadi-import-wizard-19.08.1.tar.xz) = 439288 +TIMESTAMP = 1570544266 +SHA256 (KDE/applications/19.08.2/akonadi-import-wizard-19.08.2.tar.xz) = 038713e7d30686eb1b8e49c595ec853ffa52d335e435a5b0bdf2f2a2448cae45 +SIZE (KDE/applications/19.08.2/akonadi-import-wizard-19.08.2.tar.xz) = 438220 Index: head/deskutils/akonadiconsole/distinfo =================================================================== --- head/deskutils/akonadiconsole/distinfo (revision 514560) +++ head/deskutils/akonadiconsole/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537126 -SHA256 (KDE/applications/19.08.1/akonadiconsole-19.08.1.tar.xz) = 9a0f88903757eaf0d3271d4438b3a170640b7cb01a7b2f0fbf10a75fa0093184 -SIZE (KDE/applications/19.08.1/akonadiconsole-19.08.1.tar.xz) = 193760 +TIMESTAMP = 1570544267 +SHA256 (KDE/applications/19.08.2/akonadiconsole-19.08.2.tar.xz) = 273b8f3d56ea65bd71a51103867b0e718d883478432bb971a262df1ea4c6df6c +SIZE (KDE/applications/19.08.2/akonadiconsole-19.08.2.tar.xz) = 193672 Index: head/deskutils/akregator/distinfo =================================================================== --- head/deskutils/akregator/distinfo (revision 514560) +++ head/deskutils/akregator/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537126 -SHA256 (KDE/applications/19.08.1/akregator-19.08.1.tar.xz) = b73fcf1c509398ff496864f0105491792b5b15f37c52f9a8ca74ca254a75494a -SIZE (KDE/applications/19.08.1/akregator-19.08.1.tar.xz) = 2194020 +TIMESTAMP = 1570544268 +SHA256 (KDE/applications/19.08.2/akregator-19.08.2.tar.xz) = cefc0785f40508a80fbf4534eef4d1164e349cfd50455483cef044945d1888c4 +SIZE (KDE/applications/19.08.2/akregator-19.08.2.tar.xz) = 2193612 Index: head/deskutils/grantlee-editor/distinfo =================================================================== --- head/deskutils/grantlee-editor/distinfo (revision 514560) +++ head/deskutils/grantlee-editor/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537127 -SHA256 (KDE/applications/19.08.1/grantlee-editor-19.08.1.tar.xz) = 77661ac1d125349cd3439d130164ad172f0022376d6c6038c860c0440939e52c -SIZE (KDE/applications/19.08.1/grantlee-editor-19.08.1.tar.xz) = 111360 +TIMESTAMP = 1570544268 +SHA256 (KDE/applications/19.08.2/grantlee-editor-19.08.2.tar.xz) = 8e65ca3d949dcdd2b6c2edd582351b123eef49eb104a2dd6c027028315c2d502 +SIZE (KDE/applications/19.08.2/grantlee-editor-19.08.2.tar.xz) = 111056 Index: head/deskutils/grantleetheme/distinfo =================================================================== --- head/deskutils/grantleetheme/distinfo (revision 514560) +++ head/deskutils/grantleetheme/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537127 -SHA256 (KDE/applications/19.08.1/grantleetheme-19.08.1.tar.xz) = 61ec8f4902573727d5a292ba55c3663b267d3b1b8017c003ac3445164c2627cb -SIZE (KDE/applications/19.08.1/grantleetheme-19.08.1.tar.xz) = 52192 +TIMESTAMP = 1570544269 +SHA256 (KDE/applications/19.08.2/grantleetheme-19.08.2.tar.xz) = a9d4e70089debdfaffb4af881cf2064ba68a0ad3fe007985c8e5997f0cf0e836 +SIZE (KDE/applications/19.08.2/grantleetheme-19.08.2.tar.xz) = 52400 Index: head/deskutils/kaddressbook/distinfo =================================================================== --- head/deskutils/kaddressbook/distinfo (revision 514560) +++ head/deskutils/kaddressbook/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537127 -SHA256 (KDE/applications/19.08.1/kaddressbook-19.08.1.tar.xz) = 8091a3bd77ec17757386d71a98a0ef2b6d68e35ca2f9f9b71e4e36c2a3cce5c9 -SIZE (KDE/applications/19.08.1/kaddressbook-19.08.1.tar.xz) = 474952 +TIMESTAMP = 1570544270 +SHA256 (KDE/applications/19.08.2/kaddressbook-19.08.2.tar.xz) = 4d67480ebf8ee96fcde85e66f8ad32119b006e36c87f4e4ac20ecfa967599260 +SIZE (KDE/applications/19.08.2/kaddressbook-19.08.2.tar.xz) = 475268 Index: head/deskutils/kalarm/distinfo =================================================================== --- head/deskutils/kalarm/distinfo (revision 514560) +++ head/deskutils/kalarm/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537138 -SHA256 (KDE/applications/19.08.1/kalarm-19.08.1.tar.xz) = 9eb7c6b160e82ae8d5d294ebd781ef2ac5579e556a564c70598c08925e2021fa -SIZE (KDE/applications/19.08.1/kalarm-19.08.1.tar.xz) = 1823400 +TIMESTAMP = 1570544291 +SHA256 (KDE/applications/19.08.2/kalarm-19.08.2.tar.xz) = 54d61b469042d27b8df903c5fc95dd68c1d108218f1402a733d974ab02576d24 +SIZE (KDE/applications/19.08.2/kalarm-19.08.2.tar.xz) = 1824632 Index: head/deskutils/kcharselect/distinfo =================================================================== --- head/deskutils/kcharselect/distinfo (revision 514560) +++ head/deskutils/kcharselect/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537138 -SHA256 (KDE/applications/19.08.1/kcharselect-19.08.1.tar.xz) = 8b5c418e9b35a12eeaa1ebf7834f2a13613926e824699e13214fe35276c42457 -SIZE (KDE/applications/19.08.1/kcharselect-19.08.1.tar.xz) = 334548 +TIMESTAMP = 1570544291 +SHA256 (KDE/applications/19.08.2/kcharselect-19.08.2.tar.xz) = ff2a8c78fc4a12dd727e8ad8677216d5a480a8c82aff97269397ee8ae01e36df +SIZE (KDE/applications/19.08.2/kcharselect-19.08.2.tar.xz) = 334740 Index: head/deskutils/kdepim-addons/distinfo =================================================================== --- head/deskutils/kdepim-addons/distinfo (revision 514560) +++ head/deskutils/kdepim-addons/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537139 -SHA256 (KDE/applications/19.08.1/kdepim-addons-19.08.1.tar.xz) = eff8e21ae66bf99a33c946886e7d84f5d717b123b06f86e891c9528858b9ec32 -SIZE (KDE/applications/19.08.1/kdepim-addons-19.08.1.tar.xz) = 2092564 +TIMESTAMP = 1570544292 +SHA256 (KDE/applications/19.08.2/kdepim-addons-19.08.2.tar.xz) = 1e7d647689d2bfa243a2f4583df7030238409fb05bbcda5b168ef024e6accc89 +SIZE (KDE/applications/19.08.2/kdepim-addons-19.08.2.tar.xz) = 2088884 Index: head/deskutils/kdepim-apps-libs/distinfo =================================================================== --- head/deskutils/kdepim-apps-libs/distinfo (revision 514560) +++ head/deskutils/kdepim-apps-libs/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537139 -SHA256 (KDE/applications/19.08.1/kdepim-apps-libs-19.08.1.tar.xz) = 40a265cde8770a3fd6181b656da49d460dc67ed06d175067da0092116cd9862e -SIZE (KDE/applications/19.08.1/kdepim-apps-libs-19.08.1.tar.xz) = 82656 +TIMESTAMP = 1570544293 +SHA256 (KDE/applications/19.08.2/kdepim-apps-libs-19.08.2.tar.xz) = d542b1d532d3ce3d9f1c63f4455175c7e855cd1e095a1addf1322074afc11923 +SIZE (KDE/applications/19.08.2/kdepim-apps-libs-19.08.2.tar.xz) = 82684 Index: head/deskutils/kdepim-runtime/Makefile =================================================================== --- head/deskutils/kdepim-runtime/Makefile (revision 514560) +++ head/deskutils/kdepim-runtime/Makefile (revision 514561) @@ -1,43 +1,42 @@ # $FreeBSD$ PORTNAME= kdepim-runtime DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= deskutils kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE PIM tools and services LICENSE= LGPL21 LIB_DEPENDS= libboost_date_time.so:devel/boost-libs \ libcurl.so:ftp/curl \ libkolabxml.so:textproc/libkolabxml \ libqca-qt5.so:devel/qca \ libsasl2.so:security/cyrus-sasl2 \ libxerces-c-3.2.so:textproc/xerces-c3 USES= cmake:noninja compiler:c++11-lib gettext kde:5 qt:5 \ shared-mime-info tar:xz USE_KDE= auth bookmarks codecs completion config configwidgets \ coreaddons crash dbusaddons guiaddons holidays i18n iconthemes \ itemmodels itemviews jobwidgets kcmutils kdelibs4support kio \ kross notifications notifyconfig parts service solid sonnet \ textwidgets unitconversion wallet widgetsaddons windowsystem \ xmlgui # pim components USE_KDE+= akonadi akonadicontacts akonadimime akonadinotes \ akonadicalendar akonadisearch alarmcalendar calendarcore \ calendarutils contacts gapi identitymanagement imap \ kontactinterface kpimdav mailtransport mbox mime pimcommon \ pimtextedit syndication USE_QT= concurrent core dbus declarative gui location network networkauth printsupport speech \ script webchannel webengine widgets xml xmlpatterns \ buildtools_build qmake_build USE_LDCONFIG= yes DESCR= ${.CURDIR:H:H}/deskutils/kdepim/pkg-descr OPTIONS_DEFINE= DOCS .include Index: head/deskutils/kdepim-runtime/distinfo =================================================================== --- head/deskutils/kdepim-runtime/distinfo (revision 514560) +++ head/deskutils/kdepim-runtime/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537139 -SHA256 (KDE/applications/19.08.1/kdepim-runtime-19.08.1.tar.xz) = d7dd6c0108f6c7a37dc1ac0d7b9449664c76ecd3ca4f303f3a1b214862a4b20e -SIZE (KDE/applications/19.08.1/kdepim-runtime-19.08.1.tar.xz) = 1732760 +TIMESTAMP = 1570544294 +SHA256 (KDE/applications/19.08.2/kdepim-runtime-19.08.2.tar.xz) = 9b98980003d2d107596e9acc9482dfc3ea26a2485c75a700bd82b53b9be72ebf +SIZE (KDE/applications/19.08.2/kdepim-runtime-19.08.2.tar.xz) = 1731932 Index: head/deskutils/keditbookmarks/distinfo =================================================================== --- head/deskutils/keditbookmarks/distinfo (revision 514560) +++ head/deskutils/keditbookmarks/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537140 -SHA256 (KDE/applications/19.08.1/keditbookmarks-19.08.1.tar.xz) = f023c7b3d362c19373e3f886300420488ef53835f753c318f9fd9c0bb7e53a8a -SIZE (KDE/applications/19.08.1/keditbookmarks-19.08.1.tar.xz) = 187744 +TIMESTAMP = 1570544294 +SHA256 (KDE/applications/19.08.2/keditbookmarks-19.08.2.tar.xz) = 6a22c3ccdd89d07ad13b34b89704afcc9bf3b5a177d4dc137dcb5eaf1580f6dd +SIZE (KDE/applications/19.08.2/keditbookmarks-19.08.2.tar.xz) = 187636 Index: head/deskutils/kfind/distinfo =================================================================== --- head/deskutils/kfind/distinfo (revision 514560) +++ head/deskutils/kfind/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537140 -SHA256 (KDE/applications/19.08.1/kfind-19.08.1.tar.xz) = a4910d5a3f2b918090084c776ca16bf1e9ae47ced0c2e4eb2a3d0071204527de -SIZE (KDE/applications/19.08.1/kfind-19.08.1.tar.xz) = 270616 +TIMESTAMP = 1570544295 +SHA256 (KDE/applications/19.08.2/kfind-19.08.2.tar.xz) = 7ce5255fa4ef3e98db937eb23e8cdc89bd6b5e5429ccb5fea769e99da2bc424a +SIZE (KDE/applications/19.08.2/kfind-19.08.2.tar.xz) = 270488 Index: head/deskutils/kmail/distinfo =================================================================== --- head/deskutils/kmail/distinfo (revision 514560) +++ head/deskutils/kmail/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537140 -SHA256 (KDE/applications/19.08.1/kmail-19.08.1.tar.xz) = 4deb5d7c5304c0856fbbafeb7bf09436e28782b96dc5ec342a09b2c26ea386c0 -SIZE (KDE/applications/19.08.1/kmail-19.08.1.tar.xz) = 4729780 +TIMESTAMP = 1570544296 +SHA256 (KDE/applications/19.08.2/kmail-19.08.2.tar.xz) = 0ad2a5439da7f255923eeb4c4cf267ece721619aa046a04439f56763aeabac85 +SIZE (KDE/applications/19.08.2/kmail-19.08.2.tar.xz) = 4733752 Index: head/deskutils/kmail/pkg-plist =================================================================== --- head/deskutils/kmail/pkg-plist (revision 514560) +++ head/deskutils/kmail/pkg-plist (revision 514561) @@ -1,387 +1,388 @@ bin/akonadi_archivemail_agent bin/akonadi_followupreminder_agent bin/akonadi_mailfilter_agent bin/akonadi_sendlater_agent bin/akonadi_unifiedmailbox_agent bin/kmail bin/kmail-refresh-settings bin/ktnef share/qlogging-categories5/kmail.categories share/qlogging-categories5/kmail.renamecategories share/qlogging-categories5/ktnefapps.categories share/qlogging-categories5/ktnefapps.renamecategories lib/libkmailprivate.so.5 lib/libkmailprivate.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_PLUGINDIR%%/akonadi/config/archivemailagentconfig.so %%QT_PLUGINDIR%%/akonadi/config/followupreminderagentconfig.so %%QT_PLUGINDIR%%/kcm_kmail.so %%QT_PLUGINDIR%%/kcm_kmailsummary.so %%QT_PLUGINDIR%%/kcm_kontactsummary.so %%QT_PLUGINDIR%%/kmailpart.so %%QT_PLUGINDIR%%/kontact_kmailplugin.so %%QT_PLUGINDIR%%/kontact_summaryplugin.so %%DATADIR%%2/pics/pgp-keys.png share/akonadi/agents/archivemailagent.desktop share/akonadi/agents/followupreminder.desktop share/akonadi/agents/mailfilteragent.desktop share/akonadi/agents/sendlateragent.desktop share/akonadi/agents/unifiedmailboxagent.desktop share/applications/kmail_view.desktop share/applications/org.kde.kmail2.desktop share/applications/org.kde.ktnef.desktop share/applications/org.kde.kmail-refresh-settings.desktop share/config.kcfg/archivemailagentsettings.kcfg share/config.kcfg/kmail.kcfg share/dbus-1/interfaces/org.kde.kmail.kmail.xml share/dbus-1/interfaces/org.kde.kmail.kmailpart.xml share/dbus-1/services/org.kde.kmail.service share/icons/breeze-dark/16x16/emblems/gpg-key-trust-level-0.svg share/icons/breeze-dark/16x16/emblems/gpg-key-trust-level-1.svg share/icons/breeze-dark/16x16/emblems/gpg-key-trust-level-2.svg share/icons/breeze-dark/16x16/emblems/gpg-key-trust-level-3.svg share/icons/breeze-dark/16x16/emblems/gpg-key-trust-level-4.svg share/icons/breeze-dark/22x22/emblems/gpg-key-trust-level-0.svg share/icons/breeze-dark/22x22/emblems/gpg-key-trust-level-1.svg share/icons/breeze-dark/22x22/emblems/gpg-key-trust-level-2.svg share/icons/breeze-dark/22x22/emblems/gpg-key-trust-level-3.svg share/icons/breeze-dark/22x22/emblems/gpg-key-trust-level-4.svg share/icons/breeze-dark/8x8/emblems/gpg-key-trust-level-0.svg share/icons/breeze-dark/8x8/emblems/gpg-key-trust-level-1.svg share/icons/breeze-dark/8x8/emblems/gpg-key-trust-level-2.svg share/icons/breeze-dark/8x8/emblems/gpg-key-trust-level-3.svg share/icons/breeze-dark/8x8/emblems/gpg-key-trust-level-4.svg share/icons/hicolor/128x128/apps/kmail.png share/icons/hicolor/16x16/apps/kmail.png share/icons/hicolor/16x16/emblems/gpg-key-trust-level-0.svg share/icons/hicolor/16x16/emblems/gpg-key-trust-level-1.svg share/icons/hicolor/16x16/emblems/gpg-key-trust-level-2.svg share/icons/hicolor/16x16/emblems/gpg-key-trust-level-3.svg share/icons/hicolor/16x16/emblems/gpg-key-trust-level-4.svg share/icons/hicolor/22x22/actions/ktnef_extract_all_to.png share/icons/hicolor/22x22/actions/ktnef_extract_to.png share/icons/hicolor/22x22/apps/kmail.png share/icons/hicolor/22x22/emblems/gpg-key-trust-level-0.svg share/icons/hicolor/22x22/emblems/gpg-key-trust-level-1.svg share/icons/hicolor/22x22/emblems/gpg-key-trust-level-2.svg share/icons/hicolor/22x22/emblems/gpg-key-trust-level-3.svg share/icons/hicolor/22x22/emblems/gpg-key-trust-level-4.svg share/icons/hicolor/32x32/apps/kmail.png share/icons/hicolor/48x48/apps/kmail.png share/icons/hicolor/48x48/apps/ktnef.png share/icons/hicolor/64x64/apps/kmail.png share/icons/hicolor/8x8/emblems/gpg-key-trust-level-0.svg share/icons/hicolor/8x8/emblems/gpg-key-trust-level-1.svg share/icons/hicolor/8x8/emblems/gpg-key-trust-level-2.svg share/icons/hicolor/8x8/emblems/gpg-key-trust-level-3.svg share/icons/hicolor/8x8/emblems/gpg-key-trust-level-4.svg share/icons/hicolor/scalable/apps/kmail.svg share/kconf_update/kmail-15.08-kickoff.sh share/kconf_update/kmail.upd share/kconf_update/kmail2.sh share/kconf_update/kmail2.upd share/knotifications5/akonadi_archivemail_agent.notifyrc share/knotifications5/akonadi_followupreminder_agent.notifyrc share/knotifications5/akonadi_mailfilter_agent.notifyrc share/knotifications5/akonadi_sendlater_agent.notifyrc share/knotifications5/kmail2.notifyrc share/kontact/ksettingsdialog/kmail.setdlg share/kontact/ksettingsdialog/summary.setdlg share/kservices5/kcmkmailsummary.desktop share/kservices5/kcmkontactsummary.desktop share/kservices5/kmail_config_accounts.desktop share/kservices5/kmail_config_appearance.desktop share/kservices5/kmail_config_composer.desktop share/kservices5/kmail_config_misc.desktop share/kservices5/kmail_config_plugins.desktop share/kservices5/kmail_config_security.desktop share/kservices5/kontact/kmailplugin.desktop share/kservices5/kontact/summaryplugin.desktop share/kxmlgui5/kontactsummary/kontactsummary_part.rc share/locale/ar/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/ar/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/ar/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/ar/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/ar/LC_MESSAGES/kmail.mo share/locale/bg/LC_MESSAGES/kmail.mo share/locale/bs/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/bs/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/bs/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/bs/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/bs/LC_MESSAGES/kmail.mo share/locale/bs/LC_MESSAGES/ktnef.mo share/locale/ca/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/ca/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/ca/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/ca/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/ca/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/ca/LC_MESSAGES/kmail-refresh-settings.mo share/locale/ca/LC_MESSAGES/kmail.mo share/locale/ca/LC_MESSAGES/ktnef.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/ca@valencia/LC_MESSAGES/kmail.mo share/locale/ca@valencia/LC_MESSAGES/ktnef.mo share/locale/cs/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/cs/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/cs/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/cs/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/cs/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/cs/LC_MESSAGES/kmail-refresh-settings.mo share/locale/cs/LC_MESSAGES/kmail.mo share/locale/cs/LC_MESSAGES/ktnef.mo share/locale/da/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/da/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/da/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/da/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/da/LC_MESSAGES/kmail.mo share/locale/da/LC_MESSAGES/ktnef.mo share/locale/de/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/de/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/de/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/de/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/de/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/de/LC_MESSAGES/kmail-refresh-settings.mo share/locale/de/LC_MESSAGES/kmail.mo share/locale/de/LC_MESSAGES/ktnef.mo share/locale/el/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/el/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/el/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/el/LC_MESSAGES/kmail.mo share/locale/el/LC_MESSAGES/ktnef.mo share/locale/en_GB/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/en_GB/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/en_GB/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/en_GB/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/en_GB/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/en_GB/LC_MESSAGES/kmail-refresh-settings.mo share/locale/en_GB/LC_MESSAGES/kmail.mo share/locale/en_GB/LC_MESSAGES/ktnef.mo share/locale/eo/LC_MESSAGES/kmail.mo share/locale/es/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/es/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/es/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/es/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/es/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/es/LC_MESSAGES/kmail-refresh-settings.mo share/locale/es/LC_MESSAGES/kmail.mo share/locale/es/LC_MESSAGES/ktnef.mo share/locale/et/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/et/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/et/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/et/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/et/LC_MESSAGES/kmail.mo share/locale/et/LC_MESSAGES/ktnef.mo share/locale/eu/LC_MESSAGES/kmail.mo share/locale/fa/LC_MESSAGES/kmail.mo share/locale/fi/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/fi/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/fi/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/fi/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/fi/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/fi/LC_MESSAGES/kmail-refresh-settings.mo share/locale/fi/LC_MESSAGES/kmail.mo share/locale/fi/LC_MESSAGES/ktnef.mo share/locale/fr/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/fr/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/fr/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/fr/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/fr/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/fr/LC_MESSAGES/kmail-refresh-settings.mo share/locale/fr/LC_MESSAGES/kmail.mo share/locale/fr/LC_MESSAGES/ktnef.mo share/locale/ga/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/ga/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/ga/LC_MESSAGES/kmail.mo share/locale/ga/LC_MESSAGES/ktnef.mo share/locale/gl/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/gl/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/gl/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/gl/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/gl/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/gl/LC_MESSAGES/kmail-refresh-settings.mo share/locale/gl/LC_MESSAGES/kmail.mo share/locale/gl/LC_MESSAGES/ktnef.mo share/locale/he/LC_MESSAGES/kmail.mo share/locale/hi/LC_MESSAGES/kmail.mo share/locale/hr/LC_MESSAGES/kmail.mo share/locale/hu/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/hu/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/hu/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/hu/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/hu/LC_MESSAGES/kmail.mo share/locale/hu/LC_MESSAGES/ktnef.mo share/locale/ia/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/ia/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/ia/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/ia/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/ia/LC_MESSAGES/kmail.mo share/locale/ia/LC_MESSAGES/ktnef.mo share/locale/is/LC_MESSAGES/kmail.mo share/locale/it/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/it/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/it/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/it/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/it/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/it/LC_MESSAGES/kmail-refresh-settings.mo share/locale/it/LC_MESSAGES/kmail.mo share/locale/it/LC_MESSAGES/ktnef.mo share/locale/ja/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/ja/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/ja/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/ja/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/ja/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/ja/LC_MESSAGES/kmail-refresh-settings.mo share/locale/ja/LC_MESSAGES/kmail.mo share/locale/ja/LC_MESSAGES/ktnef.mo share/locale/kk/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/kk/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/kk/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/kk/LC_MESSAGES/kmail.mo share/locale/kk/LC_MESSAGES/ktnef.mo share/locale/km/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/km/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/km/LC_MESSAGES/kmail.mo share/locale/ko/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/ko/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/ko/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/ko/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/ko/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/ko/LC_MESSAGES/kmail.mo share/locale/ko/LC_MESSAGES/ktnef.mo share/locale/lt/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/lt/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/lt/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/lt/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/lt/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/lt/LC_MESSAGES/kmail.mo share/locale/lt/LC_MESSAGES/ktnef.mo share/locale/lv/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/lv/LC_MESSAGES/kmail.mo share/locale/mr/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/mr/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/mr/LC_MESSAGES/kmail.mo share/locale/mr/LC_MESSAGES/ktnef.mo share/locale/nb/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/nb/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/nb/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/nb/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/nb/LC_MESSAGES/kmail.mo share/locale/nb/LC_MESSAGES/ktnef.mo share/locale/nds/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/nds/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/nds/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/nds/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/nds/LC_MESSAGES/kmail.mo share/locale/nds/LC_MESSAGES/ktnef.mo share/locale/nl/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/nl/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/nl/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/nl/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/nl/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/nl/LC_MESSAGES/kmail-refresh-settings.mo share/locale/nl/LC_MESSAGES/kmail.mo share/locale/nl/LC_MESSAGES/ktnef.mo share/locale/nn/LC_MESSAGES/kmail.mo share/locale/nn/LC_MESSAGES/ktnef.mo share/locale/pa/LC_MESSAGES/kmail.mo share/locale/pl/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/pl/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/pl/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/pl/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/pl/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/pl/LC_MESSAGES/kmail-refresh-settings.mo share/locale/pl/LC_MESSAGES/kmail.mo share/locale/pl/LC_MESSAGES/ktnef.mo share/locale/pt/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/pt/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/pt/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/pt/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/pt/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/pt/LC_MESSAGES/kmail-refresh-settings.mo share/locale/pt/LC_MESSAGES/kmail.mo share/locale/pt/LC_MESSAGES/ktnef.mo share/locale/pt_BR/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/pt_BR/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/pt_BR/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/pt_BR/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/pt_BR/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/pt_BR/LC_MESSAGES/kmail-refresh-settings.mo share/locale/pt_BR/LC_MESSAGES/kmail.mo share/locale/pt_BR/LC_MESSAGES/ktnef.mo share/locale/ro/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/ro/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/ro/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/ro/LC_MESSAGES/kmail.mo share/locale/ro/LC_MESSAGES/ktnef.mo share/locale/ru/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/ru/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/ru/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/ru/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/ru/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/ru/LC_MESSAGES/kmail.mo share/locale/ru/LC_MESSAGES/ktnef.mo share/locale/sk/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/sk/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/sk/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/sk/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/sk/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/sk/LC_MESSAGES/kmail-refresh-settings.mo share/locale/sk/LC_MESSAGES/kmail.mo share/locale/sk/LC_MESSAGES/ktnef.mo share/locale/sl/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/sl/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/sl/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/sl/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/sl/LC_MESSAGES/kmail.mo share/locale/sl/LC_MESSAGES/ktnef.mo share/locale/sr/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/sr/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/sr/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/sr/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/sr/LC_MESSAGES/kmail.mo share/locale/sv/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/sv/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/sv/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/sv/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/sv/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/sv/LC_MESSAGES/kmail-refresh-settings.mo share/locale/sv/LC_MESSAGES/kmail.mo share/locale/sv/LC_MESSAGES/ktnef.mo share/locale/tr/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/tr/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/tr/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/tr/LC_MESSAGES/kmail.mo share/locale/tr/LC_MESSAGES/ktnef.mo share/locale/ug/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/ug/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/ug/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/ug/LC_MESSAGES/kmail.mo share/locale/ug/LC_MESSAGES/ktnef.mo share/locale/uk/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/uk/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/uk/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/uk/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/uk/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/uk/LC_MESSAGES/kmail-refresh-settings.mo share/locale/uk/LC_MESSAGES/kmail.mo share/locale/uk/LC_MESSAGES/ktnef.mo share/locale/wa/LC_MESSAGES/kmail.mo share/locale/zh_CN/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/zh_CN/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/zh_CN/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/zh_CN/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/zh_CN/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/zh_CN/LC_MESSAGES/kmail-refresh-settings.mo share/locale/zh_CN/LC_MESSAGES/kmail.mo share/locale/zh_CN/LC_MESSAGES/ktnef.mo share/locale/zh_TW/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/zh_TW/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/zh_TW/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/zh_TW/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/zh_TW/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo +share/locale/zh_TW/LC_MESSAGES/kmail-refresh-settings.mo share/locale/zh_TW/LC_MESSAGES/kmail.mo share/locale/zh_TW/LC_MESSAGES/ktnef.mo share/metainfo/org.kde.kmail2.appdata.xml Index: head/deskutils/kmail-account-wizard/distinfo =================================================================== --- head/deskutils/kmail-account-wizard/distinfo (revision 514560) +++ head/deskutils/kmail-account-wizard/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537141 -SHA256 (KDE/applications/19.08.1/kmail-account-wizard-19.08.1.tar.xz) = b4f2f769b44845dd02632ce282fc740a35f7f784e9fb54091153365ee88fb864 -SIZE (KDE/applications/19.08.1/kmail-account-wizard-19.08.1.tar.xz) = 157896 +TIMESTAMP = 1570544296 +SHA256 (KDE/applications/19.08.2/kmail-account-wizard-19.08.2.tar.xz) = 769b151d0de47d49e41eaeca501526de41c174f9df99b46418e955163c38e9a8 +SIZE (KDE/applications/19.08.2/kmail-account-wizard-19.08.2.tar.xz) = 158592 Index: head/deskutils/knotes/distinfo =================================================================== --- head/deskutils/knotes/distinfo (revision 514560) +++ head/deskutils/knotes/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537151 -SHA256 (KDE/applications/19.08.1/knotes-19.08.1.tar.xz) = 30b835c063e03d3d9047cbaacf389ee1e261368d2cf73fdfab71b4f9138b8bf7 -SIZE (KDE/applications/19.08.1/knotes-19.08.1.tar.xz) = 319784 +TIMESTAMP = 1570544317 +SHA256 (KDE/applications/19.08.2/knotes-19.08.2.tar.xz) = aa0aa4d215507750b055e9af91f552e723aee8163b36f65a3dd19786cf327cf3 +SIZE (KDE/applications/19.08.2/knotes-19.08.2.tar.xz) = 319280 Index: head/deskutils/kontact/distinfo =================================================================== --- head/deskutils/kontact/distinfo (revision 514560) +++ head/deskutils/kontact/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537151 -SHA256 (KDE/applications/19.08.1/kontact-19.08.1.tar.xz) = 7b57b44ee72211b30fc743fae6580867100ede718909617b90cb926732ecbabb -SIZE (KDE/applications/19.08.1/kontact-19.08.1.tar.xz) = 795000 +TIMESTAMP = 1570544318 +SHA256 (KDE/applications/19.08.2/kontact-19.08.2.tar.xz) = d24023381304fbe388a0840921599d13c86912a1285acfc0a7d607962e37c5cf +SIZE (KDE/applications/19.08.2/kontact-19.08.2.tar.xz) = 794412 Index: head/deskutils/korganizer/distinfo =================================================================== --- head/deskutils/korganizer/distinfo (revision 514560) +++ head/deskutils/korganizer/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537152 -SHA256 (KDE/applications/19.08.1/korganizer-19.08.1.tar.xz) = d7e347df36986926d0e0d1af38130a089b581e400a90cc8bf199cecb29b78023 -SIZE (KDE/applications/19.08.1/korganizer-19.08.1.tar.xz) = 2223984 +TIMESTAMP = 1570544319 +SHA256 (KDE/applications/19.08.2/korganizer-19.08.2.tar.xz) = 969930b66a445873a28bfe2e67876388259e35e89ffce45607583b4a668d9194 +SIZE (KDE/applications/19.08.2/korganizer-19.08.2.tar.xz) = 2225808 Index: head/deskutils/kruler/distinfo =================================================================== --- head/deskutils/kruler/distinfo (revision 514560) +++ head/deskutils/kruler/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537162 -SHA256 (KDE/applications/19.08.1/kruler-19.08.1.tar.xz) = 040eef3746a660798e1701af6d9d17f4d091c30db9321dd5d37b172f5b91d59c -SIZE (KDE/applications/19.08.1/kruler-19.08.1.tar.xz) = 249384 +TIMESTAMP = 1570544340 +SHA256 (KDE/applications/19.08.2/kruler-19.08.2.tar.xz) = 2a3c51a60f503807694cf49796b3bf82c6992ec4c0c15cf38adae92a8dbc24cc +SIZE (KDE/applications/19.08.2/kruler-19.08.2.tar.xz) = 249424 Index: head/deskutils/libkdepim/Makefile =================================================================== --- head/deskutils/libkdepim/Makefile (revision 514560) +++ head/deskutils/libkdepim/Makefile (revision 514561) @@ -1,30 +1,29 @@ # $FreeBSD$ PORTNAME= libkdepim DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= deskutils kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE PIM Libraries LICENSE= LGPL21 LIB_DEPENDS= libboost_thread.so:devel/boost-libs USES= cmake gettext compiler:c++11-lib kde:5 qt:5 tar:xz USE_KDE= auth codecs completion config configwidgets coreaddons ecm \ i18n iconthemes itemmodels itemviews jobwidgets kcmutils \ kio service wallet widgetsaddons # pim components USE_KDE+= akonadi akonadicontacts akonadisearch contacts ldap mime USE_QT= concurrent core dbus designer gui network testlib uiplugin uitools \ widgets xml \ buildtools_build qmake_build USE_LDCONFIG= yes OPTIONS_DEFINE= DOCS .include Index: head/deskutils/libkdepim/distinfo =================================================================== --- head/deskutils/libkdepim/distinfo (revision 514560) +++ head/deskutils/libkdepim/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537162 -SHA256 (KDE/applications/19.08.1/libkdepim-19.08.1.tar.xz) = 46966eaae2bc71a5bab0c22bcfff858e299d7f1cec2203c1d12cebbc084ee9ce -SIZE (KDE/applications/19.08.1/libkdepim-19.08.1.tar.xz) = 333748 +TIMESTAMP = 1570544340 +SHA256 (KDE/applications/19.08.2/libkdepim-19.08.2.tar.xz) = 67578e4c98e7e5d94249144e3720ae5fbc17231d4ecc46cb0e1be6e7ced4a71b +SIZE (KDE/applications/19.08.2/libkdepim-19.08.2.tar.xz) = 333548 Index: head/deskutils/mbox-importer/distinfo =================================================================== --- head/deskutils/mbox-importer/distinfo (revision 514560) +++ head/deskutils/mbox-importer/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537163 -SHA256 (KDE/applications/19.08.1/mbox-importer-19.08.1.tar.xz) = 3f4c96ee65ffa0488df09522e1bda2ea38c0adf420ae66fff11f670566c5536c -SIZE (KDE/applications/19.08.1/mbox-importer-19.08.1.tar.xz) = 33424 +TIMESTAMP = 1570544341 +SHA256 (KDE/applications/19.08.2/mbox-importer-19.08.2.tar.xz) = 644175d6fcb66b878309de899f4a3e060e29d4f31ce337d44ee6e1af5901044f +SIZE (KDE/applications/19.08.2/mbox-importer-19.08.2.tar.xz) = 33420 Index: head/deskutils/pim-data-exporter/distinfo =================================================================== --- head/deskutils/pim-data-exporter/distinfo (revision 514560) +++ head/deskutils/pim-data-exporter/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537163 -SHA256 (KDE/applications/19.08.1/pim-data-exporter-19.08.1.tar.xz) = 766e8b15f7853d84629bc49ad33aa59291d6d95cfd9db279e9e0ad70b0fab1fe -SIZE (KDE/applications/19.08.1/pim-data-exporter-19.08.1.tar.xz) = 203216 +TIMESTAMP = 1570544342 +SHA256 (KDE/applications/19.08.2/pim-data-exporter-19.08.2.tar.xz) = e4703d7a10935814738394a38c5ad54f9923c58e43c397e2e78a4b1b1176f4c2 +SIZE (KDE/applications/19.08.2/pim-data-exporter-19.08.2.tar.xz) = 203804 Index: head/deskutils/pim-sieve-editor/distinfo =================================================================== --- head/deskutils/pim-sieve-editor/distinfo (revision 514560) +++ head/deskutils/pim-sieve-editor/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537163 -SHA256 (KDE/applications/19.08.1/pim-sieve-editor-19.08.1.tar.xz) = b49045d7326cf0ca7fabbf58d8508d61986701887871c4df53fad1f960a64438 -SIZE (KDE/applications/19.08.1/pim-sieve-editor-19.08.1.tar.xz) = 450480 +TIMESTAMP = 1570544342 +SHA256 (KDE/applications/19.08.2/pim-sieve-editor-19.08.2.tar.xz) = ae9f7de78ab9adffe2575bf1367b1ae4928afee1fd299bb91ca2d26b3bb86c03 +SIZE (KDE/applications/19.08.2/pim-sieve-editor-19.08.2.tar.xz) = 451444 Index: head/devel/cervisia/distinfo =================================================================== --- head/devel/cervisia/distinfo (revision 514560) +++ head/devel/cervisia/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537164 -SHA256 (KDE/applications/19.08.1/cervisia-19.08.1.tar.xz) = 726c8d4bd942280e08891e15e47d0a0a88ee951addb3c10e1e9955fad2794b7f -SIZE (KDE/applications/19.08.1/cervisia-19.08.1.tar.xz) = 1894944 +TIMESTAMP = 1570544343 +SHA256 (KDE/applications/19.08.2/cervisia-19.08.2.tar.xz) = 7cbff9d32e2721f6f594a84b42feef6dd76f830e2cc27c6d442d9b6ccbe7fceb +SIZE (KDE/applications/19.08.2/cervisia-19.08.2.tar.xz) = 1894912 Index: head/devel/dolphin-plugins/distinfo =================================================================== --- head/devel/dolphin-plugins/distinfo (revision 514560) +++ head/devel/dolphin-plugins/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537164 -SHA256 (KDE/applications/19.08.1/dolphin-plugins-19.08.1.tar.xz) = ce2452d9f878dfcff45739ff9eb4a3bde69c449c36182dee6b768f362e75ae2e -SIZE (KDE/applications/19.08.1/dolphin-plugins-19.08.1.tar.xz) = 191800 +TIMESTAMP = 1570544344 +SHA256 (KDE/applications/19.08.2/dolphin-plugins-19.08.2.tar.xz) = da2114bd8ed0a70fba3c3cba82a5543cce2f91af7e1dc12bc7457eeffc03099d +SIZE (KDE/applications/19.08.2/dolphin-plugins-19.08.2.tar.xz) = 193652 Index: head/devel/kapptemplate/distinfo =================================================================== --- head/devel/kapptemplate/distinfo (revision 514560) +++ head/devel/kapptemplate/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537164 -SHA256 (KDE/applications/19.08.1/kapptemplate-19.08.1.tar.xz) = c1e5d239ce3749e72bcce30dfc8c0a12c3d347b72a2566caa0d23dcc930499a2 -SIZE (KDE/applications/19.08.1/kapptemplate-19.08.1.tar.xz) = 316292 +TIMESTAMP = 1570544345 +SHA256 (KDE/applications/19.08.2/kapptemplate-19.08.2.tar.xz) = 2b719cf75bf8e9b495a8d9aa8288ddb528617c2e76bd1312cfdb2a43b27d6208 +SIZE (KDE/applications/19.08.2/kapptemplate-19.08.2.tar.xz) = 316568 Index: head/devel/kcachegrind/distinfo =================================================================== --- head/devel/kcachegrind/distinfo (revision 514560) +++ head/devel/kcachegrind/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537165 -SHA256 (KDE/applications/19.08.1/kcachegrind-19.08.1.tar.xz) = e677f82e5527caecb0cdacad3f001665c40ba9e6a542a6a4d91fb898b45026c1 -SIZE (KDE/applications/19.08.1/kcachegrind-19.08.1.tar.xz) = 813348 +TIMESTAMP = 1570544345 +SHA256 (KDE/applications/19.08.2/kcachegrind-19.08.2.tar.xz) = baf17a5c11f21deb7b019a7e3a9819348ec8d20af5c8c4a6108b96266e425b46 +SIZE (KDE/applications/19.08.2/kcachegrind-19.08.2.tar.xz) = 808412 Index: head/devel/kde-dev-scripts/distinfo =================================================================== --- head/devel/kde-dev-scripts/distinfo (revision 514560) +++ head/devel/kde-dev-scripts/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537165 -SHA256 (KDE/applications/19.08.1/kde-dev-scripts-19.08.1.tar.xz) = 36af795eaa175f142556949fa4cc678a6d3fdad3607d169877d94bea785850d1 -SIZE (KDE/applications/19.08.1/kde-dev-scripts-19.08.1.tar.xz) = 378328 +TIMESTAMP = 1570544346 +SHA256 (KDE/applications/19.08.2/kde-dev-scripts-19.08.2.tar.xz) = 9a47b048cec42eedcec05602eb84d4124a1f67d451c22095e688cb24f7057327 +SIZE (KDE/applications/19.08.2/kde-dev-scripts-19.08.2.tar.xz) = 377524 Index: head/devel/kde-dev-utils/distinfo =================================================================== --- head/devel/kde-dev-utils/distinfo (revision 514560) +++ head/devel/kde-dev-utils/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537165 -SHA256 (KDE/applications/19.08.1/kde-dev-utils-19.08.1.tar.xz) = c529bb33dbd3b80e5c4737c3be0d17e88901ece48d3b19e61c8c14adab60177c -SIZE (KDE/applications/19.08.1/kde-dev-utils-19.08.1.tar.xz) = 61628 +TIMESTAMP = 1570544346 +SHA256 (KDE/applications/19.08.2/kde-dev-utils-19.08.2.tar.xz) = 30bbcfa632cbf76a2b3a27f1044ff9708509921882b91a5623cc2a30d40acb32 +SIZE (KDE/applications/19.08.2/kde-dev-utils-19.08.2.tar.xz) = 61840 Index: head/devel/kdesdk-thumbnailers/distinfo =================================================================== --- head/devel/kdesdk-thumbnailers/distinfo (revision 514560) +++ head/devel/kdesdk-thumbnailers/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537166 -SHA256 (KDE/applications/19.08.1/kdesdk-thumbnailers-19.08.1.tar.xz) = 3da4aa540435fbc848bfc4f1b39f37145072e0856da31b4f5ac3d89719308f03 -SIZE (KDE/applications/19.08.1/kdesdk-thumbnailers-19.08.1.tar.xz) = 17332 +TIMESTAMP = 1570544347 +SHA256 (KDE/applications/19.08.2/kdesdk-thumbnailers-19.08.2.tar.xz) = d607f956e9c62ee9e9aa000d5444d33e68621e0741072d0d8c14e52bd4cc96be +SIZE (KDE/applications/19.08.2/kdesdk-thumbnailers-19.08.2.tar.xz) = 17324 Index: head/devel/kio-extras/distinfo =================================================================== --- head/devel/kio-extras/distinfo (revision 514560) +++ head/devel/kio-extras/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537166 -SHA256 (KDE/applications/19.08.1/kio-extras-19.08.1.tar.xz) = de0ba7f3ce73db34b878cb88e36711d6b31aad57a5a735744330f92920666c52 -SIZE (KDE/applications/19.08.1/kio-extras-19.08.1.tar.xz) = 577524 +TIMESTAMP = 1570544348 +SHA256 (KDE/applications/19.08.2/kio-extras-19.08.2.tar.xz) = a0b8f08ab8f9d36cfdc950470f75726e90e9fba159bc2035931cfa6efbfe4394 +SIZE (KDE/applications/19.08.2/kio-extras-19.08.2.tar.xz) = 578324 Index: head/devel/lokalize/distinfo =================================================================== --- head/devel/lokalize/distinfo (revision 514560) +++ head/devel/lokalize/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537166 -SHA256 (KDE/applications/19.08.1/lokalize-19.08.1.tar.xz) = fe1e1f8fb2f2ad3cde1830b2ddbcce0e41ffe5696c6e32b0639c8931967b3943 -SIZE (KDE/applications/19.08.1/lokalize-19.08.1.tar.xz) = 1691072 +TIMESTAMP = 1570544349 +SHA256 (KDE/applications/19.08.2/lokalize-19.08.2.tar.xz) = 3fe3af9f647bcda7f89eab5c3ebb7bce4e9ceb0b7cfb5206c2f6ecdf9cdbe3ee +SIZE (KDE/applications/19.08.2/lokalize-19.08.2.tar.xz) = 1693048 Index: head/devel/poxml/distinfo =================================================================== --- head/devel/poxml/distinfo (revision 514560) +++ head/devel/poxml/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537167 -SHA256 (KDE/applications/19.08.1/poxml-19.08.1.tar.xz) = d38dce3114b01bc72163329dac629c4e5d36db15e09d52dd0ffbcaa645408d98 -SIZE (KDE/applications/19.08.1/poxml-19.08.1.tar.xz) = 43360 +TIMESTAMP = 1570544349 +SHA256 (KDE/applications/19.08.2/poxml-19.08.2.tar.xz) = c5e36bd10d3a8d0474f903eebd45e026ca306beb74829c43a1e7be4ed34ca9e8 +SIZE (KDE/applications/19.08.2/poxml-19.08.2.tar.xz) = 43396 Index: head/devel/umbrello/Makefile =================================================================== --- head/devel/umbrello/Makefile (revision 514560) +++ head/devel/umbrello/Makefile (revision 514561) @@ -1,31 +1,30 @@ # $FreeBSD$ PORTNAME= umbrello DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= devel kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= UML modeller for KDE LIB_DEPENDS= libboost_thread.so:devel/boost-libs USES= cmake compiler:c++11-lang desktop-file-utils gnome kde:5 qt:5 tar:xz USE_GNOME= libxml2 libxslt USE_KDE= archive auth bookmarks codecs completion config configwidgets \ coreaddons crash ecm guiaddons i18n iconthemes itemviews \ jobwidgets kdelibs4support kio notifications parts service \ solid sonnet texteditor textwidgets unitconversion \ widgetsaddons windowsystem xmlgui USE_QT= concurrent core dbus gui network printsupport svg webkit widgets xml \ buildtools_build qmake_build OPTIONS_DEFINE= DOCS post-patch: # The CMakeFile sets BUILD_UNITTESTS to 1, not respecting the # value passed via CMAKE_ARGS. ${REINPLACE_CMD} -e '/BUILD_UNITTESTS/s|1|0|' \ ${PATCH_WRKSRC}/CMakeLists.txt .include Index: head/devel/umbrello/distinfo =================================================================== --- head/devel/umbrello/distinfo (revision 514560) +++ head/devel/umbrello/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537167 -SHA256 (KDE/applications/19.08.1/umbrello-19.08.1.tar.xz) = ce56fa6d96bbc78cf69246d6f45e9b098f8fcc75d7771875a8e638b01bbf6efa -SIZE (KDE/applications/19.08.1/umbrello-19.08.1.tar.xz) = 3704860 +TIMESTAMP = 1570544350 +SHA256 (KDE/applications/19.08.2/umbrello-19.08.2.tar.xz) = 69a721d27ecedbe694d232e04469002dcf2319dd320982aacc2a02e32430c382 +SIZE (KDE/applications/19.08.2/umbrello-19.08.2.tar.xz) = 3702092 Index: head/editors/kate/distinfo =================================================================== --- head/editors/kate/distinfo (revision 514560) +++ head/editors/kate/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537168 -SHA256 (KDE/applications/19.08.1/kate-19.08.1.tar.xz) = 5389e1620a7eb8d7bab7396ee0db1a886fbdd44c8415291db6a917e89dcc77b7 -SIZE (KDE/applications/19.08.1/kate-19.08.1.tar.xz) = 5845160 +TIMESTAMP = 1570544351 +SHA256 (KDE/applications/19.08.2/kate-19.08.2.tar.xz) = 9897f652996e3ebca8a749562cc2d609d704c80b08ec4716622def38f5980b47 +SIZE (KDE/applications/19.08.2/kate-19.08.2.tar.xz) = 5846748 Index: head/editors/kate/pkg-plist =================================================================== --- head/editors/kate/pkg-plist (revision 514560) +++ head/editors/kate/pkg-plist (revision 514561) @@ -1,1252 +1,1253 @@ bin/kate bin/kwrite %%QT_PLUGINDIR%%/ktexteditor/katebacktracebrowserplugin.so %%QT_PLUGINDIR%%/ktexteditor/katebuildplugin.so %%QT_PLUGINDIR%%/ktexteditor/katecloseexceptplugin.so %%QT_PLUGINDIR%%/ktexteditor/katectagsplugin.so %%QT_PLUGINDIR%%/ktexteditor/katefilebrowserplugin.so %%QT_PLUGINDIR%%/ktexteditor/katefiletreeplugin.so %%QT_PLUGINDIR%%/ktexteditor/kategdbplugin.so %%QT_PLUGINDIR%%/ktexteditor/katekonsoleplugin.so %%QT_PLUGINDIR%%/ktexteditor/kateopenheaderplugin.so %%QT_PLUGINDIR%%/ktexteditor/kateprojectplugin.so %%QT_PLUGINDIR%%/ktexteditor/katereplicodeplugin.so %%QT_PLUGINDIR%%/ktexteditor/katesearchplugin.so %%QT_PLUGINDIR%%/ktexteditor/katesnippetsplugin.so %%QT_PLUGINDIR%%/ktexteditor/katesqlplugin.so %%QT_PLUGINDIR%%/ktexteditor/katesymbolviewerplugin.so %%QT_PLUGINDIR%%/ktexteditor/katexmlcheckplugin.so %%QT_PLUGINDIR%%/ktexteditor/katexmltoolsplugin.so %%QT_PLUGINDIR%%/ktexteditor/kterustcompletionplugin.so %%QT_PLUGINDIR%%/ktexteditor/ktexteditor_lumen.so %%QT_PLUGINDIR%%/ktexteditor/ktexteditorpreviewplugin.so %%QT_PLUGINDIR%%/ktexteditor/tabswitcherplugin.so %%QT_PLUGINDIR%%/ktexteditor/textfilterplugin.so %%QT_PLUGINDIR%%/plasma/dataengine/plasma_engine_katesessions.so man/ca/man1/kate.1.gz man/de/man1/kate.1.gz man/es/man1/kate.1.gz man/it/man1/kate.1.gz man/man1/kate.1.gz man/nl/man1/kate.1.gz man/pt/man1/kate.1.gz man/pt_BR/man1/kate.1.gz man/sv/man1/kate.1.gz man/uk/man1/kate.1.gz share/applications/org.kde.kate.desktop share/applications/org.kde.kwrite.desktop share/icons/hicolor/128x128/apps/kate.png share/icons/hicolor/128x128/apps/kwrite.png share/icons/hicolor/16x16/apps/kate.png share/icons/hicolor/16x16/apps/kwrite.png share/icons/hicolor/22x22/apps/kate.png share/icons/hicolor/22x22/apps/kwrite.png share/icons/hicolor/32x32/apps/kate.png share/icons/hicolor/32x32/apps/kwrite.png share/icons/hicolor/48x48/apps/kate.png share/icons/hicolor/48x48/apps/kwrite.png share/icons/hicolor/64x64/apps/kate.png share/icons/hicolor/64x64/apps/kwrite.png share/icons/hicolor/scalable/apps/kate.svgz share/icons/hicolor/scalable/apps/kwrite.svgz share/kateproject/kateproject.example share/katexmltools/html4-loose.dtd.xml share/katexmltools/html4-strict.dtd.xml share/katexmltools/kcfg.dtd.xml share/katexmltools/kde-docbook.dtd.xml share/katexmltools/kpartgui.dtd.xml share/katexmltools/language.dtd.xml share/katexmltools/simplify_dtd.xsl share/katexmltools/testcases.xml share/katexmltools/xhtml1-frameset.dtd.xml share/katexmltools/xhtml1-strict.dtd.xml share/katexmltools/xhtml1-transitional.dtd.xml share/katexmltools/xslt-1.0.dtd.xml share/kservices5/plasma-applet-org.kde.plasma.katesessions.desktop share/kservices5/plasma-dataengine-katesessions.desktop share/locale/ar/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ar/LC_MESSAGES/kate-replicode-plugin.mo share/locale/ar/LC_MESSAGES/kate.mo share/locale/ar/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ar/LC_MESSAGES/katebuild-plugin.mo share/locale/ar/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ar/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ar/LC_MESSAGES/katefiletree.mo share/locale/ar/LC_MESSAGES/kategdbplugin.mo share/locale/ar/LC_MESSAGES/katekonsoleplugin.mo share/locale/ar/LC_MESSAGES/kateopenheader.mo share/locale/ar/LC_MESSAGES/kateproject.mo share/locale/ar/LC_MESSAGES/katesearch.mo share/locale/ar/LC_MESSAGES/katesnippetsplugin.mo share/locale/ar/LC_MESSAGES/katesql.mo share/locale/ar/LC_MESSAGES/katesymbolviewer.mo share/locale/ar/LC_MESSAGES/katetextfilter.mo share/locale/ar/LC_MESSAGES/katexmlcheck.mo share/locale/ar/LC_MESSAGES/katexmltools.mo share/locale/ar/LC_MESSAGES/kterustcompletion.mo share/locale/ar/LC_MESSAGES/kwrite.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/ar/LC_MESSAGES/tabswitcherplugin.mo share/locale/ast/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ast/LC_MESSAGES/kate-replicode-plugin.mo share/locale/ast/LC_MESSAGES/kate.mo share/locale/ast/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ast/LC_MESSAGES/katebuild-plugin.mo share/locale/ast/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ast/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ast/LC_MESSAGES/katefiletree.mo share/locale/ast/LC_MESSAGES/kategdbplugin.mo share/locale/ast/LC_MESSAGES/katekonsoleplugin.mo share/locale/ast/LC_MESSAGES/kateopenheader.mo share/locale/ast/LC_MESSAGES/kateproject.mo share/locale/ast/LC_MESSAGES/katesearch.mo share/locale/ast/LC_MESSAGES/katesnippetsplugin.mo share/locale/ast/LC_MESSAGES/katesql.mo share/locale/ast/LC_MESSAGES/katesymbolviewer.mo share/locale/ast/LC_MESSAGES/katetextfilter.mo share/locale/ast/LC_MESSAGES/katexmlcheck.mo share/locale/ast/LC_MESSAGES/katexmltools.mo share/locale/ast/LC_MESSAGES/kterustcompletion.mo share/locale/ast/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/ast/LC_MESSAGES/kwrite.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/ast/LC_MESSAGES/tabswitcherplugin.mo share/locale/bg/LC_MESSAGES/kate-ctags-plugin.mo share/locale/bg/LC_MESSAGES/kate.mo share/locale/bg/LC_MESSAGES/katefilebrowserplugin.mo share/locale/bg/LC_MESSAGES/katekonsoleplugin.mo share/locale/bg/LC_MESSAGES/kateopenheader.mo share/locale/bg/LC_MESSAGES/katesearch.mo share/locale/bg/LC_MESSAGES/katesql.mo share/locale/bg/LC_MESSAGES/katesymbolviewer.mo share/locale/bg/LC_MESSAGES/kwrite.mo share/locale/bs/LC_MESSAGES/kate-ctags-plugin.mo share/locale/bs/LC_MESSAGES/kate.mo share/locale/bs/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/bs/LC_MESSAGES/katebuild-plugin.mo share/locale/bs/LC_MESSAGES/katecloseexceptplugin.mo share/locale/bs/LC_MESSAGES/katefilebrowserplugin.mo share/locale/bs/LC_MESSAGES/katefiletree.mo share/locale/bs/LC_MESSAGES/kategdbplugin.mo share/locale/bs/LC_MESSAGES/katekonsoleplugin.mo share/locale/bs/LC_MESSAGES/kateopenheader.mo share/locale/bs/LC_MESSAGES/kateproject.mo share/locale/bs/LC_MESSAGES/katesearch.mo share/locale/bs/LC_MESSAGES/katesnippetsplugin.mo share/locale/bs/LC_MESSAGES/katesql.mo share/locale/bs/LC_MESSAGES/katesymbolviewer.mo share/locale/bs/LC_MESSAGES/katetextfilter.mo share/locale/bs/LC_MESSAGES/katexmltools.mo share/locale/bs/LC_MESSAGES/kwrite.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/bs/LC_MESSAGES/tabswitcherplugin.mo share/locale/ca/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ca/LC_MESSAGES/kate-replicode-plugin.mo share/locale/ca/LC_MESSAGES/kate.mo share/locale/ca/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ca/LC_MESSAGES/katebuild-plugin.mo share/locale/ca/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ca/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ca/LC_MESSAGES/katefiletree.mo share/locale/ca/LC_MESSAGES/kategdbplugin.mo share/locale/ca/LC_MESSAGES/katekonsoleplugin.mo share/locale/ca/LC_MESSAGES/kateopenheader.mo share/locale/ca/LC_MESSAGES/kateproject.mo share/locale/ca/LC_MESSAGES/katesearch.mo share/locale/ca/LC_MESSAGES/katesnippetsplugin.mo share/locale/ca/LC_MESSAGES/katesql.mo share/locale/ca/LC_MESSAGES/katesymbolviewer.mo share/locale/ca/LC_MESSAGES/katetextfilter.mo share/locale/ca/LC_MESSAGES/katexmlcheck.mo share/locale/ca/LC_MESSAGES/katexmltools.mo share/locale/ca/LC_MESSAGES/kterustcompletion.mo share/locale/ca/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/ca/LC_MESSAGES/kwrite.mo share/locale/ca/LC_MESSAGES/lspclient.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/ca/LC_MESSAGES/tabswitcherplugin.mo share/locale/ca@valencia/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ca@valencia/LC_MESSAGES/kate-replicode-plugin.mo share/locale/ca@valencia/LC_MESSAGES/kate.mo share/locale/ca@valencia/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ca@valencia/LC_MESSAGES/katebuild-plugin.mo share/locale/ca@valencia/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ca@valencia/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ca@valencia/LC_MESSAGES/katefiletree.mo share/locale/ca@valencia/LC_MESSAGES/kategdbplugin.mo share/locale/ca@valencia/LC_MESSAGES/katekonsoleplugin.mo share/locale/ca@valencia/LC_MESSAGES/kateopenheader.mo share/locale/ca@valencia/LC_MESSAGES/kateproject.mo share/locale/ca@valencia/LC_MESSAGES/katesearch.mo share/locale/ca@valencia/LC_MESSAGES/katesnippetsplugin.mo share/locale/ca@valencia/LC_MESSAGES/katesql.mo share/locale/ca@valencia/LC_MESSAGES/katesymbolviewer.mo share/locale/ca@valencia/LC_MESSAGES/katetextfilter.mo share/locale/ca@valencia/LC_MESSAGES/katexmlcheck.mo share/locale/ca@valencia/LC_MESSAGES/katexmltools.mo share/locale/ca@valencia/LC_MESSAGES/kterustcompletion.mo share/locale/ca@valencia/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/ca@valencia/LC_MESSAGES/kwrite.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/ca@valencia/LC_MESSAGES/tabswitcherplugin.mo share/locale/cs/LC_MESSAGES/kate-ctags-plugin.mo share/locale/cs/LC_MESSAGES/kate-replicode-plugin.mo share/locale/cs/LC_MESSAGES/kate.mo share/locale/cs/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/cs/LC_MESSAGES/katebuild-plugin.mo share/locale/cs/LC_MESSAGES/katecloseexceptplugin.mo share/locale/cs/LC_MESSAGES/katefilebrowserplugin.mo share/locale/cs/LC_MESSAGES/katefiletree.mo share/locale/cs/LC_MESSAGES/kategdbplugin.mo share/locale/cs/LC_MESSAGES/katekonsoleplugin.mo share/locale/cs/LC_MESSAGES/kateopenheader.mo share/locale/cs/LC_MESSAGES/kateproject.mo share/locale/cs/LC_MESSAGES/katesearch.mo share/locale/cs/LC_MESSAGES/katesnippetsplugin.mo share/locale/cs/LC_MESSAGES/katesql.mo share/locale/cs/LC_MESSAGES/katesymbolviewer.mo share/locale/cs/LC_MESSAGES/katetextfilter.mo share/locale/cs/LC_MESSAGES/katexmlcheck.mo share/locale/cs/LC_MESSAGES/katexmltools.mo share/locale/cs/LC_MESSAGES/kterustcompletion.mo share/locale/cs/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/cs/LC_MESSAGES/kwrite.mo share/locale/cs/LC_MESSAGES/lspclient.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/cs/LC_MESSAGES/tabswitcherplugin.mo share/locale/da/LC_MESSAGES/kate-ctags-plugin.mo share/locale/da/LC_MESSAGES/kate-replicode-plugin.mo share/locale/da/LC_MESSAGES/kate.mo share/locale/da/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/da/LC_MESSAGES/katebuild-plugin.mo share/locale/da/LC_MESSAGES/katecloseexceptplugin.mo share/locale/da/LC_MESSAGES/katefilebrowserplugin.mo share/locale/da/LC_MESSAGES/katefiletree.mo share/locale/da/LC_MESSAGES/kategdbplugin.mo share/locale/da/LC_MESSAGES/katekonsoleplugin.mo share/locale/da/LC_MESSAGES/kateopenheader.mo share/locale/da/LC_MESSAGES/kateproject.mo share/locale/da/LC_MESSAGES/katesearch.mo share/locale/da/LC_MESSAGES/katesnippetsplugin.mo share/locale/da/LC_MESSAGES/katesql.mo share/locale/da/LC_MESSAGES/katesymbolviewer.mo share/locale/da/LC_MESSAGES/katetextfilter.mo share/locale/da/LC_MESSAGES/katexmlcheck.mo share/locale/da/LC_MESSAGES/katexmltools.mo share/locale/da/LC_MESSAGES/kterustcompletion.mo share/locale/da/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/da/LC_MESSAGES/kwrite.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/da/LC_MESSAGES/tabswitcherplugin.mo share/locale/de/LC_MESSAGES/kate-ctags-plugin.mo share/locale/de/LC_MESSAGES/kate-replicode-plugin.mo share/locale/de/LC_MESSAGES/kate.mo share/locale/de/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/de/LC_MESSAGES/katebuild-plugin.mo share/locale/de/LC_MESSAGES/katecloseexceptplugin.mo share/locale/de/LC_MESSAGES/katefilebrowserplugin.mo share/locale/de/LC_MESSAGES/katefiletree.mo share/locale/de/LC_MESSAGES/kategdbplugin.mo share/locale/de/LC_MESSAGES/katekonsoleplugin.mo share/locale/de/LC_MESSAGES/kateopenheader.mo share/locale/de/LC_MESSAGES/kateproject.mo share/locale/de/LC_MESSAGES/katesearch.mo share/locale/de/LC_MESSAGES/katesnippetsplugin.mo share/locale/de/LC_MESSAGES/katesql.mo share/locale/de/LC_MESSAGES/katesymbolviewer.mo share/locale/de/LC_MESSAGES/katetextfilter.mo share/locale/de/LC_MESSAGES/katexmlcheck.mo share/locale/de/LC_MESSAGES/katexmltools.mo share/locale/de/LC_MESSAGES/kterustcompletion.mo share/locale/de/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/de/LC_MESSAGES/kwrite.mo share/locale/de/LC_MESSAGES/lspclient.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/de/LC_MESSAGES/tabswitcherplugin.mo share/locale/el/LC_MESSAGES/kate-ctags-plugin.mo share/locale/el/LC_MESSAGES/kate-replicode-plugin.mo share/locale/el/LC_MESSAGES/kate.mo share/locale/el/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/el/LC_MESSAGES/katebuild-plugin.mo share/locale/el/LC_MESSAGES/katecloseexceptplugin.mo share/locale/el/LC_MESSAGES/katefilebrowserplugin.mo share/locale/el/LC_MESSAGES/katefiletree.mo share/locale/el/LC_MESSAGES/kategdbplugin.mo share/locale/el/LC_MESSAGES/katekonsoleplugin.mo share/locale/el/LC_MESSAGES/kateopenheader.mo share/locale/el/LC_MESSAGES/kateproject.mo share/locale/el/LC_MESSAGES/katesearch.mo share/locale/el/LC_MESSAGES/katesnippetsplugin.mo share/locale/el/LC_MESSAGES/katesql.mo share/locale/el/LC_MESSAGES/katesymbolviewer.mo share/locale/el/LC_MESSAGES/katetextfilter.mo share/locale/el/LC_MESSAGES/katexmlcheck.mo share/locale/el/LC_MESSAGES/katexmltools.mo share/locale/el/LC_MESSAGES/kterustcompletion.mo share/locale/el/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/el/LC_MESSAGES/kwrite.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/el/LC_MESSAGES/tabswitcherplugin.mo share/locale/en_GB/LC_MESSAGES/kate-ctags-plugin.mo share/locale/en_GB/LC_MESSAGES/kate-replicode-plugin.mo share/locale/en_GB/LC_MESSAGES/kate.mo share/locale/en_GB/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/en_GB/LC_MESSAGES/katebuild-plugin.mo share/locale/en_GB/LC_MESSAGES/katecloseexceptplugin.mo share/locale/en_GB/LC_MESSAGES/katefilebrowserplugin.mo share/locale/en_GB/LC_MESSAGES/katefiletree.mo share/locale/en_GB/LC_MESSAGES/kategdbplugin.mo share/locale/en_GB/LC_MESSAGES/katekonsoleplugin.mo share/locale/en_GB/LC_MESSAGES/kateopenheader.mo share/locale/en_GB/LC_MESSAGES/kateproject.mo share/locale/en_GB/LC_MESSAGES/katesearch.mo share/locale/en_GB/LC_MESSAGES/katesnippetsplugin.mo share/locale/en_GB/LC_MESSAGES/katesql.mo share/locale/en_GB/LC_MESSAGES/katesymbolviewer.mo share/locale/en_GB/LC_MESSAGES/katetextfilter.mo share/locale/en_GB/LC_MESSAGES/katexmlcheck.mo share/locale/en_GB/LC_MESSAGES/katexmltools.mo share/locale/en_GB/LC_MESSAGES/kterustcompletion.mo share/locale/en_GB/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/en_GB/LC_MESSAGES/kwrite.mo share/locale/en_GB/LC_MESSAGES/lspclient.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/en_GB/LC_MESSAGES/tabswitcherplugin.mo share/locale/eo/LC_MESSAGES/kate-ctags-plugin.mo share/locale/eo/LC_MESSAGES/kate.mo share/locale/eo/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/eo/LC_MESSAGES/katebuild-plugin.mo share/locale/eo/LC_MESSAGES/katefilebrowserplugin.mo share/locale/eo/LC_MESSAGES/katekonsoleplugin.mo share/locale/eo/LC_MESSAGES/kateopenheader.mo share/locale/eo/LC_MESSAGES/katesymbolviewer.mo share/locale/eo/LC_MESSAGES/katetextfilter.mo share/locale/eo/LC_MESSAGES/katexmltools.mo share/locale/eo/LC_MESSAGES/kwrite.mo share/locale/es/LC_MESSAGES/kate-ctags-plugin.mo share/locale/es/LC_MESSAGES/kate-replicode-plugin.mo share/locale/es/LC_MESSAGES/kate.mo share/locale/es/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/es/LC_MESSAGES/katebuild-plugin.mo share/locale/es/LC_MESSAGES/katecloseexceptplugin.mo share/locale/es/LC_MESSAGES/katefilebrowserplugin.mo share/locale/es/LC_MESSAGES/katefiletree.mo share/locale/es/LC_MESSAGES/kategdbplugin.mo share/locale/es/LC_MESSAGES/katekonsoleplugin.mo share/locale/es/LC_MESSAGES/kateopenheader.mo share/locale/es/LC_MESSAGES/kateproject.mo share/locale/es/LC_MESSAGES/katesearch.mo share/locale/es/LC_MESSAGES/katesnippetsplugin.mo share/locale/es/LC_MESSAGES/katesql.mo share/locale/es/LC_MESSAGES/katesymbolviewer.mo share/locale/es/LC_MESSAGES/katetextfilter.mo share/locale/es/LC_MESSAGES/katexmlcheck.mo share/locale/es/LC_MESSAGES/katexmltools.mo share/locale/es/LC_MESSAGES/kterustcompletion.mo share/locale/es/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/es/LC_MESSAGES/kwrite.mo share/locale/es/LC_MESSAGES/lspclient.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/es/LC_MESSAGES/tabswitcherplugin.mo share/locale/et/LC_MESSAGES/kate-ctags-plugin.mo share/locale/et/LC_MESSAGES/kate-replicode-plugin.mo share/locale/et/LC_MESSAGES/kate.mo share/locale/et/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/et/LC_MESSAGES/katebuild-plugin.mo share/locale/et/LC_MESSAGES/katecloseexceptplugin.mo share/locale/et/LC_MESSAGES/katefilebrowserplugin.mo share/locale/et/LC_MESSAGES/katefiletree.mo share/locale/et/LC_MESSAGES/kategdbplugin.mo share/locale/et/LC_MESSAGES/katekonsoleplugin.mo share/locale/et/LC_MESSAGES/kateopenheader.mo share/locale/et/LC_MESSAGES/kateproject.mo share/locale/et/LC_MESSAGES/katesearch.mo share/locale/et/LC_MESSAGES/katesnippetsplugin.mo share/locale/et/LC_MESSAGES/katesql.mo share/locale/et/LC_MESSAGES/katesymbolviewer.mo share/locale/et/LC_MESSAGES/katetextfilter.mo share/locale/et/LC_MESSAGES/katexmlcheck.mo share/locale/et/LC_MESSAGES/katexmltools.mo share/locale/et/LC_MESSAGES/kterustcompletion.mo share/locale/et/LC_MESSAGES/kwrite.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/et/LC_MESSAGES/tabswitcherplugin.mo share/locale/eu/LC_MESSAGES/kate-ctags-plugin.mo share/locale/eu/LC_MESSAGES/kate-replicode-plugin.mo share/locale/eu/LC_MESSAGES/kate.mo share/locale/eu/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/eu/LC_MESSAGES/katebuild-plugin.mo share/locale/eu/LC_MESSAGES/katecloseexceptplugin.mo share/locale/eu/LC_MESSAGES/katefilebrowserplugin.mo share/locale/eu/LC_MESSAGES/katefiletree.mo share/locale/eu/LC_MESSAGES/kategdbplugin.mo share/locale/eu/LC_MESSAGES/katekonsoleplugin.mo share/locale/eu/LC_MESSAGES/kateopenheader.mo share/locale/eu/LC_MESSAGES/kateproject.mo share/locale/eu/LC_MESSAGES/katesearch.mo share/locale/eu/LC_MESSAGES/katesnippetsplugin.mo share/locale/eu/LC_MESSAGES/katesql.mo share/locale/eu/LC_MESSAGES/katesymbolviewer.mo share/locale/eu/LC_MESSAGES/katetextfilter.mo share/locale/eu/LC_MESSAGES/katexmlcheck.mo share/locale/eu/LC_MESSAGES/katexmltools.mo share/locale/eu/LC_MESSAGES/kterustcompletion.mo share/locale/eu/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/eu/LC_MESSAGES/kwrite.mo share/locale/eu/LC_MESSAGES/lspclient.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/eu/LC_MESSAGES/tabswitcherplugin.mo share/locale/fa/LC_MESSAGES/kate-ctags-plugin.mo share/locale/fa/LC_MESSAGES/kate.mo share/locale/fa/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/fa/LC_MESSAGES/katebuild-plugin.mo share/locale/fa/LC_MESSAGES/katecloseexceptplugin.mo share/locale/fa/LC_MESSAGES/katefilebrowserplugin.mo share/locale/fa/LC_MESSAGES/kategdbplugin.mo share/locale/fa/LC_MESSAGES/katekonsoleplugin.mo share/locale/fa/LC_MESSAGES/kateopenheader.mo share/locale/fa/LC_MESSAGES/katetextfilter.mo share/locale/fa/LC_MESSAGES/katexmltools.mo share/locale/fa/LC_MESSAGES/kwrite.mo share/locale/fi/LC_MESSAGES/kate-ctags-plugin.mo share/locale/fi/LC_MESSAGES/kate-replicode-plugin.mo share/locale/fi/LC_MESSAGES/kate.mo share/locale/fi/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/fi/LC_MESSAGES/katebuild-plugin.mo share/locale/fi/LC_MESSAGES/katecloseexceptplugin.mo share/locale/fi/LC_MESSAGES/katefilebrowserplugin.mo share/locale/fi/LC_MESSAGES/katefiletree.mo share/locale/fi/LC_MESSAGES/kategdbplugin.mo share/locale/fi/LC_MESSAGES/katekonsoleplugin.mo share/locale/fi/LC_MESSAGES/kateopenheader.mo share/locale/fi/LC_MESSAGES/kateproject.mo share/locale/fi/LC_MESSAGES/katesearch.mo share/locale/fi/LC_MESSAGES/katesnippetsplugin.mo share/locale/fi/LC_MESSAGES/katesql.mo share/locale/fi/LC_MESSAGES/katesymbolviewer.mo share/locale/fi/LC_MESSAGES/katetextfilter.mo share/locale/fi/LC_MESSAGES/katexmlcheck.mo share/locale/fi/LC_MESSAGES/katexmltools.mo share/locale/fi/LC_MESSAGES/kterustcompletion.mo share/locale/fi/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/fi/LC_MESSAGES/kwrite.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/fi/LC_MESSAGES/tabswitcherplugin.mo share/locale/fr/LC_MESSAGES/kate-ctags-plugin.mo share/locale/fr/LC_MESSAGES/kate-replicode-plugin.mo share/locale/fr/LC_MESSAGES/kate.mo share/locale/fr/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/fr/LC_MESSAGES/katebuild-plugin.mo share/locale/fr/LC_MESSAGES/katecloseexceptplugin.mo share/locale/fr/LC_MESSAGES/katefilebrowserplugin.mo share/locale/fr/LC_MESSAGES/katefiletree.mo share/locale/fr/LC_MESSAGES/kategdbplugin.mo share/locale/fr/LC_MESSAGES/katekonsoleplugin.mo share/locale/fr/LC_MESSAGES/kateopenheader.mo share/locale/fr/LC_MESSAGES/kateproject.mo share/locale/fr/LC_MESSAGES/katesearch.mo share/locale/fr/LC_MESSAGES/katesnippetsplugin.mo share/locale/fr/LC_MESSAGES/katesql.mo share/locale/fr/LC_MESSAGES/katesymbolviewer.mo share/locale/fr/LC_MESSAGES/katetextfilter.mo share/locale/fr/LC_MESSAGES/katexmlcheck.mo share/locale/fr/LC_MESSAGES/katexmltools.mo share/locale/fr/LC_MESSAGES/kterustcompletion.mo share/locale/fr/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/fr/LC_MESSAGES/kwrite.mo share/locale/fr/LC_MESSAGES/lspclient.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/fr/LC_MESSAGES/tabswitcherplugin.mo share/locale/ga/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ga/LC_MESSAGES/kate.mo share/locale/ga/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ga/LC_MESSAGES/katebuild-plugin.mo share/locale/ga/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ga/LC_MESSAGES/kategdbplugin.mo share/locale/ga/LC_MESSAGES/katekonsoleplugin.mo share/locale/ga/LC_MESSAGES/kateopenheader.mo share/locale/ga/LC_MESSAGES/kateproject.mo share/locale/ga/LC_MESSAGES/katesearch.mo share/locale/ga/LC_MESSAGES/katesnippetsplugin.mo share/locale/ga/LC_MESSAGES/katesql.mo share/locale/ga/LC_MESSAGES/katesymbolviewer.mo share/locale/ga/LC_MESSAGES/katetextfilter.mo share/locale/ga/LC_MESSAGES/katexmltools.mo share/locale/ga/LC_MESSAGES/kwrite.mo share/locale/gl/LC_MESSAGES/kate-ctags-plugin.mo share/locale/gl/LC_MESSAGES/kate-replicode-plugin.mo share/locale/gl/LC_MESSAGES/kate.mo share/locale/gl/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/gl/LC_MESSAGES/katebuild-plugin.mo share/locale/gl/LC_MESSAGES/katecloseexceptplugin.mo share/locale/gl/LC_MESSAGES/katefilebrowserplugin.mo share/locale/gl/LC_MESSAGES/katefiletree.mo share/locale/gl/LC_MESSAGES/kategdbplugin.mo share/locale/gl/LC_MESSAGES/katekonsoleplugin.mo share/locale/gl/LC_MESSAGES/kateopenheader.mo share/locale/gl/LC_MESSAGES/kateproject.mo share/locale/gl/LC_MESSAGES/katesearch.mo share/locale/gl/LC_MESSAGES/katesnippetsplugin.mo share/locale/gl/LC_MESSAGES/katesql.mo share/locale/gl/LC_MESSAGES/katesymbolviewer.mo share/locale/gl/LC_MESSAGES/katetextfilter.mo share/locale/gl/LC_MESSAGES/katexmlcheck.mo share/locale/gl/LC_MESSAGES/katexmltools.mo share/locale/gl/LC_MESSAGES/kterustcompletion.mo share/locale/gl/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/gl/LC_MESSAGES/kwrite.mo share/locale/gl/LC_MESSAGES/lspclient.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/gl/LC_MESSAGES/tabswitcherplugin.mo share/locale/he/LC_MESSAGES/kate-ctags-plugin.mo share/locale/he/LC_MESSAGES/kate-replicode-plugin.mo share/locale/he/LC_MESSAGES/kate.mo share/locale/he/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/he/LC_MESSAGES/katebuild-plugin.mo share/locale/he/LC_MESSAGES/katecloseexceptplugin.mo share/locale/he/LC_MESSAGES/katefilebrowserplugin.mo share/locale/he/LC_MESSAGES/katekonsoleplugin.mo share/locale/he/LC_MESSAGES/kateopenheader.mo share/locale/he/LC_MESSAGES/kateproject.mo share/locale/he/LC_MESSAGES/katesearch.mo share/locale/he/LC_MESSAGES/katesymbolviewer.mo share/locale/he/LC_MESSAGES/katetextfilter.mo share/locale/he/LC_MESSAGES/katexmltools.mo share/locale/he/LC_MESSAGES/kwrite.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/hi/LC_MESSAGES/kate.mo share/locale/hi/LC_MESSAGES/katefilebrowserplugin.mo share/locale/hi/LC_MESSAGES/katekonsoleplugin.mo share/locale/hi/LC_MESSAGES/kateopenheader.mo share/locale/hi/LC_MESSAGES/katesymbolviewer.mo share/locale/hi/LC_MESSAGES/katetextfilter.mo share/locale/hi/LC_MESSAGES/katexmltools.mo share/locale/hi/LC_MESSAGES/kterustcompletion.mo share/locale/hi/LC_MESSAGES/kwrite.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/hr/LC_MESSAGES/kate.mo share/locale/hr/LC_MESSAGES/kateopenheader.mo share/locale/hr/LC_MESSAGES/katesymbolviewer.mo share/locale/hr/LC_MESSAGES/katetextfilter.mo share/locale/hr/LC_MESSAGES/katexmltools.mo share/locale/hr/LC_MESSAGES/kwrite.mo share/locale/hu/LC_MESSAGES/kate-ctags-plugin.mo share/locale/hu/LC_MESSAGES/kate-replicode-plugin.mo share/locale/hu/LC_MESSAGES/kate.mo share/locale/hu/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/hu/LC_MESSAGES/katebuild-plugin.mo share/locale/hu/LC_MESSAGES/katecloseexceptplugin.mo share/locale/hu/LC_MESSAGES/katefilebrowserplugin.mo share/locale/hu/LC_MESSAGES/katefiletree.mo share/locale/hu/LC_MESSAGES/kategdbplugin.mo share/locale/hu/LC_MESSAGES/katekonsoleplugin.mo share/locale/hu/LC_MESSAGES/kateopenheader.mo share/locale/hu/LC_MESSAGES/kateproject.mo share/locale/hu/LC_MESSAGES/katesearch.mo share/locale/hu/LC_MESSAGES/katesnippetsplugin.mo share/locale/hu/LC_MESSAGES/katesql.mo share/locale/hu/LC_MESSAGES/katesymbolviewer.mo share/locale/hu/LC_MESSAGES/katetextfilter.mo share/locale/hu/LC_MESSAGES/katexmltools.mo share/locale/hu/LC_MESSAGES/kterustcompletion.mo share/locale/hu/LC_MESSAGES/kwrite.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/hu/LC_MESSAGES/tabswitcherplugin.mo share/locale/ia/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ia/LC_MESSAGES/kate-replicode-plugin.mo share/locale/ia/LC_MESSAGES/kate.mo share/locale/ia/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ia/LC_MESSAGES/katebuild-plugin.mo share/locale/ia/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ia/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ia/LC_MESSAGES/katefiletree.mo share/locale/ia/LC_MESSAGES/kategdbplugin.mo share/locale/ia/LC_MESSAGES/katekonsoleplugin.mo share/locale/ia/LC_MESSAGES/kateopenheader.mo share/locale/ia/LC_MESSAGES/kateproject.mo share/locale/ia/LC_MESSAGES/katesearch.mo share/locale/ia/LC_MESSAGES/katesnippetsplugin.mo share/locale/ia/LC_MESSAGES/katesql.mo share/locale/ia/LC_MESSAGES/katesymbolviewer.mo share/locale/ia/LC_MESSAGES/katetextfilter.mo share/locale/ia/LC_MESSAGES/katexmlcheck.mo share/locale/ia/LC_MESSAGES/katexmltools.mo share/locale/ia/LC_MESSAGES/kterustcompletion.mo share/locale/ia/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/ia/LC_MESSAGES/kwrite.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/ia/LC_MESSAGES/tabswitcherplugin.mo share/locale/id/LC_MESSAGES/kate-ctags-plugin.mo share/locale/id/LC_MESSAGES/kate-replicode-plugin.mo share/locale/id/LC_MESSAGES/kate.mo share/locale/id/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/id/LC_MESSAGES/katebuild-plugin.mo share/locale/id/LC_MESSAGES/katecloseexceptplugin.mo share/locale/id/LC_MESSAGES/katefilebrowserplugin.mo share/locale/id/LC_MESSAGES/katefiletree.mo share/locale/id/LC_MESSAGES/kategdbplugin.mo share/locale/id/LC_MESSAGES/katekonsoleplugin.mo share/locale/id/LC_MESSAGES/kateopenheader.mo share/locale/id/LC_MESSAGES/kateproject.mo share/locale/id/LC_MESSAGES/katesearch.mo share/locale/id/LC_MESSAGES/katesnippetsplugin.mo share/locale/id/LC_MESSAGES/katesql.mo share/locale/id/LC_MESSAGES/katesymbolviewer.mo share/locale/id/LC_MESSAGES/katetextfilter.mo share/locale/id/LC_MESSAGES/katexmlcheck.mo share/locale/id/LC_MESSAGES/katexmltools.mo share/locale/id/LC_MESSAGES/kterustcompletion.mo share/locale/id/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/id/LC_MESSAGES/kwrite.mo share/locale/id/LC_MESSAGES/lspclient.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/id/LC_MESSAGES/tabswitcherplugin.mo share/locale/is/LC_MESSAGES/kate.mo share/locale/is/LC_MESSAGES/katefilebrowserplugin.mo share/locale/is/LC_MESSAGES/katekonsoleplugin.mo share/locale/is/LC_MESSAGES/kateopenheader.mo share/locale/is/LC_MESSAGES/katesearch.mo share/locale/is/LC_MESSAGES/katesymbolviewer.mo share/locale/is/LC_MESSAGES/katetextfilter.mo share/locale/is/LC_MESSAGES/katexmltools.mo share/locale/is/LC_MESSAGES/kwrite.mo share/locale/it/LC_MESSAGES/kate-ctags-plugin.mo share/locale/it/LC_MESSAGES/kate-replicode-plugin.mo share/locale/it/LC_MESSAGES/kate.mo share/locale/it/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/it/LC_MESSAGES/katebuild-plugin.mo share/locale/it/LC_MESSAGES/katecloseexceptplugin.mo share/locale/it/LC_MESSAGES/katefilebrowserplugin.mo share/locale/it/LC_MESSAGES/katefiletree.mo share/locale/it/LC_MESSAGES/kategdbplugin.mo share/locale/it/LC_MESSAGES/katekonsoleplugin.mo share/locale/it/LC_MESSAGES/kateopenheader.mo share/locale/it/LC_MESSAGES/kateproject.mo share/locale/it/LC_MESSAGES/katesearch.mo share/locale/it/LC_MESSAGES/katesnippetsplugin.mo share/locale/it/LC_MESSAGES/katesql.mo share/locale/it/LC_MESSAGES/katesymbolviewer.mo share/locale/it/LC_MESSAGES/katetextfilter.mo share/locale/it/LC_MESSAGES/katexmlcheck.mo share/locale/it/LC_MESSAGES/katexmltools.mo share/locale/it/LC_MESSAGES/kterustcompletion.mo share/locale/it/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/it/LC_MESSAGES/kwrite.mo share/locale/it/LC_MESSAGES/lspclient.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/it/LC_MESSAGES/tabswitcherplugin.mo share/locale/ja/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ja/LC_MESSAGES/kate-replicode-plugin.mo share/locale/ja/LC_MESSAGES/kate.mo share/locale/ja/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ja/LC_MESSAGES/katebuild-plugin.mo share/locale/ja/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ja/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ja/LC_MESSAGES/katefiletree.mo share/locale/ja/LC_MESSAGES/kategdbplugin.mo share/locale/ja/LC_MESSAGES/katekonsoleplugin.mo share/locale/ja/LC_MESSAGES/kateopenheader.mo share/locale/ja/LC_MESSAGES/kateproject.mo share/locale/ja/LC_MESSAGES/katesearch.mo share/locale/ja/LC_MESSAGES/katesnippetsplugin.mo share/locale/ja/LC_MESSAGES/katesql.mo share/locale/ja/LC_MESSAGES/katesymbolviewer.mo share/locale/ja/LC_MESSAGES/katetextfilter.mo share/locale/ja/LC_MESSAGES/katexmlcheck.mo share/locale/ja/LC_MESSAGES/katexmltools.mo share/locale/ja/LC_MESSAGES/kterustcompletion.mo share/locale/ja/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/ja/LC_MESSAGES/kwrite.mo share/locale/ja/LC_MESSAGES/lspclient.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/ja/LC_MESSAGES/tabswitcherplugin.mo share/locale/kk/LC_MESSAGES/kate-ctags-plugin.mo share/locale/kk/LC_MESSAGES/kate.mo share/locale/kk/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/kk/LC_MESSAGES/katebuild-plugin.mo share/locale/kk/LC_MESSAGES/katecloseexceptplugin.mo share/locale/kk/LC_MESSAGES/katefilebrowserplugin.mo share/locale/kk/LC_MESSAGES/kategdbplugin.mo share/locale/kk/LC_MESSAGES/katekonsoleplugin.mo share/locale/kk/LC_MESSAGES/kateopenheader.mo share/locale/kk/LC_MESSAGES/kateproject.mo share/locale/kk/LC_MESSAGES/katesearch.mo share/locale/kk/LC_MESSAGES/katesnippetsplugin.mo share/locale/kk/LC_MESSAGES/katesql.mo share/locale/kk/LC_MESSAGES/katesymbolviewer.mo share/locale/kk/LC_MESSAGES/katetextfilter.mo share/locale/kk/LC_MESSAGES/katexmltools.mo share/locale/kk/LC_MESSAGES/kwrite.mo share/locale/km/LC_MESSAGES/kate-ctags-plugin.mo share/locale/km/LC_MESSAGES/kate.mo share/locale/km/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/km/LC_MESSAGES/katebuild-plugin.mo share/locale/km/LC_MESSAGES/katefilebrowserplugin.mo share/locale/km/LC_MESSAGES/kategdbplugin.mo share/locale/km/LC_MESSAGES/katekonsoleplugin.mo share/locale/km/LC_MESSAGES/kateopenheader.mo share/locale/km/LC_MESSAGES/katesearch.mo share/locale/km/LC_MESSAGES/katesql.mo share/locale/km/LC_MESSAGES/katesymbolviewer.mo share/locale/km/LC_MESSAGES/katetextfilter.mo share/locale/km/LC_MESSAGES/katexmltools.mo share/locale/km/LC_MESSAGES/kwrite.mo share/locale/ko/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ko/LC_MESSAGES/kate-replicode-plugin.mo share/locale/ko/LC_MESSAGES/kate.mo share/locale/ko/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ko/LC_MESSAGES/katebuild-plugin.mo share/locale/ko/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ko/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ko/LC_MESSAGES/katefiletree.mo share/locale/ko/LC_MESSAGES/kategdbplugin.mo share/locale/ko/LC_MESSAGES/katekonsoleplugin.mo share/locale/ko/LC_MESSAGES/kateopenheader.mo share/locale/ko/LC_MESSAGES/kateproject.mo share/locale/ko/LC_MESSAGES/katesearch.mo share/locale/ko/LC_MESSAGES/katesnippetsplugin.mo share/locale/ko/LC_MESSAGES/katesql.mo share/locale/ko/LC_MESSAGES/katesymbolviewer.mo share/locale/ko/LC_MESSAGES/katetextfilter.mo share/locale/ko/LC_MESSAGES/katexmlcheck.mo share/locale/ko/LC_MESSAGES/katexmltools.mo share/locale/ko/LC_MESSAGES/kterustcompletion.mo share/locale/ko/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/ko/LC_MESSAGES/kwrite.mo share/locale/ko/LC_MESSAGES/lspclient.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/ko/LC_MESSAGES/tabswitcherplugin.mo share/locale/lt/LC_MESSAGES/kate-ctags-plugin.mo share/locale/lt/LC_MESSAGES/kate-replicode-plugin.mo share/locale/lt/LC_MESSAGES/kate.mo share/locale/lt/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/lt/LC_MESSAGES/katebuild-plugin.mo share/locale/lt/LC_MESSAGES/katecloseexceptplugin.mo share/locale/lt/LC_MESSAGES/katefilebrowserplugin.mo share/locale/lt/LC_MESSAGES/katefiletree.mo share/locale/lt/LC_MESSAGES/kategdbplugin.mo share/locale/lt/LC_MESSAGES/katekonsoleplugin.mo share/locale/lt/LC_MESSAGES/kateopenheader.mo share/locale/lt/LC_MESSAGES/kateproject.mo share/locale/lt/LC_MESSAGES/katesearch.mo share/locale/lt/LC_MESSAGES/katesnippetsplugin.mo share/locale/lt/LC_MESSAGES/katesql.mo share/locale/lt/LC_MESSAGES/katesymbolviewer.mo share/locale/lt/LC_MESSAGES/katetextfilter.mo share/locale/lt/LC_MESSAGES/katexmlcheck.mo share/locale/lt/LC_MESSAGES/katexmltools.mo share/locale/lt/LC_MESSAGES/kterustcompletion.mo share/locale/lt/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/lt/LC_MESSAGES/kwrite.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/lt/LC_MESSAGES/tabswitcherplugin.mo share/locale/lv/LC_MESSAGES/kate-ctags-plugin.mo share/locale/lv/LC_MESSAGES/kate.mo share/locale/lv/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/lv/LC_MESSAGES/katebuild-plugin.mo share/locale/lv/LC_MESSAGES/katefilebrowserplugin.mo share/locale/lv/LC_MESSAGES/kategdbplugin.mo share/locale/lv/LC_MESSAGES/katekonsoleplugin.mo share/locale/lv/LC_MESSAGES/kateopenheader.mo share/locale/lv/LC_MESSAGES/katesearch.mo share/locale/lv/LC_MESSAGES/katesql.mo share/locale/lv/LC_MESSAGES/katesymbolviewer.mo share/locale/lv/LC_MESSAGES/katetextfilter.mo share/locale/lv/LC_MESSAGES/katexmltools.mo share/locale/lv/LC_MESSAGES/kwrite.mo share/locale/ml/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ml/LC_MESSAGES/kate-replicode-plugin.mo share/locale/ml/LC_MESSAGES/kate.mo share/locale/ml/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ml/LC_MESSAGES/katebuild-plugin.mo share/locale/ml/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ml/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ml/LC_MESSAGES/katefiletree.mo share/locale/ml/LC_MESSAGES/kategdbplugin.mo share/locale/ml/LC_MESSAGES/katekonsoleplugin.mo share/locale/ml/LC_MESSAGES/kateopenheader.mo share/locale/ml/LC_MESSAGES/kateproject.mo share/locale/ml/LC_MESSAGES/katesearch.mo share/locale/ml/LC_MESSAGES/katesnippetsplugin.mo share/locale/ml/LC_MESSAGES/katesql.mo share/locale/ml/LC_MESSAGES/katesymbolviewer.mo share/locale/ml/LC_MESSAGES/katetextfilter.mo share/locale/ml/LC_MESSAGES/katexmlcheck.mo share/locale/ml/LC_MESSAGES/katexmltools.mo share/locale/ml/LC_MESSAGES/kterustcompletion.mo share/locale/ml/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/ml/LC_MESSAGES/kwrite.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/ml/LC_MESSAGES/tabswitcherplugin.mo share/locale/mr/LC_MESSAGES/kate-ctags-plugin.mo share/locale/mr/LC_MESSAGES/kate.mo share/locale/mr/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/mr/LC_MESSAGES/katebuild-plugin.mo share/locale/mr/LC_MESSAGES/katecloseexceptplugin.mo share/locale/mr/LC_MESSAGES/katefilebrowserplugin.mo share/locale/mr/LC_MESSAGES/kategdbplugin.mo share/locale/mr/LC_MESSAGES/katekonsoleplugin.mo share/locale/mr/LC_MESSAGES/kateopenheader.mo share/locale/mr/LC_MESSAGES/kateproject.mo share/locale/mr/LC_MESSAGES/katesearch.mo share/locale/mr/LC_MESSAGES/katesnippetsplugin.mo share/locale/mr/LC_MESSAGES/katesql.mo share/locale/mr/LC_MESSAGES/katesymbolviewer.mo share/locale/mr/LC_MESSAGES/katetextfilter.mo share/locale/mr/LC_MESSAGES/katexmltools.mo share/locale/mr/LC_MESSAGES/kwrite.mo share/locale/nb/LC_MESSAGES/kate-ctags-plugin.mo share/locale/nb/LC_MESSAGES/kate.mo share/locale/nb/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/nb/LC_MESSAGES/katebuild-plugin.mo share/locale/nb/LC_MESSAGES/katecloseexceptplugin.mo share/locale/nb/LC_MESSAGES/katefilebrowserplugin.mo share/locale/nb/LC_MESSAGES/katefiletree.mo share/locale/nb/LC_MESSAGES/kategdbplugin.mo share/locale/nb/LC_MESSAGES/katekonsoleplugin.mo share/locale/nb/LC_MESSAGES/kateopenheader.mo share/locale/nb/LC_MESSAGES/kateproject.mo share/locale/nb/LC_MESSAGES/katesearch.mo share/locale/nb/LC_MESSAGES/katesnippetsplugin.mo share/locale/nb/LC_MESSAGES/katesql.mo share/locale/nb/LC_MESSAGES/katesymbolviewer.mo share/locale/nb/LC_MESSAGES/katetextfilter.mo share/locale/nb/LC_MESSAGES/katexmltools.mo share/locale/nb/LC_MESSAGES/kwrite.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/nb/LC_MESSAGES/tabswitcherplugin.mo share/locale/nds/LC_MESSAGES/kate-ctags-plugin.mo share/locale/nds/LC_MESSAGES/kate.mo share/locale/nds/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/nds/LC_MESSAGES/katebuild-plugin.mo share/locale/nds/LC_MESSAGES/katecloseexceptplugin.mo share/locale/nds/LC_MESSAGES/katefilebrowserplugin.mo share/locale/nds/LC_MESSAGES/katefiletree.mo share/locale/nds/LC_MESSAGES/kategdbplugin.mo share/locale/nds/LC_MESSAGES/katekonsoleplugin.mo share/locale/nds/LC_MESSAGES/kateopenheader.mo share/locale/nds/LC_MESSAGES/kateproject.mo share/locale/nds/LC_MESSAGES/katesearch.mo share/locale/nds/LC_MESSAGES/katesnippetsplugin.mo share/locale/nds/LC_MESSAGES/katesql.mo share/locale/nds/LC_MESSAGES/katesymbolviewer.mo share/locale/nds/LC_MESSAGES/katetextfilter.mo share/locale/nds/LC_MESSAGES/katexmltools.mo share/locale/nds/LC_MESSAGES/kwrite.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/nds/LC_MESSAGES/tabswitcherplugin.mo share/locale/nl/LC_MESSAGES/kate-ctags-plugin.mo share/locale/nl/LC_MESSAGES/kate-replicode-plugin.mo share/locale/nl/LC_MESSAGES/kate.mo share/locale/nl/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/nl/LC_MESSAGES/katebuild-plugin.mo share/locale/nl/LC_MESSAGES/katecloseexceptplugin.mo share/locale/nl/LC_MESSAGES/katefilebrowserplugin.mo share/locale/nl/LC_MESSAGES/katefiletree.mo share/locale/nl/LC_MESSAGES/kategdbplugin.mo share/locale/nl/LC_MESSAGES/katekonsoleplugin.mo share/locale/nl/LC_MESSAGES/kateopenheader.mo share/locale/nl/LC_MESSAGES/kateproject.mo share/locale/nl/LC_MESSAGES/katesearch.mo share/locale/nl/LC_MESSAGES/katesnippetsplugin.mo share/locale/nl/LC_MESSAGES/katesql.mo share/locale/nl/LC_MESSAGES/katesymbolviewer.mo share/locale/nl/LC_MESSAGES/katetextfilter.mo share/locale/nl/LC_MESSAGES/katexmlcheck.mo share/locale/nl/LC_MESSAGES/katexmltools.mo share/locale/nl/LC_MESSAGES/kterustcompletion.mo share/locale/nl/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/nl/LC_MESSAGES/kwrite.mo share/locale/nl/LC_MESSAGES/lspclient.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/nl/LC_MESSAGES/tabswitcherplugin.mo share/locale/nn/LC_MESSAGES/kate-ctags-plugin.mo share/locale/nn/LC_MESSAGES/kate-replicode-plugin.mo share/locale/nn/LC_MESSAGES/kate.mo share/locale/nn/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/nn/LC_MESSAGES/katebuild-plugin.mo share/locale/nn/LC_MESSAGES/katecloseexceptplugin.mo share/locale/nn/LC_MESSAGES/katefilebrowserplugin.mo share/locale/nn/LC_MESSAGES/katefiletree.mo share/locale/nn/LC_MESSAGES/kategdbplugin.mo share/locale/nn/LC_MESSAGES/katekonsoleplugin.mo share/locale/nn/LC_MESSAGES/kateopenheader.mo share/locale/nn/LC_MESSAGES/kateproject.mo share/locale/nn/LC_MESSAGES/katesearch.mo share/locale/nn/LC_MESSAGES/katesnippetsplugin.mo share/locale/nn/LC_MESSAGES/katesql.mo share/locale/nn/LC_MESSAGES/katesymbolviewer.mo share/locale/nn/LC_MESSAGES/katetextfilter.mo share/locale/nn/LC_MESSAGES/katexmlcheck.mo share/locale/nn/LC_MESSAGES/katexmltools.mo share/locale/nn/LC_MESSAGES/kterustcompletion.mo share/locale/nn/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/nn/LC_MESSAGES/kwrite.mo share/locale/nn/LC_MESSAGES/lspclient.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/nn/LC_MESSAGES/tabswitcherplugin.mo share/locale/pa/LC_MESSAGES/kate-ctags-plugin.mo share/locale/pa/LC_MESSAGES/kate.mo share/locale/pa/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/pa/LC_MESSAGES/katebuild-plugin.mo share/locale/pa/LC_MESSAGES/katecloseexceptplugin.mo share/locale/pa/LC_MESSAGES/katefilebrowserplugin.mo share/locale/pa/LC_MESSAGES/katefiletree.mo share/locale/pa/LC_MESSAGES/kategdbplugin.mo share/locale/pa/LC_MESSAGES/katekonsoleplugin.mo share/locale/pa/LC_MESSAGES/kateopenheader.mo share/locale/pa/LC_MESSAGES/kateproject.mo share/locale/pa/LC_MESSAGES/katesearch.mo share/locale/pa/LC_MESSAGES/katesnippetsplugin.mo share/locale/pa/LC_MESSAGES/katesql.mo share/locale/pa/LC_MESSAGES/katesymbolviewer.mo share/locale/pa/LC_MESSAGES/katetextfilter.mo share/locale/pa/LC_MESSAGES/katexmltools.mo share/locale/pa/LC_MESSAGES/kwrite.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/pa/LC_MESSAGES/tabswitcherplugin.mo share/locale/pl/LC_MESSAGES/kate-ctags-plugin.mo share/locale/pl/LC_MESSAGES/kate-replicode-plugin.mo share/locale/pl/LC_MESSAGES/kate.mo share/locale/pl/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/pl/LC_MESSAGES/katebuild-plugin.mo share/locale/pl/LC_MESSAGES/katecloseexceptplugin.mo share/locale/pl/LC_MESSAGES/katefilebrowserplugin.mo share/locale/pl/LC_MESSAGES/katefiletree.mo share/locale/pl/LC_MESSAGES/kategdbplugin.mo share/locale/pl/LC_MESSAGES/katekonsoleplugin.mo share/locale/pl/LC_MESSAGES/kateopenheader.mo share/locale/pl/LC_MESSAGES/kateproject.mo share/locale/pl/LC_MESSAGES/katesearch.mo share/locale/pl/LC_MESSAGES/katesnippetsplugin.mo share/locale/pl/LC_MESSAGES/katesql.mo share/locale/pl/LC_MESSAGES/katesymbolviewer.mo share/locale/pl/LC_MESSAGES/katetextfilter.mo share/locale/pl/LC_MESSAGES/katexmlcheck.mo share/locale/pl/LC_MESSAGES/katexmltools.mo share/locale/pl/LC_MESSAGES/kterustcompletion.mo share/locale/pl/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/pl/LC_MESSAGES/kwrite.mo share/locale/pl/LC_MESSAGES/lspclient.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/pl/LC_MESSAGES/tabswitcherplugin.mo share/locale/pt/LC_MESSAGES/kate-ctags-plugin.mo share/locale/pt/LC_MESSAGES/kate-replicode-plugin.mo share/locale/pt/LC_MESSAGES/kate.mo share/locale/pt/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/pt/LC_MESSAGES/katebuild-plugin.mo share/locale/pt/LC_MESSAGES/katecloseexceptplugin.mo share/locale/pt/LC_MESSAGES/katefilebrowserplugin.mo share/locale/pt/LC_MESSAGES/katefiletree.mo share/locale/pt/LC_MESSAGES/kategdbplugin.mo share/locale/pt/LC_MESSAGES/katekonsoleplugin.mo share/locale/pt/LC_MESSAGES/kateopenheader.mo share/locale/pt/LC_MESSAGES/kateproject.mo share/locale/pt/LC_MESSAGES/katesearch.mo share/locale/pt/LC_MESSAGES/katesnippetsplugin.mo share/locale/pt/LC_MESSAGES/katesql.mo share/locale/pt/LC_MESSAGES/katesymbolviewer.mo share/locale/pt/LC_MESSAGES/katetextfilter.mo share/locale/pt/LC_MESSAGES/katexmlcheck.mo share/locale/pt/LC_MESSAGES/katexmltools.mo share/locale/pt/LC_MESSAGES/kterustcompletion.mo share/locale/pt/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/pt/LC_MESSAGES/kwrite.mo share/locale/pt/LC_MESSAGES/lspclient.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/pt/LC_MESSAGES/tabswitcherplugin.mo share/locale/pt_BR/LC_MESSAGES/kate-ctags-plugin.mo share/locale/pt_BR/LC_MESSAGES/kate-replicode-plugin.mo share/locale/pt_BR/LC_MESSAGES/kate.mo share/locale/pt_BR/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/pt_BR/LC_MESSAGES/katebuild-plugin.mo share/locale/pt_BR/LC_MESSAGES/katecloseexceptplugin.mo share/locale/pt_BR/LC_MESSAGES/katefilebrowserplugin.mo share/locale/pt_BR/LC_MESSAGES/katefiletree.mo share/locale/pt_BR/LC_MESSAGES/kategdbplugin.mo share/locale/pt_BR/LC_MESSAGES/katekonsoleplugin.mo share/locale/pt_BR/LC_MESSAGES/kateopenheader.mo share/locale/pt_BR/LC_MESSAGES/kateproject.mo share/locale/pt_BR/LC_MESSAGES/katesearch.mo share/locale/pt_BR/LC_MESSAGES/katesnippetsplugin.mo share/locale/pt_BR/LC_MESSAGES/katesql.mo share/locale/pt_BR/LC_MESSAGES/katesymbolviewer.mo share/locale/pt_BR/LC_MESSAGES/katetextfilter.mo share/locale/pt_BR/LC_MESSAGES/katexmlcheck.mo share/locale/pt_BR/LC_MESSAGES/katexmltools.mo share/locale/pt_BR/LC_MESSAGES/kterustcompletion.mo share/locale/pt_BR/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/pt_BR/LC_MESSAGES/kwrite.mo share/locale/pt_BR/LC_MESSAGES/lspclient.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/pt_BR/LC_MESSAGES/tabswitcherplugin.mo share/locale/ro/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ro/LC_MESSAGES/kate.mo share/locale/ro/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ro/LC_MESSAGES/katebuild-plugin.mo share/locale/ro/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ro/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ro/LC_MESSAGES/katefiletree.mo share/locale/ro/LC_MESSAGES/kategdbplugin.mo share/locale/ro/LC_MESSAGES/katekonsoleplugin.mo share/locale/ro/LC_MESSAGES/kateopenheader.mo share/locale/ro/LC_MESSAGES/kateproject.mo share/locale/ro/LC_MESSAGES/katesearch.mo share/locale/ro/LC_MESSAGES/katesnippetsplugin.mo share/locale/ro/LC_MESSAGES/katesql.mo share/locale/ro/LC_MESSAGES/katesymbolviewer.mo share/locale/ro/LC_MESSAGES/katetextfilter.mo share/locale/ro/LC_MESSAGES/katexmltools.mo share/locale/ro/LC_MESSAGES/kwrite.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/ro/LC_MESSAGES/tabswitcherplugin.mo share/locale/ru/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ru/LC_MESSAGES/kate-replicode-plugin.mo share/locale/ru/LC_MESSAGES/kate.mo share/locale/ru/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ru/LC_MESSAGES/katebuild-plugin.mo share/locale/ru/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ru/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ru/LC_MESSAGES/katefiletree.mo share/locale/ru/LC_MESSAGES/kategdbplugin.mo share/locale/ru/LC_MESSAGES/katekonsoleplugin.mo share/locale/ru/LC_MESSAGES/kateopenheader.mo share/locale/ru/LC_MESSAGES/kateproject.mo share/locale/ru/LC_MESSAGES/katesearch.mo share/locale/ru/LC_MESSAGES/katesnippetsplugin.mo share/locale/ru/LC_MESSAGES/katesql.mo share/locale/ru/LC_MESSAGES/katesymbolviewer.mo share/locale/ru/LC_MESSAGES/katetextfilter.mo share/locale/ru/LC_MESSAGES/katexmlcheck.mo share/locale/ru/LC_MESSAGES/katexmltools.mo share/locale/ru/LC_MESSAGES/kterustcompletion.mo share/locale/ru/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/ru/LC_MESSAGES/kwrite.mo share/locale/ru/LC_MESSAGES/lspclient.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/ru/LC_MESSAGES/tabswitcherplugin.mo share/locale/sk/LC_MESSAGES/kate-ctags-plugin.mo share/locale/sk/LC_MESSAGES/kate-replicode-plugin.mo share/locale/sk/LC_MESSAGES/kate.mo share/locale/sk/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/sk/LC_MESSAGES/katebuild-plugin.mo share/locale/sk/LC_MESSAGES/katecloseexceptplugin.mo share/locale/sk/LC_MESSAGES/katefilebrowserplugin.mo share/locale/sk/LC_MESSAGES/katefiletree.mo share/locale/sk/LC_MESSAGES/kategdbplugin.mo share/locale/sk/LC_MESSAGES/katekonsoleplugin.mo share/locale/sk/LC_MESSAGES/kateopenheader.mo share/locale/sk/LC_MESSAGES/kateproject.mo share/locale/sk/LC_MESSAGES/katesearch.mo share/locale/sk/LC_MESSAGES/katesnippetsplugin.mo share/locale/sk/LC_MESSAGES/katesql.mo share/locale/sk/LC_MESSAGES/katesymbolviewer.mo share/locale/sk/LC_MESSAGES/katetextfilter.mo share/locale/sk/LC_MESSAGES/katexmlcheck.mo share/locale/sk/LC_MESSAGES/katexmltools.mo share/locale/sk/LC_MESSAGES/kterustcompletion.mo share/locale/sk/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/sk/LC_MESSAGES/kwrite.mo share/locale/sk/LC_MESSAGES/lspclient.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/sk/LC_MESSAGES/tabswitcherplugin.mo share/locale/sl/LC_MESSAGES/kate-ctags-plugin.mo share/locale/sl/LC_MESSAGES/kate-replicode-plugin.mo share/locale/sl/LC_MESSAGES/kate.mo share/locale/sl/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/sl/LC_MESSAGES/katebuild-plugin.mo share/locale/sl/LC_MESSAGES/katecloseexceptplugin.mo share/locale/sl/LC_MESSAGES/katefilebrowserplugin.mo share/locale/sl/LC_MESSAGES/katefiletree.mo share/locale/sl/LC_MESSAGES/kategdbplugin.mo share/locale/sl/LC_MESSAGES/katekonsoleplugin.mo share/locale/sl/LC_MESSAGES/kateopenheader.mo share/locale/sl/LC_MESSAGES/kateproject.mo share/locale/sl/LC_MESSAGES/katesearch.mo share/locale/sl/LC_MESSAGES/katesnippetsplugin.mo share/locale/sl/LC_MESSAGES/katesql.mo share/locale/sl/LC_MESSAGES/katesymbolviewer.mo share/locale/sl/LC_MESSAGES/katetextfilter.mo share/locale/sl/LC_MESSAGES/katexmlcheck.mo share/locale/sl/LC_MESSAGES/katexmltools.mo share/locale/sl/LC_MESSAGES/kterustcompletion.mo share/locale/sl/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/sl/LC_MESSAGES/kwrite.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/sl/LC_MESSAGES/tabswitcherplugin.mo share/locale/sr/LC_MESSAGES/kate-ctags-plugin.mo share/locale/sr/LC_MESSAGES/kate-replicode-plugin.mo share/locale/sr/LC_MESSAGES/kate.mo share/locale/sr/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/sr/LC_MESSAGES/katebuild-plugin.mo share/locale/sr/LC_MESSAGES/katecloseexceptplugin.mo share/locale/sr/LC_MESSAGES/katefilebrowserplugin.mo share/locale/sr/LC_MESSAGES/katefiletree.mo share/locale/sr/LC_MESSAGES/kategdbplugin.mo share/locale/sr/LC_MESSAGES/katekonsoleplugin.mo share/locale/sr/LC_MESSAGES/kateopenheader.mo share/locale/sr/LC_MESSAGES/kateproject.mo share/locale/sr/LC_MESSAGES/katesearch.mo share/locale/sr/LC_MESSAGES/katesnippetsplugin.mo share/locale/sr/LC_MESSAGES/katesql.mo share/locale/sr/LC_MESSAGES/katesymbolviewer.mo share/locale/sr/LC_MESSAGES/katetextfilter.mo share/locale/sr/LC_MESSAGES/katexmlcheck.mo share/locale/sr/LC_MESSAGES/katexmltools.mo share/locale/sr/LC_MESSAGES/kterustcompletion.mo share/locale/sr/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/sr/LC_MESSAGES/kwrite.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/sr/LC_MESSAGES/tabswitcherplugin.mo share/locale/sv/LC_MESSAGES/kate-ctags-plugin.mo share/locale/sv/LC_MESSAGES/kate-replicode-plugin.mo share/locale/sv/LC_MESSAGES/kate.mo share/locale/sv/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/sv/LC_MESSAGES/katebuild-plugin.mo share/locale/sv/LC_MESSAGES/katecloseexceptplugin.mo share/locale/sv/LC_MESSAGES/katefilebrowserplugin.mo share/locale/sv/LC_MESSAGES/katefiletree.mo share/locale/sv/LC_MESSAGES/kategdbplugin.mo share/locale/sv/LC_MESSAGES/katekonsoleplugin.mo share/locale/sv/LC_MESSAGES/kateopenheader.mo share/locale/sv/LC_MESSAGES/kateproject.mo share/locale/sv/LC_MESSAGES/katesearch.mo share/locale/sv/LC_MESSAGES/katesnippetsplugin.mo share/locale/sv/LC_MESSAGES/katesql.mo share/locale/sv/LC_MESSAGES/katesymbolviewer.mo share/locale/sv/LC_MESSAGES/katetextfilter.mo share/locale/sv/LC_MESSAGES/katexmlcheck.mo share/locale/sv/LC_MESSAGES/katexmltools.mo share/locale/sv/LC_MESSAGES/kterustcompletion.mo share/locale/sv/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/sv/LC_MESSAGES/kwrite.mo share/locale/sv/LC_MESSAGES/lspclient.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/sv/LC_MESSAGES/tabswitcherplugin.mo share/locale/tr/LC_MESSAGES/kate-ctags-plugin.mo share/locale/tr/LC_MESSAGES/kate-replicode-plugin.mo share/locale/tr/LC_MESSAGES/kate.mo share/locale/tr/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/tr/LC_MESSAGES/katebuild-plugin.mo share/locale/tr/LC_MESSAGES/katecloseexceptplugin.mo share/locale/tr/LC_MESSAGES/katefilebrowserplugin.mo share/locale/tr/LC_MESSAGES/katefiletree.mo share/locale/tr/LC_MESSAGES/kategdbplugin.mo share/locale/tr/LC_MESSAGES/katekonsoleplugin.mo share/locale/tr/LC_MESSAGES/kateopenheader.mo share/locale/tr/LC_MESSAGES/kateproject.mo share/locale/tr/LC_MESSAGES/katesearch.mo share/locale/tr/LC_MESSAGES/katesnippetsplugin.mo share/locale/tr/LC_MESSAGES/katesql.mo share/locale/tr/LC_MESSAGES/katesymbolviewer.mo share/locale/tr/LC_MESSAGES/katetextfilter.mo share/locale/tr/LC_MESSAGES/katexmlcheck.mo share/locale/tr/LC_MESSAGES/katexmltools.mo share/locale/tr/LC_MESSAGES/kterustcompletion.mo share/locale/tr/LC_MESSAGES/kwrite.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/tr/LC_MESSAGES/tabswitcherplugin.mo share/locale/ug/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ug/LC_MESSAGES/kate.mo share/locale/ug/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ug/LC_MESSAGES/katebuild-plugin.mo share/locale/ug/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ug/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ug/LC_MESSAGES/kategdbplugin.mo share/locale/ug/LC_MESSAGES/katekonsoleplugin.mo share/locale/ug/LC_MESSAGES/kateopenheader.mo share/locale/ug/LC_MESSAGES/kateproject.mo share/locale/ug/LC_MESSAGES/katesearch.mo share/locale/ug/LC_MESSAGES/katesnippetsplugin.mo share/locale/ug/LC_MESSAGES/katesql.mo share/locale/ug/LC_MESSAGES/katesymbolviewer.mo share/locale/ug/LC_MESSAGES/katetextfilter.mo share/locale/ug/LC_MESSAGES/katexmltools.mo share/locale/ug/LC_MESSAGES/kwrite.mo share/locale/uk/LC_MESSAGES/kate-ctags-plugin.mo share/locale/uk/LC_MESSAGES/kate-replicode-plugin.mo share/locale/uk/LC_MESSAGES/kate.mo share/locale/uk/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/uk/LC_MESSAGES/katebuild-plugin.mo share/locale/uk/LC_MESSAGES/katecloseexceptplugin.mo share/locale/uk/LC_MESSAGES/katefilebrowserplugin.mo share/locale/uk/LC_MESSAGES/katefiletree.mo share/locale/uk/LC_MESSAGES/kategdbplugin.mo share/locale/uk/LC_MESSAGES/katekonsoleplugin.mo share/locale/uk/LC_MESSAGES/kateopenheader.mo share/locale/uk/LC_MESSAGES/kateproject.mo share/locale/uk/LC_MESSAGES/katesearch.mo share/locale/uk/LC_MESSAGES/katesnippetsplugin.mo share/locale/uk/LC_MESSAGES/katesql.mo share/locale/uk/LC_MESSAGES/katesymbolviewer.mo share/locale/uk/LC_MESSAGES/katetextfilter.mo share/locale/uk/LC_MESSAGES/katexmlcheck.mo share/locale/uk/LC_MESSAGES/katexmltools.mo share/locale/uk/LC_MESSAGES/kterustcompletion.mo share/locale/uk/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/uk/LC_MESSAGES/kwrite.mo share/locale/uk/LC_MESSAGES/lspclient.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/uk/LC_MESSAGES/tabswitcherplugin.mo share/locale/wa/LC_MESSAGES/kate.mo share/locale/wa/LC_MESSAGES/katekonsoleplugin.mo share/locale/wa/LC_MESSAGES/kateopenheader.mo share/locale/wa/LC_MESSAGES/kwrite.mo share/locale/zh_CN/LC_MESSAGES/kate-ctags-plugin.mo share/locale/zh_CN/LC_MESSAGES/kate-replicode-plugin.mo share/locale/zh_CN/LC_MESSAGES/kate.mo share/locale/zh_CN/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/zh_CN/LC_MESSAGES/katebuild-plugin.mo share/locale/zh_CN/LC_MESSAGES/katecloseexceptplugin.mo share/locale/zh_CN/LC_MESSAGES/katefilebrowserplugin.mo share/locale/zh_CN/LC_MESSAGES/katefiletree.mo share/locale/zh_CN/LC_MESSAGES/kategdbplugin.mo share/locale/zh_CN/LC_MESSAGES/katekonsoleplugin.mo share/locale/zh_CN/LC_MESSAGES/kateopenheader.mo share/locale/zh_CN/LC_MESSAGES/kateproject.mo share/locale/zh_CN/LC_MESSAGES/katesearch.mo share/locale/zh_CN/LC_MESSAGES/katesnippetsplugin.mo share/locale/zh_CN/LC_MESSAGES/katesql.mo share/locale/zh_CN/LC_MESSAGES/katesymbolviewer.mo share/locale/zh_CN/LC_MESSAGES/katetextfilter.mo share/locale/zh_CN/LC_MESSAGES/katexmlcheck.mo share/locale/zh_CN/LC_MESSAGES/katexmltools.mo share/locale/zh_CN/LC_MESSAGES/kterustcompletion.mo share/locale/zh_CN/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/zh_CN/LC_MESSAGES/kwrite.mo share/locale/zh_CN/LC_MESSAGES/lspclient.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/zh_CN/LC_MESSAGES/tabswitcherplugin.mo share/locale/zh_TW/LC_MESSAGES/kate-ctags-plugin.mo share/locale/zh_TW/LC_MESSAGES/kate-replicode-plugin.mo share/locale/zh_TW/LC_MESSAGES/kate.mo share/locale/zh_TW/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/zh_TW/LC_MESSAGES/katebuild-plugin.mo share/locale/zh_TW/LC_MESSAGES/katecloseexceptplugin.mo share/locale/zh_TW/LC_MESSAGES/katefilebrowserplugin.mo share/locale/zh_TW/LC_MESSAGES/katefiletree.mo share/locale/zh_TW/LC_MESSAGES/kategdbplugin.mo share/locale/zh_TW/LC_MESSAGES/katekonsoleplugin.mo share/locale/zh_TW/LC_MESSAGES/kateopenheader.mo share/locale/zh_TW/LC_MESSAGES/kateproject.mo share/locale/zh_TW/LC_MESSAGES/katesearch.mo share/locale/zh_TW/LC_MESSAGES/katesnippetsplugin.mo share/locale/zh_TW/LC_MESSAGES/katesql.mo share/locale/zh_TW/LC_MESSAGES/katesymbolviewer.mo share/locale/zh_TW/LC_MESSAGES/katetextfilter.mo share/locale/zh_TW/LC_MESSAGES/katexmlcheck.mo share/locale/zh_TW/LC_MESSAGES/katexmltools.mo share/locale/zh_TW/LC_MESSAGES/kterustcompletion.mo share/locale/zh_TW/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/zh_TW/LC_MESSAGES/kwrite.mo +share/locale/zh_TW/LC_MESSAGES/lspclient.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/zh_TW/LC_MESSAGES/tabswitcherplugin.mo share/metainfo/org.kde.kate.appdata.xml share/metainfo/org.kde.kwrite.appdata.xml share/metainfo/org.kde.plasma.katesessions.appdata.xml share/plasma/plasmoids/org.kde.plasma.katesessions/contents/ui/KateSessionsItemDelegate.qml share/plasma/plasmoids/org.kde.plasma.katesessions/contents/ui/Menu.qml share/plasma/plasmoids/org.kde.plasma.katesessions/contents/ui/katesessions.qml share/plasma/plasmoids/org.kde.plasma.katesessions/metadata.desktop share/plasma/plasmoids/org.kde.plasma.katesessions/metadata.json share/plasma/services/org.kde.plasma.katesessions.operations Index: head/games/blinken/distinfo =================================================================== --- head/games/blinken/distinfo (revision 514560) +++ head/games/blinken/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537168 -SHA256 (KDE/applications/19.08.1/blinken-19.08.1.tar.xz) = dbe7b13bc6cad69f049f9eefa56f99012bc0906233193bf951477b3f5c8eb87e -SIZE (KDE/applications/19.08.1/blinken-19.08.1.tar.xz) = 2820916 +TIMESTAMP = 1570544351 +SHA256 (KDE/applications/19.08.2/blinken-19.08.2.tar.xz) = 7f9d909bb845c365dbf49388b79687e7491c271dd7d2f9481a20397153a670f6 +SIZE (KDE/applications/19.08.2/blinken-19.08.2.tar.xz) = 2820068 Index: head/games/bomber/distinfo =================================================================== --- head/games/bomber/distinfo (revision 514560) +++ head/games/bomber/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537168 -SHA256 (KDE/applications/19.08.1/bomber-19.08.1.tar.xz) = 750110da07a1e316e2a55d043a0e988c91e6e57866b941a5cce1b6f569096f4f -SIZE (KDE/applications/19.08.1/bomber-19.08.1.tar.xz) = 820608 +TIMESTAMP = 1570544352 +SHA256 (KDE/applications/19.08.2/bomber-19.08.2.tar.xz) = 26285fe9e510cd334bb933281c615c2971084bfa787618ba0190175c36ada741 +SIZE (KDE/applications/19.08.2/bomber-19.08.2.tar.xz) = 821136 Index: head/games/bomber/pkg-plist =================================================================== --- head/games/bomber/pkg-plist (revision 514560) +++ head/games/bomber/pkg-plist (revision 514561) @@ -1,67 +1,68 @@ bin/bomber share/applications/org.kde.bomber.desktop %%DATADIR%%/sounds/bomb.ogg %%DATADIR%%/sounds/crash.ogg %%DATADIR%%/themes/Lava-Island.desktop %%DATADIR%%/themes/Lava-Island.svgz %%DATADIR%%/themes/kbomber.desktop %%DATADIR%%/themes/kbomber.png %%DATADIR%%/themes/kbomber.svgz %%DATADIR%%/themes/lava-Island.png share/config.kcfg/bomber.kcfg share/icons/hicolor/128x128/apps/bomber.png share/icons/hicolor/32x32/apps/bomber.png share/icons/hicolor/48x48/apps/bomber.png share/icons/hicolor/64x64/apps/bomber.png share/kxmlgui5/bomber/bomberui.rc share/locale/ar/LC_MESSAGES/bomber.mo share/locale/bg/LC_MESSAGES/bomber.mo share/locale/bs/LC_MESSAGES/bomber.mo share/locale/ca/LC_MESSAGES/bomber.mo share/locale/ca@valencia/LC_MESSAGES/bomber.mo share/locale/cs/LC_MESSAGES/bomber.mo share/locale/da/LC_MESSAGES/bomber.mo share/locale/de/LC_MESSAGES/bomber.mo share/locale/el/LC_MESSAGES/bomber.mo share/locale/en_GB/LC_MESSAGES/bomber.mo share/locale/eo/LC_MESSAGES/bomber.mo share/locale/es/LC_MESSAGES/bomber.mo share/locale/et/LC_MESSAGES/bomber.mo share/locale/eu/LC_MESSAGES/bomber.mo share/locale/fi/LC_MESSAGES/bomber.mo share/locale/fr/LC_MESSAGES/bomber.mo share/locale/ga/LC_MESSAGES/bomber.mo share/locale/gl/LC_MESSAGES/bomber.mo share/locale/he/LC_MESSAGES/bomber.mo share/locale/hr/LC_MESSAGES/bomber.mo share/locale/hu/LC_MESSAGES/bomber.mo +share/locale/id/LC_MESSAGES/bomber.mo share/locale/is/LC_MESSAGES/bomber.mo share/locale/it/LC_MESSAGES/bomber.mo share/locale/ja/LC_MESSAGES/bomber.mo share/locale/kk/LC_MESSAGES/bomber.mo share/locale/km/LC_MESSAGES/bomber.mo share/locale/ko/LC_MESSAGES/bomber.mo share/locale/lt/LC_MESSAGES/bomber.mo share/locale/lv/LC_MESSAGES/bomber.mo share/locale/ml/LC_MESSAGES/bomber.mo share/locale/mr/LC_MESSAGES/bomber.mo share/locale/nb/LC_MESSAGES/bomber.mo share/locale/nds/LC_MESSAGES/bomber.mo share/locale/nl/LC_MESSAGES/bomber.mo share/locale/nn/LC_MESSAGES/bomber.mo share/locale/pa/LC_MESSAGES/bomber.mo share/locale/pl/LC_MESSAGES/bomber.mo share/locale/pt/LC_MESSAGES/bomber.mo share/locale/pt_BR/LC_MESSAGES/bomber.mo share/locale/ro/LC_MESSAGES/bomber.mo share/locale/ru/LC_MESSAGES/bomber.mo share/locale/sk/LC_MESSAGES/bomber.mo share/locale/sl/LC_MESSAGES/bomber.mo share/locale/sr/LC_MESSAGES/bomber.mo share/locale/sv/LC_MESSAGES/bomber.mo share/locale/tr/LC_MESSAGES/bomber.mo share/locale/ug/LC_MESSAGES/bomber.mo share/locale/uk/LC_MESSAGES/bomber.mo share/locale/zh_CN/LC_MESSAGES/bomber.mo share/locale/zh_TW/LC_MESSAGES/bomber.mo share/metainfo/org.kde.bomber.appdata.xml Index: head/games/bovo/distinfo =================================================================== --- head/games/bovo/distinfo (revision 514560) +++ head/games/bovo/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537169 -SHA256 (KDE/applications/19.08.1/bovo-19.08.1.tar.xz) = 0d923b6b0eaf2ffd7a1eca833d1f110cc6fdaade3b11d07e8fa53a244a778658 -SIZE (KDE/applications/19.08.1/bovo-19.08.1.tar.xz) = 199564 +TIMESTAMP = 1570544353 +SHA256 (KDE/applications/19.08.2/bovo-19.08.2.tar.xz) = 63f7a3860de2344be69366f636e841cd3db19743a8a29c42e14402256ed3122b +SIZE (KDE/applications/19.08.2/bovo-19.08.2.tar.xz) = 200400 Index: head/games/bovo/pkg-plist =================================================================== --- head/games/bovo/pkg-plist (revision 514560) +++ head/games/bovo/pkg-plist (revision 514561) @@ -1,67 +1,68 @@ bin/bovo share/applications/org.kde.bovo.desktop %%DATADIR%%/themes/gomoku/theme.svg %%DATADIR%%/themes/gomoku/themerc %%DATADIR%%/themes/highcontrast/theme.svg %%DATADIR%%/themes/highcontrast/themerc %%DATADIR%%/themes/scribble/theme.svg %%DATADIR%%/themes/scribble/themerc %%DATADIR%%/themes/spacy/theme.svg %%DATADIR%%/themes/spacy/themerc share/icons/hicolor/128x128/apps/bovo.png share/icons/hicolor/16x16/apps/bovo.png share/icons/hicolor/22x22/apps/bovo.png share/icons/hicolor/32x32/apps/bovo.png share/icons/hicolor/48x48/apps/bovo.png share/icons/hicolor/64x64/apps/bovo.png share/kxmlgui5/bovo/bovoui.rc share/locale/ar/LC_MESSAGES/bovo.mo share/locale/bg/LC_MESSAGES/bovo.mo share/locale/bs/LC_MESSAGES/bovo.mo share/locale/ca/LC_MESSAGES/bovo.mo share/locale/ca@valencia/LC_MESSAGES/bovo.mo share/locale/cs/LC_MESSAGES/bovo.mo share/locale/da/LC_MESSAGES/bovo.mo share/locale/de/LC_MESSAGES/bovo.mo share/locale/el/LC_MESSAGES/bovo.mo share/locale/en_GB/LC_MESSAGES/bovo.mo share/locale/eo/LC_MESSAGES/bovo.mo share/locale/es/LC_MESSAGES/bovo.mo share/locale/et/LC_MESSAGES/bovo.mo share/locale/eu/LC_MESSAGES/bovo.mo share/locale/fi/LC_MESSAGES/bovo.mo share/locale/fr/LC_MESSAGES/bovo.mo share/locale/ga/LC_MESSAGES/bovo.mo share/locale/gl/LC_MESSAGES/bovo.mo share/locale/hi/LC_MESSAGES/bovo.mo share/locale/hr/LC_MESSAGES/bovo.mo share/locale/hu/LC_MESSAGES/bovo.mo +share/locale/id/LC_MESSAGES/bovo.mo share/locale/is/LC_MESSAGES/bovo.mo share/locale/it/LC_MESSAGES/bovo.mo share/locale/ja/LC_MESSAGES/bovo.mo share/locale/kk/LC_MESSAGES/bovo.mo share/locale/km/LC_MESSAGES/bovo.mo share/locale/ko/LC_MESSAGES/bovo.mo share/locale/lt/LC_MESSAGES/bovo.mo share/locale/lv/LC_MESSAGES/bovo.mo share/locale/mr/LC_MESSAGES/bovo.mo share/locale/nb/LC_MESSAGES/bovo.mo share/locale/nds/LC_MESSAGES/bovo.mo share/locale/nl/LC_MESSAGES/bovo.mo share/locale/nn/LC_MESSAGES/bovo.mo share/locale/pa/LC_MESSAGES/bovo.mo share/locale/pl/LC_MESSAGES/bovo.mo share/locale/pt/LC_MESSAGES/bovo.mo share/locale/pt_BR/LC_MESSAGES/bovo.mo share/locale/ro/LC_MESSAGES/bovo.mo share/locale/ru/LC_MESSAGES/bovo.mo share/locale/sk/LC_MESSAGES/bovo.mo share/locale/sl/LC_MESSAGES/bovo.mo share/locale/sr/LC_MESSAGES/bovo.mo share/locale/sv/LC_MESSAGES/bovo.mo share/locale/tr/LC_MESSAGES/bovo.mo share/locale/ug/LC_MESSAGES/bovo.mo share/locale/uk/LC_MESSAGES/bovo.mo share/locale/zh_CN/LC_MESSAGES/bovo.mo share/locale/zh_TW/LC_MESSAGES/bovo.mo share/metainfo/org.kde.bovo.appdata.xml Index: head/games/granatier/distinfo =================================================================== --- head/games/granatier/distinfo (revision 514560) +++ head/games/granatier/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537169 -SHA256 (KDE/applications/19.08.1/granatier-19.08.1.tar.xz) = 3015a25f961ae3d746db2814a322bfb204e4e39cd95145fbf2aa819f1dc0417e -SIZE (KDE/applications/19.08.1/granatier-19.08.1.tar.xz) = 1941612 +TIMESTAMP = 1570544353 +SHA256 (KDE/applications/19.08.2/granatier-19.08.2.tar.xz) = 81a0c288edd0be6d7c994a8ad1469679b7e78174d641f9c4f90d31613bad4b47 +SIZE (KDE/applications/19.08.2/granatier-19.08.2.tar.xz) = 1944368 Index: head/games/granatier/pkg-plist =================================================================== --- head/games/granatier/pkg-plist (revision 514560) +++ head/games/granatier/pkg-plist (revision 514561) @@ -1,165 +1,166 @@ bin/granatier share/qlogging-categories5/granatier.categories share/applications/org.kde.granatier.desktop share/config.kcfg/granatier.kcfg %%DATADIR%%/arenas/clanbomber_Arena.desktop %%DATADIR%%/arenas/clanbomber_Arena.xml %%DATADIR%%/arenas/clanbomber_Big_Block.desktop %%DATADIR%%/arenas/clanbomber_Big_Block.xml %%DATADIR%%/arenas/clanbomber_Big_Standard.desktop %%DATADIR%%/arenas/clanbomber_Big_Standard.xml %%DATADIR%%/arenas/clanbomber_Blast_Matrix.desktop %%DATADIR%%/arenas/clanbomber_Blast_Matrix.xml %%DATADIR%%/arenas/clanbomber_Bloody_Ring.desktop %%DATADIR%%/arenas/clanbomber_Bloody_Ring.xml %%DATADIR%%/arenas/clanbomber_Boiling_Egg.desktop %%DATADIR%%/arenas/clanbomber_Boiling_Egg.xml %%DATADIR%%/arenas/clanbomber_Bomb_Attack.desktop %%DATADIR%%/arenas/clanbomber_Bomb_Attack.xml %%DATADIR%%/arenas/clanbomber_Broken_Heart.desktop %%DATADIR%%/arenas/clanbomber_Broken_Heart.xml %%DATADIR%%/arenas/clanbomber_Crammed.desktop %%DATADIR%%/arenas/clanbomber_Crammed.xml %%DATADIR%%/arenas/clanbomber_Death_Corridor.desktop %%DATADIR%%/arenas/clanbomber_Death_Corridor.xml %%DATADIR%%/arenas/clanbomber_Dilemma.desktop %%DATADIR%%/arenas/clanbomber_Dilemma.xml %%DATADIR%%/arenas/clanbomber_FearCircle.desktop %%DATADIR%%/arenas/clanbomber_FearCircle.xml %%DATADIR%%/arenas/clanbomber_FearCircle_Remix.desktop %%DATADIR%%/arenas/clanbomber_FearCircle_Remix.xml %%DATADIR%%/arenas/clanbomber_FireWheels.desktop %%DATADIR%%/arenas/clanbomber_FireWheels.xml %%DATADIR%%/arenas/clanbomber_Football.desktop %%DATADIR%%/arenas/clanbomber_Football.xml %%DATADIR%%/arenas/clanbomber_Four_Instance.desktop %%DATADIR%%/arenas/clanbomber_Four_Instance.xml %%DATADIR%%/arenas/clanbomber_Ghostbear.desktop %%DATADIR%%/arenas/clanbomber_Ghostbear.xml %%DATADIR%%/arenas/clanbomber_Hard_Work.desktop %%DATADIR%%/arenas/clanbomber_Hard_Work.xml %%DATADIR%%/arenas/clanbomber_Hole_Run.desktop %%DATADIR%%/arenas/clanbomber_Hole_Run.xml %%DATADIR%%/arenas/clanbomber_Huge_Standard.desktop %%DATADIR%%/arenas/clanbomber_Huge_Standard.xml %%DATADIR%%/arenas/clanbomber_Juicy_Lucy.desktop %%DATADIR%%/arenas/clanbomber_Juicy_Lucy.xml %%DATADIR%%/arenas/clanbomber_Kitchen.desktop %%DATADIR%%/arenas/clanbomber_Kitchen.xml %%DATADIR%%/arenas/clanbomber_Meeting.desktop %%DATADIR%%/arenas/clanbomber_Meeting.xml %%DATADIR%%/arenas/clanbomber_MungoBane.desktop %%DATADIR%%/arenas/clanbomber_MungoBane.xml %%DATADIR%%/arenas/clanbomber_Obstacle_Race.desktop %%DATADIR%%/arenas/clanbomber_Obstacle_Race.xml %%DATADIR%%/arenas/clanbomber_Overkill.desktop %%DATADIR%%/arenas/clanbomber_Overkill.xml %%DATADIR%%/arenas/clanbomber_Prison_Cells.desktop %%DATADIR%%/arenas/clanbomber_Prison_Cells.xml %%DATADIR%%/arenas/clanbomber_Redirection.desktop %%DATADIR%%/arenas/clanbomber_Redirection.xml %%DATADIR%%/arenas/clanbomber_Sixty_Nine.desktop %%DATADIR%%/arenas/clanbomber_Sixty_Nine.xml %%DATADIR%%/arenas/clanbomber_Small_Standard.desktop %%DATADIR%%/arenas/clanbomber_Small_Standard.xml %%DATADIR%%/arenas/clanbomber_Snake_Race.desktop %%DATADIR%%/arenas/clanbomber_Snake_Race.xml %%DATADIR%%/arenas/clanbomber_Tiny_Standard.desktop %%DATADIR%%/arenas/clanbomber_Tiny_Standard.xml %%DATADIR%%/arenas/clanbomber_Whole_Mess.desktop %%DATADIR%%/arenas/clanbomber_Whole_Mess.xml %%DATADIR%%/arenas/clover.desktop %%DATADIR%%/arenas/clover.xml %%DATADIR%%/arenas/crazy.desktop %%DATADIR%%/arenas/crazy.xml %%DATADIR%%/arenas/granatier.desktop %%DATADIR%%/arenas/granatier.xml %%DATADIR%%/arenas/labyrinth.desktop %%DATADIR%%/arenas/labyrinth.xml %%DATADIR%%/arenas/threeofthree.desktop %%DATADIR%%/arenas/threeofthree.xml %%DATADIR%%/players/player1.desktop %%DATADIR%%/players/player1.svgz %%DATADIR%%/players/player2.desktop %%DATADIR%%/players/player2.svgz %%DATADIR%%/players/player3.desktop %%DATADIR%%/players/player3.svgz %%DATADIR%%/players/player4.desktop %%DATADIR%%/players/player4.svgz %%DATADIR%%/players/player5.desktop %%DATADIR%%/players/player5.svgz %%DATADIR%%/sounds/break.wav %%DATADIR%%/sounds/clear.wav %%DATADIR%%/sounds/corpse_explode.wav %%DATADIR%%/sounds/crunch.wav %%DATADIR%%/sounds/deepfall.wav %%DATADIR%%/sounds/die.wav %%DATADIR%%/sounds/explode.wav %%DATADIR%%/sounds/joint.wav %%DATADIR%%/sounds/putbomb.wav %%DATADIR%%/sounds/winlevel.wav %%DATADIR%%/sounds/wow.wav %%DATADIR%%/themes/clanbomber.desktop %%DATADIR%%/themes/clanbomber.svgz %%DATADIR%%/themes/clanbomber_preview.png %%DATADIR%%/themes/granatier.desktop %%DATADIR%%/themes/granatier.svgz %%DATADIR%%/themes/granatier_preview.png %%DATADIR%%/themes/waterbomb.desktop %%DATADIR%%/themes/waterbomb.svgz %%DATADIR%%/themes/waterbomb_preview.png share/icons/hicolor/128x128/apps/granatier.png share/icons/hicolor/16x16/apps/granatier.png share/icons/hicolor/22x22/apps/granatier.png share/icons/hicolor/32x32/apps/granatier.png share/icons/hicolor/48x48/apps/granatier.png share/icons/hicolor/64x64/apps/granatier.png share/kxmlgui5/granatier/granatierui.rc share/locale/ar/LC_MESSAGES/granatier.mo share/locale/bg/LC_MESSAGES/granatier.mo share/locale/bs/LC_MESSAGES/granatier.mo share/locale/ca/LC_MESSAGES/granatier.mo share/locale/ca@valencia/LC_MESSAGES/granatier.mo share/locale/cs/LC_MESSAGES/granatier.mo share/locale/da/LC_MESSAGES/granatier.mo share/locale/de/LC_MESSAGES/granatier.mo share/locale/el/LC_MESSAGES/granatier.mo share/locale/en_GB/LC_MESSAGES/granatier.mo share/locale/eo/LC_MESSAGES/granatier.mo share/locale/es/LC_MESSAGES/granatier.mo share/locale/et/LC_MESSAGES/granatier.mo share/locale/eu/LC_MESSAGES/granatier.mo share/locale/fi/LC_MESSAGES/granatier.mo share/locale/fr/LC_MESSAGES/granatier.mo share/locale/ga/LC_MESSAGES/granatier.mo share/locale/gl/LC_MESSAGES/granatier.mo share/locale/hr/LC_MESSAGES/granatier.mo share/locale/hu/LC_MESSAGES/granatier.mo +share/locale/id/LC_MESSAGES/granatier.mo share/locale/is/LC_MESSAGES/granatier.mo share/locale/it/LC_MESSAGES/granatier.mo share/locale/ja/LC_MESSAGES/granatier.mo share/locale/kk/LC_MESSAGES/granatier.mo share/locale/km/LC_MESSAGES/granatier.mo share/locale/ko/LC_MESSAGES/granatier.mo share/locale/lt/LC_MESSAGES/granatier.mo share/locale/lv/LC_MESSAGES/granatier.mo share/locale/mr/LC_MESSAGES/granatier.mo share/locale/nb/LC_MESSAGES/granatier.mo share/locale/nds/LC_MESSAGES/granatier.mo share/locale/nl/LC_MESSAGES/granatier.mo share/locale/nn/LC_MESSAGES/granatier.mo share/locale/pl/LC_MESSAGES/granatier.mo share/locale/pt/LC_MESSAGES/granatier.mo share/locale/pt_BR/LC_MESSAGES/granatier.mo share/locale/ro/LC_MESSAGES/granatier.mo share/locale/ru/LC_MESSAGES/granatier.mo share/locale/sk/LC_MESSAGES/granatier.mo share/locale/sl/LC_MESSAGES/granatier.mo share/locale/sr/LC_MESSAGES/granatier.mo share/locale/sv/LC_MESSAGES/granatier.mo share/locale/tr/LC_MESSAGES/granatier.mo share/locale/ug/LC_MESSAGES/granatier.mo share/locale/uk/LC_MESSAGES/granatier.mo share/locale/zh_CN/LC_MESSAGES/granatier.mo share/locale/zh_TW/LC_MESSAGES/granatier.mo share/metainfo/org.kde.granatier.appdata.xml Index: head/games/kanagram/distinfo =================================================================== --- head/games/kanagram/distinfo (revision 514560) +++ head/games/kanagram/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537169 -SHA256 (KDE/applications/19.08.1/kanagram-19.08.1.tar.xz) = 85ba60dc1485f61054847262832edd112224a618effe8759a2dcc8ee73b130a6 -SIZE (KDE/applications/19.08.1/kanagram-19.08.1.tar.xz) = 8032936 +TIMESTAMP = 1570544354 +SHA256 (KDE/applications/19.08.2/kanagram-19.08.2.tar.xz) = 251d08a8b73e85af4b90ed429d873b17f56c1e094c4a62116eee3b6bffc96388 +SIZE (KDE/applications/19.08.2/kanagram-19.08.2.tar.xz) = 8030192 Index: head/games/kapman/distinfo =================================================================== --- head/games/kapman/distinfo (revision 514560) +++ head/games/kapman/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537170 -SHA256 (KDE/applications/19.08.1/kapman-19.08.1.tar.xz) = e80057b4fa9b8af86ecae30871005d4c7508bbc99618cf36dcf1c9c7fa905321 -SIZE (KDE/applications/19.08.1/kapman-19.08.1.tar.xz) = 2527628 +TIMESTAMP = 1570544355 +SHA256 (KDE/applications/19.08.2/kapman-19.08.2.tar.xz) = 240d7b0c611728bd1974230227c669bdcfe80081cff2ddae6278d5393bab7a4e +SIZE (KDE/applications/19.08.2/kapman-19.08.2.tar.xz) = 2526212 Index: head/games/kapman/pkg-plist =================================================================== --- head/games/kapman/pkg-plist (revision 514560) +++ head/games/kapman/pkg-plist (revision 514561) @@ -1,83 +1,84 @@ bin/kapman share/applications/org.kde.kapman.desktop share/icons/hicolor/128x128/apps/kapman.png share/icons/hicolor/16x16/apps/kapman.png share/icons/hicolor/22x22/apps/kapman.png share/icons/hicolor/32x32/apps/kapman.png share/icons/hicolor/48x48/apps/kapman.png share/icons/hicolor/64x64/apps/kapman.png %%DATADIR%%/defaultmaze.xml %%DATADIR%%/themes/invisible.desktop %%DATADIR%%/themes/invisible.svgz %%DATADIR%%/themes/invisible_preview.png %%DATADIR%%/themes/matches.desktop %%DATADIR%%/themes/matches.svgz %%DATADIR%%/themes/matches_preview.png %%DATADIR%%/themes/mountain.copyright %%DATADIR%%/themes/mountain.desktop %%DATADIR%%/themes/mountain.svgz %%DATADIR%%/themes/mountain_preview.png %%DATADIR%%/themes/mummies_crypt.desktop %%DATADIR%%/themes/mummies_crypt.svgz %%DATADIR%%/themes/mummies_crypt_preview.png %%DATADIR%%/themes/retro.desktop %%DATADIR%%/themes/retro.svgz %%DATADIR%%/themes/retro_preview.png share/kxmlgui5/kapman/kapmanui.rc share/locale/ar/LC_MESSAGES/kapman.mo share/locale/bg/LC_MESSAGES/kapman.mo share/locale/bs/LC_MESSAGES/kapman.mo share/locale/ca/LC_MESSAGES/kapman.mo share/locale/ca@valencia/LC_MESSAGES/kapman.mo share/locale/cs/LC_MESSAGES/kapman.mo share/locale/da/LC_MESSAGES/kapman.mo share/locale/de/LC_MESSAGES/kapman.mo share/locale/el/LC_MESSAGES/kapman.mo share/locale/en_GB/LC_MESSAGES/kapman.mo share/locale/eo/LC_MESSAGES/kapman.mo share/locale/es/LC_MESSAGES/kapman.mo share/locale/et/LC_MESSAGES/kapman.mo share/locale/eu/LC_MESSAGES/kapman.mo share/locale/fi/LC_MESSAGES/kapman.mo share/locale/fr/LC_MESSAGES/kapman.mo share/locale/ga/LC_MESSAGES/kapman.mo share/locale/gl/LC_MESSAGES/kapman.mo share/locale/hi/LC_MESSAGES/kapman.mo share/locale/hr/LC_MESSAGES/kapman.mo share/locale/hu/LC_MESSAGES/kapman.mo +share/locale/id/LC_MESSAGES/kapman.mo share/locale/is/LC_MESSAGES/kapman.mo share/locale/it/LC_MESSAGES/kapman.mo share/locale/ja/LC_MESSAGES/kapman.mo share/locale/kk/LC_MESSAGES/kapman.mo share/locale/km/LC_MESSAGES/kapman.mo share/locale/ko/LC_MESSAGES/kapman.mo share/locale/lt/LC_MESSAGES/kapman.mo share/locale/lv/LC_MESSAGES/kapman.mo share/locale/ml/LC_MESSAGES/kapman.mo share/locale/mr/LC_MESSAGES/kapman.mo share/locale/nb/LC_MESSAGES/kapman.mo share/locale/nds/LC_MESSAGES/kapman.mo share/locale/nl/LC_MESSAGES/kapman.mo share/locale/nn/LC_MESSAGES/kapman.mo share/locale/pl/LC_MESSAGES/kapman.mo share/locale/pt/LC_MESSAGES/kapman.mo share/locale/pt_BR/LC_MESSAGES/kapman.mo share/locale/ro/LC_MESSAGES/kapman.mo share/locale/ru/LC_MESSAGES/kapman.mo share/locale/sk/LC_MESSAGES/kapman.mo share/locale/sl/LC_MESSAGES/kapman.mo share/locale/sr/LC_MESSAGES/kapman.mo share/locale/sv/LC_MESSAGES/kapman.mo share/locale/tr/LC_MESSAGES/kapman.mo share/locale/ug/LC_MESSAGES/kapman.mo share/locale/uk/LC_MESSAGES/kapman.mo share/locale/zh_CN/LC_MESSAGES/kapman.mo share/locale/zh_TW/LC_MESSAGES/kapman.mo share/metainfo/org.kde.kapman.appdata.xml share/sounds/kapman/bonus.ogg share/sounds/kapman/energizer.ogg share/sounds/kapman/gameover.ogg share/sounds/kapman/ghost.ogg share/sounds/kapman/levelup.ogg share/sounds/kapman/life.ogg share/sounds/kapman/pill.ogg Index: head/games/katomic/distinfo =================================================================== --- head/games/katomic/distinfo (revision 514560) +++ head/games/katomic/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537170 -SHA256 (KDE/applications/19.08.1/katomic-19.08.1.tar.xz) = 05453f2a1cba1a9bb7c558e9628361685d9b9b44fc4d65599eb05fec6ca3bd5d -SIZE (KDE/applications/19.08.1/katomic-19.08.1.tar.xz) = 1422624 +TIMESTAMP = 1570544355 +SHA256 (KDE/applications/19.08.2/katomic-19.08.2.tar.xz) = 822963024107e122a3f53f55ae6863a10d92ca59eef5966cded6c9daf5f989b3 +SIZE (KDE/applications/19.08.2/katomic-19.08.2.tar.xz) = 1422816 Index: head/games/katomic/pkg-plist =================================================================== --- head/games/katomic/pkg-plist (revision 514560) +++ head/games/katomic/pkg-plist (revision 514561) @@ -1,66 +1,67 @@ bin/katomic etc/xdg/katomic.knsrc share/applications/org.kde.katomic.desktop share/icons/hicolor/128x128/apps/katomic.png share/icons/hicolor/16x16/apps/katomic.png share/icons/hicolor/22x22/apps/katomic.png share/icons/hicolor/32x32/apps/katomic.png share/icons/hicolor/48x48/apps/katomic.png share/icons/hicolor/64x64/apps/katomic.png %%DATADIR%%/levels/default_levels.dat %%DATADIR%%/pics/default_theme.svgz share/kconf_update/katomic-levelset-upd.pl share/kconf_update/katomic-levelset.upd share/kxmlgui5/katomic/katomicui.rc share/locale/ar/LC_MESSAGES/katomic.mo share/locale/bg/LC_MESSAGES/katomic.mo share/locale/bs/LC_MESSAGES/katomic.mo share/locale/ca/LC_MESSAGES/katomic.mo share/locale/ca@valencia/LC_MESSAGES/katomic.mo share/locale/cs/LC_MESSAGES/katomic.mo share/locale/da/LC_MESSAGES/katomic.mo share/locale/de/LC_MESSAGES/katomic.mo share/locale/el/LC_MESSAGES/katomic.mo share/locale/en_GB/LC_MESSAGES/katomic.mo share/locale/eo/LC_MESSAGES/katomic.mo share/locale/es/LC_MESSAGES/katomic.mo share/locale/et/LC_MESSAGES/katomic.mo share/locale/eu/LC_MESSAGES/katomic.mo share/locale/fa/LC_MESSAGES/katomic.mo share/locale/fi/LC_MESSAGES/katomic.mo share/locale/fr/LC_MESSAGES/katomic.mo share/locale/ga/LC_MESSAGES/katomic.mo share/locale/gl/LC_MESSAGES/katomic.mo share/locale/he/LC_MESSAGES/katomic.mo share/locale/hi/LC_MESSAGES/katomic.mo share/locale/hr/LC_MESSAGES/katomic.mo share/locale/hu/LC_MESSAGES/katomic.mo +share/locale/id/LC_MESSAGES/katomic.mo share/locale/is/LC_MESSAGES/katomic.mo share/locale/it/LC_MESSAGES/katomic.mo share/locale/ja/LC_MESSAGES/katomic.mo share/locale/kk/LC_MESSAGES/katomic.mo share/locale/km/LC_MESSAGES/katomic.mo share/locale/ko/LC_MESSAGES/katomic.mo share/locale/lt/LC_MESSAGES/katomic.mo share/locale/lv/LC_MESSAGES/katomic.mo share/locale/mr/LC_MESSAGES/katomic.mo share/locale/nb/LC_MESSAGES/katomic.mo share/locale/nds/LC_MESSAGES/katomic.mo share/locale/nl/LC_MESSAGES/katomic.mo share/locale/nn/LC_MESSAGES/katomic.mo share/locale/pa/LC_MESSAGES/katomic.mo share/locale/pl/LC_MESSAGES/katomic.mo share/locale/pt/LC_MESSAGES/katomic.mo share/locale/pt_BR/LC_MESSAGES/katomic.mo share/locale/ro/LC_MESSAGES/katomic.mo share/locale/ru/LC_MESSAGES/katomic.mo share/locale/sk/LC_MESSAGES/katomic.mo share/locale/sl/LC_MESSAGES/katomic.mo share/locale/sr/LC_MESSAGES/katomic.mo share/locale/sv/LC_MESSAGES/katomic.mo share/locale/tr/LC_MESSAGES/katomic.mo share/locale/ug/LC_MESSAGES/katomic.mo share/locale/uk/LC_MESSAGES/katomic.mo share/locale/zh_CN/LC_MESSAGES/katomic.mo share/locale/zh_TW/LC_MESSAGES/katomic.mo share/metainfo/org.kde.katomic.appdata.xml Index: head/games/kblackbox/distinfo =================================================================== --- head/games/kblackbox/distinfo (revision 514560) +++ head/games/kblackbox/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537170 -SHA256 (KDE/applications/19.08.1/kblackbox-19.08.1.tar.xz) = 478b235e9498e9c5bf1c3626db651c85cf41bdd824dec484bccd38f6e73ffcc7 -SIZE (KDE/applications/19.08.1/kblackbox-19.08.1.tar.xz) = 443160 +TIMESTAMP = 1570544356 +SHA256 (KDE/applications/19.08.2/kblackbox-19.08.2.tar.xz) = 4ed8e2fe00e4d2ce0b194f85491f46ceaeec28114ff2dc667c0b112f8237a9ca +SIZE (KDE/applications/19.08.2/kblackbox-19.08.2.tar.xz) = 446988 Index: head/games/kblackbox/pkg-plist =================================================================== --- head/games/kblackbox/pkg-plist (revision 514560) +++ head/games/kblackbox/pkg-plist (revision 514561) @@ -1,62 +1,63 @@ bin/kblackbox share/applications/org.kde.kblackbox.desktop share/icons/hicolor/128x128/apps/kblackbox.png share/icons/hicolor/16x16/apps/kblackbox.png share/icons/hicolor/22x22/apps/kblackbox.png share/icons/hicolor/32x32/apps/kblackbox.png share/icons/hicolor/48x48/apps/kblackbox.png share/icons/hicolor/64x64/apps/kblackbox.png %%DATADIR%%/pics/kblackbox.svgz share/kxmlgui5/kblackbox/kblackboxui.rc share/locale/ar/LC_MESSAGES/kblackbox.mo share/locale/bg/LC_MESSAGES/kblackbox.mo share/locale/bs/LC_MESSAGES/kblackbox.mo share/locale/ca/LC_MESSAGES/kblackbox.mo share/locale/ca@valencia/LC_MESSAGES/kblackbox.mo share/locale/cs/LC_MESSAGES/kblackbox.mo share/locale/da/LC_MESSAGES/kblackbox.mo share/locale/de/LC_MESSAGES/kblackbox.mo share/locale/el/LC_MESSAGES/kblackbox.mo share/locale/en_GB/LC_MESSAGES/kblackbox.mo share/locale/eo/LC_MESSAGES/kblackbox.mo share/locale/es/LC_MESSAGES/kblackbox.mo share/locale/et/LC_MESSAGES/kblackbox.mo share/locale/eu/LC_MESSAGES/kblackbox.mo share/locale/fa/LC_MESSAGES/kblackbox.mo share/locale/fi/LC_MESSAGES/kblackbox.mo share/locale/fr/LC_MESSAGES/kblackbox.mo share/locale/ga/LC_MESSAGES/kblackbox.mo share/locale/gl/LC_MESSAGES/kblackbox.mo share/locale/he/LC_MESSAGES/kblackbox.mo share/locale/hi/LC_MESSAGES/kblackbox.mo share/locale/hr/LC_MESSAGES/kblackbox.mo share/locale/hu/LC_MESSAGES/kblackbox.mo +share/locale/id/LC_MESSAGES/kblackbox.mo share/locale/is/LC_MESSAGES/kblackbox.mo share/locale/it/LC_MESSAGES/kblackbox.mo share/locale/ja/LC_MESSAGES/kblackbox.mo share/locale/kk/LC_MESSAGES/kblackbox.mo share/locale/km/LC_MESSAGES/kblackbox.mo share/locale/ko/LC_MESSAGES/kblackbox.mo share/locale/lt/LC_MESSAGES/kblackbox.mo share/locale/lv/LC_MESSAGES/kblackbox.mo share/locale/mr/LC_MESSAGES/kblackbox.mo share/locale/nb/LC_MESSAGES/kblackbox.mo share/locale/nds/LC_MESSAGES/kblackbox.mo share/locale/nl/LC_MESSAGES/kblackbox.mo share/locale/nn/LC_MESSAGES/kblackbox.mo share/locale/pa/LC_MESSAGES/kblackbox.mo share/locale/pl/LC_MESSAGES/kblackbox.mo share/locale/pt/LC_MESSAGES/kblackbox.mo share/locale/pt_BR/LC_MESSAGES/kblackbox.mo share/locale/ro/LC_MESSAGES/kblackbox.mo share/locale/ru/LC_MESSAGES/kblackbox.mo share/locale/sk/LC_MESSAGES/kblackbox.mo share/locale/sl/LC_MESSAGES/kblackbox.mo share/locale/sr/LC_MESSAGES/kblackbox.mo share/locale/sv/LC_MESSAGES/kblackbox.mo share/locale/tr/LC_MESSAGES/kblackbox.mo share/locale/ug/LC_MESSAGES/kblackbox.mo share/locale/uk/LC_MESSAGES/kblackbox.mo share/locale/zh_CN/LC_MESSAGES/kblackbox.mo share/locale/zh_TW/LC_MESSAGES/kblackbox.mo share/metainfo/org.kde.kblackbox.appdata.xml Index: head/games/kblocks/distinfo =================================================================== --- head/games/kblocks/distinfo (revision 514560) +++ head/games/kblocks/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537171 -SHA256 (KDE/applications/19.08.1/kblocks-19.08.1.tar.xz) = 15afc3b7083fc1ea08d6caa196d883a6ec7f9603302b5774c7ad97eea833f449 -SIZE (KDE/applications/19.08.1/kblocks-19.08.1.tar.xz) = 1907352 +TIMESTAMP = 1570544357 +SHA256 (KDE/applications/19.08.2/kblocks-19.08.2.tar.xz) = 8b52c949e2d446a4ccf81b09818fc90234f2f55d8722c385491ee67e1f2abf93 +SIZE (KDE/applications/19.08.2/kblocks-19.08.2.tar.xz) = 1908852 Index: head/games/kblocks/pkg-plist =================================================================== --- head/games/kblocks/pkg-plist (revision 514560) +++ head/games/kblocks/pkg-plist (revision 514561) @@ -1,73 +1,74 @@ bin/kblocks share/qlogging-categories5/kblocks.categories etc/xdg/kblocks.knsrc share/applications/org.kde.kblocks.desktop share/config.kcfg/kblocks.kcfg share/icons/hicolor/128x128/apps/kblocks.png share/icons/hicolor/16x16/apps/kblocks.png share/icons/hicolor/22x22/apps/kblocks.png share/icons/hicolor/32x32/apps/kblocks.png share/icons/hicolor/48x48/apps/kblocks.png share/icons/hicolor/64x64/apps/kblocks.png %%DATADIR%%/sounds/block-fall.ogg %%DATADIR%%/sounds/block-move.ogg %%DATADIR%%/sounds/block-remove.ogg %%DATADIR%%/themes/default.desktop %%DATADIR%%/themes/default_block_fall.ogg %%DATADIR%%/themes/default_block_move.ogg %%DATADIR%%/themes/egyptian.svg %%DATADIR%%/themes/egyptian_preview.png %%DATADIR%%/themes/oxygen.desktop %%DATADIR%%/themes/oxygen.svg %%DATADIR%%/themes/oxygen_preview.png share/kxmlgui5/kblocks/kblocksui.rc share/locale/ar/LC_MESSAGES/kblocks.mo share/locale/bg/LC_MESSAGES/kblocks.mo share/locale/bs/LC_MESSAGES/kblocks.mo share/locale/ca/LC_MESSAGES/kblocks.mo share/locale/ca@valencia/LC_MESSAGES/kblocks.mo share/locale/cs/LC_MESSAGES/kblocks.mo share/locale/da/LC_MESSAGES/kblocks.mo share/locale/de/LC_MESSAGES/kblocks.mo share/locale/el/LC_MESSAGES/kblocks.mo share/locale/en_GB/LC_MESSAGES/kblocks.mo share/locale/eo/LC_MESSAGES/kblocks.mo share/locale/es/LC_MESSAGES/kblocks.mo share/locale/et/LC_MESSAGES/kblocks.mo share/locale/eu/LC_MESSAGES/kblocks.mo share/locale/fi/LC_MESSAGES/kblocks.mo share/locale/fr/LC_MESSAGES/kblocks.mo share/locale/ga/LC_MESSAGES/kblocks.mo share/locale/gl/LC_MESSAGES/kblocks.mo share/locale/hi/LC_MESSAGES/kblocks.mo share/locale/hr/LC_MESSAGES/kblocks.mo share/locale/hu/LC_MESSAGES/kblocks.mo +share/locale/id/LC_MESSAGES/kblocks.mo share/locale/is/LC_MESSAGES/kblocks.mo share/locale/it/LC_MESSAGES/kblocks.mo share/locale/ja/LC_MESSAGES/kblocks.mo share/locale/kk/LC_MESSAGES/kblocks.mo share/locale/km/LC_MESSAGES/kblocks.mo share/locale/ko/LC_MESSAGES/kblocks.mo share/locale/lt/LC_MESSAGES/kblocks.mo share/locale/lv/LC_MESSAGES/kblocks.mo share/locale/ml/LC_MESSAGES/kblocks.mo share/locale/mr/LC_MESSAGES/kblocks.mo share/locale/nb/LC_MESSAGES/kblocks.mo share/locale/nds/LC_MESSAGES/kblocks.mo share/locale/nl/LC_MESSAGES/kblocks.mo share/locale/nn/LC_MESSAGES/kblocks.mo share/locale/pl/LC_MESSAGES/kblocks.mo share/locale/pt/LC_MESSAGES/kblocks.mo share/locale/pt_BR/LC_MESSAGES/kblocks.mo share/locale/ro/LC_MESSAGES/kblocks.mo share/locale/ru/LC_MESSAGES/kblocks.mo share/locale/sk/LC_MESSAGES/kblocks.mo share/locale/sl/LC_MESSAGES/kblocks.mo share/locale/sr/LC_MESSAGES/kblocks.mo share/locale/sv/LC_MESSAGES/kblocks.mo share/locale/tr/LC_MESSAGES/kblocks.mo share/locale/ug/LC_MESSAGES/kblocks.mo share/locale/uk/LC_MESSAGES/kblocks.mo share/locale/zh_CN/LC_MESSAGES/kblocks.mo share/locale/zh_TW/LC_MESSAGES/kblocks.mo share/metainfo/org.kde.kblocks.appdata.xml Index: head/games/kbounce/distinfo =================================================================== --- head/games/kbounce/distinfo (revision 514560) +++ head/games/kbounce/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537171 -SHA256 (KDE/applications/19.08.1/kbounce-19.08.1.tar.xz) = e3d67ab3fac471b07a45abbcd78d02912392ad3f25e9d48b70a050bfda4a5fb0 -SIZE (KDE/applications/19.08.1/kbounce-19.08.1.tar.xz) = 3468284 +TIMESTAMP = 1570544358 +SHA256 (KDE/applications/19.08.2/kbounce-19.08.2.tar.xz) = 8436ba58bb88360b08c2d220c1a92c924b15587769103f04881ac17583cc93c8 +SIZE (KDE/applications/19.08.2/kbounce-19.08.2.tar.xz) = 3466600 Index: head/games/kbounce/pkg-plist =================================================================== --- head/games/kbounce/pkg-plist (revision 514560) +++ head/games/kbounce/pkg-plist (revision 514561) @@ -1,83 +1,84 @@ bin/kbounce share/applications/org.kde.kbounce.desktop share/icons/hicolor/128x128/apps/kbounce.png share/icons/hicolor/16x16/apps/kbounce.png share/icons/hicolor/22x22/apps/kbounce.png share/icons/hicolor/32x32/apps/kbounce.png share/icons/hicolor/48x48/apps/kbounce.png share/icons/hicolor/64x64/apps/kbounce.png %%DATADIR%%/sounds/death.wav %%DATADIR%%/sounds/reflect.wav %%DATADIR%%/sounds/seconds.wav %%DATADIR%%/sounds/timeout.wav %%DATADIR%%/sounds/wallend.wav %%DATADIR%%/sounds/wallstart.wav %%DATADIR%%/themes/default.desktop %%DATADIR%%/themes/egyptian_bounce.png %%DATADIR%%/themes/egyptian_bounce.svgz %%DATADIR%%/themes/geometry.desktop %%DATADIR%%/themes/geometry.png %%DATADIR%%/themes/kbounce.svg %%DATADIR%%/themes/oxygen.desktop %%DATADIR%%/themes/oxygen.png %%DATADIR%%/themes/oxygen.svgz %%DATADIR%%/themes/roads.desktop %%DATADIR%%/themes/roads.svgz %%DATADIR%%/themes/roads_preview.png %%DATADIR%%/themes/the_beach.desktop %%DATADIR%%/themes/the_beach.svgz %%DATADIR%%/themes/thebeach_preview.png share/kxmlgui5/kbounce/kbounceui.rc share/locale/ar/LC_MESSAGES/kbounce.mo share/locale/bg/LC_MESSAGES/kbounce.mo share/locale/bs/LC_MESSAGES/kbounce.mo share/locale/ca/LC_MESSAGES/kbounce.mo share/locale/ca@valencia/LC_MESSAGES/kbounce.mo share/locale/cs/LC_MESSAGES/kbounce.mo share/locale/da/LC_MESSAGES/kbounce.mo share/locale/de/LC_MESSAGES/kbounce.mo share/locale/el/LC_MESSAGES/kbounce.mo share/locale/en_GB/LC_MESSAGES/kbounce.mo share/locale/eo/LC_MESSAGES/kbounce.mo share/locale/es/LC_MESSAGES/kbounce.mo share/locale/et/LC_MESSAGES/kbounce.mo share/locale/eu/LC_MESSAGES/kbounce.mo share/locale/fa/LC_MESSAGES/kbounce.mo share/locale/fi/LC_MESSAGES/kbounce.mo share/locale/fr/LC_MESSAGES/kbounce.mo share/locale/ga/LC_MESSAGES/kbounce.mo share/locale/gl/LC_MESSAGES/kbounce.mo share/locale/he/LC_MESSAGES/kbounce.mo share/locale/hi/LC_MESSAGES/kbounce.mo share/locale/hr/LC_MESSAGES/kbounce.mo share/locale/hu/LC_MESSAGES/kbounce.mo +share/locale/id/LC_MESSAGES/kbounce.mo share/locale/is/LC_MESSAGES/kbounce.mo share/locale/it/LC_MESSAGES/kbounce.mo share/locale/ja/LC_MESSAGES/kbounce.mo share/locale/kk/LC_MESSAGES/kbounce.mo share/locale/km/LC_MESSAGES/kbounce.mo share/locale/ko/LC_MESSAGES/kbounce.mo share/locale/lt/LC_MESSAGES/kbounce.mo share/locale/lv/LC_MESSAGES/kbounce.mo share/locale/ml/LC_MESSAGES/kbounce.mo share/locale/mr/LC_MESSAGES/kbounce.mo share/locale/nb/LC_MESSAGES/kbounce.mo share/locale/nds/LC_MESSAGES/kbounce.mo share/locale/nl/LC_MESSAGES/kbounce.mo share/locale/nn/LC_MESSAGES/kbounce.mo share/locale/pa/LC_MESSAGES/kbounce.mo share/locale/pl/LC_MESSAGES/kbounce.mo share/locale/pt/LC_MESSAGES/kbounce.mo share/locale/pt_BR/LC_MESSAGES/kbounce.mo share/locale/ro/LC_MESSAGES/kbounce.mo share/locale/ru/LC_MESSAGES/kbounce.mo share/locale/sk/LC_MESSAGES/kbounce.mo share/locale/sl/LC_MESSAGES/kbounce.mo share/locale/sr/LC_MESSAGES/kbounce.mo share/locale/sv/LC_MESSAGES/kbounce.mo share/locale/tr/LC_MESSAGES/kbounce.mo share/locale/ug/LC_MESSAGES/kbounce.mo share/locale/uk/LC_MESSAGES/kbounce.mo share/locale/zh_CN/LC_MESSAGES/kbounce.mo share/locale/zh_TW/LC_MESSAGES/kbounce.mo share/metainfo/org.kde.kbounce.appdata.xml Index: head/games/kbreakout/distinfo =================================================================== --- head/games/kbreakout/distinfo (revision 514560) +++ head/games/kbreakout/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537171 -SHA256 (KDE/applications/19.08.1/kbreakout-19.08.1.tar.xz) = 1f086f6794b40c6054f0c00d7fbebecea845f2ee7e7e3253efe33942f4ebe19e -SIZE (KDE/applications/19.08.1/kbreakout-19.08.1.tar.xz) = 2276392 +TIMESTAMP = 1570544358 +SHA256 (KDE/applications/19.08.2/kbreakout-19.08.2.tar.xz) = 9550d3ee6f6d412816bd12686272c3f0f0b5b9194242f9b22e2085c39d9720a9 +SIZE (KDE/applications/19.08.2/kbreakout-19.08.2.tar.xz) = 2277680 Index: head/games/kbreakout/pkg-plist =================================================================== --- head/games/kbreakout/pkg-plist (revision 514560) +++ head/games/kbreakout/pkg-plist (revision 514561) @@ -1,89 +1,90 @@ bin/kbreakout share/qlogging-categories5/kbreakout.categories share/applications/org.kde.kbreakout.desktop share/icons/hicolor/128x128/apps/kbreakout.png share/icons/hicolor/16x16/apps/kbreakout.png share/icons/hicolor/22x22/apps/kbreakout.png share/icons/hicolor/32x32/apps/kbreakout.png share/icons/hicolor/48x48/apps/kbreakout.png share/icons/hicolor/64x64/apps/kbreakout.png share/icons/hicolor/scalable/apps/kbreakout.svg %%DATADIR%%/levelsets/default.levelset %%DATADIR%%/qml/Ball.qml %%DATADIR%%/qml/Bar.qml %%DATADIR%%/qml/Brick.qml %%DATADIR%%/qml/CanvasItem.qml %%DATADIR%%/qml/Gift.qml %%DATADIR%%/qml/Singleshot.qml %%DATADIR%%/qml/TextItem.qml %%DATADIR%%/qml/globals.js %%DATADIR%%/qml/logic.js %%DATADIR%%/qml/main.qml %%DATADIR%%/themes/IceWorld.desktop %%DATADIR%%/themes/IceWorld.svgz %%DATADIR%%/themes/IceWorld_preview.png %%DATADIR%%/themes/alien_preview.png %%DATADIR%%/themes/alienbreakout.desktop %%DATADIR%%/themes/alienbreakout.svgz %%DATADIR%%/themes/crystal.desktop %%DATADIR%%/themes/crystal.svgz %%DATADIR%%/themes/crystal_preview.png %%DATADIR%%/themes/default.desktop %%DATADIR%%/themes/egyptian_breakout_preview.png %%DATADIR%%/themes/egyptianbreakout.svgz %%DATADIR%%/themes/simple.desktop %%DATADIR%%/themes/simple.svgz %%DATADIR%%/themes/simple_preview.png %%DATADIR%%/themes/web20.desktop %%DATADIR%%/themes/web20.svgz %%DATADIR%%/themes/web20_preview.png share/locale/ar/LC_MESSAGES/kbreakout.mo share/locale/bg/LC_MESSAGES/kbreakout.mo share/locale/bs/LC_MESSAGES/kbreakout.mo share/locale/ca/LC_MESSAGES/kbreakout.mo share/locale/ca@valencia/LC_MESSAGES/kbreakout.mo share/locale/cs/LC_MESSAGES/kbreakout.mo share/locale/da/LC_MESSAGES/kbreakout.mo share/locale/de/LC_MESSAGES/kbreakout.mo share/locale/el/LC_MESSAGES/kbreakout.mo share/locale/en_GB/LC_MESSAGES/kbreakout.mo share/locale/eo/LC_MESSAGES/kbreakout.mo share/locale/es/LC_MESSAGES/kbreakout.mo share/locale/et/LC_MESSAGES/kbreakout.mo share/locale/eu/LC_MESSAGES/kbreakout.mo share/locale/fi/LC_MESSAGES/kbreakout.mo share/locale/fr/LC_MESSAGES/kbreakout.mo share/locale/ga/LC_MESSAGES/kbreakout.mo share/locale/gl/LC_MESSAGES/kbreakout.mo share/locale/hr/LC_MESSAGES/kbreakout.mo share/locale/hu/LC_MESSAGES/kbreakout.mo +share/locale/id/LC_MESSAGES/kbreakout.mo share/locale/is/LC_MESSAGES/kbreakout.mo share/locale/it/LC_MESSAGES/kbreakout.mo share/locale/ja/LC_MESSAGES/kbreakout.mo share/locale/kk/LC_MESSAGES/kbreakout.mo share/locale/km/LC_MESSAGES/kbreakout.mo share/locale/ko/LC_MESSAGES/kbreakout.mo share/locale/lt/LC_MESSAGES/kbreakout.mo share/locale/lv/LC_MESSAGES/kbreakout.mo share/locale/ml/LC_MESSAGES/kbreakout.mo share/locale/mr/LC_MESSAGES/kbreakout.mo share/locale/nb/LC_MESSAGES/kbreakout.mo share/locale/nds/LC_MESSAGES/kbreakout.mo share/locale/nl/LC_MESSAGES/kbreakout.mo share/locale/nn/LC_MESSAGES/kbreakout.mo share/locale/pl/LC_MESSAGES/kbreakout.mo share/locale/pt/LC_MESSAGES/kbreakout.mo share/locale/pt_BR/LC_MESSAGES/kbreakout.mo share/locale/ro/LC_MESSAGES/kbreakout.mo share/locale/ru/LC_MESSAGES/kbreakout.mo share/locale/sk/LC_MESSAGES/kbreakout.mo share/locale/sl/LC_MESSAGES/kbreakout.mo share/locale/sr/LC_MESSAGES/kbreakout.mo share/locale/sv/LC_MESSAGES/kbreakout.mo share/locale/tr/LC_MESSAGES/kbreakout.mo share/locale/ug/LC_MESSAGES/kbreakout.mo share/locale/uk/LC_MESSAGES/kbreakout.mo share/locale/wa/LC_MESSAGES/kbreakout.mo share/locale/zh_CN/LC_MESSAGES/kbreakout.mo share/locale/zh_TW/LC_MESSAGES/kbreakout.mo share/metainfo/org.kde.kbreakout.appdata.xml Index: head/games/kdiamond/distinfo =================================================================== --- head/games/kdiamond/distinfo (revision 514560) +++ head/games/kdiamond/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537182 -SHA256 (KDE/applications/19.08.1/kdiamond-19.08.1.tar.xz) = 20280e44742d57508b0a0c4a70f7545bdbacf913300ca35f427801b46c808f8e -SIZE (KDE/applications/19.08.1/kdiamond-19.08.1.tar.xz) = 4692792 +TIMESTAMP = 1570544380 +SHA256 (KDE/applications/19.08.2/kdiamond-19.08.2.tar.xz) = e0e6104a34711864bc00d12acc5d4ac0143acfaefc5fec8a7f9ec5f7242d32e7 +SIZE (KDE/applications/19.08.2/kdiamond-19.08.2.tar.xz) = 4694124 Index: head/games/kdiamond/pkg-plist =================================================================== --- head/games/kdiamond/pkg-plist (revision 514560) +++ head/games/kdiamond/pkg-plist (revision 514561) @@ -1,73 +1,74 @@ bin/kdiamond etc/xdg/kdiamond.knsrc share/applications/org.kde.kdiamond.desktop share/icons/hicolor/128x128/apps/kdiamond.png share/icons/hicolor/16x16/apps/kdiamond.png share/icons/hicolor/22x22/apps/kdiamond.png share/icons/hicolor/32x32/apps/kdiamond.png share/icons/hicolor/48x48/apps/kdiamond.png share/icons/hicolor/64x64/apps/kdiamond.png %%DATADIR%%/kdiamond.kcfg %%DATADIR%%/themes/default.desktop %%DATADIR%%/themes/diamonds.desktop %%DATADIR%%/themes/diamonds.png %%DATADIR%%/themes/diamonds.svgz %%DATADIR%%/themes/egyptian.svgz %%DATADIR%%/themes/egyptian_preview.png %%DATADIR%%/themes/funny_zoo.desktop %%DATADIR%%/themes/funny_zoo.png %%DATADIR%%/themes/funny_zoo.svgz share/knotifications5/kdiamond.notifyrc share/kxmlgui5/kdiamond/kdiamondui.rc share/locale/ar/LC_MESSAGES/kdiamond.mo share/locale/bg/LC_MESSAGES/kdiamond.mo share/locale/bs/LC_MESSAGES/kdiamond.mo share/locale/ca/LC_MESSAGES/kdiamond.mo share/locale/ca@valencia/LC_MESSAGES/kdiamond.mo share/locale/cs/LC_MESSAGES/kdiamond.mo share/locale/da/LC_MESSAGES/kdiamond.mo share/locale/de/LC_MESSAGES/kdiamond.mo share/locale/el/LC_MESSAGES/kdiamond.mo share/locale/en_GB/LC_MESSAGES/kdiamond.mo share/locale/eo/LC_MESSAGES/kdiamond.mo share/locale/es/LC_MESSAGES/kdiamond.mo share/locale/et/LC_MESSAGES/kdiamond.mo share/locale/eu/LC_MESSAGES/kdiamond.mo share/locale/fi/LC_MESSAGES/kdiamond.mo share/locale/fr/LC_MESSAGES/kdiamond.mo share/locale/ga/LC_MESSAGES/kdiamond.mo share/locale/gl/LC_MESSAGES/kdiamond.mo share/locale/hi/LC_MESSAGES/kdiamond.mo share/locale/hr/LC_MESSAGES/kdiamond.mo share/locale/hu/LC_MESSAGES/kdiamond.mo +share/locale/id/LC_MESSAGES/kdiamond.mo share/locale/is/LC_MESSAGES/kdiamond.mo share/locale/it/LC_MESSAGES/kdiamond.mo share/locale/ja/LC_MESSAGES/kdiamond.mo share/locale/kk/LC_MESSAGES/kdiamond.mo share/locale/km/LC_MESSAGES/kdiamond.mo share/locale/ko/LC_MESSAGES/kdiamond.mo share/locale/lt/LC_MESSAGES/kdiamond.mo share/locale/lv/LC_MESSAGES/kdiamond.mo share/locale/mr/LC_MESSAGES/kdiamond.mo share/locale/nb/LC_MESSAGES/kdiamond.mo share/locale/nds/LC_MESSAGES/kdiamond.mo share/locale/nl/LC_MESSAGES/kdiamond.mo share/locale/nn/LC_MESSAGES/kdiamond.mo share/locale/pl/LC_MESSAGES/kdiamond.mo share/locale/pt/LC_MESSAGES/kdiamond.mo share/locale/pt_BR/LC_MESSAGES/kdiamond.mo share/locale/ro/LC_MESSAGES/kdiamond.mo share/locale/ru/LC_MESSAGES/kdiamond.mo share/locale/sk/LC_MESSAGES/kdiamond.mo share/locale/sl/LC_MESSAGES/kdiamond.mo share/locale/sr/LC_MESSAGES/kdiamond.mo share/locale/sv/LC_MESSAGES/kdiamond.mo share/locale/tr/LC_MESSAGES/kdiamond.mo share/locale/ug/LC_MESSAGES/kdiamond.mo share/locale/uk/LC_MESSAGES/kdiamond.mo share/locale/zh_CN/LC_MESSAGES/kdiamond.mo share/locale/zh_TW/LC_MESSAGES/kdiamond.mo share/metainfo/org.kde.kdiamond.appdata.xml share/sounds/KDiamond-Stone-Drop.ogg share/sounds/KDiamond-Stone-Swap.ogg share/sounds/KDiamond-Stone-Touch.ogg Index: head/games/kfourinline/distinfo =================================================================== --- head/games/kfourinline/distinfo (revision 514560) +++ head/games/kfourinline/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537182 -SHA256 (KDE/applications/19.08.1/kfourinline-19.08.1.tar.xz) = a138908ccb21ab16399edf6a0aa6f95d6197a77dfef9e4ed87c8914ceb8d5b84 -SIZE (KDE/applications/19.08.1/kfourinline-19.08.1.tar.xz) = 637900 +TIMESTAMP = 1570544381 +SHA256 (KDE/applications/19.08.2/kfourinline-19.08.2.tar.xz) = 14d1cd1be7f1524758697f79d55c0c40e8e6359f2039929349e017a97acdc4dc +SIZE (KDE/applications/19.08.2/kfourinline-19.08.2.tar.xz) = 638236 Index: head/games/kfourinline/pkg-plist =================================================================== --- head/games/kfourinline/pkg-plist (revision 514560) +++ head/games/kfourinline/pkg-plist (revision 514561) @@ -1,73 +1,74 @@ bin/kfourinline bin/kfourinlineproc share/qlogging-categories5/kfourinline.categories share/applications/org.kde.kfourinline.desktop share/config.kcfg/kwin4.kcfg share/icons/hicolor/128x128/apps/kfourinline.png share/icons/hicolor/16x16/apps/kfourinline.png share/icons/hicolor/22x22/apps/kfourinline.png share/icons/hicolor/32x32/apps/kfourinline.png share/icons/hicolor/48x48/apps/kfourinline.png share/icons/hicolor/64x64/apps/kfourinline.png %%DATADIR%%/grafix/default.desktop %%DATADIR%%/grafix/default.rc %%DATADIR%%/grafix/default.svg %%DATADIR%%/grafix/gray_reflection.desktop %%DATADIR%%/grafix/gray_reflection.rc %%DATADIR%%/grafix/gray_reflection.svg %%DATADIR%%/grafix/yellow.desktop %%DATADIR%%/grafix/yellow.rc %%DATADIR%%/grafix/yellow.svg %%DATADIR%%/grafix/yellow_reflection.desktop %%DATADIR%%/grafix/yellow_reflection.rc share/locale/ar/LC_MESSAGES/kfourinline.mo share/locale/bg/LC_MESSAGES/kfourinline.mo share/locale/bs/LC_MESSAGES/kfourinline.mo share/locale/ca/LC_MESSAGES/kfourinline.mo share/locale/ca@valencia/LC_MESSAGES/kfourinline.mo share/locale/cs/LC_MESSAGES/kfourinline.mo share/locale/da/LC_MESSAGES/kfourinline.mo share/locale/de/LC_MESSAGES/kfourinline.mo share/locale/el/LC_MESSAGES/kfourinline.mo share/locale/en_GB/LC_MESSAGES/kfourinline.mo share/locale/eo/LC_MESSAGES/kfourinline.mo share/locale/es/LC_MESSAGES/kfourinline.mo share/locale/et/LC_MESSAGES/kfourinline.mo share/locale/eu/LC_MESSAGES/kfourinline.mo share/locale/fa/LC_MESSAGES/kfourinline.mo share/locale/fi/LC_MESSAGES/kfourinline.mo share/locale/fr/LC_MESSAGES/kfourinline.mo share/locale/ga/LC_MESSAGES/kfourinline.mo share/locale/gl/LC_MESSAGES/kfourinline.mo share/locale/he/LC_MESSAGES/kfourinline.mo share/locale/hr/LC_MESSAGES/kfourinline.mo share/locale/hu/LC_MESSAGES/kfourinline.mo +share/locale/id/LC_MESSAGES/kfourinline.mo share/locale/is/LC_MESSAGES/kfourinline.mo share/locale/it/LC_MESSAGES/kfourinline.mo share/locale/ja/LC_MESSAGES/kfourinline.mo share/locale/kk/LC_MESSAGES/kfourinline.mo share/locale/km/LC_MESSAGES/kfourinline.mo share/locale/ko/LC_MESSAGES/kfourinline.mo share/locale/lt/LC_MESSAGES/kfourinline.mo share/locale/lv/LC_MESSAGES/kfourinline.mo share/locale/mr/LC_MESSAGES/kfourinline.mo share/locale/nb/LC_MESSAGES/kfourinline.mo share/locale/nds/LC_MESSAGES/kfourinline.mo share/locale/nl/LC_MESSAGES/kfourinline.mo share/locale/nn/LC_MESSAGES/kfourinline.mo share/locale/pa/LC_MESSAGES/kfourinline.mo share/locale/pl/LC_MESSAGES/kfourinline.mo share/locale/pt/LC_MESSAGES/kfourinline.mo share/locale/pt_BR/LC_MESSAGES/kfourinline.mo share/locale/ro/LC_MESSAGES/kfourinline.mo share/locale/ru/LC_MESSAGES/kfourinline.mo share/locale/sk/LC_MESSAGES/kfourinline.mo share/locale/sl/LC_MESSAGES/kfourinline.mo share/locale/sr/LC_MESSAGES/kfourinline.mo share/locale/sv/LC_MESSAGES/kfourinline.mo share/locale/tr/LC_MESSAGES/kfourinline.mo share/locale/ug/LC_MESSAGES/kfourinline.mo share/locale/uk/LC_MESSAGES/kfourinline.mo share/locale/zh_CN/LC_MESSAGES/kfourinline.mo share/locale/zh_TW/LC_MESSAGES/kfourinline.mo share/metainfo/org.kde.kfourinline.appdata.xml Index: head/games/kgoldrunner/distinfo =================================================================== --- head/games/kgoldrunner/distinfo (revision 514560) +++ head/games/kgoldrunner/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537183 -SHA256 (KDE/applications/19.08.1/kgoldrunner-19.08.1.tar.xz) = 78c284edc000ec3f3f64bcf0d6c92a50f79632804696de676ed149055de7a6f8 -SIZE (KDE/applications/19.08.1/kgoldrunner-19.08.1.tar.xz) = 4413724 +TIMESTAMP = 1570544381 +SHA256 (KDE/applications/19.08.2/kgoldrunner-19.08.2.tar.xz) = fc719386cd1f0784c9be9813326e3fded8eb2951096abf7fcc4d577e5ed5501a +SIZE (KDE/applications/19.08.2/kgoldrunner-19.08.2.tar.xz) = 4414844 Index: head/games/khangman/distinfo =================================================================== --- head/games/khangman/distinfo (revision 514560) +++ head/games/khangman/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537183 -SHA256 (KDE/applications/19.08.1/khangman-19.08.1.tar.xz) = eb95c48baa57475319f456ee1df11b715e7ceb5b1912e2657a2b1f4617bf2b26 -SIZE (KDE/applications/19.08.1/khangman-19.08.1.tar.xz) = 7107308 +TIMESTAMP = 1570544382 +SHA256 (KDE/applications/19.08.2/khangman-19.08.2.tar.xz) = dfa7d2f19ab7cd7aa90d91bab1818d48e6df88ddebf729732cca8d6aca15d1f3 +SIZE (KDE/applications/19.08.2/khangman-19.08.2.tar.xz) = 7121644 Index: head/games/kigo/distinfo =================================================================== --- head/games/kigo/distinfo (revision 514560) +++ head/games/kigo/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537184 -SHA256 (KDE/applications/19.08.1/kigo-19.08.1.tar.xz) = 7afc2e08192d7e7bf17d67e00aebc498e37b40b47ce78cb7cf2d943a5563817b -SIZE (KDE/applications/19.08.1/kigo-19.08.1.tar.xz) = 5224956 +TIMESTAMP = 1570544383 +SHA256 (KDE/applications/19.08.2/kigo-19.08.2.tar.xz) = c53a85b312e4acfcc35905a7e5602f3d623e45227fbd3644410b3fd962a9f1a0 +SIZE (KDE/applications/19.08.2/kigo-19.08.2.tar.xz) = 5227088 Index: head/games/killbots/distinfo =================================================================== --- head/games/killbots/distinfo (revision 514560) +++ head/games/killbots/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537184 -SHA256 (KDE/applications/19.08.1/killbots-19.08.1.tar.xz) = 16fb2338125d342166e630cf589a346a69874ea1da32c0a3c591d6e17241e05e -SIZE (KDE/applications/19.08.1/killbots-19.08.1.tar.xz) = 1171136 +TIMESTAMP = 1570544383 +SHA256 (KDE/applications/19.08.2/killbots-19.08.2.tar.xz) = c4407bf534dc9de604d6c169cf278b8cb9ca03055d96b71cbfe3916dbafea479 +SIZE (KDE/applications/19.08.2/killbots-19.08.2.tar.xz) = 1171644 Index: head/games/kiriki/distinfo =================================================================== --- head/games/kiriki/distinfo (revision 514560) +++ head/games/kiriki/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537184 -SHA256 (KDE/applications/19.08.1/kiriki-19.08.1.tar.xz) = ca22215394b7ea172cd1c5eef301871df2526a321b4f3c6b1aa042d4f15abf7c -SIZE (KDE/applications/19.08.1/kiriki-19.08.1.tar.xz) = 373036 +TIMESTAMP = 1570544384 +SHA256 (KDE/applications/19.08.2/kiriki-19.08.2.tar.xz) = 8aa1749e2b14dbb4b508515a0b1f5164243ee793141ec2af7bfc6be1f6eb67da +SIZE (KDE/applications/19.08.2/kiriki-19.08.2.tar.xz) = 372868 Index: head/games/kjumpingcube/distinfo =================================================================== --- head/games/kjumpingcube/distinfo (revision 514560) +++ head/games/kjumpingcube/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537185 -SHA256 (KDE/applications/19.08.1/kjumpingcube-19.08.1.tar.xz) = 18c7bc9ab96308a4b874226f92f15da38cbb293372fdae8deec45029d6d31f20 -SIZE (KDE/applications/19.08.1/kjumpingcube-19.08.1.tar.xz) = 288072 +TIMESTAMP = 1570544385 +SHA256 (KDE/applications/19.08.2/kjumpingcube-19.08.2.tar.xz) = 7ff90a22670818eee7d02fd8119923761e003e059d0666873d5299cd31c96eb3 +SIZE (KDE/applications/19.08.2/kjumpingcube-19.08.2.tar.xz) = 287988 Index: head/games/klickety/distinfo =================================================================== --- head/games/klickety/distinfo (revision 514560) +++ head/games/klickety/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537185 -SHA256 (KDE/applications/19.08.1/klickety-19.08.1.tar.xz) = cb12f79123e96920b323e752b057f21942aba0844d79e310ad343bda0108b273 -SIZE (KDE/applications/19.08.1/klickety-19.08.1.tar.xz) = 1389320 +TIMESTAMP = 1570544385 +SHA256 (KDE/applications/19.08.2/klickety-19.08.2.tar.xz) = 97e165d250d88a5a9f00fc5e111f641c43bed8e1445fd9d7c59f986cf5517271 +SIZE (KDE/applications/19.08.2/klickety-19.08.2.tar.xz) = 1389260 Index: head/games/klines/distinfo =================================================================== --- head/games/klines/distinfo (revision 514560) +++ head/games/klines/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537185 -SHA256 (KDE/applications/19.08.1/klines-19.08.1.tar.xz) = e8ac5d344c6b9e6d8a9fa9a0fe7da5ebdceec049fbdc8ff476604a0760877aab -SIZE (KDE/applications/19.08.1/klines-19.08.1.tar.xz) = 1781548 +TIMESTAMP = 1570544386 +SHA256 (KDE/applications/19.08.2/klines-19.08.2.tar.xz) = 1e7f5600b32a43ed4e5b7490430fb20309837e35aceb6b9b904951f23beec86f +SIZE (KDE/applications/19.08.2/klines-19.08.2.tar.xz) = 1780672 Index: head/games/kmahjongg/distinfo =================================================================== --- head/games/kmahjongg/distinfo (revision 514560) +++ head/games/kmahjongg/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537186 -SHA256 (KDE/applications/19.08.1/kmahjongg-19.08.1.tar.xz) = 621e30ce5d76ab9f8736cfe13a076501c8822d7d1402d195bfe12c21ffa507c3 -SIZE (KDE/applications/19.08.1/kmahjongg-19.08.1.tar.xz) = 3379304 +TIMESTAMP = 1570544387 +SHA256 (KDE/applications/19.08.2/kmahjongg-19.08.2.tar.xz) = 8b2c4b0e3cb9bb85fa6d5f0fc5c55fcca96149e510cde25be2bcd688834a8d08 +SIZE (KDE/applications/19.08.2/kmahjongg-19.08.2.tar.xz) = 3378064 Index: head/games/kmines/distinfo =================================================================== --- head/games/kmines/distinfo (revision 514560) +++ head/games/kmines/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537186 -SHA256 (KDE/applications/19.08.1/kmines-19.08.1.tar.xz) = 8aedc9eeb3426a394a6e048508f700d466c18b262a9b98e01eff379a8d6003fb -SIZE (KDE/applications/19.08.1/kmines-19.08.1.tar.xz) = 898844 +TIMESTAMP = 1570544387 +SHA256 (KDE/applications/19.08.2/kmines-19.08.2.tar.xz) = 735a3b7b844fbfc970187ddc9d4fe312a5dd6c037e8ad87712388578482d12d8 +SIZE (KDE/applications/19.08.2/kmines-19.08.2.tar.xz) = 898628 Index: head/games/knavalbattle/distinfo =================================================================== --- head/games/knavalbattle/distinfo (revision 514560) +++ head/games/knavalbattle/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537186 -SHA256 (KDE/applications/19.08.1/knavalbattle-19.08.1.tar.xz) = 6fa3cc1b7de95d22a6c356f411367399626a334ce648abc50ac724a860468915 -SIZE (KDE/applications/19.08.1/knavalbattle-19.08.1.tar.xz) = 1280000 +TIMESTAMP = 1570544388 +SHA256 (KDE/applications/19.08.2/knavalbattle-19.08.2.tar.xz) = 31f25b5397c36434c1910bf8968f92548019ad172b4d5399e6c01939389915ba +SIZE (KDE/applications/19.08.2/knavalbattle-19.08.2.tar.xz) = 1280500 Index: head/games/knetwalk/distinfo =================================================================== --- head/games/knetwalk/distinfo (revision 514560) +++ head/games/knetwalk/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537187 -SHA256 (KDE/applications/19.08.1/knetwalk-19.08.1.tar.xz) = 0c62b756d3375f0c51046e92904f380544ba77bcc0109607bb38055907579ccf -SIZE (KDE/applications/19.08.1/knetwalk-19.08.1.tar.xz) = 1038328 +TIMESTAMP = 1570544389 +SHA256 (KDE/applications/19.08.2/knetwalk-19.08.2.tar.xz) = 057b8571f165a716a6cc13ec6489e7b5f9b4c14fa72080180a2098fa0fa028a1 +SIZE (KDE/applications/19.08.2/knetwalk-19.08.2.tar.xz) = 1038336 Index: head/games/knights/distinfo =================================================================== --- head/games/knights/distinfo (revision 514560) +++ head/games/knights/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537187 -SHA256 (KDE/applications/19.08.1/knights-19.08.1.tar.xz) = bdd99e6ba75e03f19eac5fe6e50c84496eb614725da021208db9119539cea132 -SIZE (KDE/applications/19.08.1/knights-19.08.1.tar.xz) = 3511440 +TIMESTAMP = 1570544389 +SHA256 (KDE/applications/19.08.2/knights-19.08.2.tar.xz) = 2b70338d1cb2b770157a5b061a797620d8dd7dd8c6da0bcb7e2a9db375e71a07 +SIZE (KDE/applications/19.08.2/knights-19.08.2.tar.xz) = 3512748 Index: head/games/kolf/distinfo =================================================================== --- head/games/kolf/distinfo (revision 514560) +++ head/games/kolf/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537187 -SHA256 (KDE/applications/19.08.1/kolf-19.08.1.tar.xz) = 5199274d7ec557d396e74485debe4c7572050de6d31f128cca9ab737062f83bc -SIZE (KDE/applications/19.08.1/kolf-19.08.1.tar.xz) = 1031268 +TIMESTAMP = 1570544390 +SHA256 (KDE/applications/19.08.2/kolf-19.08.2.tar.xz) = 88b9a58885eda34bf5b349db5e84c20df9beb1462922ed6e973a61bd95d853e8 +SIZE (KDE/applications/19.08.2/kolf-19.08.2.tar.xz) = 1026416 Index: head/games/kollision/distinfo =================================================================== --- head/games/kollision/distinfo (revision 514560) +++ head/games/kollision/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537188 -SHA256 (KDE/applications/19.08.1/kollision-19.08.1.tar.xz) = 0f2bac3898ceb26bd17bdcc3481d76709b793a83ace75ba8f6f45fbf54428697 -SIZE (KDE/applications/19.08.1/kollision-19.08.1.tar.xz) = 281064 +TIMESTAMP = 1570544391 +SHA256 (KDE/applications/19.08.2/kollision-19.08.2.tar.xz) = f2e7d851181033ce39d43a038601ca70c608ae9d0cb0e88228512ca1dbd0cf19 +SIZE (KDE/applications/19.08.2/kollision-19.08.2.tar.xz) = 280732 Index: head/games/konquest/distinfo =================================================================== --- head/games/konquest/distinfo (revision 514560) +++ head/games/konquest/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537188 -SHA256 (KDE/applications/19.08.1/konquest-19.08.1.tar.xz) = 114e76a10a992efb3fbd094bd1b66c3d6266c540c41289a0627ec04a8db52ec0 -SIZE (KDE/applications/19.08.1/konquest-19.08.1.tar.xz) = 658328 +TIMESTAMP = 1570544391 +SHA256 (KDE/applications/19.08.2/konquest-19.08.2.tar.xz) = 3dda62a480e37d97aabdc4670a8ac1cf209605ed274c872ee3575ff1ecff6936 +SIZE (KDE/applications/19.08.2/konquest-19.08.2.tar.xz) = 658604 Index: head/games/kpat/distinfo =================================================================== --- head/games/kpat/distinfo (revision 514560) +++ head/games/kpat/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537188 -SHA256 (KDE/applications/19.08.1/kpat-19.08.1.tar.xz) = 65bf7299c59d3d7512ab39174fd0e5d044f307784c02895130399534e044831c -SIZE (KDE/applications/19.08.1/kpat-19.08.1.tar.xz) = 3577040 +TIMESTAMP = 1570544392 +SHA256 (KDE/applications/19.08.2/kpat-19.08.2.tar.xz) = 6322d86e12996da3d95f6d4afd1d2e70cfd1771698bab393aaf987fd4fe0ef67 +SIZE (KDE/applications/19.08.2/kpat-19.08.2.tar.xz) = 3577248 Index: head/games/kreversi/distinfo =================================================================== --- head/games/kreversi/distinfo (revision 514560) +++ head/games/kreversi/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537189 -SHA256 (KDE/applications/19.08.1/kreversi-19.08.1.tar.xz) = f4c691dcc5c7864c8201f7e06470e2856996c35c5317020e56822c48af0b810e -SIZE (KDE/applications/19.08.1/kreversi-19.08.1.tar.xz) = 943128 +TIMESTAMP = 1570544393 +SHA256 (KDE/applications/19.08.2/kreversi-19.08.2.tar.xz) = 345c72ad38b9bd759f7569c7c0541c08a2cdad5ab92d08c1db8b6cf8ffaf1ce2 +SIZE (KDE/applications/19.08.2/kreversi-19.08.2.tar.xz) = 943620 Index: head/games/kshisen/distinfo =================================================================== --- head/games/kshisen/distinfo (revision 514560) +++ head/games/kshisen/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537189 -SHA256 (KDE/applications/19.08.1/kshisen-19.08.1.tar.xz) = 1631baaff368ca40a386c60998a9a491a2054a951f5b7311bea74f708d61d65f -SIZE (KDE/applications/19.08.1/kshisen-19.08.1.tar.xz) = 822564 +TIMESTAMP = 1570544394 +SHA256 (KDE/applications/19.08.2/kshisen-19.08.2.tar.xz) = 3c18bc546f2dadcff03af2a25b6f468357967560b7fddf916aea2b27d22c2364 +SIZE (KDE/applications/19.08.2/kshisen-19.08.2.tar.xz) = 822960 Index: head/games/ksirk/distinfo =================================================================== --- head/games/ksirk/distinfo (revision 514560) +++ head/games/ksirk/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537189 -SHA256 (KDE/applications/19.08.1/ksirk-19.08.1.tar.xz) = 42e00d3591fbfbe1db6de4caad963606a0ca5ee9a224b757157594bebb8c733c -SIZE (KDE/applications/19.08.1/ksirk-19.08.1.tar.xz) = 6993232 +TIMESTAMP = 1570544395 +SHA256 (KDE/applications/19.08.2/ksirk-19.08.2.tar.xz) = 6016d929de52d6e03ae1c1ba483e5e505542f16edfbd37c8dfbb9d0913e7f7f8 +SIZE (KDE/applications/19.08.2/ksirk-19.08.2.tar.xz) = 6992192 Index: head/games/ksnakeduel/distinfo =================================================================== --- head/games/ksnakeduel/distinfo (revision 514560) +++ head/games/ksnakeduel/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537190 -SHA256 (KDE/applications/19.08.1/ksnakeduel-19.08.1.tar.xz) = 130e6545102a4e39f284a409213e9d45066ed27c077ff881839f33db78f62dd5 -SIZE (KDE/applications/19.08.1/ksnakeduel-19.08.1.tar.xz) = 605808 +TIMESTAMP = 1570544395 +SHA256 (KDE/applications/19.08.2/ksnakeduel-19.08.2.tar.xz) = bb13aa91d0e75c1099a57606e0ea1f567a3ffe8f4efbf6a94420bd372ff10289 +SIZE (KDE/applications/19.08.2/ksnakeduel-19.08.2.tar.xz) = 605304 Index: head/games/kspaceduel/distinfo =================================================================== --- head/games/kspaceduel/distinfo (revision 514560) +++ head/games/kspaceduel/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537190 -SHA256 (KDE/applications/19.08.1/kspaceduel-19.08.1.tar.xz) = 47a6d9c78b1d24e80803b7e1765bb6de37157e9f1e733ef5ce50a54612c16bf9 -SIZE (KDE/applications/19.08.1/kspaceduel-19.08.1.tar.xz) = 610980 +TIMESTAMP = 1570544396 +SHA256 (KDE/applications/19.08.2/kspaceduel-19.08.2.tar.xz) = 3e2af55afcf78f74ca1fa67ea46da2db4cbc6fd9f522a94d3adb9bed6b518aa8 +SIZE (KDE/applications/19.08.2/kspaceduel-19.08.2.tar.xz) = 611448 Index: head/games/ksquares/distinfo =================================================================== --- head/games/ksquares/distinfo (revision 514560) +++ head/games/ksquares/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537190 -SHA256 (KDE/applications/19.08.1/ksquares-19.08.1.tar.xz) = 39fd1b73c3c13c3322a5658b8deed31261b0e68edc5cb9666ade374d5d9d8283 -SIZE (KDE/applications/19.08.1/ksquares-19.08.1.tar.xz) = 260732 +TIMESTAMP = 1570544397 +SHA256 (KDE/applications/19.08.2/ksquares-19.08.2.tar.xz) = f16fa641f02a6462085d291ed8d3262891cdeeeff8bbbde4e0aabfdac3dc7bc9 +SIZE (KDE/applications/19.08.2/ksquares-19.08.2.tar.xz) = 260104 Index: head/games/ksudoku/distinfo =================================================================== --- head/games/ksudoku/distinfo (revision 514560) +++ head/games/ksudoku/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537201 -SHA256 (KDE/applications/19.08.1/ksudoku-19.08.1.tar.xz) = cae801e0c595009e35aa11df370de421164f10d9840ae4dede2cd57f19cd6866 -SIZE (KDE/applications/19.08.1/ksudoku-19.08.1.tar.xz) = 1649352 +TIMESTAMP = 1570544417 +SHA256 (KDE/applications/19.08.2/ksudoku-19.08.2.tar.xz) = 4630117e12c10c2f326a4e55dceed7f19d183b597eadc3d4308aecf5a5455156 +SIZE (KDE/applications/19.08.2/ksudoku-19.08.2.tar.xz) = 1650384 Index: head/games/ktuberling/distinfo =================================================================== --- head/games/ktuberling/distinfo (revision 514560) +++ head/games/ktuberling/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537202 -SHA256 (KDE/applications/19.08.1/ktuberling-19.08.1.tar.xz) = b373c7552ff695e7d3428b7f2551315de00786177a5dc4bb96f777bdb84887cc -SIZE (KDE/applications/19.08.1/ktuberling-19.08.1.tar.xz) = 32635352 +TIMESTAMP = 1570544418 +SHA256 (KDE/applications/19.08.2/ktuberling-19.08.2.tar.xz) = e6cfcd7175c7ed081ecd743c2fdd845f88b25d6cb4d46f9e6d58e35eb11c66ad +SIZE (KDE/applications/19.08.2/ktuberling-19.08.2.tar.xz) = 32641376 Index: head/games/ktuberling/pkg-plist =================================================================== --- head/games/ktuberling/pkg-plist (revision 514560) +++ head/games/ktuberling/pkg-plist (revision 514561) @@ -1,1583 +1,1584 @@ bin/ktuberling share/applications/org.kde.ktuberling.desktop share/icons/hicolor/128x128/apps/ktuberling.png share/icons/hicolor/128x128/mimetypes/application-x-tuberling.png share/icons/hicolor/16x16/apps/ktuberling.png share/icons/hicolor/16x16/mimetypes/application-x-tuberling.png share/icons/hicolor/22x22/apps/ktuberling.png share/icons/hicolor/22x22/mimetypes/application-x-tuberling.png share/icons/hicolor/32x32/apps/ktuberling.png share/icons/hicolor/32x32/mimetypes/application-x-tuberling.png share/icons/hicolor/48x48/apps/ktuberling.png share/icons/hicolor/48x48/mimetypes/application-x-tuberling.png share/icons/hicolor/64x64/apps/ktuberling.png share/icons/hicolor/64x64/mimetypes/application-x-tuberling.png %%DATADIR%%/pics/butterflies.desktop %%DATADIR%%/pics/butterflies.svgz %%DATADIR%%/pics/butterflies.theme %%DATADIR%%/pics/christmas.desktop %%DATADIR%%/pics/christmas.svgz %%DATADIR%%/pics/christmas.theme %%DATADIR%%/pics/default_theme.desktop %%DATADIR%%/pics/default_theme.svg %%DATADIR%%/pics/default_theme.theme %%DATADIR%%/pics/egypt.desktop %%DATADIR%%/pics/egypt.svg %%DATADIR%%/pics/egypt.theme %%DATADIR%%/pics/moon.desktop %%DATADIR%%/pics/moon.svg %%DATADIR%%/pics/moon.theme %%DATADIR%%/pics/pizzeria.desktop %%DATADIR%%/pics/pizzeria.svgz %%DATADIR%%/pics/pizzeria.theme %%DATADIR%%/pics/potato-game.desktop %%DATADIR%%/pics/potato-game.svg %%DATADIR%%/pics/potato-game.theme %%DATADIR%%/pics/robin-tux.desktop %%DATADIR%%/pics/robin-tux.svgz %%DATADIR%%/pics/robin-tux.theme %%DATADIR%%/pics/robot_workshop.desktop %%DATADIR%%/pics/robot_workshop.svgz %%DATADIR%%/pics/robot_workshop.theme %%DATADIR%%/pics/train_valley.desktop %%DATADIR%%/pics/train_valley.svgz %%DATADIR%%/pics/train_valley.theme %%DATADIR%%/sounds/ca.soundtheme %%DATADIR%%/sounds/ca/Frier-Tux.ogg %%DATADIR%%/sounds/ca/Guard-Tux.ogg %%DATADIR%%/sounds/ca/Kid-Tux.ogg %%DATADIR%%/sounds/ca/Little-Tux.ogg %%DATADIR%%/sounds/ca/Maiden-Tux.ogg %%DATADIR%%/sounds/ca/Prince-Tux.ogg %%DATADIR%%/sounds/ca/Robin-Tux.ogg %%DATADIR%%/sounds/ca/Sherif-Tux.ogg %%DATADIR%%/sounds/ca/Whitch-Tux.ogg %%DATADIR%%/sounds/ca/apple.ogg %%DATADIR%%/sounds/ca/arrow.ogg %%DATADIR%%/sounds/ca/arrows.ogg %%DATADIR%%/sounds/ca/bow-shoot.ogg %%DATADIR%%/sounds/ca/bow.ogg %%DATADIR%%/sounds/ca/bullseye.ogg %%DATADIR%%/sounds/ca/butterflies_body.ogg %%DATADIR%%/sounds/ca/butterflies_circle.ogg %%DATADIR%%/sounds/ca/butterflies_circles.ogg %%DATADIR%%/sounds/ca/butterflies_eye.ogg %%DATADIR%%/sounds/ca/butterflies_heart.ogg %%DATADIR%%/sounds/ca/butterflies_purple_shape.ogg %%DATADIR%%/sounds/ca/butterflies_spiral.ogg %%DATADIR%%/sounds/ca/butterflies_wing.ogg %%DATADIR%%/sounds/ca/candles-glow.ogg %%DATADIR%%/sounds/ca/candles.ogg %%DATADIR%%/sounds/ca/egypt_arch.ogg %%DATADIR%%/sounds/ca/egypt_birds.ogg %%DATADIR%%/sounds/ca/egypt_boy.ogg %%DATADIR%%/sounds/ca/egypt_bridge.ogg %%DATADIR%%/sounds/ca/egypt_camel.ogg %%DATADIR%%/sounds/ca/egypt_cart.ogg %%DATADIR%%/sounds/ca/egypt_column.ogg %%DATADIR%%/sounds/ca/egypt_donkey.ogg %%DATADIR%%/sounds/ca/egypt_girl.ogg %%DATADIR%%/sounds/ca/egypt_grass.ogg %%DATADIR%%/sounds/ca/egypt_man.ogg %%DATADIR%%/sounds/ca/egypt_oasis.ogg %%DATADIR%%/sounds/ca/egypt_palmtree.ogg %%DATADIR%%/sounds/ca/egypt_pyramid.ogg %%DATADIR%%/sounds/ca/egypt_road.ogg %%DATADIR%%/sounds/ca/egypt_sphynx.ogg %%DATADIR%%/sounds/ca/egypt_well.ogg %%DATADIR%%/sounds/ca/egypt_woman.ogg %%DATADIR%%/sounds/ca/fish.ogg %%DATADIR%%/sounds/ca/flask-poison.ogg %%DATADIR%%/sounds/ca/flask.ogg %%DATADIR%%/sounds/ca/goblet.ogg %%DATADIR%%/sounds/ca/guitar.ogg %%DATADIR%%/sounds/ca/key.ogg %%DATADIR%%/sounds/ca/letter-love.ogg %%DATADIR%%/sounds/ca/letter.ogg %%DATADIR%%/sounds/ca/moon_alien.ogg %%DATADIR%%/sounds/ca/moon_astronaut.ogg %%DATADIR%%/sounds/ca/moon_earth.ogg %%DATADIR%%/sounds/ca/moon_fallingstar.ogg %%DATADIR%%/sounds/ca/moon_hotel.ogg %%DATADIR%%/sounds/ca/moon_monster.ogg %%DATADIR%%/sounds/ca/moon_moonwalker.ogg %%DATADIR%%/sounds/ca/moon_planet.ogg %%DATADIR%%/sounds/ca/moon_radar.ogg %%DATADIR%%/sounds/ca/moon_rocket.ogg %%DATADIR%%/sounds/ca/moon_satellite.ogg %%DATADIR%%/sounds/ca/moon_sign.ogg %%DATADIR%%/sounds/ca/moon_star.ogg %%DATADIR%%/sounds/ca/moon_ufo.ogg %%DATADIR%%/sounds/ca/note.ogg %%DATADIR%%/sounds/ca/notes.ogg %%DATADIR%%/sounds/ca/patata_arrecada.ogg %%DATADIR%%/sounds/ca/patata_barret.ogg %%DATADIR%%/sounds/ca/patata_basto.ogg %%DATADIR%%/sounds/ca/patata_bermudes.ogg %%DATADIR%%/sounds/ca/patata_bigoti.ogg %%DATADIR%%/sounds/ca/patata_cabell.ogg %%DATADIR%%/sounds/ca/patata_cella.ogg %%DATADIR%%/sounds/ca/patata_corbata.ogg %%DATADIR%%/sounds/ca/patata_corbati.ogg %%DATADIR%%/sounds/ca/patata_faldilla.ogg %%DATADIR%%/sounds/ca/patata_flors.ogg %%DATADIR%%/sounds/ca/patata_llavis.ogg %%DATADIR%%/sounds/ca/patata_nas.ogg %%DATADIR%%/sounds/ca/patata_orella.ogg %%DATADIR%%/sounds/ca/patata_paraigua.ogg %%DATADIR%%/sounds/ca/patata_pilota.ogg %%DATADIR%%/sounds/ca/patata_sabata.ogg %%DATADIR%%/sounds/ca/patata_ull.ogg %%DATADIR%%/sounds/ca/patata_ulleres.ogg %%DATADIR%%/sounds/ca/patata_ulleresdesol.ogg %%DATADIR%%/sounds/ca/patata_vestit.ogg %%DATADIR%%/sounds/ca/pizzeria_anchovy.ogg %%DATADIR%%/sounds/ca/pizzeria_bacon.ogg %%DATADIR%%/sounds/ca/pizzeria_brocolli.ogg %%DATADIR%%/sounds/ca/pizzeria_cheese.ogg %%DATADIR%%/sounds/ca/pizzeria_cucumber.ogg %%DATADIR%%/sounds/ca/pizzeria_mushroom.ogg %%DATADIR%%/sounds/ca/pizzeria_olive.ogg %%DATADIR%%/sounds/ca/pizzeria_onion.ogg %%DATADIR%%/sounds/ca/pizzeria_oregano.ogg %%DATADIR%%/sounds/ca/pizzeria_pepper.ogg %%DATADIR%%/sounds/ca/pizzeria_pepperoni.ogg %%DATADIR%%/sounds/ca/pizzeria_pineapple.ogg %%DATADIR%%/sounds/ca/pizzeria_salami.ogg %%DATADIR%%/sounds/ca/pizzeria_tomato.ogg %%DATADIR%%/sounds/ca/plate.ogg %%DATADIR%%/sounds/ca/robot_workshop_antenna.ogg %%DATADIR%%/sounds/ca/robot_workshop_arm.ogg %%DATADIR%%/sounds/ca/robot_workshop_ball.ogg %%DATADIR%%/sounds/ca/robot_workshop_base.ogg %%DATADIR%%/sounds/ca/robot_workshop_block.ogg %%DATADIR%%/sounds/ca/robot_workshop_body.ogg %%DATADIR%%/sounds/ca/robot_workshop_claw.ogg %%DATADIR%%/sounds/ca/robot_workshop_eye.ogg %%DATADIR%%/sounds/ca/robot_workshop_foot.ogg %%DATADIR%%/sounds/ca/robot_workshop_hand.ogg %%DATADIR%%/sounds/ca/robot_workshop_head.ogg %%DATADIR%%/sounds/ca/robot_workshop_panel.ogg %%DATADIR%%/sounds/ca/robot_workshop_rocket.ogg %%DATADIR%%/sounds/ca/robot_workshop_rod.ogg %%DATADIR%%/sounds/ca/robot_workshop_wheel.ogg %%DATADIR%%/sounds/ca/say-angry.ogg %%DATADIR%%/sounds/ca/say-huh.ogg %%DATADIR%%/sounds/ca/say-idea.ogg %%DATADIR%%/sounds/ca/say-laugh.ogg %%DATADIR%%/sounds/ca/say-love.ogg %%DATADIR%%/sounds/ca/say-sick.ogg %%DATADIR%%/sounds/ca/say-stare.ogg %%DATADIR%%/sounds/ca/say-what.ogg %%DATADIR%%/sounds/ca/say-wow.ogg %%DATADIR%%/sounds/ca/say-zzz.ogg %%DATADIR%%/sounds/ca/teacup.ogg %%DATADIR%%/sounds/ca/tv_accident.ogg %%DATADIR%%/sounds/ca/tv_ball.ogg %%DATADIR%%/sounds/ca/tv_barrier.ogg %%DATADIR%%/sounds/ca/tv_bicycle.ogg %%DATADIR%%/sounds/ca/tv_breakdown_lorry.ogg %%DATADIR%%/sounds/ca/tv_car.ogg %%DATADIR%%/sounds/ca/tv_caravan.ogg %%DATADIR%%/sounds/ca/tv_cyclist.ogg %%DATADIR%%/sounds/ca/tv_elephant.ogg %%DATADIR%%/sounds/ca/tv_excavator.ogg %%DATADIR%%/sounds/ca/tv_fence.ogg %%DATADIR%%/sounds/ca/tv_fire.ogg %%DATADIR%%/sounds/ca/tv_fireengine.ogg %%DATADIR%%/sounds/ca/tv_fireman.ogg %%DATADIR%%/sounds/ca/tv_fisherman.ogg %%DATADIR%%/sounds/ca/tv_giraffe.ogg %%DATADIR%%/sounds/ca/tv_guitar.ogg %%DATADIR%%/sounds/ca/tv_guitarist.ogg %%DATADIR%%/sounds/ca/tv_house.ogg %%DATADIR%%/sounds/ca/tv_ladder.ogg %%DATADIR%%/sounds/ca/tv_lion.ogg %%DATADIR%%/sounds/ca/tv_lorry.ogg %%DATADIR%%/sounds/ca/tv_lorry_tractor.ogg %%DATADIR%%/sounds/ca/tv_man.ogg %%DATADIR%%/sounds/ca/tv_mechanic.ogg %%DATADIR%%/sounds/ca/tv_monkey.ogg %%DATADIR%%/sounds/ca/tv_path.ogg %%DATADIR%%/sounds/ca/tv_rock.ogg %%DATADIR%%/sounds/ca/tv_school.ogg %%DATADIR%%/sounds/ca/tv_shop.ogg %%DATADIR%%/sounds/ca/tv_smoke.ogg %%DATADIR%%/sounds/ca/tv_tipper.ogg %%DATADIR%%/sounds/ca/tv_trailer.ogg %%DATADIR%%/sounds/ca/tv_train.ogg %%DATADIR%%/sounds/ca/tv_tree.ogg %%DATADIR%%/sounds/ca/tv_tunnel.ogg %%DATADIR%%/sounds/ca/tv_volley_net.ogg %%DATADIR%%/sounds/ca/tv_wagon.ogg %%DATADIR%%/sounds/ca/tv_woman.ogg %%DATADIR%%/sounds/ca/vase.ogg %%DATADIR%%/sounds/ca/wanted.ogg %%DATADIR%%/sounds/ca/white-dowe-fly.ogg %%DATADIR%%/sounds/ca/white-dowe.ogg %%DATADIR%%/sounds/ca/xmas_angel.ogg %%DATADIR%%/sounds/ca/xmas_ball.ogg %%DATADIR%%/sounds/ca/xmas_boot.ogg %%DATADIR%%/sounds/ca/xmas_candle.ogg %%DATADIR%%/sounds/ca/xmas_comet.ogg %%DATADIR%%/sounds/ca/xmas_garland.ogg %%DATADIR%%/sounds/ca/xmas_lights.ogg %%DATADIR%%/sounds/ca/xmas_mistletoe.ogg %%DATADIR%%/sounds/ca/xmas_moon.ogg %%DATADIR%%/sounds/ca/xmas_owl.ogg %%DATADIR%%/sounds/ca/xmas_present.ogg %%DATADIR%%/sounds/ca/xmas_rabbit.ogg %%DATADIR%%/sounds/ca/xmas_reindeer.ogg %%DATADIR%%/sounds/ca/xmas_shoe.ogg %%DATADIR%%/sounds/ca/xmas_snowflake.ogg %%DATADIR%%/sounds/ca/xmas_snowman.ogg %%DATADIR%%/sounds/ca/xmas_star.ogg %%DATADIR%%/sounds/ca/xmas_tree.ogg %%DATADIR%%/sounds/ca/xmas_turtle.ogg %%DATADIR%%/sounds/ca/xmas_tux.ogg %%DATADIR%%/sounds/da.soundtheme %%DATADIR%%/sounds/da/blomst.ogg %%DATADIR%%/sounds/da/bold.ogg %%DATADIR%%/sounds/da/briller.ogg %%DATADIR%%/sounds/da/egypt_aesel.ogg %%DATADIR%%/sounds/da/egypt_bro.ogg %%DATADIR%%/sounds/da/egypt_broend.ogg %%DATADIR%%/sounds/da/egypt_bue.ogg %%DATADIR%%/sounds/da/egypt_dreng.ogg %%DATADIR%%/sounds/da/egypt_fugle.ogg %%DATADIR%%/sounds/da/egypt_graes.ogg %%DATADIR%%/sounds/da/egypt_kamel.ogg %%DATADIR%%/sounds/da/egypt_kvinde.ogg %%DATADIR%%/sounds/da/egypt_mand.ogg %%DATADIR%%/sounds/da/egypt_oase.ogg %%DATADIR%%/sounds/da/egypt_palme.ogg %%DATADIR%%/sounds/da/egypt_pige.ogg %%DATADIR%%/sounds/da/egypt_pyramide.ogg %%DATADIR%%/sounds/da/egypt_sfinx.ogg %%DATADIR%%/sounds/da/egypt_soejle.ogg %%DATADIR%%/sounds/da/egypt_vej.ogg %%DATADIR%%/sounds/da/egypt_vogn.ogg %%DATADIR%%/sounds/da/frakke.ogg %%DATADIR%%/sounds/da/frier-tux.ogg %%DATADIR%%/sounds/da/guard-tux.ogg %%DATADIR%%/sounds/da/haar.ogg %%DATADIR%%/sounds/da/hat.ogg %%DATADIR%%/sounds/da/kid-tux.ogg %%DATADIR%%/sounds/da/little-tux.ogg %%DATADIR%%/sounds/da/maiden-tux.ogg %%DATADIR%%/sounds/da/moon_astronaut.ogg %%DATADIR%%/sounds/da/moon_hotel.ogg %%DATADIR%%/sounds/da/moon_jorden.ogg %%DATADIR%%/sounds/da/moon_maanefartoej.ogg %%DATADIR%%/sounds/da/moon_planet.ogg %%DATADIR%%/sounds/da/moon_radar.ogg %%DATADIR%%/sounds/da/moon_raket.ogg %%DATADIR%%/sounds/da/moon_rumvaesen.ogg %%DATADIR%%/sounds/da/moon_satellit.ogg %%DATADIR%%/sounds/da/moon_skilt.ogg %%DATADIR%%/sounds/da/moon_stjerne.ogg %%DATADIR%%/sounds/da/moon_stjerneskud.ogg %%DATADIR%%/sounds/da/moon_ufo.ogg %%DATADIR%%/sounds/da/moon_uhyre.ogg %%DATADIR%%/sounds/da/mund.ogg %%DATADIR%%/sounds/da/naese.ogg %%DATADIR%%/sounds/da/nederdel.ogg %%DATADIR%%/sounds/da/oeje.ogg %%DATADIR%%/sounds/da/oejenbryn.ogg %%DATADIR%%/sounds/da/oere.ogg %%DATADIR%%/sounds/da/oerering.ogg %%DATADIR%%/sounds/da/overskaeg.ogg %%DATADIR%%/sounds/da/paraply.ogg %%DATADIR%%/sounds/da/pizza_agurk.ogg %%DATADIR%%/sounds/da/pizza_ananas.ogg %%DATADIR%%/sounds/da/pizza_ansjos.ogg %%DATADIR%%/sounds/da/pizza_bacon.ogg %%DATADIR%%/sounds/da/pizza_broccoli.ogg %%DATADIR%%/sounds/da/pizza_champignon.ogg %%DATADIR%%/sounds/da/pizza_loeg.ogg %%DATADIR%%/sounds/da/pizza_oliven.ogg %%DATADIR%%/sounds/da/pizza_oregano.ogg %%DATADIR%%/sounds/da/pizza_ost.ogg %%DATADIR%%/sounds/da/pizza_pebber.ogg %%DATADIR%%/sounds/da/pizza_pebberoni.ogg %%DATADIR%%/sounds/da/pizza_salami.ogg %%DATADIR%%/sounds/da/pizza_tomat.ogg %%DATADIR%%/sounds/da/prince-tux.ogg %%DATADIR%%/sounds/da/robin-tux.ogg %%DATADIR%%/sounds/da/sherif-tux.ogg %%DATADIR%%/sounds/da/shorts.ogg %%DATADIR%%/sounds/da/sko.ogg %%DATADIR%%/sounds/da/slips.ogg %%DATADIR%%/sounds/da/sloejfe.ogg %%DATADIR%%/sounds/da/solbriller.ogg %%DATADIR%%/sounds/da/stok.ogg %%DATADIR%%/sounds/da/tux-angry.ogg %%DATADIR%%/sounds/da/tux-apple.ogg %%DATADIR%%/sounds/da/tux-arrow.ogg %%DATADIR%%/sounds/da/tux-arrows.ogg %%DATADIR%%/sounds/da/tux-bow.ogg %%DATADIR%%/sounds/da/tux-bullseye.ogg %%DATADIR%%/sounds/da/tux-candles.ogg %%DATADIR%%/sounds/da/tux-dowe.ogg %%DATADIR%%/sounds/da/tux-fish.ogg %%DATADIR%%/sounds/da/tux-flask.ogg %%DATADIR%%/sounds/da/tux-fly.ogg %%DATADIR%%/sounds/da/tux-goblet.ogg %%DATADIR%%/sounds/da/tux-guitar.ogg %%DATADIR%%/sounds/da/tux-huh.ogg %%DATADIR%%/sounds/da/tux-idea.ogg %%DATADIR%%/sounds/da/tux-key.ogg %%DATADIR%%/sounds/da/tux-laugh.ogg %%DATADIR%%/sounds/da/tux-letter.ogg %%DATADIR%%/sounds/da/tux-love.ogg %%DATADIR%%/sounds/da/tux-note.ogg %%DATADIR%%/sounds/da/tux-notes.ogg %%DATADIR%%/sounds/da/tux-plate.ogg %%DATADIR%%/sounds/da/tux-poison.ogg %%DATADIR%%/sounds/da/tux-sick.ogg %%DATADIR%%/sounds/da/tux-stare.ogg %%DATADIR%%/sounds/da/tux-teacup.ogg %%DATADIR%%/sounds/da/tux-vase.ogg %%DATADIR%%/sounds/da/tux-wanted.ogg %%DATADIR%%/sounds/da/tux-what.ogg %%DATADIR%%/sounds/da/tux-wow.ogg %%DATADIR%%/sounds/da/tux-zzz.ogg %%DATADIR%%/sounds/da/tv_accident.ogg %%DATADIR%%/sounds/da/tv_ball.ogg %%DATADIR%%/sounds/da/tv_barrier.ogg %%DATADIR%%/sounds/da/tv_bil.ogg %%DATADIR%%/sounds/da/tv_breakdown_lorry.ogg %%DATADIR%%/sounds/da/tv_caravan.ogg %%DATADIR%%/sounds/da/tv_cykel.ogg %%DATADIR%%/sounds/da/tv_cyklist.ogg %%DATADIR%%/sounds/da/tv_elephant.ogg %%DATADIR%%/sounds/da/tv_excavator.ogg %%DATADIR%%/sounds/da/tv_fence.ogg %%DATADIR%%/sounds/da/tv_fire.ogg %%DATADIR%%/sounds/da/tv_fireengine.ogg %%DATADIR%%/sounds/da/tv_fireman.ogg %%DATADIR%%/sounds/da/tv_fisherman.ogg %%DATADIR%%/sounds/da/tv_giraffe.ogg %%DATADIR%%/sounds/da/tv_guitar.ogg %%DATADIR%%/sounds/da/tv_guitarist.ogg %%DATADIR%%/sounds/da/tv_house.ogg %%DATADIR%%/sounds/da/tv_ladder.ogg %%DATADIR%%/sounds/da/tv_lion.ogg %%DATADIR%%/sounds/da/tv_lorry.ogg %%DATADIR%%/sounds/da/tv_lorry_tractor.ogg %%DATADIR%%/sounds/da/tv_man.ogg %%DATADIR%%/sounds/da/tv_mechanic.ogg %%DATADIR%%/sounds/da/tv_monkey.ogg %%DATADIR%%/sounds/da/tv_path.ogg %%DATADIR%%/sounds/da/tv_rock.ogg %%DATADIR%%/sounds/da/tv_school.ogg %%DATADIR%%/sounds/da/tv_shop.ogg %%DATADIR%%/sounds/da/tv_smoke.ogg %%DATADIR%%/sounds/da/tv_tipper.ogg %%DATADIR%%/sounds/da/tv_tog.ogg %%DATADIR%%/sounds/da/tv_trailer.ogg %%DATADIR%%/sounds/da/tv_tree.ogg %%DATADIR%%/sounds/da/tv_tunnel.ogg %%DATADIR%%/sounds/da/tv_volley_net.ogg %%DATADIR%%/sounds/da/tv_wagon.ogg %%DATADIR%%/sounds/da/tv_woman.ogg %%DATADIR%%/sounds/da/whitch-tux.ogg %%DATADIR%%/sounds/da/xmas_angel.ogg %%DATADIR%%/sounds/da/xmas_ball.ogg %%DATADIR%%/sounds/da/xmas_boot.ogg %%DATADIR%%/sounds/da/xmas_candle.ogg %%DATADIR%%/sounds/da/xmas_comet.ogg %%DATADIR%%/sounds/da/xmas_garland.ogg %%DATADIR%%/sounds/da/xmas_lights.ogg %%DATADIR%%/sounds/da/xmas_mistletoe.ogg %%DATADIR%%/sounds/da/xmas_moon.ogg %%DATADIR%%/sounds/da/xmas_owl.ogg %%DATADIR%%/sounds/da/xmas_present.ogg %%DATADIR%%/sounds/da/xmas_rabbit.ogg %%DATADIR%%/sounds/da/xmas_reindeer.ogg %%DATADIR%%/sounds/da/xmas_shoe.ogg %%DATADIR%%/sounds/da/xmas_snowflake.ogg %%DATADIR%%/sounds/da/xmas_snowman.ogg %%DATADIR%%/sounds/da/xmas_star.ogg %%DATADIR%%/sounds/da/xmas_tree.ogg %%DATADIR%%/sounds/da/xmas_turtle.ogg %%DATADIR%%/sounds/da/xmas_tux.ogg %%DATADIR%%/sounds/de.soundtheme %%DATADIR%%/sounds/de/ball.ogg %%DATADIR%%/sounds/de/bow.ogg %%DATADIR%%/sounds/de/coat.ogg %%DATADIR%%/sounds/de/ear.ogg %%DATADIR%%/sounds/de/earring.ogg %%DATADIR%%/sounds/de/egypt_arch.ogg %%DATADIR%%/sounds/de/egypt_birds.ogg %%DATADIR%%/sounds/de/egypt_boy.ogg %%DATADIR%%/sounds/de/egypt_bridge.ogg %%DATADIR%%/sounds/de/egypt_camel.ogg %%DATADIR%%/sounds/de/egypt_cart.ogg %%DATADIR%%/sounds/de/egypt_column.ogg %%DATADIR%%/sounds/de/egypt_donkey.ogg %%DATADIR%%/sounds/de/egypt_girl.ogg %%DATADIR%%/sounds/de/egypt_grass.ogg %%DATADIR%%/sounds/de/egypt_man.ogg %%DATADIR%%/sounds/de/egypt_oasis.ogg %%DATADIR%%/sounds/de/egypt_palmtree.ogg %%DATADIR%%/sounds/de/egypt_pyramid.ogg %%DATADIR%%/sounds/de/egypt_road.ogg %%DATADIR%%/sounds/de/egypt_sphynx.ogg %%DATADIR%%/sounds/de/egypt_well.ogg %%DATADIR%%/sounds/de/egypt_woman.ogg %%DATADIR%%/sounds/de/eye.ogg %%DATADIR%%/sounds/de/eyebrow.ogg %%DATADIR%%/sounds/de/flower.ogg %%DATADIR%%/sounds/de/hair.ogg %%DATADIR%%/sounds/de/hat.ogg %%DATADIR%%/sounds/de/moon_alien.ogg %%DATADIR%%/sounds/de/moon_astronaut.ogg %%DATADIR%%/sounds/de/moon_earth.ogg %%DATADIR%%/sounds/de/moon_fallingstar.ogg %%DATADIR%%/sounds/de/moon_hotel.ogg %%DATADIR%%/sounds/de/moon_monster.ogg %%DATADIR%%/sounds/de/moon_moonwalker.ogg %%DATADIR%%/sounds/de/moon_planet.ogg %%DATADIR%%/sounds/de/moon_radar.ogg %%DATADIR%%/sounds/de/moon_rocket.ogg %%DATADIR%%/sounds/de/moon_satellite.ogg %%DATADIR%%/sounds/de/moon_sign.ogg %%DATADIR%%/sounds/de/moon_star.ogg %%DATADIR%%/sounds/de/moon_ufo.ogg %%DATADIR%%/sounds/de/moustache.ogg %%DATADIR%%/sounds/de/mouth.ogg %%DATADIR%%/sounds/de/nose.ogg %%DATADIR%%/sounds/de/pizzeria_anchovy.ogg %%DATADIR%%/sounds/de/pizzeria_bacon.ogg %%DATADIR%%/sounds/de/pizzeria_broccolli.ogg %%DATADIR%%/sounds/de/pizzeria_cheese.ogg %%DATADIR%%/sounds/de/pizzeria_cucumber.ogg %%DATADIR%%/sounds/de/pizzeria_mushroom.ogg %%DATADIR%%/sounds/de/pizzeria_olive.ogg %%DATADIR%%/sounds/de/pizzeria_onion.ogg %%DATADIR%%/sounds/de/pizzeria_oregano.ogg %%DATADIR%%/sounds/de/pizzeria_pepper.ogg %%DATADIR%%/sounds/de/pizzeria_pepperoni.ogg %%DATADIR%%/sounds/de/pizzeria_pineapple.ogg %%DATADIR%%/sounds/de/pizzeria_salami.ogg %%DATADIR%%/sounds/de/pizzeria_tomato.ogg %%DATADIR%%/sounds/de/shoes.ogg %%DATADIR%%/sounds/de/shorts.ogg %%DATADIR%%/sounds/de/skirt.ogg %%DATADIR%%/sounds/de/spectacles.ogg %%DATADIR%%/sounds/de/stick.ogg %%DATADIR%%/sounds/de/sunglasses.ogg %%DATADIR%%/sounds/de/tie.ogg %%DATADIR%%/sounds/de/tv_bicycle.ogg %%DATADIR%%/sounds/de/tv_car.ogg %%DATADIR%%/sounds/de/tv_cyclist.ogg %%DATADIR%%/sounds/de/tv_train.ogg %%DATADIR%%/sounds/de/tv_tree.ogg %%DATADIR%%/sounds/de/umbrella.ogg %%DATADIR%%/sounds/el.soundtheme %%DATADIR%%/sounds/el/arrow.ogg %%DATADIR%%/sounds/el/ball.ogg %%DATADIR%%/sounds/el/cheese.ogg %%DATADIR%%/sounds/el/coat.ogg %%DATADIR%%/sounds/el/ear.ogg %%DATADIR%%/sounds/el/earring.ogg %%DATADIR%%/sounds/el/egypt_arch.ogg %%DATADIR%%/sounds/el/egypt_birds.ogg %%DATADIR%%/sounds/el/egypt_boy.ogg %%DATADIR%%/sounds/el/egypt_bridge.ogg %%DATADIR%%/sounds/el/egypt_camel.ogg %%DATADIR%%/sounds/el/egypt_cart.ogg %%DATADIR%%/sounds/el/egypt_column.ogg %%DATADIR%%/sounds/el/egypt_donkey.ogg %%DATADIR%%/sounds/el/egypt_girl.ogg %%DATADIR%%/sounds/el/egypt_grass.ogg %%DATADIR%%/sounds/el/egypt_man.ogg %%DATADIR%%/sounds/el/egypt_oasis.ogg %%DATADIR%%/sounds/el/egypt_palmtree.ogg %%DATADIR%%/sounds/el/egypt_pyramid.ogg %%DATADIR%%/sounds/el/egypt_road.ogg %%DATADIR%%/sounds/el/egypt_sphynx.ogg %%DATADIR%%/sounds/el/egypt_well.ogg %%DATADIR%%/sounds/el/egypt_woman.ogg %%DATADIR%%/sounds/el/eye.ogg %%DATADIR%%/sounds/el/eyebrow.ogg %%DATADIR%%/sounds/el/flower.ogg %%DATADIR%%/sounds/el/hair.ogg %%DATADIR%%/sounds/el/hat.ogg %%DATADIR%%/sounds/el/moon_alien.ogg %%DATADIR%%/sounds/el/moon_astronaut.ogg %%DATADIR%%/sounds/el/moon_earth.ogg %%DATADIR%%/sounds/el/moon_fallingstar.ogg %%DATADIR%%/sounds/el/moon_hotel.ogg %%DATADIR%%/sounds/el/moon_monster.ogg %%DATADIR%%/sounds/el/moon_moonwalker.ogg %%DATADIR%%/sounds/el/moon_planet.ogg %%DATADIR%%/sounds/el/moon_radar.ogg %%DATADIR%%/sounds/el/moon_rocket.ogg %%DATADIR%%/sounds/el/moon_satellite.ogg %%DATADIR%%/sounds/el/moon_sign.ogg %%DATADIR%%/sounds/el/moon_star.ogg %%DATADIR%%/sounds/el/moon_ufo.ogg %%DATADIR%%/sounds/el/moustache.ogg %%DATADIR%%/sounds/el/mouth.ogg %%DATADIR%%/sounds/el/nose.ogg %%DATADIR%%/sounds/el/pizzeria_anchovy.ogg %%DATADIR%%/sounds/el/pizzeria_bacon.ogg %%DATADIR%%/sounds/el/pizzeria_broccolli.ogg %%DATADIR%%/sounds/el/pizzeria_cheese.ogg %%DATADIR%%/sounds/el/pizzeria_cucumber.ogg %%DATADIR%%/sounds/el/pizzeria_mushroom.ogg %%DATADIR%%/sounds/el/pizzeria_olive.ogg %%DATADIR%%/sounds/el/pizzeria_onion.ogg %%DATADIR%%/sounds/el/pizzeria_oregano.ogg %%DATADIR%%/sounds/el/pizzeria_pepper.ogg %%DATADIR%%/sounds/el/pizzeria_pepperoni.ogg %%DATADIR%%/sounds/el/pizzeria_pineapple.ogg %%DATADIR%%/sounds/el/pizzeria_salami.ogg %%DATADIR%%/sounds/el/pizzeria_tomato.ogg %%DATADIR%%/sounds/el/shoe.ogg %%DATADIR%%/sounds/el/shorts.ogg %%DATADIR%%/sounds/el/skirt.ogg %%DATADIR%%/sounds/el/spectacles.ogg %%DATADIR%%/sounds/el/stick.ogg %%DATADIR%%/sounds/el/stick2.ogg %%DATADIR%%/sounds/el/sunglasses.ogg %%DATADIR%%/sounds/el/tie.ogg %%DATADIR%%/sounds/el/tv_bicycle.ogg %%DATADIR%%/sounds/el/tv_car.ogg %%DATADIR%%/sounds/el/tv_cyclist.ogg %%DATADIR%%/sounds/el/tv_train.ogg %%DATADIR%%/sounds/el/tv_tree.ogg %%DATADIR%%/sounds/el/umbrella.ogg %%DATADIR%%/sounds/en.soundtheme %%DATADIR%%/sounds/en/ball.ogg %%DATADIR%%/sounds/en/bow.ogg %%DATADIR%%/sounds/en/coat.ogg %%DATADIR%%/sounds/en/ear.ogg %%DATADIR%%/sounds/en/earring.ogg %%DATADIR%%/sounds/en/egypt_arch.ogg %%DATADIR%%/sounds/en/egypt_birds.ogg %%DATADIR%%/sounds/en/egypt_boy.ogg %%DATADIR%%/sounds/en/egypt_bridge.ogg %%DATADIR%%/sounds/en/egypt_camel.ogg %%DATADIR%%/sounds/en/egypt_cart.ogg %%DATADIR%%/sounds/en/egypt_column.ogg %%DATADIR%%/sounds/en/egypt_donkey.ogg %%DATADIR%%/sounds/en/egypt_girl.ogg %%DATADIR%%/sounds/en/egypt_grass.ogg %%DATADIR%%/sounds/en/egypt_man.ogg %%DATADIR%%/sounds/en/egypt_oasis.ogg %%DATADIR%%/sounds/en/egypt_palmtree.ogg %%DATADIR%%/sounds/en/egypt_pyramid.ogg %%DATADIR%%/sounds/en/egypt_road.ogg %%DATADIR%%/sounds/en/egypt_sphynx.ogg %%DATADIR%%/sounds/en/egypt_well.ogg %%DATADIR%%/sounds/en/egypt_woman.ogg %%DATADIR%%/sounds/en/eye.ogg %%DATADIR%%/sounds/en/eyebrow.ogg %%DATADIR%%/sounds/en/flower.ogg %%DATADIR%%/sounds/en/hair.ogg %%DATADIR%%/sounds/en/hat.ogg %%DATADIR%%/sounds/en/moon_alien.ogg %%DATADIR%%/sounds/en/moon_astronaut.ogg %%DATADIR%%/sounds/en/moon_earth.ogg %%DATADIR%%/sounds/en/moon_fallingstar.ogg %%DATADIR%%/sounds/en/moon_hotel.ogg %%DATADIR%%/sounds/en/moon_monster.ogg %%DATADIR%%/sounds/en/moon_moonwalker.ogg %%DATADIR%%/sounds/en/moon_planet.ogg %%DATADIR%%/sounds/en/moon_radar.ogg %%DATADIR%%/sounds/en/moon_rocket.ogg %%DATADIR%%/sounds/en/moon_satellite.ogg %%DATADIR%%/sounds/en/moon_sign.ogg %%DATADIR%%/sounds/en/moon_star.ogg %%DATADIR%%/sounds/en/moon_ufo.ogg %%DATADIR%%/sounds/en/moustache.ogg %%DATADIR%%/sounds/en/mouth.ogg %%DATADIR%%/sounds/en/nose.ogg %%DATADIR%%/sounds/en/pizzeria_anchovy.ogg %%DATADIR%%/sounds/en/pizzeria_bacon.ogg %%DATADIR%%/sounds/en/pizzeria_broccolli.ogg %%DATADIR%%/sounds/en/pizzeria_cheese.ogg %%DATADIR%%/sounds/en/pizzeria_cucumber.ogg %%DATADIR%%/sounds/en/pizzeria_mushroom.ogg %%DATADIR%%/sounds/en/pizzeria_olive.ogg %%DATADIR%%/sounds/en/pizzeria_onion.ogg %%DATADIR%%/sounds/en/pizzeria_oregano.ogg %%DATADIR%%/sounds/en/pizzeria_pepper.ogg %%DATADIR%%/sounds/en/pizzeria_pepperoni.ogg %%DATADIR%%/sounds/en/pizzeria_pineapple.ogg %%DATADIR%%/sounds/en/pizzeria_salami.ogg %%DATADIR%%/sounds/en/pizzeria_tomato.ogg %%DATADIR%%/sounds/en/shoe.ogg %%DATADIR%%/sounds/en/shorts.ogg %%DATADIR%%/sounds/en/skirt.ogg %%DATADIR%%/sounds/en/spectacles.ogg %%DATADIR%%/sounds/en/stick.ogg %%DATADIR%%/sounds/en/sunglasses.ogg %%DATADIR%%/sounds/en/tie.ogg %%DATADIR%%/sounds/en/tv_bicycle.ogg %%DATADIR%%/sounds/en/tv_car.ogg %%DATADIR%%/sounds/en/tv_cyclist.ogg %%DATADIR%%/sounds/en/tv_train.ogg %%DATADIR%%/sounds/en/tv_tree.ogg %%DATADIR%%/sounds/en/umbrella.ogg %%DATADIR%%/sounds/es.soundtheme %%DATADIR%%/sounds/es/anteojos.wav %%DATADIR%%/sounds/es/bigote.wav %%DATADIR%%/sounds/es/boca.wav %%DATADIR%%/sounds/es/ceja.wav %%DATADIR%%/sounds/es/gafasdesol.wav %%DATADIR%%/sounds/es/lazo.wav %%DATADIR%%/sounds/es/nariz.wav %%DATADIR%%/sounds/es/ojo.wav %%DATADIR%%/sounds/es/oreja.wav %%DATADIR%%/sounds/es/pelo.wav %%DATADIR%%/sounds/es/pendiente.wav %%DATADIR%%/sounds/es/sombrero.wav %%DATADIR%%/sounds/fi.soundtheme %%DATADIR%%/sounds/fi/aurinkolasit.wav %%DATADIR%%/sounds/fi/hattu.wav %%DATADIR%%/sounds/fi/korva.wav %%DATADIR%%/sounds/fi/korvakoru.wav %%DATADIR%%/sounds/fi/kulmakarva.wav %%DATADIR%%/sounds/fi/nena.wav %%DATADIR%%/sounds/fi/rusetti.wav %%DATADIR%%/sounds/fi/silma.wav %%DATADIR%%/sounds/fi/silmalasit.wav %%DATADIR%%/sounds/fi/suu.wav %%DATADIR%%/sounds/fi/viikset.wav %%DATADIR%%/sounds/fr.soundtheme %%DATADIR%%/sounds/fr/bouche.wav %%DATADIR%%/sounds/fr/boucle-d-oreille.wav %%DATADIR%%/sounds/fr/chapeau.wav %%DATADIR%%/sounds/fr/cheveux.wav %%DATADIR%%/sounds/fr/cravate.wav %%DATADIR%%/sounds/fr/lunettes-de-soleil.wav %%DATADIR%%/sounds/fr/lunettes.wav %%DATADIR%%/sounds/fr/moustache.wav %%DATADIR%%/sounds/fr/nez.wav %%DATADIR%%/sounds/fr/noeud-papillon.wav %%DATADIR%%/sounds/fr/oeil.wav %%DATADIR%%/sounds/fr/oreille.wav %%DATADIR%%/sounds/fr/sourcil.wav %%DATADIR%%/sounds/ga.soundtheme %%DATADIR%%/sounds/ga/beal.wav %%DATADIR%%/sounds/ga/carbhat.wav %%DATADIR%%/sounds/ga/cluas.wav %%DATADIR%%/sounds/ga/croimeal.wav %%DATADIR%%/sounds/ga/cuachog.wav %%DATADIR%%/sounds/ga/fainne-cluaise.wav %%DATADIR%%/sounds/ga/gruaig.wav %%DATADIR%%/sounds/ga/hata.wav %%DATADIR%%/sounds/ga/mala.wav %%DATADIR%%/sounds/ga/speaclai-greine.wav %%DATADIR%%/sounds/ga/speaclai.wav %%DATADIR%%/sounds/ga/sron.wav %%DATADIR%%/sounds/ga/suil.wav %%DATADIR%%/sounds/gl.soundtheme %%DATADIR%%/sounds/gl/ball.ogg %%DATADIR%%/sounds/gl/bow.ogg %%DATADIR%%/sounds/gl/coat.ogg %%DATADIR%%/sounds/gl/ear.ogg %%DATADIR%%/sounds/gl/earring.ogg %%DATADIR%%/sounds/gl/egypt_arch.ogg %%DATADIR%%/sounds/gl/egypt_birds.ogg %%DATADIR%%/sounds/gl/egypt_boy.ogg %%DATADIR%%/sounds/gl/egypt_bridge.ogg %%DATADIR%%/sounds/gl/egypt_camel.ogg %%DATADIR%%/sounds/gl/egypt_cart.ogg %%DATADIR%%/sounds/gl/egypt_column.ogg %%DATADIR%%/sounds/gl/egypt_donkey.ogg %%DATADIR%%/sounds/gl/egypt_girl.ogg %%DATADIR%%/sounds/gl/egypt_grass.ogg %%DATADIR%%/sounds/gl/egypt_man.ogg %%DATADIR%%/sounds/gl/egypt_oasis.ogg %%DATADIR%%/sounds/gl/egypt_palmtree.ogg %%DATADIR%%/sounds/gl/egypt_pyramid.ogg %%DATADIR%%/sounds/gl/egypt_road.ogg %%DATADIR%%/sounds/gl/egypt_sphynx.ogg %%DATADIR%%/sounds/gl/egypt_well.ogg %%DATADIR%%/sounds/gl/egypt_woman.ogg %%DATADIR%%/sounds/gl/eye.ogg %%DATADIR%%/sounds/gl/eyebrow.ogg %%DATADIR%%/sounds/gl/flower.ogg %%DATADIR%%/sounds/gl/hair.ogg %%DATADIR%%/sounds/gl/hat.ogg %%DATADIR%%/sounds/gl/moon_alien.ogg %%DATADIR%%/sounds/gl/moon_astronaut.ogg %%DATADIR%%/sounds/gl/moon_earth.ogg %%DATADIR%%/sounds/gl/moon_fallingstar.ogg %%DATADIR%%/sounds/gl/moon_hotel.ogg %%DATADIR%%/sounds/gl/moon_monster.ogg %%DATADIR%%/sounds/gl/moon_moonwalker.ogg %%DATADIR%%/sounds/gl/moon_planet.ogg %%DATADIR%%/sounds/gl/moon_radar.ogg %%DATADIR%%/sounds/gl/moon_rocket.ogg %%DATADIR%%/sounds/gl/moon_satellite.ogg %%DATADIR%%/sounds/gl/moon_sign.ogg %%DATADIR%%/sounds/gl/moon_star.ogg %%DATADIR%%/sounds/gl/moon_ufo.ogg %%DATADIR%%/sounds/gl/moustache.ogg %%DATADIR%%/sounds/gl/mouth.ogg %%DATADIR%%/sounds/gl/nose.ogg %%DATADIR%%/sounds/gl/pizzeria_anchovy.ogg %%DATADIR%%/sounds/gl/pizzeria_bacon.ogg %%DATADIR%%/sounds/gl/pizzeria_broccolli.ogg %%DATADIR%%/sounds/gl/pizzeria_cheese.ogg %%DATADIR%%/sounds/gl/pizzeria_cucumber.ogg %%DATADIR%%/sounds/gl/pizzeria_mushroom.ogg %%DATADIR%%/sounds/gl/pizzeria_olive.ogg %%DATADIR%%/sounds/gl/pizzeria_onion.ogg %%DATADIR%%/sounds/gl/pizzeria_oregano.ogg %%DATADIR%%/sounds/gl/pizzeria_pepper.ogg %%DATADIR%%/sounds/gl/pizzeria_pepperoni.ogg %%DATADIR%%/sounds/gl/pizzeria_pineapple.ogg %%DATADIR%%/sounds/gl/pizzeria_salami.ogg %%DATADIR%%/sounds/gl/pizzeria_tomato.ogg %%DATADIR%%/sounds/gl/shoe.ogg %%DATADIR%%/sounds/gl/shorts.ogg %%DATADIR%%/sounds/gl/skirt.ogg %%DATADIR%%/sounds/gl/spectacles.ogg %%DATADIR%%/sounds/gl/stick.ogg %%DATADIR%%/sounds/gl/sunglasses.ogg %%DATADIR%%/sounds/gl/tie.ogg %%DATADIR%%/sounds/gl/tv_bicycle.ogg %%DATADIR%%/sounds/gl/tv_car.ogg %%DATADIR%%/sounds/gl/tv_cyclist.ogg %%DATADIR%%/sounds/gl/tv_train.ogg %%DATADIR%%/sounds/gl/umbrella.ogg %%DATADIR%%/sounds/it.soundtheme %%DATADIR%%/sounds/it/baffi.wav %%DATADIR%%/sounds/it/bocca.wav %%DATADIR%%/sounds/it/capelli.wav %%DATADIR%%/sounds/it/cappello.wav %%DATADIR%%/sounds/it/cravatta.wav %%DATADIR%%/sounds/it/cravattino.wav %%DATADIR%%/sounds/it/naso.wav %%DATADIR%%/sounds/it/occhiali.wav %%DATADIR%%/sounds/it/occhialidasole.wav %%DATADIR%%/sounds/it/occhio.wav %%DATADIR%%/sounds/it/orecchino.wav %%DATADIR%%/sounds/it/orecchio.wav %%DATADIR%%/sounds/it/sopracciglio.wav %%DATADIR%%/sounds/lt.soundtheme %%DATADIR%%/sounds/lt/ball.ogg %%DATADIR%%/sounds/lt/bow.ogg %%DATADIR%%/sounds/lt/coat.ogg %%DATADIR%%/sounds/lt/ear.ogg %%DATADIR%%/sounds/lt/earring.ogg %%DATADIR%%/sounds/lt/egypt_arch.ogg %%DATADIR%%/sounds/lt/egypt_birds.ogg %%DATADIR%%/sounds/lt/egypt_boy.ogg %%DATADIR%%/sounds/lt/egypt_bridge.ogg %%DATADIR%%/sounds/lt/egypt_camel.ogg %%DATADIR%%/sounds/lt/egypt_cart.ogg %%DATADIR%%/sounds/lt/egypt_column.ogg %%DATADIR%%/sounds/lt/egypt_donkey.ogg %%DATADIR%%/sounds/lt/egypt_girl.ogg %%DATADIR%%/sounds/lt/egypt_grass.ogg %%DATADIR%%/sounds/lt/egypt_man.ogg %%DATADIR%%/sounds/lt/egypt_oasis.ogg %%DATADIR%%/sounds/lt/egypt_palmtree.ogg %%DATADIR%%/sounds/lt/egypt_pyramid.ogg %%DATADIR%%/sounds/lt/egypt_road.ogg %%DATADIR%%/sounds/lt/egypt_sphynx.ogg %%DATADIR%%/sounds/lt/egypt_well.ogg %%DATADIR%%/sounds/lt/egypt_woman.ogg %%DATADIR%%/sounds/lt/eye.ogg %%DATADIR%%/sounds/lt/eyebrow.ogg %%DATADIR%%/sounds/lt/flower.ogg %%DATADIR%%/sounds/lt/frier-tux.ogg %%DATADIR%%/sounds/lt/guard-tux.ogg %%DATADIR%%/sounds/lt/hair.ogg %%DATADIR%%/sounds/lt/hat.ogg %%DATADIR%%/sounds/lt/kid-tux.ogg %%DATADIR%%/sounds/lt/little-tux.ogg %%DATADIR%%/sounds/lt/maiden-tux.ogg %%DATADIR%%/sounds/lt/moon_alien.ogg %%DATADIR%%/sounds/lt/moon_astronaut.ogg %%DATADIR%%/sounds/lt/moon_earth.ogg %%DATADIR%%/sounds/lt/moon_fallingstar.ogg %%DATADIR%%/sounds/lt/moon_hotel.ogg %%DATADIR%%/sounds/lt/moon_monster.ogg %%DATADIR%%/sounds/lt/moon_moonwalker.ogg %%DATADIR%%/sounds/lt/moon_planet.ogg %%DATADIR%%/sounds/lt/moon_radar.ogg %%DATADIR%%/sounds/lt/moon_rocket.ogg %%DATADIR%%/sounds/lt/moon_satellite.ogg %%DATADIR%%/sounds/lt/moon_sign.ogg %%DATADIR%%/sounds/lt/moon_star.ogg %%DATADIR%%/sounds/lt/moon_ufo.ogg %%DATADIR%%/sounds/lt/moustache.ogg %%DATADIR%%/sounds/lt/mouth.ogg %%DATADIR%%/sounds/lt/nose.ogg %%DATADIR%%/sounds/lt/pizzeria_anchovy.ogg %%DATADIR%%/sounds/lt/pizzeria_bacon.ogg %%DATADIR%%/sounds/lt/pizzeria_broccolli.ogg %%DATADIR%%/sounds/lt/pizzeria_cheese.ogg %%DATADIR%%/sounds/lt/pizzeria_cucumber.ogg %%DATADIR%%/sounds/lt/pizzeria_mushroom.ogg %%DATADIR%%/sounds/lt/pizzeria_olive.ogg %%DATADIR%%/sounds/lt/pizzeria_onion.ogg %%DATADIR%%/sounds/lt/pizzeria_oregano.ogg %%DATADIR%%/sounds/lt/pizzeria_pepper.ogg %%DATADIR%%/sounds/lt/pizzeria_pepperoni.ogg %%DATADIR%%/sounds/lt/pizzeria_pineapple.ogg %%DATADIR%%/sounds/lt/pizzeria_salami.ogg %%DATADIR%%/sounds/lt/pizzeria_tomato.ogg %%DATADIR%%/sounds/lt/prince-tux.ogg %%DATADIR%%/sounds/lt/robin-tux.ogg %%DATADIR%%/sounds/lt/sherif-tux.ogg %%DATADIR%%/sounds/lt/shoe.ogg %%DATADIR%%/sounds/lt/shorts.ogg %%DATADIR%%/sounds/lt/skirt.ogg %%DATADIR%%/sounds/lt/spectacles.ogg %%DATADIR%%/sounds/lt/stick.ogg %%DATADIR%%/sounds/lt/sunglasses.ogg %%DATADIR%%/sounds/lt/tie.ogg %%DATADIR%%/sounds/lt/tux-angry.ogg %%DATADIR%%/sounds/lt/tux-apple.ogg %%DATADIR%%/sounds/lt/tux-arrow.ogg %%DATADIR%%/sounds/lt/tux-arrows.ogg %%DATADIR%%/sounds/lt/tux-bow.ogg %%DATADIR%%/sounds/lt/tux-bullseye.ogg %%DATADIR%%/sounds/lt/tux-candles.ogg %%DATADIR%%/sounds/lt/tux-dowe.ogg %%DATADIR%%/sounds/lt/tux-fish.ogg %%DATADIR%%/sounds/lt/tux-flask.ogg %%DATADIR%%/sounds/lt/tux-fly.ogg %%DATADIR%%/sounds/lt/tux-goblet.ogg %%DATADIR%%/sounds/lt/tux-guitar.ogg %%DATADIR%%/sounds/lt/tux-huh.ogg %%DATADIR%%/sounds/lt/tux-idea.ogg %%DATADIR%%/sounds/lt/tux-key.ogg %%DATADIR%%/sounds/lt/tux-laugh.ogg %%DATADIR%%/sounds/lt/tux-letter.ogg %%DATADIR%%/sounds/lt/tux-love.ogg %%DATADIR%%/sounds/lt/tux-note.ogg %%DATADIR%%/sounds/lt/tux-notes.ogg %%DATADIR%%/sounds/lt/tux-plate.ogg %%DATADIR%%/sounds/lt/tux-poison.ogg %%DATADIR%%/sounds/lt/tux-shoot.ogg %%DATADIR%%/sounds/lt/tux-sick.ogg %%DATADIR%%/sounds/lt/tux-stare.ogg %%DATADIR%%/sounds/lt/tux-teacup.ogg %%DATADIR%%/sounds/lt/tux-vase.ogg %%DATADIR%%/sounds/lt/tux-wanted.ogg %%DATADIR%%/sounds/lt/tux-what.ogg %%DATADIR%%/sounds/lt/tux-wow.ogg %%DATADIR%%/sounds/lt/tux-zzz.ogg %%DATADIR%%/sounds/lt/tv_accident.ogg %%DATADIR%%/sounds/lt/tv_ball.ogg %%DATADIR%%/sounds/lt/tv_barrier.ogg %%DATADIR%%/sounds/lt/tv_bicycle.ogg %%DATADIR%%/sounds/lt/tv_breakdown_lorry.ogg %%DATADIR%%/sounds/lt/tv_car.ogg %%DATADIR%%/sounds/lt/tv_caravan.ogg %%DATADIR%%/sounds/lt/tv_cyclist.ogg %%DATADIR%%/sounds/lt/tv_elephant.ogg %%DATADIR%%/sounds/lt/tv_excavator.ogg %%DATADIR%%/sounds/lt/tv_fence.ogg %%DATADIR%%/sounds/lt/tv_fire.ogg %%DATADIR%%/sounds/lt/tv_fireengine.ogg %%DATADIR%%/sounds/lt/tv_fireman.ogg %%DATADIR%%/sounds/lt/tv_fisherman.ogg %%DATADIR%%/sounds/lt/tv_giraffe.ogg %%DATADIR%%/sounds/lt/tv_guitar.ogg %%DATADIR%%/sounds/lt/tv_guitarist.ogg %%DATADIR%%/sounds/lt/tv_house.ogg %%DATADIR%%/sounds/lt/tv_ladder.ogg %%DATADIR%%/sounds/lt/tv_lion.ogg %%DATADIR%%/sounds/lt/tv_lorry.ogg %%DATADIR%%/sounds/lt/tv_lorry_tractor.ogg %%DATADIR%%/sounds/lt/tv_man.ogg %%DATADIR%%/sounds/lt/tv_mechanic.ogg %%DATADIR%%/sounds/lt/tv_monkey.ogg %%DATADIR%%/sounds/lt/tv_path.ogg %%DATADIR%%/sounds/lt/tv_rock.ogg %%DATADIR%%/sounds/lt/tv_school.ogg %%DATADIR%%/sounds/lt/tv_shop.ogg %%DATADIR%%/sounds/lt/tv_smoke.ogg %%DATADIR%%/sounds/lt/tv_tipper.ogg %%DATADIR%%/sounds/lt/tv_trailer.ogg %%DATADIR%%/sounds/lt/tv_train.ogg %%DATADIR%%/sounds/lt/tv_tree.ogg %%DATADIR%%/sounds/lt/tv_tunnel.ogg %%DATADIR%%/sounds/lt/tv_volley_net.ogg %%DATADIR%%/sounds/lt/tv_wagon.ogg %%DATADIR%%/sounds/lt/tv_woman.ogg %%DATADIR%%/sounds/lt/umbrella.ogg %%DATADIR%%/sounds/lt/whitch-tux.ogg %%DATADIR%%/sounds/lt/xmas_angel.ogg %%DATADIR%%/sounds/lt/xmas_ball.ogg %%DATADIR%%/sounds/lt/xmas_boot.ogg %%DATADIR%%/sounds/lt/xmas_candle.ogg %%DATADIR%%/sounds/lt/xmas_comet.ogg %%DATADIR%%/sounds/lt/xmas_garland.ogg %%DATADIR%%/sounds/lt/xmas_lights.ogg %%DATADIR%%/sounds/lt/xmas_mistletoe.ogg %%DATADIR%%/sounds/lt/xmas_moon.ogg %%DATADIR%%/sounds/lt/xmas_owl.ogg %%DATADIR%%/sounds/lt/xmas_present.ogg %%DATADIR%%/sounds/lt/xmas_rabbit.ogg %%DATADIR%%/sounds/lt/xmas_reindeer.ogg %%DATADIR%%/sounds/lt/xmas_shoe.ogg %%DATADIR%%/sounds/lt/xmas_snowflake.ogg %%DATADIR%%/sounds/lt/xmas_snowman.ogg %%DATADIR%%/sounds/lt/xmas_star.ogg %%DATADIR%%/sounds/lt/xmas_tree.ogg %%DATADIR%%/sounds/lt/xmas_turtle.ogg %%DATADIR%%/sounds/lt/xmas_tux.ogg %%DATADIR%%/sounds/nds.soundtheme %%DATADIR%%/sounds/nds/brill.wav %%DATADIR%%/sounds/nds/farken.wav %%DATADIR%%/sounds/nds/fleeg.wav %%DATADIR%%/sounds/nds/hoor.wav %%DATADIR%%/sounds/nds/hoot.wav %%DATADIR%%/sounds/nds/mund.wav %%DATADIR%%/sounds/nds/nees.wav %%DATADIR%%/sounds/nds/neesboort.wav %%DATADIR%%/sounds/nds/ohr.wav %%DATADIR%%/sounds/nds/ohrring.wav %%DATADIR%%/sounds/nds/oog.wav %%DATADIR%%/sounds/nds/oogbro.wav %%DATADIR%%/sounds/nds/slips.wav %%DATADIR%%/sounds/nds/suennbrill.wav %%DATADIR%%/sounds/nl.soundtheme %%DATADIR%%/sounds/nl/bril.wav %%DATADIR%%/sounds/nl/haar.wav %%DATADIR%%/sounds/nl/hoed.wav %%DATADIR%%/sounds/nl/mond.wav %%DATADIR%%/sounds/nl/neus.wav %%DATADIR%%/sounds/nl/oog.wav %%DATADIR%%/sounds/nl/oor.wav %%DATADIR%%/sounds/nl/oorbel.wav %%DATADIR%%/sounds/nl/snor.wav %%DATADIR%%/sounds/nl/strik.wav %%DATADIR%%/sounds/nl/stropdas.wav %%DATADIR%%/sounds/nl/wenkbrauw.wav %%DATADIR%%/sounds/nl/zonnebril.wav %%DATADIR%%/sounds/pt.soundtheme %%DATADIR%%/sounds/pt/bigode.wav %%DATADIR%%/sounds/pt/boca.wav %%DATADIR%%/sounds/pt/brincos.wav %%DATADIR%%/sounds/pt/cabelo.wav %%DATADIR%%/sounds/pt/chapeu.wav %%DATADIR%%/sounds/pt/gravata.wav %%DATADIR%%/sounds/pt/laco.wav %%DATADIR%%/sounds/pt/nariz.wav %%DATADIR%%/sounds/pt/oculos-de-sol.wav %%DATADIR%%/sounds/pt/oculos.wav %%DATADIR%%/sounds/pt/olho.wav %%DATADIR%%/sounds/pt/orelha.wav %%DATADIR%%/sounds/pt/sobrancelha.wav %%DATADIR%%/sounds/ro.soundtheme %%DATADIR%%/sounds/ro/cercel.wav %%DATADIR%%/sounds/ro/cravata.wav %%DATADIR%%/sounds/ro/gura.wav %%DATADIR%%/sounds/ro/mustata.wav %%DATADIR%%/sounds/ro/nas.wav %%DATADIR%%/sounds/ro/ochelari-de-soare.wav %%DATADIR%%/sounds/ro/ochelari.wav %%DATADIR%%/sounds/ro/ochi.wav %%DATADIR%%/sounds/ro/palarie.wav %%DATADIR%%/sounds/ro/papion.wav %%DATADIR%%/sounds/ro/par.wav %%DATADIR%%/sounds/ro/sprinceana.wav %%DATADIR%%/sounds/ro/ureche.wav %%DATADIR%%/sounds/ru.soundtheme %%DATADIR%%/sounds/ru/ball.ogg %%DATADIR%%/sounds/ru/bow.ogg %%DATADIR%%/sounds/ru/coat.ogg %%DATADIR%%/sounds/ru/ear.ogg %%DATADIR%%/sounds/ru/earring.ogg %%DATADIR%%/sounds/ru/egypt_arch.ogg %%DATADIR%%/sounds/ru/egypt_birds.ogg %%DATADIR%%/sounds/ru/egypt_boy.ogg %%DATADIR%%/sounds/ru/egypt_bridge.ogg %%DATADIR%%/sounds/ru/egypt_camel.ogg %%DATADIR%%/sounds/ru/egypt_cart.ogg %%DATADIR%%/sounds/ru/egypt_column.ogg %%DATADIR%%/sounds/ru/egypt_donkey.ogg %%DATADIR%%/sounds/ru/egypt_girl.ogg %%DATADIR%%/sounds/ru/egypt_grass.ogg %%DATADIR%%/sounds/ru/egypt_man.ogg %%DATADIR%%/sounds/ru/egypt_oasis.ogg %%DATADIR%%/sounds/ru/egypt_palmtree.ogg %%DATADIR%%/sounds/ru/egypt_pyramid.ogg %%DATADIR%%/sounds/ru/egypt_road.ogg %%DATADIR%%/sounds/ru/egypt_sphynx.ogg %%DATADIR%%/sounds/ru/egypt_well.ogg %%DATADIR%%/sounds/ru/egypt_woman.ogg %%DATADIR%%/sounds/ru/eye.ogg %%DATADIR%%/sounds/ru/eyebrow.ogg %%DATADIR%%/sounds/ru/flower.ogg %%DATADIR%%/sounds/ru/frier-tux.ogg %%DATADIR%%/sounds/ru/guard-tux.ogg %%DATADIR%%/sounds/ru/hair.ogg %%DATADIR%%/sounds/ru/hat.ogg %%DATADIR%%/sounds/ru/kid-tux.ogg %%DATADIR%%/sounds/ru/little-tux.ogg %%DATADIR%%/sounds/ru/maiden-tux.ogg %%DATADIR%%/sounds/ru/moon_alien.ogg %%DATADIR%%/sounds/ru/moon_astronaut.ogg %%DATADIR%%/sounds/ru/moon_earth.ogg %%DATADIR%%/sounds/ru/moon_fallingstar.ogg %%DATADIR%%/sounds/ru/moon_hotel.ogg %%DATADIR%%/sounds/ru/moon_monster.ogg %%DATADIR%%/sounds/ru/moon_moonwalker.ogg %%DATADIR%%/sounds/ru/moon_planet.ogg %%DATADIR%%/sounds/ru/moon_radar.ogg %%DATADIR%%/sounds/ru/moon_rocket.ogg %%DATADIR%%/sounds/ru/moon_satellite.ogg %%DATADIR%%/sounds/ru/moon_sign.ogg %%DATADIR%%/sounds/ru/moon_star.ogg %%DATADIR%%/sounds/ru/moon_ufo.ogg %%DATADIR%%/sounds/ru/moustache.ogg %%DATADIR%%/sounds/ru/mouth.ogg %%DATADIR%%/sounds/ru/nose.ogg %%DATADIR%%/sounds/ru/pizzeria_anchovy.ogg %%DATADIR%%/sounds/ru/pizzeria_bacon.ogg %%DATADIR%%/sounds/ru/pizzeria_brocolli.ogg %%DATADIR%%/sounds/ru/pizzeria_cheese.ogg %%DATADIR%%/sounds/ru/pizzeria_cucumber.ogg %%DATADIR%%/sounds/ru/pizzeria_mushroom.ogg %%DATADIR%%/sounds/ru/pizzeria_olive.ogg %%DATADIR%%/sounds/ru/pizzeria_onion.ogg %%DATADIR%%/sounds/ru/pizzeria_oregano.ogg %%DATADIR%%/sounds/ru/pizzeria_pepper.ogg %%DATADIR%%/sounds/ru/pizzeria_pepperoni.ogg %%DATADIR%%/sounds/ru/pizzeria_pineapple.ogg %%DATADIR%%/sounds/ru/pizzeria_salami.ogg %%DATADIR%%/sounds/ru/pizzeria_tomato.ogg %%DATADIR%%/sounds/ru/prince-tux.ogg %%DATADIR%%/sounds/ru/robin-tux.ogg %%DATADIR%%/sounds/ru/sherif-tux.ogg %%DATADIR%%/sounds/ru/shoe.ogg %%DATADIR%%/sounds/ru/shorts.ogg %%DATADIR%%/sounds/ru/skirt.ogg %%DATADIR%%/sounds/ru/spectacles.ogg %%DATADIR%%/sounds/ru/stick.ogg %%DATADIR%%/sounds/ru/sunglasses.ogg %%DATADIR%%/sounds/ru/tie.ogg %%DATADIR%%/sounds/ru/tux-angry.ogg %%DATADIR%%/sounds/ru/tux-apple.ogg %%DATADIR%%/sounds/ru/tux-arrow.ogg %%DATADIR%%/sounds/ru/tux-arrows.ogg %%DATADIR%%/sounds/ru/tux-bow.ogg %%DATADIR%%/sounds/ru/tux-bullseye.ogg %%DATADIR%%/sounds/ru/tux-dowe.ogg %%DATADIR%%/sounds/ru/tux-fish.ogg %%DATADIR%%/sounds/ru/tux-flask.ogg %%DATADIR%%/sounds/ru/tux-fly.ogg %%DATADIR%%/sounds/ru/tux-goblet.ogg %%DATADIR%%/sounds/ru/tux-guitar.ogg %%DATADIR%%/sounds/ru/tux-huh.ogg %%DATADIR%%/sounds/ru/tux-idea.ogg %%DATADIR%%/sounds/ru/tux-key.ogg %%DATADIR%%/sounds/ru/tux-laugh.ogg %%DATADIR%%/sounds/ru/tux-letter.ogg %%DATADIR%%/sounds/ru/tux-love.ogg %%DATADIR%%/sounds/ru/tux-note.ogg %%DATADIR%%/sounds/ru/tux-notes.ogg %%DATADIR%%/sounds/ru/tux-plate.ogg %%DATADIR%%/sounds/ru/tux-poison.ogg %%DATADIR%%/sounds/ru/tux-shoot.ogg %%DATADIR%%/sounds/ru/tux-sick.ogg %%DATADIR%%/sounds/ru/tux-stare.ogg %%DATADIR%%/sounds/ru/tux-teacup.ogg %%DATADIR%%/sounds/ru/tux-vase.ogg %%DATADIR%%/sounds/ru/tux-what.ogg %%DATADIR%%/sounds/ru/tux-wow.ogg %%DATADIR%%/sounds/ru/tux-zzz.ogg %%DATADIR%%/sounds/ru/tv_accident.ogg %%DATADIR%%/sounds/ru/tv_ball.ogg %%DATADIR%%/sounds/ru/tv_barrier.ogg %%DATADIR%%/sounds/ru/tv_bicycle.ogg %%DATADIR%%/sounds/ru/tv_breakdown_lorry.ogg %%DATADIR%%/sounds/ru/tv_car.ogg %%DATADIR%%/sounds/ru/tv_caravan.ogg %%DATADIR%%/sounds/ru/tv_cyclist.ogg %%DATADIR%%/sounds/ru/tv_elephant.ogg %%DATADIR%%/sounds/ru/tv_excavator.ogg %%DATADIR%%/sounds/ru/tv_fence.ogg %%DATADIR%%/sounds/ru/tv_fire.ogg %%DATADIR%%/sounds/ru/tv_fireengine.ogg %%DATADIR%%/sounds/ru/tv_fireman.ogg %%DATADIR%%/sounds/ru/tv_fisherman.ogg %%DATADIR%%/sounds/ru/tv_giraffe.ogg %%DATADIR%%/sounds/ru/tv_guitar.ogg %%DATADIR%%/sounds/ru/tv_guitarist.ogg %%DATADIR%%/sounds/ru/tv_house.ogg %%DATADIR%%/sounds/ru/tv_ladder.ogg %%DATADIR%%/sounds/ru/tv_lion.ogg %%DATADIR%%/sounds/ru/tv_lorry.ogg %%DATADIR%%/sounds/ru/tv_lorry_tractor.ogg %%DATADIR%%/sounds/ru/tv_man.ogg %%DATADIR%%/sounds/ru/tv_mechanic.ogg %%DATADIR%%/sounds/ru/tv_monkey.ogg %%DATADIR%%/sounds/ru/tv_path.ogg %%DATADIR%%/sounds/ru/tv_rock.ogg %%DATADIR%%/sounds/ru/tv_school.ogg %%DATADIR%%/sounds/ru/tv_shop.ogg %%DATADIR%%/sounds/ru/tv_smoke.ogg %%DATADIR%%/sounds/ru/tv_tipper.ogg %%DATADIR%%/sounds/ru/tv_trailer.ogg %%DATADIR%%/sounds/ru/tv_train.ogg %%DATADIR%%/sounds/ru/tv_tree.ogg %%DATADIR%%/sounds/ru/tv_tunnel.ogg %%DATADIR%%/sounds/ru/tv_volley_net.ogg %%DATADIR%%/sounds/ru/tv_wagon.ogg %%DATADIR%%/sounds/ru/tv_woman.ogg %%DATADIR%%/sounds/ru/umbrella.ogg %%DATADIR%%/sounds/ru/whitch-tux.ogg %%DATADIR%%/sounds/ru/xmas_angel.ogg %%DATADIR%%/sounds/ru/xmas_ball.ogg %%DATADIR%%/sounds/ru/xmas_boot.ogg %%DATADIR%%/sounds/ru/xmas_candle.ogg %%DATADIR%%/sounds/ru/xmas_comet.ogg %%DATADIR%%/sounds/ru/xmas_garland.ogg %%DATADIR%%/sounds/ru/xmas_lights.ogg %%DATADIR%%/sounds/ru/xmas_mistletoe.ogg %%DATADIR%%/sounds/ru/xmas_moon.ogg %%DATADIR%%/sounds/ru/xmas_owl.ogg %%DATADIR%%/sounds/ru/xmas_present.ogg %%DATADIR%%/sounds/ru/xmas_rabbit.ogg %%DATADIR%%/sounds/ru/xmas_reindeer.ogg %%DATADIR%%/sounds/ru/xmas_shoe.ogg %%DATADIR%%/sounds/ru/xmas_snowflake.ogg %%DATADIR%%/sounds/ru/xmas_snowman.ogg %%DATADIR%%/sounds/ru/xmas_star.ogg %%DATADIR%%/sounds/ru/xmas_tree.ogg %%DATADIR%%/sounds/ru/xmas_turtle.ogg %%DATADIR%%/sounds/ru/xmas_tux.ogg %%DATADIR%%/sounds/sl.soundtheme %%DATADIR%%/sounds/sl/ball.ogg %%DATADIR%%/sounds/sl/bow.ogg %%DATADIR%%/sounds/sl/coat.ogg %%DATADIR%%/sounds/sl/ear.ogg %%DATADIR%%/sounds/sl/earring.ogg %%DATADIR%%/sounds/sl/egypt_arch.ogg %%DATADIR%%/sounds/sl/egypt_birds.ogg %%DATADIR%%/sounds/sl/egypt_boy.ogg %%DATADIR%%/sounds/sl/egypt_bridge.ogg %%DATADIR%%/sounds/sl/egypt_camel.ogg %%DATADIR%%/sounds/sl/egypt_cart.ogg %%DATADIR%%/sounds/sl/egypt_column.ogg %%DATADIR%%/sounds/sl/egypt_donkey.ogg %%DATADIR%%/sounds/sl/egypt_girl.ogg %%DATADIR%%/sounds/sl/egypt_grass.ogg %%DATADIR%%/sounds/sl/egypt_man.ogg %%DATADIR%%/sounds/sl/egypt_oasis.ogg %%DATADIR%%/sounds/sl/egypt_palmtree.ogg %%DATADIR%%/sounds/sl/egypt_pyramid.ogg %%DATADIR%%/sounds/sl/egypt_road.ogg %%DATADIR%%/sounds/sl/egypt_sphynx.ogg %%DATADIR%%/sounds/sl/egypt_well.ogg %%DATADIR%%/sounds/sl/egypt_woman.ogg %%DATADIR%%/sounds/sl/eye.ogg %%DATADIR%%/sounds/sl/eyebrow.ogg %%DATADIR%%/sounds/sl/flower.ogg %%DATADIR%%/sounds/sl/hair.ogg %%DATADIR%%/sounds/sl/hat.ogg %%DATADIR%%/sounds/sl/moon_alien.ogg %%DATADIR%%/sounds/sl/moon_astronaut.ogg %%DATADIR%%/sounds/sl/moon_earth.ogg %%DATADIR%%/sounds/sl/moon_fallingstar.ogg %%DATADIR%%/sounds/sl/moon_hotel.ogg %%DATADIR%%/sounds/sl/moon_monster.ogg %%DATADIR%%/sounds/sl/moon_planet.ogg %%DATADIR%%/sounds/sl/moon_radar.ogg %%DATADIR%%/sounds/sl/moon_robot.ogg %%DATADIR%%/sounds/sl/moon_rocket.ogg %%DATADIR%%/sounds/sl/moon_satellite.ogg %%DATADIR%%/sounds/sl/moon_sign.ogg %%DATADIR%%/sounds/sl/moon_star.ogg %%DATADIR%%/sounds/sl/moon_ufo.ogg %%DATADIR%%/sounds/sl/moustache.ogg %%DATADIR%%/sounds/sl/mouth.ogg %%DATADIR%%/sounds/sl/nose.ogg %%DATADIR%%/sounds/sl/pizzeria_anchovy.ogg %%DATADIR%%/sounds/sl/pizzeria_bacon.ogg %%DATADIR%%/sounds/sl/pizzeria_broccolli.ogg %%DATADIR%%/sounds/sl/pizzeria_cheese.ogg %%DATADIR%%/sounds/sl/pizzeria_cucumber.ogg %%DATADIR%%/sounds/sl/pizzeria_mushroom.ogg %%DATADIR%%/sounds/sl/pizzeria_olive.ogg %%DATADIR%%/sounds/sl/pizzeria_onion.ogg %%DATADIR%%/sounds/sl/pizzeria_oregano.ogg %%DATADIR%%/sounds/sl/pizzeria_pepper.ogg %%DATADIR%%/sounds/sl/pizzeria_pepperoni.ogg %%DATADIR%%/sounds/sl/pizzeria_pineapple.ogg %%DATADIR%%/sounds/sl/pizzeria_salami.ogg %%DATADIR%%/sounds/sl/pizzeria_tomato.ogg %%DATADIR%%/sounds/sl/shoe.ogg %%DATADIR%%/sounds/sl/shorts.ogg %%DATADIR%%/sounds/sl/skirt.ogg %%DATADIR%%/sounds/sl/spectacles.ogg %%DATADIR%%/sounds/sl/stick.ogg %%DATADIR%%/sounds/sl/sunglasses.ogg %%DATADIR%%/sounds/sl/tie.ogg %%DATADIR%%/sounds/sl/tv_bicycle.ogg %%DATADIR%%/sounds/sl/tv_car.ogg %%DATADIR%%/sounds/sl/tv_cyclist.ogg %%DATADIR%%/sounds/sl/tv_train.ogg %%DATADIR%%/sounds/sl/umbrella.ogg %%DATADIR%%/sounds/sr.soundtheme %%DATADIR%%/sounds/sr/brkovi.ogg %%DATADIR%%/sounds/sr/cigara.ogg %%DATADIR%%/sounds/sr/krompirko.ogg %%DATADIR%%/sounds/sr/masna.ogg %%DATADIR%%/sounds/sr/mindjusa.ogg %%DATADIR%%/sounds/sr/naocare.ogg %%DATADIR%%/sounds/sr/naocare_za_sunce.ogg %%DATADIR%%/sounds/sr/nos.ogg %%DATADIR%%/sounds/sr/obrva.ogg %%DATADIR%%/sounds/sr/oko.ogg %%DATADIR%%/sounds/sr/sat.ogg %%DATADIR%%/sounds/sr/sesir.ogg %%DATADIR%%/sounds/sr/usta.ogg %%DATADIR%%/sounds/sr/uvo.ogg %%DATADIR%%/sounds/sr/znacka.ogg %%DATADIR%%/sounds/sr@ijekavian.soundtheme %%DATADIR%%/sounds/sr@ijekavianlatin.soundtheme %%DATADIR%%/sounds/sr@latin.soundtheme %%DATADIR%%/sounds/sv.soundtheme %%DATADIR%%/sounds/sv/fluga.wav %%DATADIR%%/sounds/sv/glasogon.wav %%DATADIR%%/sounds/sv/har.wav %%DATADIR%%/sounds/sv/hatt.wav %%DATADIR%%/sounds/sv/mun.wav %%DATADIR%%/sounds/sv/mustasch.wav %%DATADIR%%/sounds/sv/nasa.wav %%DATADIR%%/sounds/sv/oga.wav %%DATADIR%%/sounds/sv/ogonbryn.wav %%DATADIR%%/sounds/sv/ora.wav %%DATADIR%%/sounds/sv/orhange.wav %%DATADIR%%/sounds/sv/rosett.wav %%DATADIR%%/sounds/sv/slips.wav %%DATADIR%%/sounds/sv/solglasogon.wav %%DATADIR%%/sounds/uk.soundtheme %%DATADIR%%/sounds/uk/ball.ogg %%DATADIR%%/sounds/uk/bow.ogg %%DATADIR%%/sounds/uk/butterflies_body.ogg %%DATADIR%%/sounds/uk/butterflies_circle.ogg %%DATADIR%%/sounds/uk/butterflies_circles.ogg %%DATADIR%%/sounds/uk/butterflies_eye.ogg %%DATADIR%%/sounds/uk/butterflies_heart.ogg %%DATADIR%%/sounds/uk/butterflies_purple_shape.ogg %%DATADIR%%/sounds/uk/butterflies_spiral.ogg %%DATADIR%%/sounds/uk/butterflies_wing.ogg %%DATADIR%%/sounds/uk/coat.ogg %%DATADIR%%/sounds/uk/ear.ogg %%DATADIR%%/sounds/uk/earring.ogg %%DATADIR%%/sounds/uk/egypt_arch.ogg %%DATADIR%%/sounds/uk/egypt_birds.ogg %%DATADIR%%/sounds/uk/egypt_boy.ogg %%DATADIR%%/sounds/uk/egypt_bridge.ogg %%DATADIR%%/sounds/uk/egypt_camel.ogg %%DATADIR%%/sounds/uk/egypt_cart.ogg %%DATADIR%%/sounds/uk/egypt_column.ogg %%DATADIR%%/sounds/uk/egypt_donkey.ogg %%DATADIR%%/sounds/uk/egypt_girl.ogg %%DATADIR%%/sounds/uk/egypt_grass.ogg %%DATADIR%%/sounds/uk/egypt_man.ogg %%DATADIR%%/sounds/uk/egypt_oasis.ogg %%DATADIR%%/sounds/uk/egypt_palmtree.ogg %%DATADIR%%/sounds/uk/egypt_pyramid.ogg %%DATADIR%%/sounds/uk/egypt_road.ogg %%DATADIR%%/sounds/uk/egypt_sphynx.ogg %%DATADIR%%/sounds/uk/egypt_well.ogg %%DATADIR%%/sounds/uk/egypt_woman.ogg %%DATADIR%%/sounds/uk/eye.ogg %%DATADIR%%/sounds/uk/eyebrow.ogg %%DATADIR%%/sounds/uk/flower.ogg %%DATADIR%%/sounds/uk/frier-tux.ogg %%DATADIR%%/sounds/uk/guard-tux.ogg %%DATADIR%%/sounds/uk/hair.ogg %%DATADIR%%/sounds/uk/hat.ogg %%DATADIR%%/sounds/uk/kid-tux.ogg %%DATADIR%%/sounds/uk/little-tux.ogg %%DATADIR%%/sounds/uk/maiden-tux.ogg %%DATADIR%%/sounds/uk/moon_alien.ogg %%DATADIR%%/sounds/uk/moon_astronaut.ogg %%DATADIR%%/sounds/uk/moon_earth.ogg %%DATADIR%%/sounds/uk/moon_fallingstar.ogg %%DATADIR%%/sounds/uk/moon_hotel.ogg %%DATADIR%%/sounds/uk/moon_monster.ogg %%DATADIR%%/sounds/uk/moon_moonwalker.ogg %%DATADIR%%/sounds/uk/moon_planet.ogg %%DATADIR%%/sounds/uk/moon_radar.ogg %%DATADIR%%/sounds/uk/moon_rocket.ogg %%DATADIR%%/sounds/uk/moon_satellite.ogg %%DATADIR%%/sounds/uk/moon_sign.ogg %%DATADIR%%/sounds/uk/moon_star.ogg %%DATADIR%%/sounds/uk/moon_ufo.ogg %%DATADIR%%/sounds/uk/moustache.ogg %%DATADIR%%/sounds/uk/mouth.ogg %%DATADIR%%/sounds/uk/nose.ogg %%DATADIR%%/sounds/uk/pizzeria_anchovy.ogg %%DATADIR%%/sounds/uk/pizzeria_bacon.ogg %%DATADIR%%/sounds/uk/pizzeria_brocolli.ogg %%DATADIR%%/sounds/uk/pizzeria_cheese.ogg %%DATADIR%%/sounds/uk/pizzeria_cucumber.ogg %%DATADIR%%/sounds/uk/pizzeria_mushroom.ogg %%DATADIR%%/sounds/uk/pizzeria_olive.ogg %%DATADIR%%/sounds/uk/pizzeria_onion.ogg %%DATADIR%%/sounds/uk/pizzeria_oregano.ogg %%DATADIR%%/sounds/uk/pizzeria_pepper.ogg %%DATADIR%%/sounds/uk/pizzeria_pepperoni.ogg %%DATADIR%%/sounds/uk/pizzeria_pineapple.ogg %%DATADIR%%/sounds/uk/pizzeria_salami.ogg %%DATADIR%%/sounds/uk/pizzeria_tomato.ogg %%DATADIR%%/sounds/uk/prince-tux.ogg %%DATADIR%%/sounds/uk/robin-tux.ogg %%DATADIR%%/sounds/uk/robot_workshop_antenna.ogg %%DATADIR%%/sounds/uk/robot_workshop_arm.ogg %%DATADIR%%/sounds/uk/robot_workshop_ball.ogg %%DATADIR%%/sounds/uk/robot_workshop_base.ogg %%DATADIR%%/sounds/uk/robot_workshop_block.ogg %%DATADIR%%/sounds/uk/robot_workshop_body.ogg %%DATADIR%%/sounds/uk/robot_workshop_claw.ogg %%DATADIR%%/sounds/uk/robot_workshop_eye.ogg %%DATADIR%%/sounds/uk/robot_workshop_foot.ogg %%DATADIR%%/sounds/uk/robot_workshop_hand.ogg %%DATADIR%%/sounds/uk/robot_workshop_head.ogg %%DATADIR%%/sounds/uk/robot_workshop_panel.ogg %%DATADIR%%/sounds/uk/robot_workshop_rocket.ogg %%DATADIR%%/sounds/uk/robot_workshop_rod.ogg %%DATADIR%%/sounds/uk/robot_workshop_wheel.ogg %%DATADIR%%/sounds/uk/sherif-tux.ogg %%DATADIR%%/sounds/uk/shoe.ogg %%DATADIR%%/sounds/uk/shorts.ogg %%DATADIR%%/sounds/uk/skirt.ogg %%DATADIR%%/sounds/uk/spectacles.ogg %%DATADIR%%/sounds/uk/stick.ogg %%DATADIR%%/sounds/uk/sunglasses.ogg %%DATADIR%%/sounds/uk/tie.ogg %%DATADIR%%/sounds/uk/train_valley.theme.ogg %%DATADIR%%/sounds/uk/tux-angry.ogg %%DATADIR%%/sounds/uk/tux-apple.ogg %%DATADIR%%/sounds/uk/tux-arrow.ogg %%DATADIR%%/sounds/uk/tux-arrows.ogg %%DATADIR%%/sounds/uk/tux-bow.ogg %%DATADIR%%/sounds/uk/tux-bullseye.ogg %%DATADIR%%/sounds/uk/tux-candles.ogg %%DATADIR%%/sounds/uk/tux-dowe.ogg %%DATADIR%%/sounds/uk/tux-fish.ogg %%DATADIR%%/sounds/uk/tux-flask.ogg %%DATADIR%%/sounds/uk/tux-fly.ogg %%DATADIR%%/sounds/uk/tux-goblet.ogg %%DATADIR%%/sounds/uk/tux-guitar.ogg %%DATADIR%%/sounds/uk/tux-huh.ogg %%DATADIR%%/sounds/uk/tux-idea.ogg %%DATADIR%%/sounds/uk/tux-key.ogg %%DATADIR%%/sounds/uk/tux-laugh.ogg %%DATADIR%%/sounds/uk/tux-letter.ogg %%DATADIR%%/sounds/uk/tux-love.ogg %%DATADIR%%/sounds/uk/tux-note.ogg %%DATADIR%%/sounds/uk/tux-notes.ogg %%DATADIR%%/sounds/uk/tux-plate.ogg %%DATADIR%%/sounds/uk/tux-poison.ogg %%DATADIR%%/sounds/uk/tux-shoot.ogg %%DATADIR%%/sounds/uk/tux-sick.ogg %%DATADIR%%/sounds/uk/tux-stare.ogg %%DATADIR%%/sounds/uk/tux-teacup.ogg %%DATADIR%%/sounds/uk/tux-vase.ogg %%DATADIR%%/sounds/uk/tux-wanted.ogg %%DATADIR%%/sounds/uk/tux-what.ogg %%DATADIR%%/sounds/uk/tux-wow.ogg %%DATADIR%%/sounds/uk/tux-zzz.ogg %%DATADIR%%/sounds/uk/tv_accident.ogg %%DATADIR%%/sounds/uk/tv_ball.ogg %%DATADIR%%/sounds/uk/tv_barrier.ogg %%DATADIR%%/sounds/uk/tv_bicycle.ogg %%DATADIR%%/sounds/uk/tv_breakdown_lorry.ogg %%DATADIR%%/sounds/uk/tv_car.ogg %%DATADIR%%/sounds/uk/tv_caravan.ogg %%DATADIR%%/sounds/uk/tv_cyclist.ogg %%DATADIR%%/sounds/uk/tv_elephant.ogg %%DATADIR%%/sounds/uk/tv_excavator.ogg %%DATADIR%%/sounds/uk/tv_fence.ogg %%DATADIR%%/sounds/uk/tv_fire.ogg %%DATADIR%%/sounds/uk/tv_fireengine.ogg %%DATADIR%%/sounds/uk/tv_fireman.ogg %%DATADIR%%/sounds/uk/tv_fisherman.ogg %%DATADIR%%/sounds/uk/tv_giraffe.ogg %%DATADIR%%/sounds/uk/tv_guitar.ogg %%DATADIR%%/sounds/uk/tv_guitarist.ogg %%DATADIR%%/sounds/uk/tv_house.ogg %%DATADIR%%/sounds/uk/tv_ladder.ogg %%DATADIR%%/sounds/uk/tv_lion.ogg %%DATADIR%%/sounds/uk/tv_lorry.ogg %%DATADIR%%/sounds/uk/tv_lorry_tractor.ogg %%DATADIR%%/sounds/uk/tv_man.ogg %%DATADIR%%/sounds/uk/tv_mechanic.ogg %%DATADIR%%/sounds/uk/tv_monkey.ogg %%DATADIR%%/sounds/uk/tv_path.ogg %%DATADIR%%/sounds/uk/tv_rock.ogg %%DATADIR%%/sounds/uk/tv_school.ogg %%DATADIR%%/sounds/uk/tv_shop.ogg %%DATADIR%%/sounds/uk/tv_smoke.ogg %%DATADIR%%/sounds/uk/tv_tipper.ogg %%DATADIR%%/sounds/uk/tv_trailer.ogg %%DATADIR%%/sounds/uk/tv_train.ogg %%DATADIR%%/sounds/uk/tv_tree.ogg %%DATADIR%%/sounds/uk/tv_tunnel.ogg %%DATADIR%%/sounds/uk/tv_volley_net.ogg %%DATADIR%%/sounds/uk/tv_wagon.ogg %%DATADIR%%/sounds/uk/tv_woman.ogg %%DATADIR%%/sounds/uk/umbrella.ogg %%DATADIR%%/sounds/uk/whitch-tux.ogg %%DATADIR%%/sounds/uk/xmas_angel.ogg %%DATADIR%%/sounds/uk/xmas_ball.ogg %%DATADIR%%/sounds/uk/xmas_boot.ogg %%DATADIR%%/sounds/uk/xmas_candle.ogg %%DATADIR%%/sounds/uk/xmas_comet.ogg %%DATADIR%%/sounds/uk/xmas_garland.ogg %%DATADIR%%/sounds/uk/xmas_lights.ogg %%DATADIR%%/sounds/uk/xmas_mistletoe.ogg %%DATADIR%%/sounds/uk/xmas_moon.ogg %%DATADIR%%/sounds/uk/xmas_owl.ogg %%DATADIR%%/sounds/uk/xmas_present.ogg %%DATADIR%%/sounds/uk/xmas_rabbit.ogg %%DATADIR%%/sounds/uk/xmas_reindeer.ogg %%DATADIR%%/sounds/uk/xmas_shoe.ogg %%DATADIR%%/sounds/uk/xmas_snowflake.ogg %%DATADIR%%/sounds/uk/xmas_snowman.ogg %%DATADIR%%/sounds/uk/xmas_star.ogg %%DATADIR%%/sounds/uk/xmas_tree.ogg %%DATADIR%%/sounds/uk/xmas_turtle.ogg %%DATADIR%%/sounds/uk/xmas_tux.ogg %%DATADIR%%/sounds/wa.soundtheme %%DATADIR%%/sounds/wa/bale.ogg %%DATADIR%%/sounds/wa/berikes-di-solea.ogg %%DATADIR%%/sounds/wa/berikes.ogg %%DATADIR%%/sounds/wa/boke.ogg %%DATADIR%%/sounds/wa/cane.ogg %%DATADIR%%/sounds/wa/chote.ogg %%DATADIR%%/sounds/wa/cigare.ogg %%DATADIR%%/sounds/wa/crawate.ogg %%DATADIR%%/sounds/wa/djupe.ogg %%DATADIR%%/sounds/wa/egypt_atche.ogg %%DATADIR%%/sounds/wa/egypt_badet.ogg %%DATADIR%%/sounds/wa/egypt_bashele.ogg %%DATADIR%%/sounds/wa/egypt_colone.ogg %%DATADIR%%/sounds/wa/egypt_comere.ogg %%DATADIR%%/sounds/wa/egypt_mouxhons.ogg %%DATADIR%%/sounds/wa/egypt_ome.ogg %%DATADIR%%/sounds/wa/egypt_owazisse.ogg %%DATADIR%%/sounds/wa/egypt_palmi.ogg %%DATADIR%%/sounds/wa/egypt_piramide.ogg %%DATADIR%%/sounds/wa/egypt_pont.ogg %%DATADIR%%/sounds/wa/egypt_pousse.ogg %%DATADIR%%/sounds/wa/egypt_sfink.ogg %%DATADIR%%/sounds/wa/egypt_tchamo.ogg %%DATADIR%%/sounds/wa/egypt_tchar.ogg %%DATADIR%%/sounds/wa/egypt_valet.ogg %%DATADIR%%/sounds/wa/egypt_voye.ogg %%DATADIR%%/sounds/wa/egypt_yebe.ogg %%DATADIR%%/sounds/wa/fleur.ogg %%DATADIR%%/sounds/wa/flo.ogg %%DATADIR%%/sounds/wa/medaye.ogg %%DATADIR%%/sounds/wa/monte.ogg %%DATADIR%%/sounds/wa/moon_astronote.ogg %%DATADIR%%/sounds/wa/moon_daegne.ogg %%DATADIR%%/sounds/wa/moon_fuzeye.ogg %%DATADIR%%/sounds/wa/moon_marsyin.ogg %%DATADIR%%/sounds/wa/moon_monsse.ogg %%DATADIR%%/sounds/wa/moon_otel.ogg %%DATADIR%%/sounds/wa/moon_panea.ogg %%DATADIR%%/sounds/wa/moon_planete.ogg %%DATADIR%%/sounds/wa/moon_radar.ogg %%DATADIR%%/sounds/wa/moon_schitante-sitoele.ogg %%DATADIR%%/sounds/wa/moon_sitoele.ogg %%DATADIR%%/sounds/wa/moon_spoutnik.ogg %%DATADIR%%/sounds/wa/moon_stoele.ogg %%DATADIR%%/sounds/wa/moon_volante-soucoupe.ogg %%DATADIR%%/sounds/wa/moon_vweteure-di-leune.ogg %%DATADIR%%/sounds/wa/mostatche.ogg %%DATADIR%%/sounds/wa/mousmint.ogg %%DATADIR%%/sounds/wa/nez.ogg %%DATADIR%%/sounds/wa/oraye.ogg %%DATADIR%%/sounds/wa/ouy.ogg %%DATADIR%%/sounds/wa/paraplu.ogg %%DATADIR%%/sounds/wa/pindant.ogg %%DATADIR%%/sounds/wa/pizzeria_abusson.ogg %%DATADIR%%/sounds/wa/pizzeria_agnon.ogg %%DATADIR%%/sounds/wa/pizzeria_ananasse.ogg %%DATADIR%%/sounds/wa/pizzeria_antchwes.ogg %%DATADIR%%/sounds/wa/pizzeria_brocoli.ogg %%DATADIR%%/sounds/wa/pizzeria_concombe.ogg %%DATADIR%%/sounds/wa/pizzeria_froumaedje.ogg %%DATADIR%%/sounds/wa/pizzeria_lard.ogg %%DATADIR%%/sounds/wa/pizzeria_mariolinne.ogg %%DATADIR%%/sounds/wa/pizzeria_olive.ogg %%DATADIR%%/sounds/wa/pizzeria_pimint.ogg %%DATADIR%%/sounds/wa/pizzeria_pwevron.ogg %%DATADIR%%/sounds/wa/pizzeria_salami.ogg %%DATADIR%%/sounds/wa/pizzeria_tomate.ogg %%DATADIR%%/sounds/wa/sofri.ogg %%DATADIR%%/sounds/wa/tchapea.ogg %%DATADIR%%/sounds/wa/tchasseure.ogg %%DATADIR%%/sounds/wa/tchivea.ogg %%DATADIR%%/sounds/wa/tv_ciclisse.ogg %%DATADIR%%/sounds/wa/tv_trin.ogg %%DATADIR%%/sounds/wa/tv_velo.ogg %%DATADIR%%/sounds/wa/tv_vweteure.ogg share/kxmlgui5/ktuberling/ktuberlingui.rc share/locale/ar/LC_MESSAGES/ktuberling.mo share/locale/bg/LC_MESSAGES/ktuberling.mo share/locale/bs/LC_MESSAGES/ktuberling.mo share/locale/ca/LC_MESSAGES/ktuberling.mo share/locale/ca@valencia/LC_MESSAGES/ktuberling.mo share/locale/cs/LC_MESSAGES/ktuberling.mo share/locale/da/LC_MESSAGES/ktuberling.mo share/locale/de/LC_MESSAGES/ktuberling.mo share/locale/el/LC_MESSAGES/ktuberling.mo share/locale/en_GB/LC_MESSAGES/ktuberling.mo share/locale/eo/LC_MESSAGES/ktuberling.mo share/locale/es/LC_MESSAGES/ktuberling.mo share/locale/et/LC_MESSAGES/ktuberling.mo share/locale/eu/LC_MESSAGES/ktuberling.mo share/locale/fa/LC_MESSAGES/ktuberling.mo share/locale/fi/LC_MESSAGES/ktuberling.mo share/locale/fr/LC_MESSAGES/ktuberling.mo share/locale/ga/LC_MESSAGES/ktuberling.mo share/locale/gl/LC_MESSAGES/ktuberling.mo share/locale/he/LC_MESSAGES/ktuberling.mo share/locale/hi/LC_MESSAGES/ktuberling.mo share/locale/hr/LC_MESSAGES/ktuberling.mo share/locale/hu/LC_MESSAGES/ktuberling.mo +share/locale/id/LC_MESSAGES/ktuberling.mo share/locale/is/LC_MESSAGES/ktuberling.mo share/locale/it/LC_MESSAGES/ktuberling.mo share/locale/ja/LC_MESSAGES/ktuberling.mo share/locale/kk/LC_MESSAGES/ktuberling.mo share/locale/km/LC_MESSAGES/ktuberling.mo share/locale/ko/LC_MESSAGES/ktuberling.mo share/locale/lt/LC_MESSAGES/ktuberling.mo share/locale/lv/LC_MESSAGES/ktuberling.mo share/locale/mr/LC_MESSAGES/ktuberling.mo share/locale/nb/LC_MESSAGES/ktuberling.mo share/locale/nds/LC_MESSAGES/ktuberling.mo share/locale/nl/LC_MESSAGES/ktuberling.mo share/locale/nn/LC_MESSAGES/ktuberling.mo share/locale/pa/LC_MESSAGES/ktuberling.mo share/locale/pl/LC_MESSAGES/ktuberling.mo share/locale/pt/LC_MESSAGES/ktuberling.mo share/locale/pt_BR/LC_MESSAGES/ktuberling.mo share/locale/ro/LC_MESSAGES/ktuberling.mo share/locale/ru/LC_MESSAGES/ktuberling.mo share/locale/sk/LC_MESSAGES/ktuberling.mo share/locale/sl/LC_MESSAGES/ktuberling.mo share/locale/sr/LC_MESSAGES/ktuberling.mo share/locale/sv/LC_MESSAGES/ktuberling.mo share/locale/tr/LC_MESSAGES/ktuberling.mo share/locale/ug/LC_MESSAGES/ktuberling.mo share/locale/uk/LC_MESSAGES/ktuberling.mo share/locale/wa/LC_MESSAGES/ktuberling.mo share/locale/zh_CN/LC_MESSAGES/ktuberling.mo share/locale/zh_TW/LC_MESSAGES/ktuberling.mo share/metainfo/org.kde.ktuberling.appdata.xml Index: head/games/kubrick/distinfo =================================================================== --- head/games/kubrick/distinfo (revision 514560) +++ head/games/kubrick/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537212 -SHA256 (KDE/applications/19.08.1/kubrick-19.08.1.tar.xz) = 51ff60a682c69f829af7f7e4748128d48e691aacd584379e099c437473a45c03 -SIZE (KDE/applications/19.08.1/kubrick-19.08.1.tar.xz) = 313584 +TIMESTAMP = 1570544439 +SHA256 (KDE/applications/19.08.2/kubrick-19.08.2.tar.xz) = 89c181f8c82db143cd671fe78105e95a229e43fd64cab17ccdb80774b4ca8638 +SIZE (KDE/applications/19.08.2/kubrick-19.08.2.tar.xz) = 312928 Index: head/games/libkdegames/distinfo =================================================================== --- head/games/libkdegames/distinfo (revision 514560) +++ head/games/libkdegames/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537212 -SHA256 (KDE/applications/19.08.1/libkdegames-19.08.1.tar.xz) = 1b365627bd0a3a42a32a0a8d401b53d2ac09f0f9cf040b4b0483c5574991b774 -SIZE (KDE/applications/19.08.1/libkdegames-19.08.1.tar.xz) = 6374404 +TIMESTAMP = 1570544440 +SHA256 (KDE/applications/19.08.2/libkdegames-19.08.2.tar.xz) = 83456cec44502a1f79c0be00c983090e32fd8aea5fec1461fbfbd37b5f8866ac +SIZE (KDE/applications/19.08.2/libkdegames-19.08.2.tar.xz) = 6374880 Index: head/games/libkmahjongg/distinfo =================================================================== --- head/games/libkmahjongg/distinfo (revision 514560) +++ head/games/libkmahjongg/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537213 -SHA256 (KDE/applications/19.08.1/libkmahjongg-19.08.1.tar.xz) = c4e3a29bb923ead76f1fb528fa62c677423ebb4ac07dd149a6fc3f6ae055eb39 -SIZE (KDE/applications/19.08.1/libkmahjongg-19.08.1.tar.xz) = 1683708 +TIMESTAMP = 1570544440 +SHA256 (KDE/applications/19.08.2/libkmahjongg-19.08.2.tar.xz) = 8699949fae90c0e92dd046b904b0624f79c37fecaa46557c808f20f24e215947 +SIZE (KDE/applications/19.08.2/libkmahjongg-19.08.2.tar.xz) = 1683252 Index: head/games/lskat/distinfo =================================================================== --- head/games/lskat/distinfo (revision 514560) +++ head/games/lskat/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537213 -SHA256 (KDE/applications/19.08.1/lskat-19.08.1.tar.xz) = e4b073cc65be0f1e7e01b4b2aa28bed30480aef097f5185eb608b4e45b9352e9 -SIZE (KDE/applications/19.08.1/lskat-19.08.1.tar.xz) = 1218280 +TIMESTAMP = 1570544441 +SHA256 (KDE/applications/19.08.2/lskat-19.08.2.tar.xz) = 3ae219b92cbc4c9acfacbb16e262e82b03cd5ddba024820e82d8de7312327a9c +SIZE (KDE/applications/19.08.2/lskat-19.08.2.tar.xz) = 1218832 Index: head/games/palapeli/distinfo =================================================================== --- head/games/palapeli/distinfo (revision 514560) +++ head/games/palapeli/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537213 -SHA256 (KDE/applications/19.08.1/palapeli-19.08.1.tar.xz) = c9eeafe854529ea5a09e9ef6fd37b8be3d0d370322938c009c826bd936953adc -SIZE (KDE/applications/19.08.1/palapeli-19.08.1.tar.xz) = 2069656 +TIMESTAMP = 1570544442 +SHA256 (KDE/applications/19.08.2/palapeli-19.08.2.tar.xz) = bae810595c7ba7bdac0fa5c27e6c2a3a9bb1bbdae3521cfc036ec0cdcd9ef1a7 +SIZE (KDE/applications/19.08.2/palapeli-19.08.2.tar.xz) = 2068180 Index: head/games/picmi/distinfo =================================================================== --- head/games/picmi/distinfo (revision 514560) +++ head/games/picmi/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537214 -SHA256 (KDE/applications/19.08.1/picmi-19.08.1.tar.xz) = 47e0dd79ee4ae86d8be6822f9328fac2f00ce68cf862202e889c0f77a88d0d91 -SIZE (KDE/applications/19.08.1/picmi-19.08.1.tar.xz) = 1358072 +TIMESTAMP = 1570544442 +SHA256 (KDE/applications/19.08.2/picmi-19.08.2.tar.xz) = ecfa211043327991a0927be852c185223adebe5f15cdc39e79e31022802f904b +SIZE (KDE/applications/19.08.2/picmi-19.08.2.tar.xz) = 1357556 Index: head/graphics/gwenview/Makefile =================================================================== --- head/graphics/gwenview/Makefile (revision 514560) +++ head/graphics/gwenview/Makefile (revision 514561) @@ -1,33 +1,32 @@ # $FreeBSD$ PORTNAME= gwenview DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= graphics kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Image viewer and browser for KDE BUILD_DEPENDS= ${LOCALBASE}/share/xsl/docbook/html/docbook.xsl:textproc/docbook-xsl \ docbook-xml>0:textproc/docbook-xml LIB_DEPENDS= libexiv2.so:graphics/exiv2 \ liblcms2.so:graphics/lcms2 \ libpng.so:graphics/png RUN_DEPENDS= kipi-plugins>=0:graphics/kipi-plugins USES= compiler:c++11-lang cmake desktop-file-utils gettext jpeg pkgconfig \ kde:5 qt:5 tar:xz USE_KDE= activities auth baloo bookmarks codecs completion config \ configwidgets coreaddons ecm emoticons filemetadata i18n \ iconthemes init itemmodels itemviews jobwidgets \ kdelibs4support kimageformats kio libkdcraw libkipi \ notifications parts service solid sonnet textwidgets \ widgetsaddons windowsystem xmlgui USE_QT= concurrent core dbus gui network opengl phonon4 printsupport \ svg widgets x11extras xml \ buildtools_build qmake_build USE_XORG= x11 OPTIONS_DEFINE= DOCS .include Index: head/graphics/gwenview/distinfo =================================================================== --- head/graphics/gwenview/distinfo (revision 514560) +++ head/graphics/gwenview/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537225 -SHA256 (KDE/applications/19.08.1/gwenview-19.08.1.tar.xz) = 1ed46507ea30c43e4672b51996ac413683a863978999be91a9df135f9369f3cb -SIZE (KDE/applications/19.08.1/gwenview-19.08.1.tar.xz) = 5722756 +TIMESTAMP = 1570544463 +SHA256 (KDE/applications/19.08.2/gwenview-19.08.2.tar.xz) = fa49352a208c9472c911d3579f7601fb915831ad42caf74a053ed749bf5bb1fb +SIZE (KDE/applications/19.08.2/gwenview-19.08.2.tar.xz) = 5724040 Index: head/graphics/kamera/distinfo =================================================================== --- head/graphics/kamera/distinfo (revision 514560) +++ head/graphics/kamera/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537225 -SHA256 (KDE/applications/19.08.1/kamera-19.08.1.tar.xz) = 109a030ef55b941758e8d4a58b2abed4c5e1bb7e13e8d239b7132867c801acf5 -SIZE (KDE/applications/19.08.1/kamera-19.08.1.tar.xz) = 100184 +TIMESTAMP = 1570544464 +SHA256 (KDE/applications/19.08.2/kamera-19.08.2.tar.xz) = 2db474afa6201f330631640e04e1bd6ebb96838ce4c16d37617a10063b1fa757 +SIZE (KDE/applications/19.08.2/kamera-19.08.2.tar.xz) = 100056 Index: head/graphics/kcolorchooser/distinfo =================================================================== --- head/graphics/kcolorchooser/distinfo (revision 514560) +++ head/graphics/kcolorchooser/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537225 -SHA256 (KDE/applications/19.08.1/kcolorchooser-19.08.1.tar.xz) = a36cccbbf5dda16c0d97bff2ce415e678481fee5c2a7640b2c2db2f0ea7c70cb -SIZE (KDE/applications/19.08.1/kcolorchooser-19.08.1.tar.xz) = 20812 +TIMESTAMP = 1570544465 +SHA256 (KDE/applications/19.08.2/kcolorchooser-19.08.2.tar.xz) = 4eb50f314b190f1980e73212a45fe86db39f278f789288cd76cb0763f3176edc +SIZE (KDE/applications/19.08.2/kcolorchooser-19.08.2.tar.xz) = 20652 Index: head/graphics/kdegraphics-mobipocket/distinfo =================================================================== --- head/graphics/kdegraphics-mobipocket/distinfo (revision 514560) +++ head/graphics/kdegraphics-mobipocket/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537226 -SHA256 (KDE/applications/19.08.1/kdegraphics-mobipocket-19.08.1.tar.xz) = b1760e3a22869715881f571c0bc79c1b91876e41f508a5ba53659be774a6628c -SIZE (KDE/applications/19.08.1/kdegraphics-mobipocket-19.08.1.tar.xz) = 13464 +TIMESTAMP = 1570544465 +SHA256 (KDE/applications/19.08.2/kdegraphics-mobipocket-19.08.2.tar.xz) = 9621b0b3564ce7fcd6890c15c48e11d00c1cf2d3b408b255ec590bd6d113439f +SIZE (KDE/applications/19.08.2/kdegraphics-mobipocket-19.08.2.tar.xz) = 13452 Index: head/graphics/kdegraphics-svgpart/distinfo =================================================================== --- head/graphics/kdegraphics-svgpart/distinfo (revision 514560) +++ head/graphics/kdegraphics-svgpart/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537226 -SHA256 (KDE/applications/19.08.1/svgpart-19.08.1.tar.xz) = 4ed6277d3f2c12a4a53dd308911c613af5ae65f53819aeacf42e08dcd08dbd5b -SIZE (KDE/applications/19.08.1/svgpart-19.08.1.tar.xz) = 21260 +TIMESTAMP = 1570544466 +SHA256 (KDE/applications/19.08.2/svgpart-19.08.2.tar.xz) = 6c6510b604bba3aebbeca136ec9534c416bc0ba55125227bdd0af2a86052855c +SIZE (KDE/applications/19.08.2/svgpart-19.08.2.tar.xz) = 21228 Index: head/graphics/kdegraphics-thumbnailers/distinfo =================================================================== --- head/graphics/kdegraphics-thumbnailers/distinfo (revision 514560) +++ head/graphics/kdegraphics-thumbnailers/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537226 -SHA256 (KDE/applications/19.08.1/kdegraphics-thumbnailers-19.08.1.tar.xz) = 86a81ff786168778cbe0ad7c185320dbf052b1df2e6269f14323df04b48ed2ff -SIZE (KDE/applications/19.08.1/kdegraphics-thumbnailers-19.08.1.tar.xz) = 43416 +TIMESTAMP = 1570544467 +SHA256 (KDE/applications/19.08.2/kdegraphics-thumbnailers-19.08.2.tar.xz) = 12e2b096d65c5dfde6d16bc2c35b236343ce02ba1ef1b3b68b11257250da02c8 +SIZE (KDE/applications/19.08.2/kdegraphics-thumbnailers-19.08.2.tar.xz) = 43372 Index: head/graphics/kimagemapeditor/distinfo =================================================================== --- head/graphics/kimagemapeditor/distinfo (revision 514560) +++ head/graphics/kimagemapeditor/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537227 -SHA256 (KDE/applications/19.08.1/kimagemapeditor-19.08.1.tar.xz) = 0baa2f3fa5810ab63d08db2d0223af04407bb14e4bda20ad17dbfb6c63f33b3a -SIZE (KDE/applications/19.08.1/kimagemapeditor-19.08.1.tar.xz) = 1070508 +TIMESTAMP = 1570544467 +SHA256 (KDE/applications/19.08.2/kimagemapeditor-19.08.2.tar.xz) = 3be222d94bad94adf4d589fb98c9556af0f0e6c66106a217ee3b9ab031412597 +SIZE (KDE/applications/19.08.2/kimagemapeditor-19.08.2.tar.xz) = 1070788 Index: head/graphics/kipi-plugins/distinfo =================================================================== --- head/graphics/kipi-plugins/distinfo (revision 514560) +++ head/graphics/kipi-plugins/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567573244 -SHA256 (KDE/applications/19.08.1/kipi-plugins-19.08.1.tar.xz) = 6cc8fdc47fbfa5d8b4f9aeb4d82b5f1c9779a300cffbc17f8776dcb2ed61f0e4 -SIZE (KDE/applications/19.08.1/kipi-plugins-19.08.1.tar.xz) = 1629880 +TIMESTAMP = 1570544471 +SHA256 (KDE/applications/19.08.2/kipi-plugins-19.08.2.tar.xz) = 2894f50989a14f7fd4be0035efec3cb14583d2285ff11729605b641af0fed192 +SIZE (KDE/applications/19.08.2/kipi-plugins-19.08.2.tar.xz) = 1628804 Index: head/graphics/kolourpaint/distinfo =================================================================== --- head/graphics/kolourpaint/distinfo (revision 514560) +++ head/graphics/kolourpaint/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537227 -SHA256 (KDE/applications/19.08.1/kolourpaint-19.08.1.tar.xz) = 59c1a2a9d8f012ff1c483dae4f1019232ec667bd88e61c6c8fc07e47312ef23f -SIZE (KDE/applications/19.08.1/kolourpaint-19.08.1.tar.xz) = 5651556 +TIMESTAMP = 1570544468 +SHA256 (KDE/applications/19.08.2/kolourpaint-19.08.2.tar.xz) = e8bde8d516159ae93dfe56565eea2919d2154606fd1814202f30caf21f659cda +SIZE (KDE/applications/19.08.2/kolourpaint-19.08.2.tar.xz) = 5655368 Index: head/graphics/libkdcraw/distinfo =================================================================== --- head/graphics/libkdcraw/distinfo (revision 514560) +++ head/graphics/libkdcraw/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537227 -SHA256 (KDE/applications/19.08.1/libkdcraw-19.08.1.tar.xz) = b159a669cb4c01770c363b4dd53033248402d37b29acb416ec45e71ac12449e2 -SIZE (KDE/applications/19.08.1/libkdcraw-19.08.1.tar.xz) = 42072 +TIMESTAMP = 1570544469 +SHA256 (KDE/applications/19.08.2/libkdcraw-19.08.2.tar.xz) = 735ab40633efec394c6265d83f86ad7caf278f63d1dd33cc6edf572da4925fcb +SIZE (KDE/applications/19.08.2/libkdcraw-19.08.2.tar.xz) = 42012 Index: head/graphics/libkexiv2/distinfo =================================================================== --- head/graphics/libkexiv2/distinfo (revision 514560) +++ head/graphics/libkexiv2/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537228 -SHA256 (KDE/applications/19.08.1/libkexiv2-19.08.1.tar.xz) = bee9a16eda002146b42f358b0dc58c5db832719870761264cc6cf0a199ab0537 -SIZE (KDE/applications/19.08.1/libkexiv2-19.08.1.tar.xz) = 64336 +TIMESTAMP = 1570544470 +SHA256 (KDE/applications/19.08.2/libkexiv2-19.08.2.tar.xz) = abdafabe834862e157356f2686ae871f00302d82ae639dbf89030d19ccc54b1b +SIZE (KDE/applications/19.08.2/libkexiv2-19.08.2.tar.xz) = 64436 Index: head/graphics/libkipi/distinfo =================================================================== --- head/graphics/libkipi/distinfo (revision 514560) +++ head/graphics/libkipi/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537228 -SHA256 (KDE/applications/19.08.1/libkipi-19.08.1.tar.xz) = ec2012821c90062e43ad7c77861ab519b24aea429ed9f0b7bdf6ef9c00e82ba4 -SIZE (KDE/applications/19.08.1/libkipi-19.08.1.tar.xz) = 103436 +TIMESTAMP = 1570544470 +SHA256 (KDE/applications/19.08.2/libkipi-19.08.2.tar.xz) = fcaf576afb961d9a36c1f69c034c43b9f0991cbd0726ea684c2c49096f36d5c6 +SIZE (KDE/applications/19.08.2/libkipi-19.08.2.tar.xz) = 103288 Index: head/graphics/libksane/distinfo =================================================================== --- head/graphics/libksane/distinfo (revision 514560) +++ head/graphics/libksane/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537228 -SHA256 (KDE/applications/19.08.1/libksane-19.08.1.tar.xz) = 215fae62d8ea1f70908cafc5bc8667c02d4f0329669d056c99443a7b14a6e589 -SIZE (KDE/applications/19.08.1/libksane-19.08.1.tar.xz) = 138600 +TIMESTAMP = 1570544472 +SHA256 (KDE/applications/19.08.2/libksane-19.08.2.tar.xz) = 97e05423f4a9205b9db0bbce5111615d6bf8e8d53a391d3398275babccd91aa0 +SIZE (KDE/applications/19.08.2/libksane-19.08.2.tar.xz) = 138704 Index: head/graphics/okular/Makefile =================================================================== --- head/graphics/okular/Makefile (revision 514560) +++ head/graphics/okular/Makefile (revision 514561) @@ -1,47 +1,46 @@ # $FreeBSD$ PORTNAME= okular DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 2 CATEGORIES= graphics kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE universal document viewer LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING BUILD_DEPENDS= markdown:textproc/discount RUN_DEPENDS= markdown:textproc/discount LIB_DEPENDS= libchm.so:misc/chmlib \ libdjvulibre.so:graphics/djvulibre \ libepub.so:textproc/ebook-tools \ libfreetype.so:print/freetype2 \ libqmobipocket.so:graphics/kdegraphics-mobipocket \ libpoppler.so:graphics/poppler \ libpoppler-qt5.so:graphics/poppler-qt5 \ libqca-qt5.so:devel/qca \ libspectre.so:print/libspectre \ libtiff.so:graphics/tiff \ libzip.so:archivers/libzip USES= cmake compiler:c++11-lib desktop-file-utils \ gettext jpeg kde:5 pkgconfig qt:5 tar:xz USE_KDE= activities archive auth bookmarks codecs completion config \ configwidgets coreaddons crash dbusaddons ecm emoticons i18n \ iconthemes init itemmodels itemviews jobwidgets js \ kdelibs4support khtml kio libkexiv2 parts pty \ service solid sonnet textwidgets threadweaver wallet \ widgetsaddons windowsystem xmlgui USE_QT= concurrent core dbus declarative gui network phonon4 printsupport speech \ svg widgets xml \ buildtools_build qmake_build OPTIONS_DEFINE= DOCS PURPOSE OPTIONS_DEFAULT= PURPOSE PURPOSE_DESC= Enable 'Share' menu PURPOSE_USE= KDE=purpose PURPOSE_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_KDEExperimentalPurpose .include Index: head/graphics/okular/distinfo =================================================================== --- head/graphics/okular/distinfo (revision 514560) +++ head/graphics/okular/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537229 -SHA256 (KDE/applications/19.08.1/okular-19.08.1.tar.xz) = 9e363b73febd5da1a17e53a8f89914784b555c1f0085ddc0f55ef56082b0bd54 -SIZE (KDE/applications/19.08.1/okular-19.08.1.tar.xz) = 7058264 +TIMESTAMP = 1570544472 +SHA256 (KDE/applications/19.08.2/okular-19.08.2.tar.xz) = ff3d2eac444a110a611add71c30b0556085f5aaccdd821a80bd070a646c9f6b3 +SIZE (KDE/applications/19.08.2/okular-19.08.2.tar.xz) = 7066232 Index: head/graphics/spectacle/Makefile =================================================================== --- head/graphics/spectacle/Makefile (revision 514560) +++ head/graphics/spectacle/Makefile (revision 514561) @@ -1,28 +1,27 @@ # $FreeBSD$ PORTNAME= spectacle DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= graphics kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE screen capture program LIB_DEPENDS= libxcb-cursor.so:x11/xcb-util-cursor \ libxcb-image.so:x11/xcb-util-image \ libxcb-util.so:x11/xcb-util RUN_DEPENDS= kipi-plugins>=0:graphics/kipi-plugins USES= cmake compiler:c++11-lang gettext kde:5 pkgconfig qt:5 tar:xz USE_KDE= attica auth codecs completion config configwidgets coreaddons \ dbusaddons doctools ecm i18n jobwidgets kdeclarative kio \ - libkipi newstuff notifications package service widgetsaddons \ - windowsystem xmlgui + libkipi newstuff notifications package service wayland \ + widgetsaddons windowsystem xmlgui USE_QT= core concurrent dbus declarative gui network printsupport \ quickcontrols widgets x11extras xml \ buildtools_build qmake_build USE_XORG= x11 xcb xext xfixes OPTIONS_DEFINE= DOCS .include Index: head/graphics/spectacle/distinfo =================================================================== --- head/graphics/spectacle/distinfo (revision 514560) +++ head/graphics/spectacle/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537239 -SHA256 (KDE/applications/19.08.1/spectacle-19.08.1.tar.xz) = 21057fd4990048df33f5d739fc98af2a555ca4b7db50688333fecabc12f24786 -SIZE (KDE/applications/19.08.1/spectacle-19.08.1.tar.xz) = 965032 +TIMESTAMP = 1570544493 +SHA256 (KDE/applications/19.08.2/spectacle-19.08.2.tar.xz) = 4cf2f0903cec2787a03a8bbdbd219acc29ac412f352a4ff94ef50ae9a6eb459e +SIZE (KDE/applications/19.08.2/spectacle-19.08.2.tar.xz) = 965432 Index: head/japanese/kiten/distinfo =================================================================== --- head/japanese/kiten/distinfo (revision 514560) +++ head/japanese/kiten/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537240 -SHA256 (KDE/applications/19.08.1/kiten-19.08.1.tar.xz) = 01e963fd76c87a631bb5a4f86bc8be624907571c60368e6bf5bdce55cff6b59a -SIZE (KDE/applications/19.08.1/kiten-19.08.1.tar.xz) = 11284024 +TIMESTAMP = 1570544494 +SHA256 (KDE/applications/19.08.2/kiten-19.08.2.tar.xz) = e35552dd49507c66574ae7fc22fe75597a954044a09522652cc1e457d3425edc +SIZE (KDE/applications/19.08.2/kiten-19.08.2.tar.xz) = 11287752 Index: head/lang/kross-interpreters/distinfo =================================================================== --- head/lang/kross-interpreters/distinfo (revision 514560) +++ head/lang/kross-interpreters/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537240 -SHA256 (KDE/applications/19.08.1/kross-interpreters-19.08.1.tar.xz) = d6acb31bd4c97364aa4a77767e012af32ecd0f560da939901a81be5776f2de49 -SIZE (KDE/applications/19.08.1/kross-interpreters-19.08.1.tar.xz) = 151556 +TIMESTAMP = 1570544495 +SHA256 (KDE/applications/19.08.2/kross-interpreters-19.08.2.tar.xz) = e0c63d73441c08c1b5b6627e9c02172c72f079ac0baeb596849a49ad38f8723c +SIZE (KDE/applications/19.08.2/kross-interpreters-19.08.2.tar.xz) = 151460 Index: head/lang/kturtle/distinfo =================================================================== --- head/lang/kturtle/distinfo (revision 514560) +++ head/lang/kturtle/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537240 -SHA256 (KDE/applications/19.08.1/kturtle-19.08.1.tar.xz) = 5643434e861391471674e6cf86347c362b076e1d3fe1396022b5080b899bf934 -SIZE (KDE/applications/19.08.1/kturtle-19.08.1.tar.xz) = 1830108 +TIMESTAMP = 1570544495 +SHA256 (KDE/applications/19.08.2/kturtle-19.08.2.tar.xz) = 1f1245c444aba511aea0630f80953171dd11334f55f6b9547a844e25293cf833 +SIZE (KDE/applications/19.08.2/kturtle-19.08.2.tar.xz) = 1827044 Index: head/math/analitza/distinfo =================================================================== --- head/math/analitza/distinfo (revision 514560) +++ head/math/analitza/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537251 -SHA256 (KDE/applications/19.08.1/analitza-19.08.1.tar.xz) = f963a8abe31d4c0d2b0e0a7e78ec78ced8eb7a0af60df1620ccc2f2409df6a91 -SIZE (KDE/applications/19.08.1/analitza-19.08.1.tar.xz) = 332244 +TIMESTAMP = 1570544516 +SHA256 (KDE/applications/19.08.2/analitza-19.08.2.tar.xz) = cbd51fd14d5ba74a7a3590ddca18ed688cbf724cd40f21c87b905f12fadf9399 +SIZE (KDE/applications/19.08.2/analitza-19.08.2.tar.xz) = 333044 Index: head/math/cantor/distinfo =================================================================== --- head/math/cantor/distinfo (revision 514560) +++ head/math/cantor/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537251 -SHA256 (KDE/applications/19.08.1/cantor-19.08.1.tar.xz) = 93b43426c3383718e6ff7b62f073e3c39371a519b98e890c2b7c15cb5086c039 -SIZE (KDE/applications/19.08.1/cantor-19.08.1.tar.xz) = 2539272 +TIMESTAMP = 1570544517 +SHA256 (KDE/applications/19.08.2/cantor-19.08.2.tar.xz) = 039bb1e61b996ab3776502db9367ed1f7fb7e674292647f1b28f5bd9b1c1b9cb +SIZE (KDE/applications/19.08.2/cantor-19.08.2.tar.xz) = 2541240 Index: head/math/kalgebra/distinfo =================================================================== --- head/math/kalgebra/distinfo (revision 514560) +++ head/math/kalgebra/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537262 -SHA256 (KDE/applications/19.08.1/kalgebra-19.08.1.tar.xz) = c9859e0b2b847652007a3244bc658f7e160fe88fc70ea7da6e60f003f54f46c9 -SIZE (KDE/applications/19.08.1/kalgebra-19.08.1.tar.xz) = 1156912 +TIMESTAMP = 1570544538 +SHA256 (KDE/applications/19.08.2/kalgebra-19.08.2.tar.xz) = 351a0df1bf637b14683d1a38d8f1eff0153596c5f93723f28f799aead6ee0757 +SIZE (KDE/applications/19.08.2/kalgebra-19.08.2.tar.xz) = 1157584 Index: head/math/kbruch/distinfo =================================================================== --- head/math/kbruch/distinfo (revision 514560) +++ head/math/kbruch/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537262 -SHA256 (KDE/applications/19.08.1/kbruch-19.08.1.tar.xz) = 74b387e6eafc5fac8b7a75df6f8d61a2b4b0380a82b5c43f3a10c9b75855318f -SIZE (KDE/applications/19.08.1/kbruch-19.08.1.tar.xz) = 5604040 +TIMESTAMP = 1570544539 +SHA256 (KDE/applications/19.08.2/kbruch-19.08.2.tar.xz) = a2cead23cab880b21769e41086505b50de659630860d056b6a8504caafd4dcf0 +SIZE (KDE/applications/19.08.2/kbruch-19.08.2.tar.xz) = 5603772 Index: head/math/kcalc/distinfo =================================================================== --- head/math/kcalc/distinfo (revision 514560) +++ head/math/kcalc/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537262 -SHA256 (KDE/applications/19.08.1/kcalc-19.08.1.tar.xz) = 7b3c110a97b851e8db03302484cadc59a59ec8378501ee61dd094ac2c7caa203 -SIZE (KDE/applications/19.08.1/kcalc-19.08.1.tar.xz) = 372548 +TIMESTAMP = 1570544539 +SHA256 (KDE/applications/19.08.2/kcalc-19.08.2.tar.xz) = 94a6d004266813449b6b9efbe0e3b0da3e5368059134668277a344a720f65fd9 +SIZE (KDE/applications/19.08.2/kcalc-19.08.2.tar.xz) = 372572 Index: head/math/kig/Makefile =================================================================== --- head/math/kig/Makefile (revision 514560) +++ head/math/kig/Makefile (revision 514561) @@ -1,25 +1,24 @@ # $FreeBSD$ PORTNAME= kig DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= math kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE interactive geometry application LIB_DEPENDS= ${PY_BOOST} USES= cmake gettext compiler:c++11-lib desktop-file-utils kde:5 \ python:2.7,run qt:5 shebangfix tar:xz USE_KDE= archive auth codecs completion config configwidgets coreaddons \ crash doctools ecm emoticons i18n iconthemes init itemmodels \ jobwidgets kdelibs4support kio parts service sonnet texteditor \ textwidgets widgetsaddons xmlgui USE_QT= concurrent core dbus gui network printsupport svg widgets xml xmlpatterns \ buildtools_build qmake_build SHEBANG_FILES= pykig/pykig.py OPTIONS_DEFINE= DOCS .include Index: head/math/kig/distinfo =================================================================== --- head/math/kig/distinfo (revision 514560) +++ head/math/kig/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537263 -SHA256 (KDE/applications/19.08.1/kig-19.08.1.tar.xz) = 8b073fd0310e62483a548ada000b4230f2b70dec8ab11ac8303bd64961829675 -SIZE (KDE/applications/19.08.1/kig-19.08.1.tar.xz) = 3495636 +TIMESTAMP = 1570544540 +SHA256 (KDE/applications/19.08.2/kig-19.08.2.tar.xz) = 60bab2ccdf69df8ebaed672dc9201e468563d78761f191c43ee5673f9a54246a +SIZE (KDE/applications/19.08.2/kig-19.08.2.tar.xz) = 3501052 Index: head/math/kmplot/distinfo =================================================================== --- head/math/kmplot/distinfo (revision 514560) +++ head/math/kmplot/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537263 -SHA256 (KDE/applications/19.08.1/kmplot-19.08.1.tar.xz) = 7797dc95f64738b918cb19481bc74cebd1f66b5a537592bb53e98e1715701fe2 -SIZE (KDE/applications/19.08.1/kmplot-19.08.1.tar.xz) = 3055312 +TIMESTAMP = 1570544541 +SHA256 (KDE/applications/19.08.2/kmplot-19.08.2.tar.xz) = 62017429db210c5b8f99301a6768a6eb10becd0f1f6af6d886a539657d8518a0 +SIZE (KDE/applications/19.08.2/kmplot-19.08.2.tar.xz) = 3054008 Index: head/math/rocs/Makefile =================================================================== --- head/math/rocs/Makefile (revision 514560) +++ head/math/rocs/Makefile (revision 514561) @@ -1,27 +1,26 @@ # $FreeBSD$ PORTNAME= rocs DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= math kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE Graph theory IDE LIB_DEPENDS= libboost_thread.so:devel/boost-libs USES= cmake compiler:c++11-lang desktop-file-utils gettext grantlee:5 kde:5 \ qt:5 tar:xz USE_KDE= archive auth codecs completion config configwidgets coreaddons \ crash doctools ecm i18n itemviews jobwidgets kdeclarative \ kio package parts service sonnet texteditor textwidgets \ widgetsaddons xmlgui USE_QT= concurrent core dbus declarative gui network script scripttools svg webkit \ widgets xml xmlpatterns \ buildtools_build qmake_build USE_LDCONFIG= yes OPTIONS_DEFINE= DOCS .include Index: head/math/rocs/distinfo =================================================================== --- head/math/rocs/distinfo (revision 514560) +++ head/math/rocs/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537263 -SHA256 (KDE/applications/19.08.1/rocs-19.08.1.tar.xz) = eaa2fefae8123071e5802d0c13016d0b99608f91c75c7c6e4fbe6f2c6dc12adf -SIZE (KDE/applications/19.08.1/rocs-19.08.1.tar.xz) = 1517012 +TIMESTAMP = 1570544542 +SHA256 (KDE/applications/19.08.2/rocs-19.08.2.tar.xz) = 4e61226334f79a260f0ccc7789a099a91c7643d9fdfcdd052b002f2fe6f64885 +SIZE (KDE/applications/19.08.2/rocs-19.08.2.tar.xz) = 1516448 Index: head/misc/artikulate/Makefile =================================================================== --- head/misc/artikulate/Makefile (revision 514560) +++ head/misc/artikulate/Makefile (revision 514561) @@ -1,24 +1,23 @@ # $FreeBSD$ PORTNAME= artikulate DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= misc kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Pronunciation trainer for KDE LIB_DEPENDS= libboost_thread.so:devel/boost-libs USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= archive attica auth codecs config configwidgets coreaddons \ crash doctools ecm i18n kdeclarative newstuff service \ widgetsaddons xmlgui USE_QT= core dbus declarative gui multimedia network sql testlib widgets \ xml xmlpatterns \ buildtools_build qmake_build USE_LDCONFIG= yes OPTIONS_DEFINE= DOCS .include Index: head/misc/artikulate/distinfo =================================================================== --- head/misc/artikulate/distinfo (revision 514560) +++ head/misc/artikulate/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537264 -SHA256 (KDE/applications/19.08.1/artikulate-19.08.1.tar.xz) = 856488a4914ae0cfa594106b4d5c7b5ffd996b009075dfa009ab9cdd2cbc2f9d -SIZE (KDE/applications/19.08.1/artikulate-19.08.1.tar.xz) = 3999564 +TIMESTAMP = 1570544542 +SHA256 (KDE/applications/19.08.2/artikulate-19.08.2.tar.xz) = b2b0778f18f04096b84caf72c28dd4bdfdbbc8f0a22ef118b8d18dba19a3f85b +SIZE (KDE/applications/19.08.2/artikulate-19.08.2.tar.xz) = 3996424 Index: head/misc/kdeedu-data/distinfo =================================================================== --- head/misc/kdeedu-data/distinfo (revision 514560) +++ head/misc/kdeedu-data/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537264 -SHA256 (KDE/applications/19.08.1/kdeedu-data-19.08.1.tar.xz) = 107dff744219210c732aa007d97c8c8d8e87cff5cd446d987b8ac2600ea1f1b7 -SIZE (KDE/applications/19.08.1/kdeedu-data-19.08.1.tar.xz) = 327304 +TIMESTAMP = 1570544543 +SHA256 (KDE/applications/19.08.2/kdeedu-data-19.08.2.tar.xz) = 0ead96a7a10ecbf98c88464f9987e7d8e2efdf7879782e5262b5cda694f3e343 +SIZE (KDE/applications/19.08.2/kdeedu-data-19.08.2.tar.xz) = 328172 Index: head/misc/kgeography/distinfo =================================================================== --- head/misc/kgeography/distinfo (revision 514560) +++ head/misc/kgeography/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537265 -SHA256 (KDE/applications/19.08.1/kgeography-19.08.1.tar.xz) = c0c04e902626d52118e81da9fc24fbd87d49d0bcf4ad229f83eef8e4f84fb551 -SIZE (KDE/applications/19.08.1/kgeography-19.08.1.tar.xz) = 10882020 +TIMESTAMP = 1570544544 +SHA256 (KDE/applications/19.08.2/kgeography-19.08.2.tar.xz) = ca535319e5dd3938e572d9d4f4a216a29a5435546742bb6616d2a716f1a1dfcc +SIZE (KDE/applications/19.08.2/kgeography-19.08.2.tar.xz) = 10892332 Index: head/misc/klettres/distinfo =================================================================== --- head/misc/klettres/distinfo (revision 514560) +++ head/misc/klettres/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537265 -SHA256 (KDE/applications/19.08.1/klettres-19.08.1.tar.xz) = 9d9616e35f2b82e39916b89a049bee4faca5a4235eb22989c9e8485c7e75239b -SIZE (KDE/applications/19.08.1/klettres-19.08.1.tar.xz) = 40141832 +TIMESTAMP = 1570544545 +SHA256 (KDE/applications/19.08.2/klettres-19.08.2.tar.xz) = 919fc2b5d722bfdd741f0b1202f31c9aefc5d240ceb88ab785c2acd98a1b8284 +SIZE (KDE/applications/19.08.2/klettres-19.08.2.tar.xz) = 40136900 Index: head/misc/ktouch/distinfo =================================================================== --- head/misc/ktouch/distinfo (revision 514560) +++ head/misc/ktouch/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537276 -SHA256 (KDE/applications/19.08.1/ktouch-19.08.1.tar.xz) = d97ee5f253dd4e4d802bb8109c2e12d4d48bc7741686d07783e5687a499a2da7 -SIZE (KDE/applications/19.08.1/ktouch-19.08.1.tar.xz) = 4936212 +TIMESTAMP = 1570544566 +SHA256 (KDE/applications/19.08.2/ktouch-19.08.2.tar.xz) = d36659c21d05465c7a77330dbfbbab09946093eac1db6c02147d81a838eba636 +SIZE (KDE/applications/19.08.2/ktouch-19.08.2.tar.xz) = 4934684 Index: head/misc/kwordquiz/distinfo =================================================================== --- head/misc/kwordquiz/distinfo (revision 514560) +++ head/misc/kwordquiz/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537276 -SHA256 (KDE/applications/19.08.1/kwordquiz-19.08.1.tar.xz) = ead21c1caa1d1665a8ef685c4b46a442b7423aba63153617008985e84ff4c318 -SIZE (KDE/applications/19.08.1/kwordquiz-19.08.1.tar.xz) = 4173200 +TIMESTAMP = 1570544566 +SHA256 (KDE/applications/19.08.2/kwordquiz-19.08.2.tar.xz) = 9bb9abc4058b8520a9229317d7da6cbbddb8a715549ca487c04af5f9eb425019 +SIZE (KDE/applications/19.08.2/kwordquiz-19.08.2.tar.xz) = 4174044 Index: head/misc/libkeduvocdocument/distinfo =================================================================== --- head/misc/libkeduvocdocument/distinfo (revision 514560) +++ head/misc/libkeduvocdocument/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537276 -SHA256 (KDE/applications/19.08.1/libkeduvocdocument-19.08.1.tar.xz) = 9e7eb36b0c649231a792f618b28fd110b3782ea086cce81436191e9f73c6674e -SIZE (KDE/applications/19.08.1/libkeduvocdocument-19.08.1.tar.xz) = 211212 +TIMESTAMP = 1570544567 +SHA256 (KDE/applications/19.08.2/libkeduvocdocument-19.08.2.tar.xz) = 74338cb3fcb9346a981585484f758aabd372d1a43afe9facd93d94c229424250 +SIZE (KDE/applications/19.08.2/libkeduvocdocument-19.08.2.tar.xz) = 210732 Index: head/misc/parley/distinfo =================================================================== --- head/misc/parley/distinfo (revision 514560) +++ head/misc/parley/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537287 -SHA256 (KDE/applications/19.08.1/parley-19.08.1.tar.xz) = 6ee4d538ddaecd5b6c3d855db62a4b5061240b2089b3dcc592712398fd1d066b -SIZE (KDE/applications/19.08.1/parley-19.08.1.tar.xz) = 8831116 +TIMESTAMP = 1570544588 +SHA256 (KDE/applications/19.08.2/parley-19.08.2.tar.xz) = 1201945d55657d6b89e309220edb1a60a61debf0bbf59b508d1c0a21a8dc407e +SIZE (KDE/applications/19.08.2/parley-19.08.2.tar.xz) = 8831840 Index: head/multimedia/dragon/distinfo =================================================================== --- head/multimedia/dragon/distinfo (revision 514560) +++ head/multimedia/dragon/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537287 -SHA256 (KDE/applications/19.08.1/dragon-19.08.1.tar.xz) = b015dbba4b8278a4987164f12a9d9e42745d2eb1772da8b8b0c849b28ba03c90 -SIZE (KDE/applications/19.08.1/dragon-19.08.1.tar.xz) = 1351996 +TIMESTAMP = 1570544588 +SHA256 (KDE/applications/19.08.2/dragon-19.08.2.tar.xz) = 3924dba504f370415c0d68cb5079acfc941aa761e9d9d2df2ea48b302ef9ce61 +SIZE (KDE/applications/19.08.2/dragon-19.08.2.tar.xz) = 1351332 Index: head/multimedia/kamoso/distinfo =================================================================== --- head/multimedia/kamoso/distinfo (revision 514560) +++ head/multimedia/kamoso/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537297 -SHA256 (KDE/applications/19.08.1/kamoso-19.08.1.tar.xz) = 76d7a9ea70646f8e86e912b72bd9f9ab42711f0cd53c7bed1403a274de036675 -SIZE (KDE/applications/19.08.1/kamoso-19.08.1.tar.xz) = 201564 +TIMESTAMP = 1570544609 +SHA256 (KDE/applications/19.08.2/kamoso-19.08.2.tar.xz) = 2b84b3b3fb7f423bbe69716114563f018e02d63ce7b9b85084d098123e4e29b8 +SIZE (KDE/applications/19.08.2/kamoso-19.08.2.tar.xz) = 201724 Index: head/multimedia/kdemultimedia-ffmpegthumbs/distinfo =================================================================== --- head/multimedia/kdemultimedia-ffmpegthumbs/distinfo (revision 514560) +++ head/multimedia/kdemultimedia-ffmpegthumbs/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537298 -SHA256 (KDE/applications/19.08.1/ffmpegthumbs-19.08.1.tar.xz) = 527ef798db833e71e2faf315fc89596716bd2bd7d11c78bc1bb2ef9b1549a71b -SIZE (KDE/applications/19.08.1/ffmpegthumbs-19.08.1.tar.xz) = 25164 +TIMESTAMP = 1570544610 +SHA256 (KDE/applications/19.08.2/ffmpegthumbs-19.08.2.tar.xz) = deba57ff10525efdf404401f6b605c1be0f02ec0bfe00465e080b42dc379d570 +SIZE (KDE/applications/19.08.2/ffmpegthumbs-19.08.2.tar.xz) = 24920 Index: head/multimedia/kdenlive/Makefile =================================================================== --- head/multimedia/kdenlive/Makefile (revision 514560) +++ head/multimedia/kdenlive/Makefile (revision 514561) @@ -1,77 +1,76 @@ # $FreeBSD$ PORTNAME= kdenlive -PORTREVISION= 4 # NOTE KDE_APPLICATIONS_VERSION is set explicitly in this port, not 19.08 DISTVERSION= ${KDE_APPLICATIONS_VERSION} CATEGORIES= multimedia kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE professional quality non-linear video editing suite LICENSE= GPLv2 LIB_DEPENDS= libmlt.so:multimedia/mlt BUILD_DEPENDS= ${LOCALBASE}/include/linux/input.h:devel/evdev-proto \ ${LOCALBASE}/include/linux/videodev2.h:multimedia/v4l_compat RUN_DEPENDS= ffmpeg${FFMPEG_SUFX}:multimedia/ffmpeg${FFMPEG_SUFX} \ ${LOCALBASE}/lib/mlt/libmltqt.so:multimedia/mlt-qt5 USES= cmake compiler:c++11-lang desktop-file-utils gettext-tools pkgconfig \ qt:5 shared-mime-info kde:5 tar:xz USE_GL= gl glu USE_KDE= archive attica auth bookmarks codecs completion config \ configwidgets coreaddons crash dbusaddons ecm filemetadata \ guiaddons i18n iconthemes kio itemviews jobwidgets newstuff \ notifications notifyconfig service solid sonnet textwidgets \ widgetsaddons xmlgui \ init_run USE_QT= concurrent core dbus declarative gui network xml \ buildtools_build qmake_build \ quickcontrols_run script svg webkit widgets USE_XORG= x11 CFLAGS+= -I${LOCALBASE}/include # linux/input.h CMAKE_ARGS= -DFFMPEG_SUFFIX:STRING="${FFMPEG_SUFX}" # Keep in sync with multimedia/mlt, possibly. FFMPEG_SUFX= # Currently empty. OPTIONS_DEFINE= DVDWIZARD FILESHARE FREI0R LADSPA SCREENCAST V4L XINE DOCS OPTIONS_DEFAULT=DVDWIZARD FILESHARE FREI0R SCREENCAST V4L XINE # As long as LADSPA -> audio/swhplugins is i386/amd64-only OPTIONS_DEFAULT_amd64= LADSPA OPTIONS_DEFAULT_i386= LADSPA OPTIONS_SUB= yes DVDWIZARD_DESC= DVD authoring via DVDAuthor and cdrtools FILESHARE_DESC= Common KF5 filesharing support SCREENCAST_DESC=Screen capture support via recordMyDesktop V4L_DESC= Webcam support via Video4Linux XINE_DESC= DVD preview support via xine DVDWIZARD_RUN_DEPENDS= dvdauthor:multimedia/dvdauthor \ cdrecord:sysutils/cdrtools FILESHARE_USE= KDE=purpose FILESHARE_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_KF5Purpose FREI0R_RUN_DEPENDS= frei0r-plugins>=0:graphics/frei0r-plugins LADSPA_RUN_DEPENDS= swhplugins>=0:audio/swhplugins SCREENCAST_RUN_DEPENDS= recordmydesktop:multimedia/recordmydesktop V4L_LIB_DEPENDS= libv4l2.so:multimedia/libv4l V4L_CMAKE_OFF= -DWITH_LibV4L2:BOOL=FALSE XINE_RUN_DEPENDS= xine:multimedia/xine # kdenlive 19.04 has some issues that still need to be sorted out. KDE_APPLICATIONS_VERSION= 18.12.3 post-patch: @${REINPLACE_CMD} -e '/^update_xdg_mimetypes/ d' \ -e '/SharedMimeInfo/ d' \ ${PATCH_WRKSRC}/data/CMakeLists.txt .include Index: head/net/akonadi-calendar/distinfo =================================================================== --- head/net/akonadi-calendar/distinfo (revision 514560) +++ head/net/akonadi-calendar/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537324 -SHA256 (KDE/applications/19.08.1/akonadi-calendar-19.08.1.tar.xz) = 5e8c66d4c86e6458469dbb393458ee8b5e6afc1b4712ce8395709d4226864d6c -SIZE (KDE/applications/19.08.1/akonadi-calendar-19.08.1.tar.xz) = 331352 +TIMESTAMP = 1570544662 +SHA256 (KDE/applications/19.08.2/akonadi-calendar-19.08.2.tar.xz) = 5beba24af485c8dae96944e4b5bd570460eb2868ba069580c2e5d784be38a3c8 +SIZE (KDE/applications/19.08.2/akonadi-calendar-19.08.2.tar.xz) = 332664 Index: head/net/akonadi-contacts/distinfo =================================================================== --- head/net/akonadi-contacts/distinfo (revision 514560) +++ head/net/akonadi-contacts/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537324 -SHA256 (KDE/applications/19.08.1/akonadi-contacts-19.08.1.tar.xz) = f182883b4cc16034a798feb966df268e84d9c5b8d3c6e14d5698f7ead85a21d7 -SIZE (KDE/applications/19.08.1/akonadi-contacts-19.08.1.tar.xz) = 385060 +TIMESTAMP = 1570544663 +SHA256 (KDE/applications/19.08.2/akonadi-contacts-19.08.2.tar.xz) = eafeb550faea91a56109821864eedfbd619dc7850887746d31c1724ea7561920 +SIZE (KDE/applications/19.08.2/akonadi-contacts-19.08.2.tar.xz) = 384864 Index: head/net/akonadi-mime/distinfo =================================================================== --- head/net/akonadi-mime/distinfo (revision 514560) +++ head/net/akonadi-mime/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537325 -SHA256 (KDE/applications/19.08.1/akonadi-mime-19.08.1.tar.xz) = 0a4f4652a665229b290431adb59940890effba0804fe33a0e79a24322f90b35c -SIZE (KDE/applications/19.08.1/akonadi-mime-19.08.1.tar.xz) = 132536 +TIMESTAMP = 1570544664 +SHA256 (KDE/applications/19.08.2/akonadi-mime-19.08.2.tar.xz) = 16f8034d7990828c50a85474fe16641dfa46e22d00f49d8045d3483c61815264 +SIZE (KDE/applications/19.08.2/akonadi-mime-19.08.2.tar.xz) = 132580 Index: head/net/akonadi-notes/distinfo =================================================================== --- head/net/akonadi-notes/distinfo (revision 514560) +++ head/net/akonadi-notes/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537325 -SHA256 (KDE/applications/19.08.1/akonadi-notes-19.08.1.tar.xz) = 44896f17fc2f625f9fc8c77690acd787291c5e08e8261c5d113c94045bd5bdd8 -SIZE (KDE/applications/19.08.1/akonadi-notes-19.08.1.tar.xz) = 24488 +TIMESTAMP = 1570544664 +SHA256 (KDE/applications/19.08.2/akonadi-notes-19.08.2.tar.xz) = 64684c50d06664d8ccda098f8bfa536e861e4938c8f27688ef97653f7788fdde +SIZE (KDE/applications/19.08.2/akonadi-notes-19.08.2.tar.xz) = 24432 Index: head/net/akonadi-search/distinfo =================================================================== --- head/net/akonadi-search/distinfo (revision 514560) +++ head/net/akonadi-search/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537325 -SHA256 (KDE/applications/19.08.1/akonadi-search-19.08.1.tar.xz) = c68387f3452bcd390f1c99549531c72d95db0def29d8ba10330e68891b0d0b53 -SIZE (KDE/applications/19.08.1/akonadi-search-19.08.1.tar.xz) = 82456 +TIMESTAMP = 1570544665 +SHA256 (KDE/applications/19.08.2/akonadi-search-19.08.2.tar.xz) = 75c9713b84a03c60a68ff36652decbf57f4f56a0fb39579f53e7ed80a5ee8525 +SIZE (KDE/applications/19.08.2/akonadi-search-19.08.2.tar.xz) = 82744 Index: head/net/calendarsupport/Makefile =================================================================== --- head/net/calendarsupport/Makefile (revision 514560) +++ head/net/calendarsupport/Makefile (revision 514561) @@ -1,29 +1,28 @@ # $FreeBSD$ PORTNAME= calendarsupport DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= net kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Calendar support libraries for KDEPim LICENSE= LGPL21 LIB_DEPENDS= libboost_system.so:devel/boost-libs USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs completion config configwidgets coreaddons ecm \ guiaddons i18n iconthemes itemmodels jobwidgets kio service \ widgetsaddons # pim components USE_KDE+= akonadi akonadicalendar calendarcore calendarutils holidays \ identitymanagement kdepim-apps-libs mime pimcommon pimtextedit USE_QT= concurrent core dbus gui network printsupport testlib uitools \ widgets xml \ buildtools_build qmake_build USE_LDCONFIG= yes OPTIONS_DEFINE= DOCS .include Index: head/net/calendarsupport/distinfo =================================================================== --- head/net/calendarsupport/distinfo (revision 514560) +++ head/net/calendarsupport/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537326 -SHA256 (KDE/applications/19.08.1/calendarsupport-19.08.1.tar.xz) = 74d1b19a924f2aad7f5a034a7e3b11f2ed5bb94cd21458f0255a64ac6163de97 -SIZE (KDE/applications/19.08.1/calendarsupport-19.08.1.tar.xz) = 645736 +TIMESTAMP = 1570544666 +SHA256 (KDE/applications/19.08.2/calendarsupport-19.08.2.tar.xz) = 9ae448463ca60e075f1ea9a22489f0acf6ea672c00f9bd7b49027e548e82c2af +SIZE (KDE/applications/19.08.2/calendarsupport-19.08.2.tar.xz) = 646644 Index: head/net/eventviews/Makefile =================================================================== --- head/net/eventviews/Makefile (revision 514560) +++ head/net/eventviews/Makefile (revision 514561) @@ -1,29 +1,28 @@ # $FreeBSD$ PORTNAME= eventviews DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= net kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Event view libriares for KDEPim LICENSE= LGPL21 LIB_DEPENDS= libKGantt.so:graphics/kdiagram \ libboost_system.so:devel/boost-libs USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs completion config configwidgets coreaddons ecm \ guiaddons i18n iconthemes itemmodels service widgetsaddons # pim components USE_KDE+= akonadi akonadicalendar akonadicontacts calendarcore \ calendarsupport calendarutils contacts holidays identitymanagement \ libkdepim mime pimtextedit USE_QT= core gui printsupport testlib uitools widgets xml \ buildtools_build qmake_build USE_LDCONFIG= yes OPTIONS_DEFINE= DOCS .include Index: head/net/eventviews/distinfo =================================================================== --- head/net/eventviews/distinfo (revision 514560) +++ head/net/eventviews/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537326 -SHA256 (KDE/applications/19.08.1/eventviews-19.08.1.tar.xz) = a44d82e774017171f2eef3ef94b3c5b2765ce08fab5eec0a87b286fd5ea815f7 -SIZE (KDE/applications/19.08.1/eventviews-19.08.1.tar.xz) = 443044 +TIMESTAMP = 1570544666 +SHA256 (KDE/applications/19.08.2/eventviews-19.08.2.tar.xz) = 48da7f85c86bcc7a64d475c5bbcbb531471e70cfc9f4bda76030280f0671132d +SIZE (KDE/applications/19.08.2/eventviews-19.08.2.tar.xz) = 443016 Index: head/net/incidenceeditor/Makefile =================================================================== --- head/net/incidenceeditor/Makefile (revision 514560) +++ head/net/incidenceeditor/Makefile (revision 514561) @@ -1,32 +1,31 @@ # $FreeBSD$ PORTNAME= incidenceeditor DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= net kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Incidence editor libriares for KDEPim LICENSE= LGPL21 LIB_DEPENDS= libKGantt.so:graphics/kdiagram \ libboost_system.so:devel/boost-libs USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs completion config configwidgets coreaddons ecm \ i18n iconthemes itemmodels jobwidgets kio service sonnet \ textwidgets wallet widgetsaddons xmlgui # pim components USE_KDE+= akonadi akonadicalendar akonadicontacts akonadimime calendarcore calendarsupport calendarutils \ contacts eventviews identitymanagement kdepim-apps-libs ldap \ libkdepim mailtransport mime pimtextedit USE_QT= concurrent core dbus gui network printsupport testlib uitools \ webkit widgets xml \ buildtools_build qmake_build USE_LDCONFIG= yes OPTIONS_DEFINE= DOCS .include Index: head/net/incidenceeditor/distinfo =================================================================== --- head/net/incidenceeditor/distinfo (revision 514560) +++ head/net/incidenceeditor/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537326 -SHA256 (KDE/applications/19.08.1/incidenceeditor-19.08.1.tar.xz) = 591781da9b3bc4b0f366ffa8de658aa31f48e1f435a434669b7c11b5f3a55403 -SIZE (KDE/applications/19.08.1/incidenceeditor-19.08.1.tar.xz) = 549960 +TIMESTAMP = 1570544667 +SHA256 (KDE/applications/19.08.2/incidenceeditor-19.08.2.tar.xz) = f2f7bf3a12af21e6f9e4a5f2ba93346e06a6988366af7b452d6268ac9fb4fc3d +SIZE (KDE/applications/19.08.2/incidenceeditor-19.08.2.tar.xz) = 549804 Index: head/net/kalarmcal/distinfo =================================================================== --- head/net/kalarmcal/distinfo (revision 514560) +++ head/net/kalarmcal/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537327 -SHA256 (KDE/applications/19.08.1/kalarmcal-19.08.1.tar.xz) = add9ee09287491236c9a25cfcb32d437845d094d8fef3682954f561dc2917984 -SIZE (KDE/applications/19.08.1/kalarmcal-19.08.1.tar.xz) = 573124 +TIMESTAMP = 1570544668 +SHA256 (KDE/applications/19.08.2/kalarmcal-19.08.2.tar.xz) = 4dc6e1cd8a9cbf6e3f8e593e68ef6fa912819ece56efa64852ab33e3f582e6b7 +SIZE (KDE/applications/19.08.2/kalarmcal-19.08.2.tar.xz) = 573868 Index: head/net/kblog/distinfo =================================================================== --- head/net/kblog/distinfo (revision 514560) +++ head/net/kblog/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537327 -SHA256 (KDE/applications/19.08.1/kblog-19.08.1.tar.xz) = e1926ebfb352f6b8c35963fdece240b03be8d3ec094cee46ba694e2869c85cae -SIZE (KDE/applications/19.08.1/kblog-19.08.1.tar.xz) = 72876 +TIMESTAMP = 1570544668 +SHA256 (KDE/applications/19.08.2/kblog-19.08.2.tar.xz) = f4d9017d38746b9669efebf5b6cfdc5ebf1cbaf1bbf45ab331530ade3c21cbb5 +SIZE (KDE/applications/19.08.2/kblog-19.08.2.tar.xz) = 73068 Index: head/net/kcalcore/distinfo =================================================================== --- head/net/kcalcore/distinfo (revision 514560) +++ head/net/kcalcore/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537327 -SHA256 (KDE/applications/19.08.1/kcalcore-19.08.1.tar.xz) = 8c1bbd8e7673907de2c3682cbc1c4fe4a165cbe0b9a2fe399c4b0ae73894228a -SIZE (KDE/applications/19.08.1/kcalcore-19.08.1.tar.xz) = 246396 +TIMESTAMP = 1570544669 +SHA256 (KDE/applications/19.08.2/kcalcore-19.08.2.tar.xz) = f7d33ec65cf954a0460258694ecb2e14bf6c00cee5ea9fdc3e015e78947d896a +SIZE (KDE/applications/19.08.2/kcalcore-19.08.2.tar.xz) = 248956 Index: head/net/kcalutils/distinfo =================================================================== --- head/net/kcalutils/distinfo (revision 514560) +++ head/net/kcalutils/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537328 -SHA256 (KDE/applications/19.08.1/kcalutils-19.08.1.tar.xz) = b0f17fd7ced68d03666038ee97e6ca96bd504fc8b7f0ae9b53443cefb57558d7 -SIZE (KDE/applications/19.08.1/kcalutils-19.08.1.tar.xz) = 323668 +TIMESTAMP = 1570544670 +SHA256 (KDE/applications/19.08.2/kcalutils-19.08.2.tar.xz) = 3f789a18348152f9fc70965dbc2e9a8bd0ba872968c3d0631afacd0e78d3ce13 +SIZE (KDE/applications/19.08.2/kcalutils-19.08.2.tar.xz) = 322940 Index: head/net/kcontacts/distinfo =================================================================== --- head/net/kcontacts/distinfo (revision 514560) +++ head/net/kcontacts/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537328 -SHA256 (KDE/applications/19.08.1/kcontacts-19.08.1.tar.xz) = 020177eb155d3df44314e89da1824916d125aab48131fce76c2131b40eae8f39 -SIZE (KDE/applications/19.08.1/kcontacts-19.08.1.tar.xz) = 547208 +TIMESTAMP = 1570544670 +SHA256 (KDE/applications/19.08.2/kcontacts-19.08.2.tar.xz) = 0677177d6810047876a219445232c0bf91dc1cdba3cbe4133a0a7eda98c381e8 +SIZE (KDE/applications/19.08.2/kcontacts-19.08.2.tar.xz) = 547608 Index: head/net/kdav/distinfo =================================================================== --- head/net/kdav/distinfo (revision 514560) +++ head/net/kdav/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537328 -SHA256 (KDE/applications/19.08.1/kdav-19.08.1.tar.xz) = 38f34f39e165ba3a843acbc9efc3296c111a6bfa8c5ba23e1f55f98860b84d41 -SIZE (KDE/applications/19.08.1/kdav-19.08.1.tar.xz) = 50084 +TIMESTAMP = 1570544671 +SHA256 (KDE/applications/19.08.2/kdav-19.08.2.tar.xz) = 8572a77ee3d0f8a7e09e4975fcf0420394c16e908c4a19aecc409415770595f9 +SIZE (KDE/applications/19.08.2/kdav-19.08.2.tar.xz) = 50108 Index: head/net/kdenetwork-filesharing/distinfo =================================================================== --- head/net/kdenetwork-filesharing/distinfo (revision 514560) +++ head/net/kdenetwork-filesharing/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537329 -SHA256 (KDE/applications/19.08.1/kdenetwork-filesharing-19.08.1.tar.xz) = b7d229d06926ad53dcffd4508fde70060260a03cdfc6b59551f5ea551274bdac -SIZE (KDE/applications/19.08.1/kdenetwork-filesharing-19.08.1.tar.xz) = 315280 +TIMESTAMP = 1570544672 +SHA256 (KDE/applications/19.08.2/kdenetwork-filesharing-19.08.2.tar.xz) = ceffdaabd3417db306c05ecd6a62b521d0b3eb5996d320d65ae5c51ea46bfdda +SIZE (KDE/applications/19.08.2/kdenetwork-filesharing-19.08.2.tar.xz) = 315516 Index: head/net/kget/distinfo =================================================================== --- head/net/kget/distinfo (revision 514560) +++ head/net/kget/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537329 -SHA256 (KDE/applications/19.08.1/kget-19.08.1.tar.xz) = ecc9cc31f23304baa8c909335db57460460db27fbffb97438c1ed12703c6b9b9 -SIZE (KDE/applications/19.08.1/kget-19.08.1.tar.xz) = 5236100 +TIMESTAMP = 1570544673 +SHA256 (KDE/applications/19.08.2/kget-19.08.2.tar.xz) = e93795eec8f51cac2719ab31cfa6f5f4f642b166ffbb3f876ab3c866a4cd7df1 +SIZE (KDE/applications/19.08.2/kget-19.08.2.tar.xz) = 5232168 Index: head/net/kidentitymanagement/distinfo =================================================================== --- head/net/kidentitymanagement/distinfo (revision 514560) +++ head/net/kidentitymanagement/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537330 -SHA256 (KDE/applications/19.08.1/kidentitymanagement-19.08.1.tar.xz) = 3ff41eddf047fb1074473fd028b22ddd0fb467c062918148305f10c2fd74f42e -SIZE (KDE/applications/19.08.1/kidentitymanagement-19.08.1.tar.xz) = 148988 +TIMESTAMP = 1570544673 +SHA256 (KDE/applications/19.08.2/kidentitymanagement-19.08.2.tar.xz) = 8f93f9546d570c8f7b2602a3a171641d488595ec8da3c47b0a08ef4f5083e884 +SIZE (KDE/applications/19.08.2/kidentitymanagement-19.08.2.tar.xz) = 149220 Index: head/net/kimap/Makefile =================================================================== --- head/net/kimap/Makefile (revision 514560) +++ head/net/kimap/Makefile (revision 514561) @@ -1,28 +1,27 @@ # $FreeBSD$ PORTNAME= kimap DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= net kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE API for IMAP support LICENSE= LGPL21 LIB_DEPENDS= libboost_system.so:devel/boost-libs \ libsasl2.so:security/cyrus-sasl2 USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= codecs config coreaddons ecm i18n kdelibs4support kio service # pim components USE_KDE+= mime USE_QT= concurrent core dbus network \ buildtools_build qmake_build USE_LDCONFIG= yes DESCR= ${.CURDIR:H:H}/deskutils/kdepim/pkg-descr OPTIONS_DEFINE= DOCS .include Index: head/net/kimap/distinfo =================================================================== --- head/net/kimap/distinfo (revision 514560) +++ head/net/kimap/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537330 -SHA256 (KDE/applications/19.08.1/kimap-19.08.1.tar.xz) = a4fde0c17fcdbc672b8e7ad6ed727e18b6bc2cc3c7f23857a6b1455d99999bbf -SIZE (KDE/applications/19.08.1/kimap-19.08.1.tar.xz) = 119712 +TIMESTAMP = 1570544674 +SHA256 (KDE/applications/19.08.2/kimap-19.08.2.tar.xz) = 250479c78517610aab810f54184d8826fb981438ec9f0d5c423ad781a796ee00 +SIZE (KDE/applications/19.08.2/kimap-19.08.2.tar.xz) = 119644 Index: head/net/kitinerary/Makefile =================================================================== --- head/net/kitinerary/Makefile (revision 514560) +++ head/net/kitinerary/Makefile (revision 514561) @@ -1,29 +1,28 @@ # $FreeBSD$ PORTNAME= kitinerary DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 2 CATEGORIES= net kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Data Model and Extraction System for Travel Reservation information LICENSE= LGPL21 LIB_DEPENDS= libpoppler.so:graphics/poppler \ libzxing.so:textproc/zxing-cpp USES= compiler:c++11-lang cmake gettext gnome kde:5 pkgconfig qt:5 tar:xz USE_GNOME= libxml2 USE_KDE= coreaddons ecm i18n # Pim components USE_KDE+= calendarcore contacts kpkpass mime USE_QT= core declarative gui network \ buildtools_build qmake_build USE_LDCONFIG= yes DESCR= ${.CURDIR:H:H}/deskutils/kdepim/pkg-descr OPTIONS_DEFINE= DOCS .include Index: head/net/kitinerary/distinfo =================================================================== --- head/net/kitinerary/distinfo (revision 514560) +++ head/net/kitinerary/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537330 -SHA256 (KDE/applications/19.08.1/kitinerary-19.08.1.tar.xz) = f84dafa874c958b335ee80dbe85dce3605b40b83ac9468e6555250da8f480967 -SIZE (KDE/applications/19.08.1/kitinerary-19.08.1.tar.xz) = 952608 +TIMESTAMP = 1570544675 +SHA256 (KDE/applications/19.08.2/kitinerary-19.08.2.tar.xz) = d814a2f1deaadce5fec85b1122aab6ff926c53ca8f020aadc99401bd31597eaa +SIZE (KDE/applications/19.08.2/kitinerary-19.08.2.tar.xz) = 954636 Index: head/net/kldap/distinfo =================================================================== --- head/net/kldap/distinfo (revision 514560) +++ head/net/kldap/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537331 -SHA256 (KDE/applications/19.08.1/kldap-19.08.1.tar.xz) = b6fb822df67449870fb5c0bfe1adb1bd3d44535e3f2186ef6be286e4a590bd54 -SIZE (KDE/applications/19.08.1/kldap-19.08.1.tar.xz) = 155356 +TIMESTAMP = 1570544675 +SHA256 (KDE/applications/19.08.2/kldap-19.08.2.tar.xz) = 79c540693b85c138ae7bf4f72213dfad6dfa48dfc0ab414004d93f15d2ffac6e +SIZE (KDE/applications/19.08.2/kldap-19.08.2.tar.xz) = 155428 Index: head/net/kmailtransport/distinfo =================================================================== --- head/net/kmailtransport/distinfo (revision 514560) +++ head/net/kmailtransport/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537331 -SHA256 (KDE/applications/19.08.1/kmailtransport-19.08.1.tar.xz) = 521bcfd334a0e7e4986e6cebff3bae4095175a11fd45f777da673f1460d733da -SIZE (KDE/applications/19.08.1/kmailtransport-19.08.1.tar.xz) = 166148 +TIMESTAMP = 1570544676 +SHA256 (KDE/applications/19.08.2/kmailtransport-19.08.2.tar.xz) = c545fb5546e82f7dfcea4c6e1a8b565ad04e34851c33876c9bf74c9fbc3165c7 +SIZE (KDE/applications/19.08.2/kmailtransport-19.08.2.tar.xz) = 166500 Index: head/net/kmbox/distinfo =================================================================== --- head/net/kmbox/distinfo (revision 514560) +++ head/net/kmbox/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537332 -SHA256 (KDE/applications/19.08.1/kmbox-19.08.1.tar.xz) = 5fa59ffd16df1ae28f7ebf026f67df708c5b84e54e1ab47fd5de957c5b8fc75e -SIZE (KDE/applications/19.08.1/kmbox-19.08.1.tar.xz) = 24644 +TIMESTAMP = 1570544677 +SHA256 (KDE/applications/19.08.2/kmbox-19.08.2.tar.xz) = 82e2f64b90a1386100e13f9b2afea5d71952a1cb9547f965ddcdb3b8c59c35b1 +SIZE (KDE/applications/19.08.2/kmbox-19.08.2.tar.xz) = 24560 Index: head/net/kmime/Makefile =================================================================== --- head/net/kmime/Makefile (revision 514560) +++ head/net/kmime/Makefile (revision 514561) @@ -1,26 +1,25 @@ # $FreeBSD$ PORTNAME= kmime DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= net kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Library for handling MIME data LICENSE= LGPL21 LIB_DEPENDS= libboost_system.so:devel/boost-libs USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= codecs ecm emoticons i18n init itemmodels itemviews kdelibs4support USE_QT= core \ buildtools_build qmake_build USE_LDCONFIG= yes DESCR= ${.CURDIR:H:H}/deskutils/kdepim/pkg-descr OPTIONS_DEFINE= DOCS .include Index: head/net/kmime/distinfo =================================================================== --- head/net/kmime/distinfo (revision 514560) +++ head/net/kmime/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537332 -SHA256 (KDE/applications/19.08.1/kmime-19.08.1.tar.xz) = e8693458734f11a9d33a4d761f2b5ccae8f9ed87bb1e9dfc97f4bd0fa7089557 -SIZE (KDE/applications/19.08.1/kmime-19.08.1.tar.xz) = 147532 +TIMESTAMP = 1570544677 +SHA256 (KDE/applications/19.08.2/kmime-19.08.2.tar.xz) = f153332bb71de9d4451b8d28135a914059f5156fc8dda33f6375671603477771 +SIZE (KDE/applications/19.08.2/kmime-19.08.2.tar.xz) = 147356 Index: head/net/kontactinterface/distinfo =================================================================== --- head/net/kontactinterface/distinfo (revision 514560) +++ head/net/kontactinterface/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537332 -SHA256 (KDE/applications/19.08.1/kontactinterface-19.08.1.tar.xz) = adb5c380fd73102b84c72ea27975689dc289b0f5c8dd10f86bf0a857e00170be -SIZE (KDE/applications/19.08.1/kontactinterface-19.08.1.tar.xz) = 33088 +TIMESTAMP = 1570544678 +SHA256 (KDE/applications/19.08.2/kontactinterface-19.08.2.tar.xz) = cbd34915ddf6fbcf02395f7c876050f2b732f3769627489f04979e419cfdc869 +SIZE (KDE/applications/19.08.2/kontactinterface-19.08.2.tar.xz) = 33188 Index: head/net/kpimtextedit/distinfo =================================================================== --- head/net/kpimtextedit/distinfo (revision 514560) +++ head/net/kpimtextedit/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537333 -SHA256 (KDE/applications/19.08.1/kpimtextedit-19.08.1.tar.xz) = f7e0dc9c706c94fa74a561d42d41246eae57f60c03da1ec52f2311172052d7fe -SIZE (KDE/applications/19.08.1/kpimtextedit-19.08.1.tar.xz) = 154964 +TIMESTAMP = 1570544678 +SHA256 (KDE/applications/19.08.2/kpimtextedit-19.08.2.tar.xz) = e565774d77f310165fc44c8b109ef835aae82a2f763d89d1ffb6e5b820cd850d +SIZE (KDE/applications/19.08.2/kpimtextedit-19.08.2.tar.xz) = 155012 Index: head/net/krdc/distinfo =================================================================== --- head/net/krdc/distinfo (revision 514560) +++ head/net/krdc/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537333 -SHA256 (KDE/applications/19.08.1/krdc-19.08.1.tar.xz) = 319bccbc3c3274b89ae58679d063a303df4b95504b1bef97f925da70a0fbcbde -SIZE (KDE/applications/19.08.1/krdc-19.08.1.tar.xz) = 1422288 +TIMESTAMP = 1570544679 +SHA256 (KDE/applications/19.08.2/krdc-19.08.2.tar.xz) = c5e6193115afe742f25365bacb55aea21428acf38407659f77636217c589d8ff +SIZE (KDE/applications/19.08.2/krdc-19.08.2.tar.xz) = 1421932 Index: head/net/krfb/distinfo =================================================================== --- head/net/krfb/distinfo (revision 514560) +++ head/net/krfb/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537343 -SHA256 (KDE/applications/19.08.1/krfb-19.08.1.tar.xz) = 3abe42f6e648f171fa38652fe03184725d1abcccf16bf1c1039ebada1f3c64c3 -SIZE (KDE/applications/19.08.1/krfb-19.08.1.tar.xz) = 1277356 +TIMESTAMP = 1570544700 +SHA256 (KDE/applications/19.08.2/krfb-19.08.2.tar.xz) = 08877020abf6b7ac38e393443c34e7791456fc5bea8c43c552551148fd67b67e +SIZE (KDE/applications/19.08.2/krfb-19.08.2.tar.xz) = 1277268 Index: head/net/ksmtp/distinfo =================================================================== --- head/net/ksmtp/distinfo (revision 514560) +++ head/net/ksmtp/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537344 -SHA256 (KDE/applications/19.08.1/ksmtp-19.08.1.tar.xz) = 71401abcbb6aedd2845c84bca65f77297722b3414f4d4caeaa6ac6b8f2edc46c -SIZE (KDE/applications/19.08.1/ksmtp-19.08.1.tar.xz) = 40536 +TIMESTAMP = 1570544700 +SHA256 (KDE/applications/19.08.2/ksmtp-19.08.2.tar.xz) = 0d1308fd01f7261e78bedb465983be2ccf5a1514cfa31125e0a3488f67ab6590 +SIZE (KDE/applications/19.08.2/ksmtp-19.08.2.tar.xz) = 40444 Index: head/net/ktnef/distinfo =================================================================== --- head/net/ktnef/distinfo (revision 514560) +++ head/net/ktnef/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537344 -SHA256 (KDE/applications/19.08.1/ktnef-19.08.1.tar.xz) = bab23e40af2fe5ba2dd0be71687fbdd56d0868f2ef2a399721da88b12c65764f -SIZE (KDE/applications/19.08.1/ktnef-19.08.1.tar.xz) = 299668 +TIMESTAMP = 1570544701 +SHA256 (KDE/applications/19.08.2/ktnef-19.08.2.tar.xz) = d8efabe72eedd5e89f3de9637a1a6d68ce670ec071e031470aa6852f9ad8561d +SIZE (KDE/applications/19.08.2/ktnef-19.08.2.tar.xz) = 299312 Index: head/net/libgravatar/distinfo =================================================================== --- head/net/libgravatar/distinfo (revision 514560) +++ head/net/libgravatar/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537344 -SHA256 (KDE/applications/19.08.1/libgravatar-19.08.1.tar.xz) = d39d6970b5113b2b805b048ca9b14770ab16d59c8ec755b0c5f6d4f7d6df73a2 -SIZE (KDE/applications/19.08.1/libgravatar-19.08.1.tar.xz) = 30896 +TIMESTAMP = 1570544702 +SHA256 (KDE/applications/19.08.2/libgravatar-19.08.2.tar.xz) = 393370a9d7d4a74627469b2e67bb3f7a0ef73dac8b11a3ab5af6c384c20a0de5 +SIZE (KDE/applications/19.08.2/libgravatar-19.08.2.tar.xz) = 31012 Index: head/net/libkgapi/distinfo =================================================================== --- head/net/libkgapi/distinfo (revision 514560) +++ head/net/libkgapi/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537345 -SHA256 (KDE/applications/19.08.1/libkgapi-19.08.1.tar.xz) = 1ad2491348cc97f591aa681f7a649f2337c9a92e845980304c1110c69eecd579 -SIZE (KDE/applications/19.08.1/libkgapi-19.08.1.tar.xz) = 235536 +TIMESTAMP = 1570544703 +SHA256 (KDE/applications/19.08.2/libkgapi-19.08.2.tar.xz) = b220908dd4a21e589a25b964b7786f1154f63ca98bf90c43ced3120adf4fb0a6 +SIZE (KDE/applications/19.08.2/libkgapi-19.08.2.tar.xz) = 234956 Index: head/net/libksieve/Makefile =================================================================== --- head/net/libksieve/Makefile (revision 514560) +++ head/net/libksieve/Makefile (revision 514561) @@ -1,33 +1,32 @@ # $FreeBSD$ PORTNAME= libksieve DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= net kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Sieve libriares for KDEPim LICENSE= LGPL21 LIB_DEPENDS= libboost_system.so:devel/boost-libs \ libsasl2.so:security/cyrus-sasl2 USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= archive attica auth codecs completion config configwidgets \ coreaddons ecm i18n iconthemes jobwidgets kio newstuff service \ sonnet syntaxhighlighting wallet widgetsaddons windowsystem xmlgui # pim components USE_KDE+= akonadi identitymanagement libkdepim mailtransport mime \ pimcommon pimtextedit USE_QT= concurrent core dbus declarative gui location network printsupport testlib \ uitools webchannel webengine widgets xml \ buildtools_build qmake_build USE_LDCONFIG= yes DESCR= ${.CURDIR:H:H}/deskutils/kdepim/pkg-descr OPTIONS_DEFINE= DOCS .include Index: head/net/libksieve/distinfo =================================================================== --- head/net/libksieve/distinfo (revision 514560) +++ head/net/libksieve/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537345 -SHA256 (KDE/applications/19.08.1/libksieve-19.08.1.tar.xz) = ab384877148710e7de92e88a192f52beaad667804bbc641b63c21cfdaa0aee31 -SIZE (KDE/applications/19.08.1/libksieve-19.08.1.tar.xz) = 551404 +TIMESTAMP = 1570544703 +SHA256 (KDE/applications/19.08.2/libksieve-19.08.2.tar.xz) = 5c5bb9182e53a2a928d70985f6dd514c8b308891c4899b942784e80d221318f6 +SIZE (KDE/applications/19.08.2/libksieve-19.08.2.tar.xz) = 549824 Index: head/net/mailcommon/Makefile =================================================================== --- head/net/mailcommon/Makefile (revision 514560) +++ head/net/mailcommon/Makefile (revision 514561) @@ -1,36 +1,35 @@ # $FreeBSD$ PORTNAME= mailcommon DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= net kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Common libriares for KDEPim LICENSE= LGPL21 LIB_DEPENDS= libassuan.so:security/libassuan \ libboost_system.so:devel/boost-libs \ libgpg-error.so:security/libgpg-error \ libgpgme.so:security/gpgme \ libgpgmepp.so:security/gpgme-cpp \ libqgpgme.so:security/gpgme-qt5 USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= archive auth codecs completion config configwidgets coreaddons \ ecm i18n iconthemes itemmodels itemviews jobwidgets kio \ service sonnet syntaxhighlighting textwidgets wallet \ widgetsaddons windowsystem xmlgui # pim components USE_KDE+= akonadi akonadicontacts akonadimime contacts identitymanagement \ imap ldap libkdepim libkleo mailimporter \ mailtransport messagelib mime pimcommon pimtextedit USE_QT= concurrent core dbus network xml designer gui multimedia \ phonon4 testlib uiplugin uitools webkit widgets \ buildtools_build qmake_build USE_LDCONFIG= yes OPTIONS_DEFINE= DOCS .include Index: head/net/mailcommon/distinfo =================================================================== --- head/net/mailcommon/distinfo (revision 514560) +++ head/net/mailcommon/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537345 -SHA256 (KDE/applications/19.08.1/mailcommon-19.08.1.tar.xz) = 3fb6f09ce8bc9ccddfa1420fa1a7c60a47065afdfbb5a30292179efbcebba833 -SIZE (KDE/applications/19.08.1/mailcommon-19.08.1.tar.xz) = 692772 +TIMESTAMP = 1570544704 +SHA256 (KDE/applications/19.08.2/mailcommon-19.08.2.tar.xz) = 39df1544c0278600d5a1a57697835828358ae44203087e29430ce1bd0c355e20 +SIZE (KDE/applications/19.08.2/mailcommon-19.08.2.tar.xz) = 693916 Index: head/net/mailimporter/Makefile =================================================================== --- head/net/mailimporter/Makefile (revision 514560) +++ head/net/mailimporter/Makefile (revision 514561) @@ -1,28 +1,27 @@ # $FreeBSD$ PORTNAME= mailimporter DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= net kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Import mbox files to KMail LICENSE= LGPL21 LIB_DEPENDS= libboost_system.so:devel/boost-libs USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= archive config coreaddons ecm i18n itemmodels # pim components USE_KDE+= akonadi akonadimime libkdepim mime USE_QT= core gui testlib uitools widgets xml \ buildtools_build qmake_build USE_LDCONFIG= yes DESCR= ${.CURDIR:H:H}/deskutils/kdepim/pkg-descr OPTIONS_DEFINE= DOCS .include Index: head/net/mailimporter/distinfo =================================================================== --- head/net/mailimporter/distinfo (revision 514560) +++ head/net/mailimporter/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537346 -SHA256 (KDE/applications/19.08.1/mailimporter-19.08.1.tar.xz) = 4236938a2dca5ea0bc572afbe76ae28fc6ad1e65f383743de98a4e505f674962 -SIZE (KDE/applications/19.08.1/mailimporter-19.08.1.tar.xz) = 540120 +TIMESTAMP = 1570544705 +SHA256 (KDE/applications/19.08.2/mailimporter-19.08.2.tar.xz) = 27780c381919ebc9e6fc0de7021cd03277dd3962d4c4c15770fcf44cd6126814 +SIZE (KDE/applications/19.08.2/mailimporter-19.08.2.tar.xz) = 540380 Index: head/net/messagelib/Makefile =================================================================== --- head/net/messagelib/Makefile (revision 514560) +++ head/net/messagelib/Makefile (revision 514561) @@ -1,43 +1,42 @@ # $FreeBSD$ PORTNAME= messagelib DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= net kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Library for handling messages LICENSE= LGPL21 LIB_DEPENDS= libassuan.so:security/libassuan \ libboost_system.so:devel/boost-libs \ libgpg-error.so:security/libgpg-error \ libgpgme.so:security/gpgme \ libgpgmepp.so:security/gpgme-cpp \ libqgpgme.so:security/gpgme-qt5 USES= cmake compiler:c++11-lib gettext grantlee:5 kde:5 qt:5 tar:xz USE_KDE= archive auth bookmarks codecs completion config configwidgets \ coreaddons ecm i18n iconthemes imap itemmodels itemviews jobwidgets \ kdewebkit kio service solid sonnet syntaxhighlighting \ textwidgets wallet widgetsaddons windowsystem xmlgui # pim components USE_KDE+= akonadi akonadicontacts akonadimime akonadisearch calendarcore \ contacts grantleetheme gravatar identitymanagement \ kdepim-apps-libs ldap libkdepim libkleo mailtransport mbox \ mime pimcommon pimtextedit USE_QT= concurrent core dbus declarative gui location network printsupport testlib \ uitools webchannel webengine widgets xml \ buildtools_build qmake_build USE_LDCONFIG= yes OPTIONS_DEFINE= INOTIFY DOCS OPTIONS_DEFAULT= INOTIFY OPTIONS_SUB= yes INOTIFY_DESC= Filesystem alteration notifications using inotify INOTIFY_LIB_DEPENDS= libinotify.so:devel/libinotify .include Index: head/net/messagelib/distinfo =================================================================== --- head/net/messagelib/distinfo (revision 514560) +++ head/net/messagelib/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537346 -SHA256 (KDE/applications/19.08.1/messagelib-19.08.1.tar.xz) = ec43d913028124a49eaa440e4b55dba23b6ab503728b897a3ad8e1fc5e446802 -SIZE (KDE/applications/19.08.1/messagelib-19.08.1.tar.xz) = 10372528 +TIMESTAMP = 1570544705 +SHA256 (KDE/applications/19.08.2/messagelib-19.08.2.tar.xz) = d761e94d2fa71c2de6a52e0c1756f52f0006ada35711189b343eccdafe0a0390 +SIZE (KDE/applications/19.08.2/messagelib-19.08.2.tar.xz) = 10393260 Index: head/net/pimcommon/Makefile =================================================================== --- head/net/pimcommon/Makefile (revision 514560) +++ head/net/pimcommon/Makefile (revision 514561) @@ -1,33 +1,32 @@ # $FreeBSD$ PORTNAME= pimcommon DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= net kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Common libriares for KDEPim LICENSE= LGPL21 LIB_DEPENDS= libboost_system.so:devel/boost-libs USES= cmake compiler:c++11-lib gettext grantlee:5 kde:5 qt:5 tar:xz USE_KDE= archive attica auth codecs completion config configwidgets \ coreaddons dbusaddons ecm emoticons i18n init iconthemes itemmodels \ jobwidgets kdelibs4support kio newstuff service sonnet textwidgets \ wallet widgetsaddons xmlgui # pim components USE_KDE+= akonadi akonadicontacts contacts imap libkdepim mime \ pimtextedit purpose USE_QT= concurrent core dbus designer gui network printsupport script testlib \ uiplugin uitools webkit widgets xml \ buildtools_build qmake_build USE_LDCONFIG= yes DESCR= ${.CURDIR:H:H}/deskutils/kdepim/pkg-descr OPTIONS_DEFINE= DOCS .include Index: head/net/pimcommon/distinfo =================================================================== --- head/net/pimcommon/distinfo (revision 514560) +++ head/net/pimcommon/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537347 -SHA256 (KDE/applications/19.08.1/pimcommon-19.08.1.tar.xz) = 5956e2767ea88efd73cbefef9cb80d16bb4cb5cb63857975fbb6ead1b984026c -SIZE (KDE/applications/19.08.1/pimcommon-19.08.1.tar.xz) = 293872 +TIMESTAMP = 1570544706 +SHA256 (KDE/applications/19.08.2/pimcommon-19.08.2.tar.xz) = ccdf2624a055a9db31b0b8109c791776d111ae91438f41ed50dcb9faca287e4c +SIZE (KDE/applications/19.08.2/pimcommon-19.08.2.tar.xz) = 293952 Index: head/net/zeroconf-ioslave/distinfo =================================================================== --- head/net/zeroconf-ioslave/distinfo (revision 514560) +++ head/net/zeroconf-ioslave/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537347 -SHA256 (KDE/applications/19.08.1/zeroconf-ioslave-19.08.1.tar.xz) = 0c5f8931dd2997345fc6d3e8ef73c36615a73f8c906fb6be9c27432bc038000a -SIZE (KDE/applications/19.08.1/zeroconf-ioslave-19.08.1.tar.xz) = 39148 +TIMESTAMP = 1570544707 +SHA256 (KDE/applications/19.08.2/zeroconf-ioslave-19.08.2.tar.xz) = 19e31534d1a4503d1dd4bd8ef60cfb48a91ee167dd4b0db99e53b318a355dae0 +SIZE (KDE/applications/19.08.2/zeroconf-ioslave-19.08.2.tar.xz) = 39144 Index: head/net-im/kaccounts-integration/distinfo =================================================================== --- head/net-im/kaccounts-integration/distinfo (revision 514560) +++ head/net-im/kaccounts-integration/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537309 -SHA256 (KDE/applications/19.08.1/kaccounts-integration-19.08.1.tar.xz) = 7436bb0c8e024122d7137971749ef975878dee557befa4b95bc02ce0801a8450 -SIZE (KDE/applications/19.08.1/kaccounts-integration-19.08.1.tar.xz) = 71916 +TIMESTAMP = 1570544632 +SHA256 (KDE/applications/19.08.2/kaccounts-integration-19.08.2.tar.xz) = b422c23eb3eefc3a79c4ccb9360ae6269a86982575e981bb949c0782f1f813ce +SIZE (KDE/applications/19.08.2/kaccounts-integration-19.08.2.tar.xz) = 71768 Index: head/net-im/kaccounts-providers/distinfo =================================================================== --- head/net-im/kaccounts-providers/distinfo (revision 514560) +++ head/net-im/kaccounts-providers/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537309 -SHA256 (KDE/applications/19.08.1/kaccounts-providers-19.08.1.tar.xz) = ce885be3c0d59b7f65373fbadc8ff4510998f9067d3a7c96dc1eb05df78b071b -SIZE (KDE/applications/19.08.1/kaccounts-providers-19.08.1.tar.xz) = 32048 +TIMESTAMP = 1570544632 +SHA256 (KDE/applications/19.08.2/kaccounts-providers-19.08.2.tar.xz) = d5ad6882ff151d2f0cff2b76a83e38cf37c72a0dbdf4a0aff64420903266a309 +SIZE (KDE/applications/19.08.2/kaccounts-providers-19.08.2.tar.xz) = 32104 Index: head/net-im/kopete/distinfo =================================================================== --- head/net-im/kopete/distinfo (revision 514560) +++ head/net-im/kopete/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537320 -SHA256 (KDE/applications/19.08.1/kopete-19.08.1.tar.xz) = c4943c5cbb384eb8697668be2a38dcc0dc16f26485a38c3657658c1cc4dbd2a8 -SIZE (KDE/applications/19.08.1/kopete-19.08.1.tar.xz) = 9384280 +TIMESTAMP = 1570544653 +SHA256 (KDE/applications/19.08.2/kopete-19.08.2.tar.xz) = cf4e4f6ff6dcd6e42a1c3d5339be4a65ed0379ef786155c12cf13f8af339e022 +SIZE (KDE/applications/19.08.2/kopete-19.08.2.tar.xz) = 9350652 Index: head/net-im/ktp-accounts-kcm/distinfo =================================================================== --- head/net-im/ktp-accounts-kcm/distinfo (revision 514560) +++ head/net-im/ktp-accounts-kcm/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537320 -SHA256 (KDE/applications/19.08.1/ktp-accounts-kcm-19.08.1.tar.xz) = 2f76fc870bd7a96540aa91054b3cac38b917f90c129fada86c3639815dfa27a5 -SIZE (KDE/applications/19.08.1/ktp-accounts-kcm-19.08.1.tar.xz) = 264964 +TIMESTAMP = 1570544654 +SHA256 (KDE/applications/19.08.2/ktp-accounts-kcm-19.08.2.tar.xz) = 7995813bc983c80b200cddf6b0f55fa8c48be3297ee03e3e0a7601cbc86b8dd8 +SIZE (KDE/applications/19.08.2/ktp-accounts-kcm-19.08.2.tar.xz) = 264680 Index: head/net-im/ktp-approver/distinfo =================================================================== --- head/net-im/ktp-approver/distinfo (revision 514560) +++ head/net-im/ktp-approver/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537320 -SHA256 (KDE/applications/19.08.1/ktp-approver-19.08.1.tar.xz) = a446c23836f6e38bb739246595cf1773f4909279cf1522b96ccd6626ba36430a -SIZE (KDE/applications/19.08.1/ktp-approver-19.08.1.tar.xz) = 37396 +TIMESTAMP = 1570544655 +SHA256 (KDE/applications/19.08.2/ktp-approver-19.08.2.tar.xz) = 74670d519578486e05237f5085a51fe0a8ce833be413c06702f38b27b27913ec +SIZE (KDE/applications/19.08.2/ktp-approver-19.08.2.tar.xz) = 37356 Index: head/net-im/ktp-auth-handler/distinfo =================================================================== --- head/net-im/ktp-auth-handler/distinfo (revision 514560) +++ head/net-im/ktp-auth-handler/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537321 -SHA256 (KDE/applications/19.08.1/ktp-auth-handler-19.08.1.tar.xz) = 9a86ce184596cd54b914a7ff0424cadbee24b98f00b8736380e4153ee8596f64 -SIZE (KDE/applications/19.08.1/ktp-auth-handler-19.08.1.tar.xz) = 46424 +TIMESTAMP = 1570544655 +SHA256 (KDE/applications/19.08.2/ktp-auth-handler-19.08.2.tar.xz) = b13304909d8e66adc2a0658081fd41e72b0ef7513e041b9a8f3261a8ffd7bb22 +SIZE (KDE/applications/19.08.2/ktp-auth-handler-19.08.2.tar.xz) = 46492 Index: head/net-im/ktp-call-ui/Makefile =================================================================== --- head/net-im/ktp-call-ui/Makefile (revision 514560) +++ head/net-im/ktp-call-ui/Makefile (revision 514561) @@ -1,37 +1,36 @@ # $FreeBSD$ PORTNAME= ktp-call-ui DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= net-im kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Voice/Video Call UI for Telepathy LICENSE= GPLv2+ LGPL21+ LICENSE_COMB= multi LICENSE_FILE_GPLv2+ = ${WRKSRC}/COPYING LICENSE_FILE_LGPL21+ = ${WRKSRC}/COPYING.LIB LIB_DEPENDS= libKTpCommonInternals.so:net-im/ktp-common-internals \ libQt5GStreamer-1.0.so:multimedia/gstreamer1-qt \ libboost_thread.so:devel/boost-libs \ libfarstream-0.2.so:net-im/farstream \ libtelepathy-farstream.so:net-im/telepathy-farstream \ libtelepathy-glib.so:net-im/telepathy-glib \ libtelepathy-qt5-farstream.so:net-im/telepathy-qt USES= cmake compiler:c++11-lang gettext gnome kde:5 pkgconfig \ python:2.7 qt:5 tar:xz USE_GNOME= glib20 USE_GSTREAMER1= yes USE_KDE= auth codecs config configwidgets coreaddons ecm iconthemes \ i18n kcmutils kdeclarative notifications package service \ wallet widgetsaddons xmlgui USE_QT= core dbus declarative gui network widgets xml \ buildtools_build qmake_build USE_LDCONFIG= yes OPTIONS_DEFINE= DOCS .include Index: head/net-im/ktp-call-ui/distinfo =================================================================== --- head/net-im/ktp-call-ui/distinfo (revision 514560) +++ head/net-im/ktp-call-ui/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537321 -SHA256 (KDE/applications/19.08.1/ktp-call-ui-19.08.1.tar.xz) = bab48fcdc4f4a7becfeca99dbe9061b9d08a510f94548c6ebdf720100ddb5a4c -SIZE (KDE/applications/19.08.1/ktp-call-ui-19.08.1.tar.xz) = 96980 +TIMESTAMP = 1570544656 +SHA256 (KDE/applications/19.08.2/ktp-call-ui-19.08.2.tar.xz) = 0d735c34f937a436e82e994c9d60b851473d31b3dc07f1d2ec7eeeab63b83658 +SIZE (KDE/applications/19.08.2/ktp-call-ui-19.08.2.tar.xz) = 97152 Index: head/net-im/ktp-common-internals/distinfo =================================================================== --- head/net-im/ktp-common-internals/distinfo (revision 514560) +++ head/net-im/ktp-common-internals/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537321 -SHA256 (KDE/applications/19.08.1/ktp-common-internals-19.08.1.tar.xz) = 985d55a259df9cb0593db50ac88bd5d3ab155c6e26563386230fe66294c3dc63 -SIZE (KDE/applications/19.08.1/ktp-common-internals-19.08.1.tar.xz) = 444964 +TIMESTAMP = 1570544657 +SHA256 (KDE/applications/19.08.2/ktp-common-internals-19.08.2.tar.xz) = b08cb6dc05e325c80f9d1753db23d1969fc6c2defc571401e7b2e87772721f7e +SIZE (KDE/applications/19.08.2/ktp-common-internals-19.08.2.tar.xz) = 443916 Index: head/net-im/ktp-contact-list/distinfo =================================================================== --- head/net-im/ktp-contact-list/distinfo (revision 514560) +++ head/net-im/ktp-contact-list/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537322 -SHA256 (KDE/applications/19.08.1/ktp-contact-list-19.08.1.tar.xz) = a3ade7f7bacd53c90062923b488a7f60968a45d6d63890a618638f514dd3a5b2 -SIZE (KDE/applications/19.08.1/ktp-contact-list-19.08.1.tar.xz) = 149164 +TIMESTAMP = 1570544657 +SHA256 (KDE/applications/19.08.2/ktp-contact-list-19.08.2.tar.xz) = ab5778049e1351bc5cec29e3bfd98588f24b9877d385e787eb1f68715d624d34 +SIZE (KDE/applications/19.08.2/ktp-contact-list-19.08.2.tar.xz) = 149240 Index: head/net-im/ktp-contact-runner/distinfo =================================================================== --- head/net-im/ktp-contact-runner/distinfo (revision 514560) +++ head/net-im/ktp-contact-runner/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537322 -SHA256 (KDE/applications/19.08.1/ktp-contact-runner-19.08.1.tar.xz) = 385bc8bebb7847cefdd17738ecaf03b102794ac7f38dc58ebe10d100385b769f -SIZE (KDE/applications/19.08.1/ktp-contact-runner-19.08.1.tar.xz) = 42856 +TIMESTAMP = 1570544658 +SHA256 (KDE/applications/19.08.2/ktp-contact-runner-19.08.2.tar.xz) = 6ec9fd151b98c2f48d1ef4361c063e83fe51562fc34868c032d39495ab38fb85 +SIZE (KDE/applications/19.08.2/ktp-contact-runner-19.08.2.tar.xz) = 43068 Index: head/net-im/ktp-desktop-applets/distinfo =================================================================== --- head/net-im/ktp-desktop-applets/distinfo (revision 514560) +++ head/net-im/ktp-desktop-applets/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537322 -SHA256 (KDE/applications/19.08.1/ktp-desktop-applets-19.08.1.tar.xz) = ec26ba5893998f1e5c293d40e5410a7170ae4e0dea46f03bd5241c51c3240951 -SIZE (KDE/applications/19.08.1/ktp-desktop-applets-19.08.1.tar.xz) = 43428 +TIMESTAMP = 1570544659 +SHA256 (KDE/applications/19.08.2/ktp-desktop-applets-19.08.2.tar.xz) = 96975cf9208d215da1844619e2792be0919238a03ede71073813584042d6c774 +SIZE (KDE/applications/19.08.2/ktp-desktop-applets-19.08.2.tar.xz) = 43512 Index: head/net-im/ktp-filetransfer-handler/distinfo =================================================================== --- head/net-im/ktp-filetransfer-handler/distinfo (revision 514560) +++ head/net-im/ktp-filetransfer-handler/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537323 -SHA256 (KDE/applications/19.08.1/ktp-filetransfer-handler-19.08.1.tar.xz) = 34f7eed85709524efaa89924de85842c3532b1ade8572fe28dc2e8ce3f6026eb -SIZE (KDE/applications/19.08.1/ktp-filetransfer-handler-19.08.1.tar.xz) = 46200 +TIMESTAMP = 1570544659 +SHA256 (KDE/applications/19.08.2/ktp-filetransfer-handler-19.08.2.tar.xz) = cd2a8fb944e76b6a1ea4f8c956db2d9914a0d5bd472c3fac2e9b568144bf87ab +SIZE (KDE/applications/19.08.2/ktp-filetransfer-handler-19.08.2.tar.xz) = 46212 Index: head/net-im/ktp-kded-module/distinfo =================================================================== --- head/net-im/ktp-kded-module/distinfo (revision 514560) +++ head/net-im/ktp-kded-module/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537323 -SHA256 (KDE/applications/19.08.1/ktp-kded-module-19.08.1.tar.xz) = 323b538c08da82aaf66503463b4334bc603a37bb358fa6f1d5794562c05eed4f -SIZE (KDE/applications/19.08.1/ktp-kded-module-19.08.1.tar.xz) = 97344 +TIMESTAMP = 1570544660 +SHA256 (KDE/applications/19.08.2/ktp-kded-module-19.08.2.tar.xz) = 340bffd880fee602868cb44bc4c5474db1c34be62375298affedf3cc7eb1579f +SIZE (KDE/applications/19.08.2/ktp-kded-module-19.08.2.tar.xz) = 97028 Index: head/net-im/ktp-send-file/distinfo =================================================================== --- head/net-im/ktp-send-file/distinfo (revision 514560) +++ head/net-im/ktp-send-file/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537323 -SHA256 (KDE/applications/19.08.1/ktp-send-file-19.08.1.tar.xz) = 1e4f9348dab9546d344d00783d6a5ad93b9b299b96d551dd09325c95932cbcd2 -SIZE (KDE/applications/19.08.1/ktp-send-file-19.08.1.tar.xz) = 28948 +TIMESTAMP = 1570544661 +SHA256 (KDE/applications/19.08.2/ktp-send-file-19.08.2.tar.xz) = 30a4a27b4c37c8ca75ebc407c6070395197b9b88ba8e422d7055eee93ec0ae9d +SIZE (KDE/applications/19.08.2/ktp-send-file-19.08.2.tar.xz) = 29108 Index: head/net-im/ktp-text-ui/distinfo =================================================================== --- head/net-im/ktp-text-ui/distinfo (revision 514560) +++ head/net-im/ktp-text-ui/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537324 -SHA256 (KDE/applications/19.08.1/ktp-text-ui-19.08.1.tar.xz) = 21c9c58bd498623a6bc9bbfa01c82548af29fdf7f690a359eb57ccd9a3de3105 -SIZE (KDE/applications/19.08.1/ktp-text-ui-19.08.1.tar.xz) = 471916 +TIMESTAMP = 1570544661 +SHA256 (KDE/applications/19.08.2/ktp-text-ui-19.08.2.tar.xz) = a0b7d8469b12ae6820541cc38dd57fad8866ad6e236c4864b7cf94629ca0cc33 +SIZE (KDE/applications/19.08.2/ktp-text-ui-19.08.2.tar.xz) = 471240 Index: head/print/print-manager/distinfo =================================================================== --- head/print/print-manager/distinfo (revision 514560) +++ head/print/print-manager/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537347 -SHA256 (KDE/applications/19.08.1/print-manager-19.08.1.tar.xz) = b1fd9aa067329a4f5bb715e7db736160954bbec303be0ba5bc8f98852071e731 -SIZE (KDE/applications/19.08.1/print-manager-19.08.1.tar.xz) = 245276 +TIMESTAMP = 1570544707 +SHA256 (KDE/applications/19.08.2/print-manager-19.08.2.tar.xz) = c0702208b6f485e2e44337aaf203b9e391adda22d6526bf0dd34b31230e0fb05 +SIZE (KDE/applications/19.08.2/print-manager-19.08.2.tar.xz) = 244572 Index: head/science/kalzium/distinfo =================================================================== --- head/science/kalzium/distinfo (revision 514560) +++ head/science/kalzium/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537358 -SHA256 (KDE/applications/19.08.1/kalzium-19.08.1.tar.xz) = 2519866172476bec297e9d02ff917b1c676b980edc2f20a9c3297bc255e045f0 -SIZE (KDE/applications/19.08.1/kalzium-19.08.1.tar.xz) = 26415720 +TIMESTAMP = 1570544728 +SHA256 (KDE/applications/19.08.2/kalzium-19.08.2.tar.xz) = e63d88526c86dd67ab133694dc23b6a35fd5514643bd7a7f1790db8c2a8490d9 +SIZE (KDE/applications/19.08.2/kalzium-19.08.2.tar.xz) = 26411676 Index: head/science/step/distinfo =================================================================== --- head/science/step/distinfo (revision 514560) +++ head/science/step/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537358 -SHA256 (KDE/applications/19.08.1/step-19.08.1.tar.xz) = 533750dda4adcd0f3d8ec269103f35ee1ab4b4e9eae9721522b1b278660577a6 -SIZE (KDE/applications/19.08.1/step-19.08.1.tar.xz) = 869968 +TIMESTAMP = 1570544729 +SHA256 (KDE/applications/19.08.2/step-19.08.2.tar.xz) = dede94c073b2903fa4fa6806623cb980ebe93d15cc76376aadac4ca8cd61a96c +SIZE (KDE/applications/19.08.2/step-19.08.2.tar.xz) = 871208 Index: head/security/kgpg/distinfo =================================================================== --- head/security/kgpg/distinfo (revision 514560) +++ head/security/kgpg/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537359 -SHA256 (KDE/applications/19.08.1/kgpg-19.08.1.tar.xz) = 441a0bfa58df14bad87f5f446b89113dc20365424f6a87aec30125c9221815c5 -SIZE (KDE/applications/19.08.1/kgpg-19.08.1.tar.xz) = 2786832 +TIMESTAMP = 1570544730 +SHA256 (KDE/applications/19.08.2/kgpg-19.08.2.tar.xz) = 90795c649cd32b65b6030ed965e0db5b0570719afa36abb5d4893268461aa841 +SIZE (KDE/applications/19.08.2/kgpg-19.08.2.tar.xz) = 2786968 Index: head/security/kleopatra/Makefile =================================================================== --- head/security/kleopatra/Makefile (revision 514560) +++ head/security/kleopatra/Makefile (revision 514561) @@ -1,28 +1,27 @@ # $FreeBSD$ PORTNAME= kleopatra DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= security kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Certificate manager for KDE LIB_DEPENDS= libassuan.so:security/libassuan \ libboost_thread.so:devel/boost-libs \ libgpgme.so:security/gpgme \ libgpg-error.so:security/libgpg-error \ libgpgmepp.so:security/gpgme-cpp \ libqgpgme.so:security/gpgme-qt5 USES= cmake compiler:c++11-lang desktop-file-utils gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs config configwidgets coreaddons crash dbusaddons \ doctools ecm i18n iconthemes itemmodels kcmutils notifications \ service sonnet textwidgets widgetsaddons windowsystem xmlgui \ libkleo mime USE_QT= core dbus gui network printsupport testlib widgets xml \ buildtools_build qmake_build OPTIONS_DEFINE= DOCS .include Index: head/security/kleopatra/distinfo =================================================================== --- head/security/kleopatra/distinfo (revision 514560) +++ head/security/kleopatra/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537359 -SHA256 (KDE/applications/19.08.1/kleopatra-19.08.1.tar.xz) = ef63fbe1a24a24b8c6b491fe19e0bebd9518a2e1340a9dfee7215eb3740369c7 -SIZE (KDE/applications/19.08.1/kleopatra-19.08.1.tar.xz) = 1925612 +TIMESTAMP = 1570544730 +SHA256 (KDE/applications/19.08.2/kleopatra-19.08.2.tar.xz) = 7d0667b71796f8cbf9081c74c80def1e6618366400d4fbe56e690bb7049e4085 +SIZE (KDE/applications/19.08.2/kleopatra-19.08.2.tar.xz) = 1927560 Index: head/security/kpkpass/distinfo =================================================================== --- head/security/kpkpass/distinfo (revision 514560) +++ head/security/kpkpass/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537360 -SHA256 (KDE/applications/19.08.1/kpkpass-19.08.1.tar.xz) = 893ee1f127c2d0c7135fe77c5c2895d04f95c9a6ed3b162c30856f4e99d4afb3 -SIZE (KDE/applications/19.08.1/kpkpass-19.08.1.tar.xz) = 23260 +TIMESTAMP = 1570544731 +SHA256 (KDE/applications/19.08.2/kpkpass-19.08.2.tar.xz) = daf4da30fd5c834915e6210bf64609adc116e5c6919365d000a400b6cd5f3e26 +SIZE (KDE/applications/19.08.2/kpkpass-19.08.2.tar.xz) = 23232 Index: head/security/kwalletmanager/distinfo =================================================================== --- head/security/kwalletmanager/distinfo (revision 514560) +++ head/security/kwalletmanager/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537360 -SHA256 (KDE/applications/19.08.1/kwalletmanager-19.08.1.tar.xz) = b6206da5001f79b67264f641210925b0400b41dc59562b978d402b9524835c14 -SIZE (KDE/applications/19.08.1/kwalletmanager-19.08.1.tar.xz) = 785980 +TIMESTAMP = 1570544732 +SHA256 (KDE/applications/19.08.2/kwalletmanager-19.08.2.tar.xz) = 5c0cd648d6bf4515cd71b4575ab8051004dcf505c2bfe502fb42b7ba01cb51b2 +SIZE (KDE/applications/19.08.2/kwalletmanager-19.08.2.tar.xz) = 786768 Index: head/security/libkleo/distinfo =================================================================== --- head/security/libkleo/distinfo (revision 514560) +++ head/security/libkleo/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537360 -SHA256 (KDE/applications/19.08.1/libkleo-19.08.1.tar.xz) = 5808a40d9c9358048d558a4c96f90e8c51b2dab3588ab3c678b02d5810020a31 -SIZE (KDE/applications/19.08.1/libkleo-19.08.1.tar.xz) = 338772 +TIMESTAMP = 1570544732 +SHA256 (KDE/applications/19.08.2/libkleo-19.08.2.tar.xz) = 0acf296ffb0144096071e47ce1365b9e5b07b59cad4700f89c875c7bee4573bd +SIZE (KDE/applications/19.08.2/libkleo-19.08.2.tar.xz) = 337736 Index: head/sysutils/baloo-widgets/distinfo =================================================================== --- head/sysutils/baloo-widgets/distinfo (revision 514560) +++ head/sysutils/baloo-widgets/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537361 -SHA256 (KDE/applications/19.08.1/baloo-widgets-19.08.1.tar.xz) = 83429a70de735edc4714dc1b6f1a5a8c7d3d68a93165e98d2cadeecafa82af7b -SIZE (KDE/applications/19.08.1/baloo-widgets-19.08.1.tar.xz) = 262056 +TIMESTAMP = 1570544733 +SHA256 (KDE/applications/19.08.2/baloo-widgets-19.08.2.tar.xz) = 529f3b587098eb9b7d1aaa8b311f98c58d16ed88384fa0900f9fb9f8e242c070 +SIZE (KDE/applications/19.08.2/baloo-widgets-19.08.2.tar.xz) = 261392 Index: head/sysutils/baloo-widgets/pkg-plist =================================================================== --- head/sysutils/baloo-widgets/pkg-plist (revision 514560) +++ head/sysutils/baloo-widgets/pkg-plist (revision 514561) @@ -1,66 +1,66 @@ bin/baloo_filemetadata_temp_extractor include/KF5/BalooWidgets/Baloo/FileMetaDataConfigWidget include/KF5/BalooWidgets/Baloo/FileMetaDataWidget include/KF5/BalooWidgets/Baloo/TagWidget include/KF5/BalooWidgets/baloo/filemetadataconfigwidget.h include/KF5/BalooWidgets/baloo/filemetadatawidget.h include/KF5/BalooWidgets/baloo/tagwidget.h include/KF5/BalooWidgets/baloo/widgets_export.h lib/cmake/KF5BalooWidgets/KF5BalooWidgetsConfig.cmake lib/cmake/KF5BalooWidgets/KF5BalooWidgetsConfigVersion.cmake lib/cmake/KF5BalooWidgets/KF5BalooWidgetsTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5BalooWidgets/KF5BalooWidgetsTargets.cmake lib/libKF5BalooWidgets.so lib/libKF5BalooWidgets.so.5 -lib/libKF5BalooWidgets.so.19.8.1 +lib/libKF5BalooWidgets.so.19.8.2 %%QT_PLUGINDIR%%/baloofilepropertiesplugin.so %%QT_PLUGINDIR%%/kf5/kfileitemaction/tagsfileitemaction.so share/kservices5/baloofilepropertiesplugin.desktop share/locale/ar/LC_MESSAGES/baloowidgets5.mo share/locale/ast/LC_MESSAGES/baloowidgets5.mo share/locale/bg/LC_MESSAGES/baloowidgets5.mo share/locale/bs/LC_MESSAGES/baloowidgets5.mo share/locale/ca/LC_MESSAGES/baloowidgets5.mo share/locale/ca@valencia/LC_MESSAGES/baloowidgets5.mo share/locale/cs/LC_MESSAGES/baloowidgets5.mo share/locale/da/LC_MESSAGES/baloowidgets5.mo share/locale/de/LC_MESSAGES/baloowidgets5.mo share/locale/el/LC_MESSAGES/baloowidgets5.mo share/locale/en_GB/LC_MESSAGES/baloowidgets5.mo share/locale/es/LC_MESSAGES/baloowidgets5.mo share/locale/et/LC_MESSAGES/baloowidgets5.mo share/locale/eu/LC_MESSAGES/baloowidgets5.mo share/locale/fi/LC_MESSAGES/baloowidgets5.mo share/locale/fr/LC_MESSAGES/baloowidgets5.mo share/locale/ga/LC_MESSAGES/baloowidgets5.mo share/locale/gl/LC_MESSAGES/baloowidgets5.mo share/locale/he/LC_MESSAGES/baloowidgets5.mo share/locale/hu/LC_MESSAGES/baloowidgets5.mo share/locale/ia/LC_MESSAGES/baloowidgets5.mo share/locale/id/LC_MESSAGES/baloowidgets5.mo share/locale/it/LC_MESSAGES/baloowidgets5.mo share/locale/ja/LC_MESSAGES/baloowidgets5.mo share/locale/kk/LC_MESSAGES/baloowidgets5.mo share/locale/ko/LC_MESSAGES/baloowidgets5.mo share/locale/lt/LC_MESSAGES/baloowidgets5.mo share/locale/ml/LC_MESSAGES/baloowidgets5.mo share/locale/mr/LC_MESSAGES/baloowidgets5.mo share/locale/nb/LC_MESSAGES/baloowidgets5.mo share/locale/nds/LC_MESSAGES/baloowidgets5.mo share/locale/nl/LC_MESSAGES/baloowidgets5.mo share/locale/nn/LC_MESSAGES/baloowidgets5.mo share/locale/pa/LC_MESSAGES/baloowidgets5.mo share/locale/pl/LC_MESSAGES/baloowidgets5.mo share/locale/pt/LC_MESSAGES/baloowidgets5.mo share/locale/pt_BR/LC_MESSAGES/baloowidgets5.mo share/locale/ro/LC_MESSAGES/baloowidgets5.mo share/locale/ru/LC_MESSAGES/baloowidgets5.mo share/locale/sk/LC_MESSAGES/baloowidgets5.mo share/locale/sl/LC_MESSAGES/baloowidgets5.mo share/locale/sr/LC_MESSAGES/baloowidgets5.mo share/locale/sv/LC_MESSAGES/baloowidgets5.mo share/locale/tr/LC_MESSAGES/baloowidgets5.mo share/locale/ug/LC_MESSAGES/baloowidgets5.mo share/locale/uk/LC_MESSAGES/baloowidgets5.mo share/locale/zh_CN/LC_MESSAGES/baloowidgets5.mo share/locale/zh_TW/LC_MESSAGES/baloowidgets5.mo Index: head/sysutils/filelight/distinfo =================================================================== --- head/sysutils/filelight/distinfo (revision 514560) +++ head/sysutils/filelight/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537361 -SHA256 (KDE/applications/19.08.1/filelight-19.08.1.tar.xz) = 170e633e0d2f8c9b13cccfd5957590100be435f9e7258e84c6f15fabc636768e -SIZE (KDE/applications/19.08.1/filelight-19.08.1.tar.xz) = 660520 +TIMESTAMP = 1570544734 +SHA256 (KDE/applications/19.08.2/filelight-19.08.2.tar.xz) = 313ff23fceb427509b37efa012535e651618d42bde35c62cdc7732e463c346a6 +SIZE (KDE/applications/19.08.2/filelight-19.08.2.tar.xz) = 660172 Index: head/sysutils/k3b/distinfo =================================================================== --- head/sysutils/k3b/distinfo (revision 514560) +++ head/sysutils/k3b/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537361 -SHA256 (KDE/applications/19.08.1/k3b-19.08.1.tar.xz) = 8995f39457932fb6597f0f6124e0dfe09ecb2a25a6ec8506ce3ef870da293749 -SIZE (KDE/applications/19.08.1/k3b-19.08.1.tar.xz) = 10513924 +TIMESTAMP = 1570544734 +SHA256 (KDE/applications/19.08.2/k3b-19.08.2.tar.xz) = a16796a873018bc5fd9f562297fea56d3f6d32a1e903a3e145814ea7d9be5209 +SIZE (KDE/applications/19.08.2/k3b-19.08.2.tar.xz) = 10505676 Index: head/sysutils/kbackup/distinfo =================================================================== --- head/sysutils/kbackup/distinfo (revision 514560) +++ head/sysutils/kbackup/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537362 -SHA256 (KDE/applications/19.08.1/kbackup-19.08.1.tar.xz) = 93ec83cdb8cb1ad28f444f85aaec2270fbbf3108b3ce0cf22f42a737e0f9cc59 -SIZE (KDE/applications/19.08.1/kbackup-19.08.1.tar.xz) = 358372 +TIMESTAMP = 1570544735 +SHA256 (KDE/applications/19.08.2/kbackup-19.08.2.tar.xz) = 1678ac00c1930f430d620f542dc7913bf1575106654cc9d4b534aed65e023fb8 +SIZE (KDE/applications/19.08.2/kbackup-19.08.2.tar.xz) = 358196 Index: head/sysutils/kcron/distinfo =================================================================== --- head/sysutils/kcron/distinfo (revision 514560) +++ head/sysutils/kcron/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537362 -SHA256 (KDE/applications/19.08.1/kcron-19.08.1.tar.xz) = e60eb14cb2aef0b0398088930102d68817c96a83c54895af6626693fc18c7ed9 -SIZE (KDE/applications/19.08.1/kcron-19.08.1.tar.xz) = 888216 +TIMESTAMP = 1570544736 +SHA256 (KDE/applications/19.08.2/kcron-19.08.2.tar.xz) = 270ee81cba5ef9d92158a3fc71cf8c50c658468018eb0415c9d3d0bc7abea5e5 +SIZE (KDE/applications/19.08.2/kcron-19.08.2.tar.xz) = 887752 Index: head/sysutils/kdebugsettings/distinfo =================================================================== --- head/sysutils/kdebugsettings/distinfo (revision 514560) +++ head/sysutils/kdebugsettings/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537362 -SHA256 (KDE/applications/19.08.1/kdebugsettings-19.08.1.tar.xz) = 4195a000558b56d849eb6e79880c5140fc30cd8b0657d4a9932035434f4c2649 -SIZE (KDE/applications/19.08.1/kdebugsettings-19.08.1.tar.xz) = 55140 +TIMESTAMP = 1570544736 +SHA256 (KDE/applications/19.08.2/kdebugsettings-19.08.2.tar.xz) = 2823e53da647dec2bd780a3029c6b093917faad3db973147ef74eb8f1c1733df +SIZE (KDE/applications/19.08.2/kdebugsettings-19.08.2.tar.xz) = 55360 Index: head/sysutils/kdf/distinfo =================================================================== --- head/sysutils/kdf/distinfo (revision 514560) +++ head/sysutils/kdf/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537363 -SHA256 (KDE/applications/19.08.1/kdf-19.08.1.tar.xz) = 2aedb0a4f64d2417728b67e4a289488b59153683d5dd15bca259a64f9c51325e -SIZE (KDE/applications/19.08.1/kdf-19.08.1.tar.xz) = 461904 +TIMESTAMP = 1570544737 +SHA256 (KDE/applications/19.08.2/kdf-19.08.2.tar.xz) = f0a27bbf25d5791272cc8598561e53afed9840d38bf08ed3146f36701dfb7b04 +SIZE (KDE/applications/19.08.2/kdf-19.08.2.tar.xz) = 461488 Index: head/sysutils/kdialog/distinfo =================================================================== --- head/sysutils/kdialog/distinfo (revision 514560) +++ head/sysutils/kdialog/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537373 -SHA256 (KDE/applications/19.08.1/kdialog-19.08.1.tar.xz) = 6b2ed8636d50d13104b0029f33b11943d6f7087297ad089d61c76a57d3b425a0 -SIZE (KDE/applications/19.08.1/kdialog-19.08.1.tar.xz) = 102712 +TIMESTAMP = 1570544758 +SHA256 (KDE/applications/19.08.2/kdialog-19.08.2.tar.xz) = 7aef7b5a5f340cc0066e02572ec8cef8b227bc6c7f5b066677ef6422632db95a +SIZE (KDE/applications/19.08.2/kdialog-19.08.2.tar.xz) = 102300 Index: head/sysutils/kfloppy/distinfo =================================================================== --- head/sysutils/kfloppy/distinfo (revision 514560) +++ head/sysutils/kfloppy/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537373 -SHA256 (KDE/applications/19.08.1/kfloppy-19.08.1.tar.xz) = c22864e0dfef37ccb9a5329467b9058a14880e88b54c448b5933b57aa98b021b -SIZE (KDE/applications/19.08.1/kfloppy-19.08.1.tar.xz) = 199248 +TIMESTAMP = 1570544758 +SHA256 (KDE/applications/19.08.2/kfloppy-19.08.2.tar.xz) = 743f9043bdc24855bb597d3f7cf2bbf4793c58be22eb73cd72ff1e3f8cff2f69 +SIZE (KDE/applications/19.08.2/kfloppy-19.08.2.tar.xz) = 198868 Index: head/sysutils/khelpcenter/distinfo =================================================================== --- head/sysutils/khelpcenter/distinfo (revision 514560) +++ head/sysutils/khelpcenter/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537384 -SHA256 (KDE/applications/19.08.1/khelpcenter-19.08.1.tar.xz) = ae3243fcdc1281937772a091d902adaba0681abe82c222bf7ef895df0899ab63 -SIZE (KDE/applications/19.08.1/khelpcenter-19.08.1.tar.xz) = 3847968 +TIMESTAMP = 1570544779 +SHA256 (KDE/applications/19.08.2/khelpcenter-19.08.2.tar.xz) = 22b9f5225dfb9e8ad85becb7c2986cbee2a1366f84257fcbf76d5d7292dccdd9 +SIZE (KDE/applications/19.08.2/khelpcenter-19.08.2.tar.xz) = 3847796 Index: head/sysutils/ksystemlog/distinfo =================================================================== --- head/sysutils/ksystemlog/distinfo (revision 514560) +++ head/sysutils/ksystemlog/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537384 -SHA256 (KDE/applications/19.08.1/ksystemlog-19.08.1.tar.xz) = 7dde2a350b32011027d6ab9648859218a053c5509ad08bce8c2de875d2ae73db -SIZE (KDE/applications/19.08.1/ksystemlog-19.08.1.tar.xz) = 1927520 +TIMESTAMP = 1570544780 +SHA256 (KDE/applications/19.08.2/ksystemlog-19.08.2.tar.xz) = 742bff9c71cc42d7a57a7732f039a944f60fe4dd70cf71c32f37ba914b57b5de +SIZE (KDE/applications/19.08.2/ksystemlog-19.08.2.tar.xz) = 1927372 Index: head/sysutils/signon-kwallet-extension/distinfo =================================================================== --- head/sysutils/signon-kwallet-extension/distinfo (revision 514560) +++ head/sysutils/signon-kwallet-extension/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537385 -SHA256 (KDE/applications/19.08.1/signon-kwallet-extension-19.08.1.tar.xz) = 7d558509cf015641c76d4203c8dadc4e9720278fb39b4561eb2bce4e5412bb83 -SIZE (KDE/applications/19.08.1/signon-kwallet-extension-19.08.1.tar.xz) = 10612 +TIMESTAMP = 1570544781 +SHA256 (KDE/applications/19.08.2/signon-kwallet-extension-19.08.2.tar.xz) = 2521cd2c4f25717f5caf9915474f75614be7dec7053f1e94c1429fac7045cc29 +SIZE (KDE/applications/19.08.2/signon-kwallet-extension-19.08.2.tar.xz) = 10592 Index: head/sysutils/sweeper/distinfo =================================================================== --- head/sysutils/sweeper/distinfo (revision 514560) +++ head/sysutils/sweeper/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537385 -SHA256 (KDE/applications/19.08.1/sweeper-19.08.1.tar.xz) = cc539649fa4a2698ad07653f9427981381bf8b5344f05dab76acdf1704b4479a -SIZE (KDE/applications/19.08.1/sweeper-19.08.1.tar.xz) = 368528 +TIMESTAMP = 1570544781 +SHA256 (KDE/applications/19.08.2/sweeper-19.08.2.tar.xz) = da65cbfc952d8b63ddfbcba373d9a828ef5acefc68196ddd4c2c602c672cbb5f +SIZE (KDE/applications/19.08.2/sweeper-19.08.2.tar.xz) = 368548 Index: head/textproc/kompare/distinfo =================================================================== --- head/textproc/kompare/distinfo (revision 514560) +++ head/textproc/kompare/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537385 -SHA256 (KDE/applications/19.08.1/kompare-19.08.1.tar.xz) = 325a14529c8e015fbae0231511ddd5c61dd3d78cbc6ad92eaccfd1c90a2f1afd -SIZE (KDE/applications/19.08.1/kompare-19.08.1.tar.xz) = 801764 +TIMESTAMP = 1570544782 +SHA256 (KDE/applications/19.08.2/kompare-19.08.2.tar.xz) = b14f23ac6eb72622a06e2e489fc2d684124f520ad13e032338397fef342659eb +SIZE (KDE/applications/19.08.2/kompare-19.08.2.tar.xz) = 801976 Index: head/textproc/libkomparediff2/distinfo =================================================================== --- head/textproc/libkomparediff2/distinfo (revision 514560) +++ head/textproc/libkomparediff2/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537386 -SHA256 (KDE/applications/19.08.1/libkomparediff2-19.08.1.tar.xz) = a020ba9287ee084a0f5a10896f1559f11aff1c97957405f47deeda32a0874b31 -SIZE (KDE/applications/19.08.1/libkomparediff2-19.08.1.tar.xz) = 173696 +TIMESTAMP = 1570544783 +SHA256 (KDE/applications/19.08.2/libkomparediff2-19.08.2.tar.xz) = c5738f96dbda3d7272ad08ff9518722ae9b7ee737ab7e27c9e88cedb418371d7 +SIZE (KDE/applications/19.08.2/libkomparediff2-19.08.2.tar.xz) = 173800 Index: head/x11/konsole/distinfo =================================================================== --- head/x11/konsole/distinfo (revision 514560) +++ head/x11/konsole/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537398 -SHA256 (KDE/applications/19.08.1/konsole-19.08.1.tar.xz) = 7530157a3fa01a9b21971e271a9d46addb5c71dce290db97265928803b57d37f -SIZE (KDE/applications/19.08.1/konsole-19.08.1.tar.xz) = 1146824 +TIMESTAMP = 1570544807 +SHA256 (KDE/applications/19.08.2/konsole-19.08.2.tar.xz) = 4702fe52279c99e7d8da313285ace26955776669a78bdcb6dac7aec76cabe5ed +SIZE (KDE/applications/19.08.2/konsole-19.08.2.tar.xz) = 1144976 Index: head/x11-clocks/kteatime/distinfo =================================================================== --- head/x11-clocks/kteatime/distinfo (revision 514560) +++ head/x11-clocks/kteatime/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537386 -SHA256 (KDE/applications/19.08.1/kteatime-19.08.1.tar.xz) = a4b80c5ca6f48c1d291a9502c43293cd0aa383f2e089b9435b02ff79b317c310 -SIZE (KDE/applications/19.08.1/kteatime-19.08.1.tar.xz) = 286892 +TIMESTAMP = 1570544783 +SHA256 (KDE/applications/19.08.2/kteatime-19.08.2.tar.xz) = 075470af370b7913fdb085dd6984da91f863b6c03a4b713854e85437e6f9cdbe +SIZE (KDE/applications/19.08.2/kteatime-19.08.2.tar.xz) = 286812 Index: head/x11-clocks/ktimer/distinfo =================================================================== --- head/x11-clocks/ktimer/distinfo (revision 514560) +++ head/x11-clocks/ktimer/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537386 -SHA256 (KDE/applications/19.08.1/ktimer-19.08.1.tar.xz) = f81af279e9e79bb3044718fa868973524e85df65dfaf654b8f45824b6f9d17cb -SIZE (KDE/applications/19.08.1/ktimer-19.08.1.tar.xz) = 377300 +TIMESTAMP = 1570544784 +SHA256 (KDE/applications/19.08.2/ktimer-19.08.2.tar.xz) = 81be41497e14f5fb72150e238805744c9b09463ac261cf5d7d2ca011a41a05a0 +SIZE (KDE/applications/19.08.2/ktimer-19.08.2.tar.xz) = 377024 Index: head/x11-fm/dolphin/distinfo =================================================================== --- head/x11-fm/dolphin/distinfo (revision 514560) +++ head/x11-fm/dolphin/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537387 -SHA256 (KDE/applications/19.08.1/dolphin-19.08.1.tar.xz) = a612dac0cf50301af46ad5fa29aad630bb33a8a4bd416a4d6023b65fb00f25cc -SIZE (KDE/applications/19.08.1/dolphin-19.08.1.tar.xz) = 5263356 +TIMESTAMP = 1570544785 +SHA256 (KDE/applications/19.08.2/dolphin-19.08.2.tar.xz) = 0c56515737fc0f96020b3c157a93023095d1a1e23637e7670e068c6c286bbc3b +SIZE (KDE/applications/19.08.2/dolphin-19.08.2.tar.xz) = 5267556 Index: head/x11-fm/dolphin/pkg-plist =================================================================== --- head/x11-fm/dolphin/pkg-plist (revision 514560) +++ head/x11-fm/dolphin/pkg-plist (revision 514561) @@ -1,120 +1,121 @@ bin/dolphin bin/servicemenuinstaller share/qlogging-categories5/dolphin.categories etc/xdg/servicemenu.knsrc include/Dolphin/KVersionControlPlugin include/Dolphin/dolphinvcs_version.h include/Dolphin/kversioncontrolplugin.h include/dolphin_export.h include/dolphinvcs_export.h lib/cmake/DolphinVcs/DolphinVcsConfig.cmake lib/cmake/DolphinVcs/DolphinVcsConfigVersion.cmake lib/cmake/DolphinVcs/DolphinVcsTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/DolphinVcs/DolphinVcsTargets.cmake lib/libdolphinprivate.so.%%SHLIB_SHVER%% lib/libdolphinprivate.so.%%SHLIB_VER%% lib/libdolphinvcs.so lib/libdolphinvcs.so.%%SHLIB_SHVER%% lib/libdolphinvcs.so.%%SHLIB_VER%% lib/libkdeinit%%SHLIB_SHVER%%_dolphin.so %%QT_PLUGINDIR%%/dolphinpart.so %%QT_PLUGINDIR%%/kcm_dolphingeneral.so %%QT_PLUGINDIR%%/kcm_dolphinnavigation.so %%QT_PLUGINDIR%%/kcm_dolphinservices.so %%QT_PLUGINDIR%%/kcm_dolphinviewmodes.so share/applications/org.kde.dolphin.desktop share/config.kcfg/dolphin_compactmodesettings.kcfg share/config.kcfg/dolphin_detailsmodesettings.kcfg share/config.kcfg/dolphin_directoryviewpropertysettings.kcfg share/config.kcfg/dolphin_generalsettings.kcfg share/config.kcfg/dolphin_iconsmodesettings.kcfg share/config.kcfg/dolphin_versioncontrolsettings.kcfg share/dbus-1/interfaces/org.freedesktop.FileManager1.xml share/dbus-1/services/org.kde.dolphin.FileManager1.service share/kglobalaccel/org.kde.dolphin.desktop share/kservices5/dolphinpart.desktop share/kservices5/kcmdolphingeneral.desktop share/kservices5/kcmdolphinnavigation.desktop share/kservices5/kcmdolphinservices.desktop share/kservices5/kcmdolphinviewmodes.desktop share/kservicetypes5/fileviewversioncontrolplugin.desktop share/locale/ar/LC_MESSAGES/dolphin.mo share/locale/ast/LC_MESSAGES/dolphin.mo share/locale/bg/LC_MESSAGES/dolphin.mo share/locale/bs/LC_MESSAGES/dolphin.mo share/locale/ca/LC_MESSAGES/dolphin.mo share/locale/ca/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/ca@valencia/LC_MESSAGES/dolphin.mo share/locale/cs/LC_MESSAGES/dolphin.mo share/locale/cs/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/da/LC_MESSAGES/dolphin.mo share/locale/de/LC_MESSAGES/dolphin.mo share/locale/de/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/el/LC_MESSAGES/dolphin.mo share/locale/en_GB/LC_MESSAGES/dolphin.mo share/locale/en_GB/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/eo/LC_MESSAGES/dolphin.mo share/locale/es/LC_MESSAGES/dolphin.mo share/locale/es/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/et/LC_MESSAGES/dolphin.mo share/locale/eu/LC_MESSAGES/dolphin.mo share/locale/eu/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/fa/LC_MESSAGES/dolphin.mo share/locale/fi/LC_MESSAGES/dolphin.mo share/locale/fi/LC_SCRIPTS/dolphin/dolphin.js share/locale/fr/LC_MESSAGES/dolphin.mo share/locale/fr/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/ga/LC_MESSAGES/dolphin.mo share/locale/gl/LC_MESSAGES/dolphin.mo share/locale/gl/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/he/LC_MESSAGES/dolphin.mo share/locale/hi/LC_MESSAGES/dolphin.mo share/locale/hr/LC_MESSAGES/dolphin.mo share/locale/hu/LC_MESSAGES/dolphin.mo share/locale/ia/LC_MESSAGES/dolphin.mo share/locale/id/LC_MESSAGES/dolphin.mo share/locale/id/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/is/LC_MESSAGES/dolphin.mo share/locale/it/LC_MESSAGES/dolphin.mo share/locale/it/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/ja/LC_MESSAGES/dolphin.mo share/locale/ja/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/kk/LC_MESSAGES/dolphin.mo share/locale/km/LC_MESSAGES/dolphin.mo share/locale/ko/LC_MESSAGES/dolphin.mo share/locale/ko/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/lt/LC_MESSAGES/dolphin.mo share/locale/lv/LC_MESSAGES/dolphin.mo share/locale/ml/LC_MESSAGES/dolphin.mo share/locale/mr/LC_MESSAGES/dolphin.mo share/locale/nb/LC_MESSAGES/dolphin.mo share/locale/nds/LC_MESSAGES/dolphin.mo share/locale/nl/LC_MESSAGES/dolphin.mo share/locale/nl/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/nn/LC_MESSAGES/dolphin.mo share/locale/nn/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/pa/LC_MESSAGES/dolphin.mo share/locale/pl/LC_MESSAGES/dolphin.mo share/locale/pl/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/pt/LC_MESSAGES/dolphin.mo share/locale/pt/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/pt_BR/LC_MESSAGES/dolphin.mo share/locale/pt_BR/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/ro/LC_MESSAGES/dolphin.mo share/locale/ru/LC_MESSAGES/dolphin.mo share/locale/ru/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/sk/LC_MESSAGES/dolphin.mo share/locale/sk/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/sl/LC_MESSAGES/dolphin.mo share/locale/sr/LC_MESSAGES/dolphin.mo share/locale/sv/LC_MESSAGES/dolphin.mo share/locale/sv/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/tr/LC_MESSAGES/dolphin.mo share/locale/ug/LC_MESSAGES/dolphin.mo share/locale/uk/LC_MESSAGES/dolphin.mo share/locale/uk/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/wa/LC_MESSAGES/dolphin.mo share/locale/zh_CN/LC_MESSAGES/dolphin.mo share/locale/zh_CN/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/zh_TW/LC_MESSAGES/dolphin.mo +share/locale/zh_TW/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/metainfo/org.kde.dolphin.appdata.xml Index: head/x11-fm/konqueror/Makefile =================================================================== --- head/x11-fm/konqueror/Makefile (revision 514560) +++ head/x11-fm/konqueror/Makefile (revision 514561) @@ -1,27 +1,26 @@ # $FreeBSD$ PORTNAME= konqueror DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= x11-fm www kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE system log application LIB_DEPENDS= libtidy5.so:www/tidy-html5 USES= cmake compiler:c++11-lang desktop-file-utils gettext \ localbase:ldflags kde:5 pkgconfig qt:5 tar:xz USE_KDE= activities archive auth bookmarks codecs completion config configwidgets \ coreaddons crash dbusaddons guiaddons i18n iconthemes \ itemviews jobwidgets js kcmutils kdelibs4support \ kdesu khtml kio notifications parts pty service solid sonnet \ textwidgets unitconversion wallet widgetsaddons windowsystem xmlgui USE_QT= concurrent core dbus declarative gui location network printsupport script \ speech webchannel webengine widgets x11extras xml \ buildtools_build qmake_build USE_XORG= ice sm x11 xext OPTIONS_DEFINE= DOCS .include Index: head/x11-fm/konqueror/distinfo =================================================================== --- head/x11-fm/konqueror/distinfo (revision 514560) +++ head/x11-fm/konqueror/distinfo (revision 514561) @@ -1,3 +1,3 @@ -TIMESTAMP = 1567537397 -SHA256 (KDE/applications/19.08.1/konqueror-19.08.1.tar.xz) = 48a2847c7fcd5e30ae02d64523c3053b958ae9d3a7a649685660b1340aa644df -SIZE (KDE/applications/19.08.1/konqueror-19.08.1.tar.xz) = 7609624 +TIMESTAMP = 1570544805 +SHA256 (KDE/applications/19.08.2/konqueror-19.08.2.tar.xz) = 336da877ea44fb100ca5396bc843994d77d0939fe3c969ad8fa85f0e1644d111 +SIZE (KDE/applications/19.08.2/konqueror-19.08.2.tar.xz) = 7610208