Index: head/Mk/Uses/kde.mk =================================================================== --- head/Mk/Uses/kde.mk (revision 499276) +++ head/Mk/Uses/kde.mk (revision 499277) @@ -1,865 +1,865 @@ # $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.15.4 KDE_PLASMA_BRANCH?= stable # Current KDE frameworks. KDE_FRAMEWORKS_VERSION?= 5.57.0 KDE_FRAMEWORKS_BRANCH?= stable # Current KDE applications. -KDE_APPLICATIONS_VERSION?= 18.12.3 -KDE_APPLICATIONS_SHLIB_VER?= 5.10.3 +KDE_APPLICATIONS_VERSION?= 19.04.0 +KDE_APPLICATIONS_SHLIB_VER?= 5.11.0 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 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 # ============================================================================== # === HANDLE PYTHON ============================================================ # TODO: Keep in sync with cmake/modules/PythonMacros.cmake _PYTHON_SHORT_VER= ${PYTHON_VERSION:S/^python//:S/.//} . if ${_PYTHON_SHORT_VER} > 31 PLIST_SUB+= PYCACHE="__pycache__/" \ PYC_SUFFIX=cpython-${_PYTHON_SHORT_VER}.pyc \ PYO_SUFFIX=cpython-${_PYTHON_SHORT_VER}.pyo . else PLIST_SUB+= PYCACHE="" \ PYC_SUFFIX=pyc \ PYO_SUFFIX=pyo . 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= ${QT_PLUGINDIR}/designer/kf5widgets.so 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/security/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_LIB= liboxygenstyle5.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/pimsettingexporter # ====================== 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 499276) +++ head/accessibility/kmag/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551810956 -SHA256 (KDE/applications/18.12.3/kmag-18.12.3.tar.xz) = 04f1357e46bb3e32c85f08c9d5655cde6351c6efd27824a17019ea8562e8d5ba -SIZE (KDE/applications/18.12.3/kmag-18.12.3.tar.xz) = 628976 +TIMESTAMP = 1555094757 +SHA256 (KDE/applications/19.04.0/kmag-19.04.0.tar.xz) = c6725654846e83b383ff6c624683e4132538f2e812d8131cadefd6926316520e +SIZE (KDE/applications/19.04.0/kmag-19.04.0.tar.xz) = 740072 Index: head/accessibility/kmag/pkg-plist =================================================================== --- head/accessibility/kmag/pkg-plist (revision 499276) +++ head/accessibility/kmag/pkg-plist (revision 499277) @@ -1,74 +1,73 @@ bin/kmag man/ca/man1/kmag.1.gz man/de/man1/kmag.1.gz man/es/man1/kmag.1.gz man/et/man1/kmag.1.gz man/fr/man1/kmag.1.gz man/it/man1/kmag.1.gz man/man1/kmag.1.gz man/nl/man1/kmag.1.gz man/pt/man1/kmag.1.gz man/pt_BR/man1/kmag.1.gz man/ru/man1/kmag.1.gz man/sv/man1/kmag.1.gz man/uk/man1/kmag.1.gz share/applications/org.kde.kmag.desktop share/icons/hicolor/16x16/apps/kmag.png share/icons/hicolor/32x32/apps/kmag.png %%DATADIR%%/icons/hicolor/16x16/actions/followmouse.png %%DATADIR%%/icons/hicolor/16x16/actions/hidemouse.png %%DATADIR%%/icons/hicolor/16x16/actions/window.png -share/kxmlgui5/kmag/kmagui.rc share/locale/ar/LC_MESSAGES/kmag.mo share/locale/bg/LC_MESSAGES/kmag.mo share/locale/bs/LC_MESSAGES/kmag.mo share/locale/ca/LC_MESSAGES/kmag.mo share/locale/ca@valencia/LC_MESSAGES/kmag.mo share/locale/cs/LC_MESSAGES/kmag.mo share/locale/da/LC_MESSAGES/kmag.mo share/locale/de/LC_MESSAGES/kmag.mo share/locale/el/LC_MESSAGES/kmag.mo share/locale/en_GB/LC_MESSAGES/kmag.mo share/locale/eo/LC_MESSAGES/kmag.mo share/locale/es/LC_MESSAGES/kmag.mo share/locale/et/LC_MESSAGES/kmag.mo share/locale/eu/LC_MESSAGES/kmag.mo share/locale/fa/LC_MESSAGES/kmag.mo share/locale/fi/LC_MESSAGES/kmag.mo share/locale/fr/LC_MESSAGES/kmag.mo share/locale/ga/LC_MESSAGES/kmag.mo share/locale/gl/LC_MESSAGES/kmag.mo share/locale/he/LC_MESSAGES/kmag.mo share/locale/hi/LC_MESSAGES/kmag.mo share/locale/hr/LC_MESSAGES/kmag.mo share/locale/hu/LC_MESSAGES/kmag.mo share/locale/ia/LC_MESSAGES/kmag.mo share/locale/is/LC_MESSAGES/kmag.mo share/locale/it/LC_MESSAGES/kmag.mo share/locale/ja/LC_MESSAGES/kmag.mo share/locale/kk/LC_MESSAGES/kmag.mo share/locale/km/LC_MESSAGES/kmag.mo share/locale/ko/LC_MESSAGES/kmag.mo share/locale/lt/LC_MESSAGES/kmag.mo share/locale/lv/LC_MESSAGES/kmag.mo share/locale/mr/LC_MESSAGES/kmag.mo share/locale/nb/LC_MESSAGES/kmag.mo share/locale/nds/LC_MESSAGES/kmag.mo share/locale/nl/LC_MESSAGES/kmag.mo share/locale/nn/LC_MESSAGES/kmag.mo share/locale/pa/LC_MESSAGES/kmag.mo share/locale/pl/LC_MESSAGES/kmag.mo share/locale/pt/LC_MESSAGES/kmag.mo share/locale/pt_BR/LC_MESSAGES/kmag.mo share/locale/ro/LC_MESSAGES/kmag.mo share/locale/ru/LC_MESSAGES/kmag.mo share/locale/sk/LC_MESSAGES/kmag.mo share/locale/sl/LC_MESSAGES/kmag.mo share/locale/sr/LC_MESSAGES/kmag.mo share/locale/sv/LC_MESSAGES/kmag.mo share/locale/tr/LC_MESSAGES/kmag.mo share/locale/ug/LC_MESSAGES/kmag.mo share/locale/uk/LC_MESSAGES/kmag.mo share/locale/zh_CN/LC_MESSAGES/kmag.mo share/locale/zh_TW/LC_MESSAGES/kmag.mo share/metainfo/org.kde.kmag.appdata.xml Index: head/accessibility/kmousetool/Makefile =================================================================== --- head/accessibility/kmousetool/Makefile (revision 499276) +++ head/accessibility/kmousetool/Makefile (revision 499277) @@ -1,23 +1,22 @@ # $FreeBSD$ PORTNAME= kmousetool DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= accessibility kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Automatic mouse click tool for KDE LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs config configwidgets coreaddons dbusaddons \ ecm i18n iconthemes notifications widgetsaddons xmlgui USE_QT= core dbus gui phonon4 widgets xml \ buildtools_build qmake_build USE_XORG= ice sm x11 xext xtst OPTIONS_DEFINE= DOCS .include Index: head/accessibility/kmousetool/distinfo =================================================================== --- head/accessibility/kmousetool/distinfo (revision 499276) +++ head/accessibility/kmousetool/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551810956 -SHA256 (KDE/applications/18.12.3/kmousetool-18.12.3.tar.xz) = 34f6bb6f69c284e9cc88d8a31d59c16f003310c33e1e1affd5c363d18f8a91a8 -SIZE (KDE/applications/18.12.3/kmousetool-18.12.3.tar.xz) = 112624 +TIMESTAMP = 1555094757 +SHA256 (KDE/applications/19.04.0/kmousetool-19.04.0.tar.xz) = 89e383a395ec5f1c7d25cc5fb45ecb73a3a0931919a2be533634d77c01cb3fa9 +SIZE (KDE/applications/19.04.0/kmousetool-19.04.0.tar.xz) = 112692 Index: head/accessibility/kmouth/distinfo =================================================================== --- head/accessibility/kmouth/distinfo (revision 499276) +++ head/accessibility/kmouth/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551810956 -SHA256 (KDE/applications/18.12.3/kmouth-18.12.3.tar.xz) = 89b83fb8b4a5eb3c7a6409cd25c730a8bc3be72983c1a75f5e3d3abf01064486 -SIZE (KDE/applications/18.12.3/kmouth-18.12.3.tar.xz) = 2056032 +TIMESTAMP = 1555094758 +SHA256 (KDE/applications/19.04.0/kmouth-19.04.0.tar.xz) = 32666760ed76dd2dc816df52c990cb3b8487346ac37bf065e4b109fb6661ebc3 +SIZE (KDE/applications/19.04.0/kmouth-19.04.0.tar.xz) = 2056060 Index: head/archivers/ark/files/patch-git_a3bcf9bec =================================================================== --- head/archivers/ark/files/patch-git_a3bcf9bec (revision 499276) +++ head/archivers/ark/files/patch-git_a3bcf9bec (nonexistent) @@ -1,26 +0,0 @@ -commit a3bcf9becddd5725725089add15fbae39c79757e -Author: Elvis Angelaccio -Date: Sat Mar 9 13:05:35 2019 +0100 - - Fix creation of tar archives - - Usage of QString::compare() breaks the creation of tar archives, because - `zst` is "bigger" than `tar` which means ark would use the `zstd` filter - even when creating a simple tar archive. - - BUG: 405136 - FIXED-IN: 19.03.80 - -diff --git a/plugins/libarchive/readwritelibarchiveplugin.cpp b/plugins/libarchive/readwritelibarchiveplugin.cpp -index 38f62881..e83d0087 100644 ---- plugins/libarchive/readwritelibarchiveplugin.cpp -+++ plugins/libarchive/readwritelibarchiveplugin.cpp -@@ -352,7 +352,7 @@ bool ReadWriteLibarchivePlugin::initializeNewFileWriterFilters(const Compression - qCDebug(ARK) << "Detected lz4 compression for new file"; - ret = archive_write_add_filter_lz4(m_archiveWriter.data()); - #ifdef HAVE_ZSTD_SUPPORT -- } else if (filename().rightRef(3).compare(QLatin1String("zst"), Qt::CaseInsensitive)) { -+ } else if (filename().right(3).toUpper() == QLatin1String("ZST")) { - qCDebug(ARK) << "Detected zstd compression for new file"; - ret = archive_write_add_filter_zstd(m_archiveWriter.data()); - #endif Property changes on: head/archivers/ark/files/patch-git_a3bcf9bec ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/archivers/ark/Makefile =================================================================== --- head/archivers/ark/Makefile (revision 499276) +++ head/archivers/ark/Makefile (revision 499277) @@ -1,44 +1,43 @@ # $FreeBSD$ PORTNAME= ark DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 3 CATEGORIES= archivers kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Archiving tool for KDE LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/COPYING USES= cmake compiler:c++11-lang gettext libarchive kde:5 \ qt:5 shared-mime-info tar:xz USE_KDE= archive auth bookmarks codecs completion config configwidgets \ coreaddons crash dbusaddons doctools ecm i18n iconthemes \ itemmodels itemviews jobwidgets khtml kio parts pty service \ solid sonnet textwidgets widgetsaddons xmlgui USE_QT= concurrent core dbus gui network widgets xml \ buildtools_build qmake_build USE_LDCONFIG= yes OPTIONS_DEFINE= 7ZIP RAR ZIP DOCS OPTIONS_DEFAULT= 7ZIP ZIP DOCS OPTIONS_DEFAULT_i386= RAR OPTIONS_DEFAULT_amd64= RAR OPTIONS_SUB= YES # The 7ZIP and RAR options only need runtime dependencies; # the port builds identically with or without them. 7ZIP_DESC= Support for 7-Zip archives (runtime) 7ZIP_RUN_DEPENDS= 7z:archivers/p7zip RAR_DESC= Support for RAR archives (runtime) RAR_RUN_DEPENDS= unrar:archivers/unrar \ rar:archivers/rar ZIP_DESC= Support for ZIP archives ZIP_LIB_DEPENDS= libzip.so:archivers/libzip ZIP_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_LibZip .include Index: head/archivers/ark/distinfo =================================================================== --- head/archivers/ark/distinfo (revision 499276) +++ head/archivers/ark/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551810954 -SHA256 (KDE/applications/18.12.3/ark-18.12.3.tar.xz) = ecf781b5d3691bb967c9170938c1133e2972ee97d71aab2de65487a952700722 -SIZE (KDE/applications/18.12.3/ark-18.12.3.tar.xz) = 2580024 +TIMESTAMP = 1555094758 +SHA256 (KDE/applications/19.04.0/ark-19.04.0.tar.xz) = 35e8e516a8554e086264d9a9a4fa66c2b47fa227eb9e512a1d0d24172cd07a84 +SIZE (KDE/applications/19.04.0/ark-19.04.0.tar.xz) = 2582636 Index: head/archivers/ark/pkg-plist =================================================================== --- head/archivers/ark/pkg-plist (revision 499276) +++ head/archivers/ark/pkg-plist (revision 499277) @@ -1,95 +1,95 @@ bin/ark etc/xdg/ark.categories lib/libkerfuffle.so.%%KDE_APPLICATIONS_VERSION_SHORT%% -lib/libkerfuffle.so.%%KDE_APPLICATIONS_VERSION%% +lib/libkerfuffle.so.19.4.0 %%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 499276) +++ head/astro/libkgeomap/Makefile (revision 499277) @@ -1,29 +1,28 @@ # $FreeBSD$ PORTNAME= libkgeomap DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 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 gui network webkit widgets xml \ buildtools_build qmake_build USE_LDCONFIG= yes OPTIONS_DEFINE= DOCS .include Index: head/astro/libkgeomap/distinfo =================================================================== --- head/astro/libkgeomap/distinfo (revision 499276) +++ head/astro/libkgeomap/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551810991 -SHA256 (KDE/applications/18.12.3/libkgeomap-18.12.3.tar.xz) = 2c4459e61e471f0344d03cfa5f00fe2a1890cd2c1501323ceed26d522496c47b -SIZE (KDE/applications/18.12.3/libkgeomap-18.12.3.tar.xz) = 151100 +TIMESTAMP = 1555094758 +SHA256 (KDE/applications/19.04.0/libkgeomap-19.04.0.tar.xz) = 12cf73da1d406b8f6efe88c1d1bc56ecf3260bbe41759c4dec061df627e990e9 +SIZE (KDE/applications/19.04.0/libkgeomap-19.04.0.tar.xz) = 151096 Index: head/astro/marble/files/patch-CMakeLists.txt =================================================================== --- head/astro/marble/files/patch-CMakeLists.txt (revision 499276) +++ head/astro/marble/files/patch-CMakeLists.txt (nonexistent) @@ -1,49 +0,0 @@ -From bc206d50cf8c0d0fc9f90cce58a2499ec945bd29 Mon Sep 17 00:00:00 2001 -From: Andreas Sturmlechner -Date: Wed, 9 Jan 2019 20:41:28 +0100 -Subject: [PATCH] Avoid overwriting Qt5_FOUND with Qt5DBus or Qt5WebEngine - disabled - ---- - CMakeLists.txt | 17 ++++++----------- - 1 file changed, 6 insertions(+), 11 deletions(-) - -diff --git a/CMakeLists.txt b/CMakeLists.txt -index 9261a67a4..82f7206d2 100644 ---- CMakeLists.txt -+++ CMakeLists.txt -@@ -121,18 +121,13 @@ find_package(Qt5 ${REQUIRED_QT_VERSION} REQUIRED - ) - - if(CMAKE_SYSTEM_NAME STREQUAL Android) -- find_package(Qt5 ${REQUIRED_QT_VERSION} REQUIRED -- COMPONENTS -- Positioning -- Multimedia -- ) -+ find_package(Qt5Positioning ${REQUIRED_QT_VERSION} REQUIRED) -+ find_package(Qt5Multimedia) -+ - set ( MARBLE_NO_WEBKITWIDGETS TRUE ) - else() -- find_package(Qt5 ${REQUIRED_QT_VERSION} -- COMPONENTS -- WebEngine -- WebEngineWidgets -- ) -+ find_package(Qt5WebEngine ${REQUIRED_QT_VERSION}) -+ find_package(Qt5WebEngineWidgets ${REQUIRED_QT_VERSION}) - - if ( NOT Qt5WebEngineWidgets_FOUND ) - set ( MARBLE_NO_WEBKITWIDGETS TRUE ) -@@ -140,7 +135,7 @@ else() - endif() - - if (BUILD_WITH_DBUS) -- find_package(Qt5 ${REQUIRED_QT_VERSION} COMPONENTS DBus) -+ find_package(Qt5DBus ${REQUIRED_QT_VERSION} COMPONENTS) - if (NOT Qt5DBus_FOUND) - set(MARBLE_NO_DBUS TRUE) - endif() --- -2.20.1 Property changes on: head/astro/marble/files/patch-CMakeLists.txt ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/astro/marble/files/patch-git_bc32ed4 =================================================================== --- head/astro/marble/files/patch-git_bc32ed4 (revision 499276) +++ head/astro/marble/files/patch-git_bc32ed4 (nonexistent) @@ -1,35 +0,0 @@ -From bc32ed4ef08d858edadcfd9eb87d550dfc2704ac Mon Sep 17 00:00:00 2001 -From: Aleix Pol -Date: Wed, 21 Nov 2018 03:47:59 +0100 -Subject: [PATCH] Include a comment to the desktop file - -Summary: -Otherwise the appstream file won't have a summary and appstream complains. - -CCBUG: 400431 - -Reviewers: #marble, kossebau, sanjibanb - -Reviewed By: sanjibanb - -Subscribers: marble-devel, kde-edu - -Tags: #marble, #kde_edu - -Differential Revision: https://phabricator.kde.org/D16866 ---- - src/plasma/wallpapers/worldmap/metadata.desktop | 1 + - 1 file changed, 1 insertion(+) - -diff --git a/src/plasma/wallpapers/worldmap/metadata.desktop b/src/plasma/wallpapers/worldmap/metadata.desktop -index af0eef807..816232d5e 100644 ---- src/plasma/wallpapers/worldmap/metadata.desktop -+++ src/plasma/wallpapers/worldmap/metadata.desktop -@@ -26,6 +26,7 @@ Name[uk]=Карта світу - Name[x-test]=xxWorld Mapxx - Name[zh_CN]=世界地图 - Name[zh_TW]=世界地圖 -+Comment=Our beautiful globe as your wallpaper - Type=Service - Icon=marble - Property changes on: head/astro/marble/files/patch-git_bc32ed4 ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/astro/marble/files/patch-src_lib_marble_CMakeLists.txt =================================================================== --- head/astro/marble/files/patch-src_lib_marble_CMakeLists.txt (revision 499276) +++ head/astro/marble/files/patch-src_lib_marble_CMakeLists.txt (nonexistent) @@ -1,32 +0,0 @@ -diff --git a/src/lib/marble/CMakeLists.txt b/src/lib/marble/CMakeLists.txt -index 155c0fc51..1ce5f5f52 100644 ---- src/lib/marble/CMakeLists.txt -+++ src/lib/marble/CMakeLists.txt -@@ -1,4 +1,4 @@ --PROJECT(marblewidget) -+# PROJECT(marblewidget) - - macro_optional_find_package(Phonon4Qt5 QUIET) - marble_set_package_properties( Phonon4Qt5 PROPERTIES -@@ -13,6 +13,10 @@ endif() - CONFIGURE_FILE(${CMAKE_CURRENT_SOURCE_DIR}/config-phonon.h.cmake - ${CMAKE_CURRENT_BINARY_DIR}/config-phonon.h) - -+if(MARBLE_NO_WEBKITWIDGETS) -+ add_definitions(-DMARBLE_NO_WEBKITWIDGETS) -+endif() -+ - INCLUDE_DIRECTORIES( - ${CMAKE_CURRENT_SOURCE_DIR} - ${CMAKE_CURRENT_BINARY_DIR} -@@ -47,10 +51,6 @@ set(MARBLE_ABI_VERSION "28") - - ########### next target ############### - --if(MARBLE_NO_WEBKITWIDGETS) --add_definitions(-DMARBLE_NO_WEBKITWIDGETS) --endif() -- - set(marblewidget_SRCS - ${geodata_SRCS} - ${graphicsview_SRCS} Property changes on: head/astro/marble/files/patch-src_lib_marble_CMakeLists.txt ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/astro/marble/Makefile =================================================================== --- head/astro/marble/Makefile (revision 499276) +++ head/astro/marble/Makefile (revision 499277) @@ -1,46 +1,45 @@ # $FreeBSD$ PORTNAME= marble DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 2 CATEGORIES= astro kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Virtual globe and world atlas for KDE LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/LICENSE.txt LIB_DEPENDS= libquazip5.so:archivers/quazip USES= cmake compiler:c++11-lang desktop-file-utils gettext \ kde:5 qt:5 tar:xz USE_KDE= attica auth codecs completion config configwidgets coreaddons \ crash doctools ecm i18n jobwidgets kio newstuff package parts \ plasma-framework runner service sonnet textwidgets wallet \ widgetsaddons xmlgui USE_QT= concurrent core dbus declarative designer gui location network opengl \ phonon4 printsupport script sql svg webchannel widgets xml \ buildtools_build qmake_build USE_LDCONFIG= yes MAKE_ENV= XDG_CONFIG_HOME=/dev/null # We have to set QT_IMPORTS_PATH, as it does not get picked up CMAKE_ARGS= -DMOBILE:BOOL=FALSE \ -DQT_IMPORTS_DIR:PATH=${QT_IMPORTDIR} OPTIONS_DEFINE= GPS DOCS WEBENGINE OPTIONS_DEFAULT=GPS OPTIONS_DEFAULT_amd64= WEBENGINE OPTIONS_DEFAULT_i386= WEBENGINE OPTIONS_SUB= yes GPS_DESC= Support for GPS position provider GPS_LIB_DEPENDS= libgps.so:astro/gpsd GPS_CMAKE_BOOL_ON= WITH_libgps WEBENGINE_DESC= Add dependency on qt5-webengine WEBENGINE_USE= QT=webengine WEBENGINE_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_Qt5WebEngineWidgets .include Index: head/astro/marble/distinfo =================================================================== --- head/astro/marble/distinfo (revision 499276) +++ head/astro/marble/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551810992 -SHA256 (KDE/applications/18.12.3/marble-18.12.3.tar.xz) = 0bfd7ae576e42ebbddadc8c83c2fec5edaf462bcf284642b1002d36d751b24ee -SIZE (KDE/applications/18.12.3/marble-18.12.3.tar.xz) = 52419848 +TIMESTAMP = 1555094759 +SHA256 (KDE/applications/19.04.0/marble-19.04.0.tar.xz) = 7405c76970d6ec500e5dc99ea2926cc11571e69f29c2e79f025f0f3ec4048960 +SIZE (KDE/applications/19.04.0/marble-19.04.0.tar.xz) = 52316628 Index: head/audio/audiocd-kio/Makefile =================================================================== --- head/audio/audiocd-kio/Makefile (revision 499276) +++ head/audio/audiocd-kio/Makefile (revision 499277) @@ -1,35 +1,34 @@ # $FreeBSD$ PORTNAME= audiocd-kio DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= audio kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE IOSlave for accessing audio CDs LICENSE= GPLv2 LIB_DEPENDS= libFLAC.so:audio/flac \ libcdda_paranoia.so:audio/cdparanoia \ libogg.so:audio/libogg \ libvorbis.so:audio/libvorbis \ libKF5Cddb.so:audio/libkcddb \ libKF5CompactDisc.so:audio/libkcompactdisc USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= auth bookmarks codecs completion config configwidgets \ coreaddons crash guiaddons i18n iconthemes itemviews \ jobwidgets kcmutils kdelibs4support kio notifications parts \ service solid sonnet textwidgets unitconversion \ widgetsaddons windowsystem xmlgui USE_QT= core dbus gui network phonon4 printsupport widgets xml \ buildtools_build qmake_build USE_LDCONFIG= yes OPTIONS_DEFINE= LAME DOCS LAME_DESC= Install LAME MP3 audio encoder LAME_RUN_DEPENDS= lame:audio/lame .include Index: head/audio/audiocd-kio/distinfo =================================================================== --- head/audio/audiocd-kio/distinfo (revision 499276) +++ head/audio/audiocd-kio/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551811014 -SHA256 (KDE/applications/18.12.3/audiocd-kio-18.12.3.tar.xz) = c15ebda9330688c0304be36999f4900ccd7c0b1ce11e19c296975414dafe53c8 -SIZE (KDE/applications/18.12.3/audiocd-kio-18.12.3.tar.xz) = 250844 +TIMESTAMP = 1555094759 +SHA256 (KDE/applications/19.04.0/audiocd-kio-19.04.0.tar.xz) = 0f347be9c873eb75144d2b8f3f2e28d2e52be4c1a0f59a19be99edd867f17371 +SIZE (KDE/applications/19.04.0/audiocd-kio-19.04.0.tar.xz) = 353764 Index: head/audio/audiocd-kio/pkg-plist =================================================================== --- head/audio/audiocd-kio/pkg-plist (revision 499276) +++ head/audio/audiocd-kio/pkg-plist (revision 499277) @@ -1,260 +1,281 @@ etc/xdg/kio_audiocd.categories include/audiocdencoder.h include/audiocdplugins_export.h lib/libaudiocdplugins.so lib/libaudiocdplugins.so.5 lib/libaudiocdplugins.so.5.0.0 %%QT_PLUGINDIR%%/kcm_audiocd.so +%%QT_PLUGINDIR%%/kf5/kio/audiocd.so %%QT_PLUGINDIR%%/libaudiocd_encoder_flac.so %%QT_PLUGINDIR%%/libaudiocd_encoder_lame.so +%%QT_PLUGINDIR%%/libaudiocd_encoder_opus.so %%QT_PLUGINDIR%%/libaudiocd_encoder_wav.so -%%QT_PLUGINDIR%%/libkio_audiocd.so share/config.kcfg/audiocd_flac_encoder.kcfg share/config.kcfg/audiocd_lame_encoder.kcfg +share/config.kcfg/audiocd_opus_encoder.kcfg share/konqsidebartng/virtual_folders/services/audiocd.desktop share/kservices5/audiocd.desktop share/kservices5/audiocd.protocol share/locale/ar/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/ar/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/ar/LC_MESSAGES/kcmaudiocd.mo share/locale/ar/LC_MESSAGES/kio_audiocd.mo share/locale/bg/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/bg/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/bg/LC_MESSAGES/kcmaudiocd.mo share/locale/bg/LC_MESSAGES/kio_audiocd.mo share/locale/bs/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/bs/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/bs/LC_MESSAGES/kcmaudiocd.mo share/locale/bs/LC_MESSAGES/kio_audiocd.mo share/locale/ca/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/ca/LC_MESSAGES/audiocd_encoder_lame.mo +share/locale/ca/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/ca/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/ca/LC_MESSAGES/kcmaudiocd.mo share/locale/ca/LC_MESSAGES/kio_audiocd.mo share/locale/ca@valencia/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/ca@valencia/LC_MESSAGES/audiocd_encoder_lame.mo +share/locale/ca@valencia/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/ca@valencia/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/ca@valencia/LC_MESSAGES/kcmaudiocd.mo share/locale/ca@valencia/LC_MESSAGES/kio_audiocd.mo share/locale/cs/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/cs/LC_MESSAGES/audiocd_encoder_lame.mo +share/locale/cs/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/cs/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/cs/LC_MESSAGES/kcmaudiocd.mo share/locale/cs/LC_MESSAGES/kio_audiocd.mo share/locale/da/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/da/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/da/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/da/LC_MESSAGES/kcmaudiocd.mo share/locale/da/LC_MESSAGES/kio_audiocd.mo share/locale/de/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/de/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/de/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/de/LC_MESSAGES/kcmaudiocd.mo share/locale/de/LC_MESSAGES/kio_audiocd.mo share/locale/el/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/el/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/el/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/el/LC_MESSAGES/kcmaudiocd.mo share/locale/el/LC_MESSAGES/kio_audiocd.mo share/locale/en_GB/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/en_GB/LC_MESSAGES/audiocd_encoder_lame.mo +share/locale/en_GB/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/en_GB/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/en_GB/LC_MESSAGES/kcmaudiocd.mo share/locale/en_GB/LC_MESSAGES/kio_audiocd.mo share/locale/eo/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/eo/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/eo/LC_MESSAGES/kcmaudiocd.mo share/locale/eo/LC_MESSAGES/kio_audiocd.mo share/locale/es/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/es/LC_MESSAGES/audiocd_encoder_lame.mo +share/locale/es/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/es/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/es/LC_MESSAGES/kcmaudiocd.mo share/locale/es/LC_MESSAGES/kio_audiocd.mo share/locale/et/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/et/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/et/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/et/LC_MESSAGES/kcmaudiocd.mo share/locale/et/LC_MESSAGES/kio_audiocd.mo share/locale/eu/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/eu/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/eu/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/eu/LC_MESSAGES/kcmaudiocd.mo share/locale/eu/LC_MESSAGES/kio_audiocd.mo share/locale/fa/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/fa/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/fa/LC_MESSAGES/kcmaudiocd.mo share/locale/fa/LC_MESSAGES/kio_audiocd.mo share/locale/fi/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/fi/LC_MESSAGES/audiocd_encoder_lame.mo +share/locale/fi/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/fi/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/fi/LC_MESSAGES/kcmaudiocd.mo share/locale/fi/LC_MESSAGES/kio_audiocd.mo share/locale/fr/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/fr/LC_MESSAGES/audiocd_encoder_lame.mo +share/locale/fr/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/fr/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/fr/LC_MESSAGES/kcmaudiocd.mo share/locale/fr/LC_MESSAGES/kio_audiocd.mo share/locale/ga/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/ga/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/ga/LC_MESSAGES/kcmaudiocd.mo share/locale/ga/LC_MESSAGES/kio_audiocd.mo share/locale/gl/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/gl/LC_MESSAGES/audiocd_encoder_lame.mo +share/locale/gl/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/gl/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/gl/LC_MESSAGES/kcmaudiocd.mo share/locale/gl/LC_MESSAGES/kio_audiocd.mo share/locale/he/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/he/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/he/LC_MESSAGES/kcmaudiocd.mo share/locale/he/LC_MESSAGES/kio_audiocd.mo share/locale/hi/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/hi/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/hi/LC_MESSAGES/kcmaudiocd.mo share/locale/hi/LC_MESSAGES/kio_audiocd.mo share/locale/hr/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/hr/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/hr/LC_MESSAGES/kcmaudiocd.mo share/locale/hr/LC_MESSAGES/kio_audiocd.mo share/locale/hu/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/hu/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/hu/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/hu/LC_MESSAGES/kcmaudiocd.mo share/locale/hu/LC_MESSAGES/kio_audiocd.mo share/locale/ia/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/ia/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/ia/LC_MESSAGES/kcmaudiocd.mo share/locale/ia/LC_MESSAGES/kio_audiocd.mo share/locale/id/LC_MESSAGES/kio_audiocd.mo share/locale/is/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/is/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/is/LC_MESSAGES/kcmaudiocd.mo share/locale/is/LC_MESSAGES/kio_audiocd.mo share/locale/it/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/it/LC_MESSAGES/audiocd_encoder_lame.mo +share/locale/it/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/it/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/it/LC_MESSAGES/kcmaudiocd.mo share/locale/it/LC_MESSAGES/kio_audiocd.mo share/locale/ja/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/ja/LC_MESSAGES/audiocd_encoder_lame.mo +share/locale/ja/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/ja/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/ja/LC_MESSAGES/kcmaudiocd.mo share/locale/ja/LC_MESSAGES/kio_audiocd.mo share/locale/kk/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/kk/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/kk/LC_MESSAGES/kcmaudiocd.mo share/locale/kk/LC_MESSAGES/kio_audiocd.mo share/locale/km/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/km/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/km/LC_MESSAGES/kcmaudiocd.mo share/locale/km/LC_MESSAGES/kio_audiocd.mo share/locale/ko/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/ko/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/ko/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/ko/LC_MESSAGES/kcmaudiocd.mo share/locale/ko/LC_MESSAGES/kio_audiocd.mo share/locale/lt/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/lt/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/lt/LC_MESSAGES/kcmaudiocd.mo share/locale/lt/LC_MESSAGES/kio_audiocd.mo share/locale/lv/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/lv/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/lv/LC_MESSAGES/kcmaudiocd.mo share/locale/lv/LC_MESSAGES/kio_audiocd.mo share/locale/mr/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/mr/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/mr/LC_MESSAGES/kcmaudiocd.mo share/locale/mr/LC_MESSAGES/kio_audiocd.mo share/locale/nb/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/nb/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/nb/LC_MESSAGES/kcmaudiocd.mo share/locale/nb/LC_MESSAGES/kio_audiocd.mo share/locale/nds/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/nds/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/nds/LC_MESSAGES/kcmaudiocd.mo share/locale/nds/LC_MESSAGES/kio_audiocd.mo share/locale/nl/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/nl/LC_MESSAGES/audiocd_encoder_lame.mo +share/locale/nl/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/nl/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/nl/LC_MESSAGES/kcmaudiocd.mo share/locale/nl/LC_MESSAGES/kio_audiocd.mo share/locale/nn/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/nn/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/nn/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/nn/LC_MESSAGES/kcmaudiocd.mo share/locale/nn/LC_MESSAGES/kio_audiocd.mo share/locale/pa/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/pa/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/pa/LC_MESSAGES/kcmaudiocd.mo share/locale/pa/LC_MESSAGES/kio_audiocd.mo share/locale/pl/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/pl/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/pl/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/pl/LC_MESSAGES/kcmaudiocd.mo share/locale/pl/LC_MESSAGES/kio_audiocd.mo share/locale/pt/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/pt/LC_MESSAGES/audiocd_encoder_lame.mo +share/locale/pt/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/pt/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/pt/LC_MESSAGES/kcmaudiocd.mo share/locale/pt/LC_MESSAGES/kio_audiocd.mo share/locale/pt_BR/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/pt_BR/LC_MESSAGES/audiocd_encoder_lame.mo +share/locale/pt_BR/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/pt_BR/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/pt_BR/LC_MESSAGES/kcmaudiocd.mo share/locale/pt_BR/LC_MESSAGES/kio_audiocd.mo share/locale/ro/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/ro/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/ro/LC_MESSAGES/kcmaudiocd.mo share/locale/ro/LC_MESSAGES/kio_audiocd.mo share/locale/ru/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/ru/LC_MESSAGES/audiocd_encoder_lame.mo +share/locale/ru/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/ru/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/ru/LC_MESSAGES/kcmaudiocd.mo share/locale/ru/LC_MESSAGES/kio_audiocd.mo share/locale/sk/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/sk/LC_MESSAGES/audiocd_encoder_lame.mo +share/locale/sk/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/sk/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/sk/LC_MESSAGES/kcmaudiocd.mo share/locale/sk/LC_MESSAGES/kio_audiocd.mo share/locale/sl/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/sl/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/sl/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/sl/LC_MESSAGES/kcmaudiocd.mo share/locale/sl/LC_MESSAGES/kio_audiocd.mo share/locale/sr/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/sr/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/sr/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/sr/LC_MESSAGES/kcmaudiocd.mo share/locale/sr/LC_MESSAGES/kio_audiocd.mo share/locale/sv/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/sv/LC_MESSAGES/audiocd_encoder_lame.mo +share/locale/sv/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/sv/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/sv/LC_MESSAGES/kcmaudiocd.mo share/locale/sv/LC_MESSAGES/kio_audiocd.mo share/locale/tr/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/tr/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/tr/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/tr/LC_MESSAGES/kcmaudiocd.mo share/locale/tr/LC_MESSAGES/kio_audiocd.mo share/locale/ug/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/ug/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/ug/LC_MESSAGES/kcmaudiocd.mo share/locale/ug/LC_MESSAGES/kio_audiocd.mo share/locale/uk/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/uk/LC_MESSAGES/audiocd_encoder_lame.mo +share/locale/uk/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/uk/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/uk/LC_MESSAGES/kcmaudiocd.mo share/locale/uk/LC_MESSAGES/kio_audiocd.mo share/locale/wa/LC_MESSAGES/kcmaudiocd.mo share/locale/wa/LC_MESSAGES/kio_audiocd.mo share/locale/zh_CN/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/zh_CN/LC_MESSAGES/audiocd_encoder_lame.mo +share/locale/zh_CN/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/zh_CN/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/zh_CN/LC_MESSAGES/kcmaudiocd.mo share/locale/zh_CN/LC_MESSAGES/kio_audiocd.mo share/locale/zh_TW/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/zh_TW/LC_MESSAGES/audiocd_encoder_lame.mo +share/locale/zh_TW/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/zh_TW/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/zh_TW/LC_MESSAGES/kcmaudiocd.mo share/locale/zh_TW/LC_MESSAGES/kio_audiocd.mo -share/solid/actions/solid_audiocd.desktop share/metainfo/org.kde.kio_audiocd.appdata.xml +share/solid/actions/solid_audiocd.desktop Index: head/audio/juk/Makefile =================================================================== --- head/audio/juk/Makefile (revision 499276) +++ head/audio/juk/Makefile (revision 499277) @@ -1,25 +1,24 @@ # $FreeBSD$ PORTNAME= juk DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= audio kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Jukebox, tagger and music collection manager LICENSE= GPLv2 LIB_DEPENDS= libtag.so:audio/taglib USES= cmake compiler:c++11-lang kde:5 qt:5 tar:xz USE_KDE= auth bookmarks codecs completion config configwidgets \ coreaddons crash globalaccel i18n iconthemes itemviews \ jobwidgets kio notifications service solid sonnet textwidgets \ wallet widgetsaddons windowsystem xmlgui USE_QT= core dbus gui network phonon4 svg widgets xml \ buildtools_build qmake_build OPTIONS_DEFINE= DOCS .include Index: head/audio/juk/distinfo =================================================================== --- head/audio/juk/distinfo (revision 499276) +++ head/audio/juk/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551811014 -SHA256 (KDE/applications/18.12.3/juk-18.12.3.tar.xz) = 8755710f551b3173561ebfcc996f32b3fd8de78d5574584f8e37015541a9fdca -SIZE (KDE/applications/18.12.3/juk-18.12.3.tar.xz) = 1876432 +TIMESTAMP = 1555094760 +SHA256 (KDE/applications/19.04.0/juk-19.04.0.tar.xz) = 952366e14526701109e83c1979c2a7b3dfdf3c054ecb86c9b5a6cf9825196f60 +SIZE (KDE/applications/19.04.0/juk-19.04.0.tar.xz) = 1872380 Index: head/audio/kmix/distinfo =================================================================== --- head/audio/kmix/distinfo (revision 499276) +++ head/audio/kmix/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551811025 -SHA256 (KDE/applications/18.12.3/kmix-18.12.3.tar.xz) = 4edf31a36a5d700cc190ba7a5a0d76789729069d48324a22bda7977cb4ed081a -SIZE (KDE/applications/18.12.3/kmix-18.12.3.tar.xz) = 1075772 +TIMESTAMP = 1555094770 +SHA256 (KDE/applications/19.04.0/kmix-19.04.0.tar.xz) = f372d50ccdb496a3bb7a3f68c84c921c12d3d535a792400e701ed7c640e45f2a +SIZE (KDE/applications/19.04.0/kmix-19.04.0.tar.xz) = 1071276 Index: head/audio/kwave/distinfo =================================================================== --- head/audio/kwave/distinfo (revision 499276) +++ head/audio/kwave/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551811025 -SHA256 (KDE/applications/18.12.3/kwave-18.12.3.tar.xz) = 4ca9a15ecd06b96e013855f8109b52fcd4a848652438b2e7a2f55a8fcb1d1c48 -SIZE (KDE/applications/18.12.3/kwave-18.12.3.tar.xz) = 6213072 +TIMESTAMP = 1555094770 +SHA256 (KDE/applications/19.04.0/kwave-19.04.0.tar.xz) = 510b99740c87ade2e644b8b62ece9ac46721e636aeb83f253939d4d191d03a52 +SIZE (KDE/applications/19.04.0/kwave-19.04.0.tar.xz) = 6212184 Index: head/audio/libkcddb/distinfo =================================================================== --- head/audio/libkcddb/distinfo (revision 499276) +++ head/audio/libkcddb/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551811014 -SHA256 (KDE/applications/18.12.3/libkcddb-18.12.3.tar.xz) = 38bffd551b82628a25b46bd598c257927855b77c6b6b73a9b69ac7bf538afc29 -SIZE (KDE/applications/18.12.3/libkcddb-18.12.3.tar.xz) = 426548 +TIMESTAMP = 1555094771 +SHA256 (KDE/applications/19.04.0/libkcddb-19.04.0.tar.xz) = d15cef6fe986daba5ea051fda7146c784d993e83ca495faf58fad586ca370c32 +SIZE (KDE/applications/19.04.0/libkcddb-19.04.0.tar.xz) = 426552 Index: head/audio/libkcompactdisc/Makefile =================================================================== --- head/audio/libkcompactdisc/Makefile (revision 499276) +++ head/audio/libkcompactdisc/Makefile (revision 499277) @@ -1,23 +1,22 @@ # $FreeBSD$ PORTNAME= libkcompactdisc DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= audio kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE library for interfacing with audio CDs USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= coreaddons ecm emoticons i18n itemmodels itemviews \ kdelibs4support solid USE_QT= core dbus phonon4\ buildtools_build qmake_build USE_LDCONFIG= yes OPTIONS_DEFINE= ALSA DOCS ALSA_LIB_DEPENDS= libasound.so:audio/alsa-lib ALSA_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_ALSA .include Index: head/audio/libkcompactdisc/distinfo =================================================================== --- head/audio/libkcompactdisc/distinfo (revision 499276) +++ head/audio/libkcompactdisc/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551811015 -SHA256 (KDE/applications/18.12.3/libkcompactdisc-18.12.3.tar.xz) = a464ebfdd1a2834c2597e7ffd1b0d946ddfda348eea5ac8d1d42b46d6c478926 -SIZE (KDE/applications/18.12.3/libkcompactdisc-18.12.3.tar.xz) = 88552 +TIMESTAMP = 1555094771 +SHA256 (KDE/applications/19.04.0/libkcompactdisc-19.04.0.tar.xz) = 7236af70872c7b20070d9c096a8d4da45cdf62874d6d1314b183edf8b0d701d6 +SIZE (KDE/applications/19.04.0/libkcompactdisc-19.04.0.tar.xz) = 88608 Index: head/databases/akonadi/Makefile =================================================================== --- head/databases/akonadi/Makefile (revision 499276) +++ head/databases/akonadi/Makefile (revision 499277) @@ -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= 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 499276) +++ head/databases/akonadi/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551811121 -SHA256 (KDE/applications/18.12.3/akonadi-18.12.3.tar.xz) = f930deaade1cac1488b8af05cc28f4a78a441c34dbe875b673af3423f8a14658 -SIZE (KDE/applications/18.12.3/akonadi-18.12.3.tar.xz) = 1555044 +TIMESTAMP = 1555094782 +SHA256 (KDE/applications/19.04.0/akonadi-19.04.0.tar.xz) = c0a2c4259b51293d21487cfe2295df6e8dcfb7ab50eb1a698f531dc7d3253e9a +SIZE (KDE/applications/19.04.0/akonadi-19.04.0.tar.xz) = 1574736 Index: head/databases/akonadi/pkg-plist =================================================================== --- head/databases/akonadi/pkg-plist (revision 499276) +++ head/databases/akonadi/pkg-plist (revision 499277) @@ -1,469 +1,465 @@ bin/akonadi2xml bin/akonadi_agent_launcher bin/akonadi_agent_server bin/akonadi_control bin/akonadi_knut_resource bin/akonadi_rds bin/akonadictl bin/akonadiselftest bin/akonadiserver bin/akonaditest bin/asapcat etc/xdg/akonadi.categories etc/xdg/akonadi.renamecategories etc/xdg/akonadi/mysql-global-mobile.conf etc/xdg/akonadi/mysql-global.conf include/KF5/AkonadiAgentBase/AgentBase include/KF5/AkonadiAgentBase/AgentSearchInterface include/KF5/AkonadiAgentBase/PreprocessorBase include/KF5/AkonadiAgentBase/ResourceBase include/KF5/AkonadiAgentBase/ResourceSettings include/KF5/AkonadiAgentBase/TransportResourceBase include/KF5/AkonadiAgentBase/agentbase.h include/KF5/AkonadiAgentBase/agentsearchinterface.h include/KF5/AkonadiAgentBase/akonadiagentbase_export.h include/KF5/AkonadiAgentBase/preprocessorbase.h include/KF5/AkonadiAgentBase/resourcebase.h include/KF5/AkonadiAgentBase/resourcebasesettings.h include/KF5/AkonadiAgentBase/resourcesettings.h include/KF5/AkonadiAgentBase/transportresourcebase.h include/KF5/AkonadiCore/AbstractDifferencesReporter include/KF5/AkonadiCore/AgentConfigurationBase include/KF5/AkonadiCore/AgentConfigurationFactoryBase include/KF5/AkonadiCore/AgentFilterProxyModel include/KF5/AkonadiCore/AgentInstance include/KF5/AkonadiCore/AgentInstanceCreateJob include/KF5/AkonadiCore/AgentInstanceModel include/KF5/AkonadiCore/AgentManager include/KF5/AkonadiCore/AgentType include/KF5/AkonadiCore/AgentTypeModel include/KF5/AkonadiCore/Attribute include/KF5/AkonadiCore/AttributeFactory include/KF5/AkonadiCore/CachePolicy include/KF5/AkonadiCore/ChangeNotification include/KF5/AkonadiCore/ChangeRecorder include/KF5/AkonadiCore/Collection include/KF5/AkonadiCore/CollectionAttributesSynchronizationJob include/KF5/AkonadiCore/CollectionColorAttribute include/KF5/AkonadiCore/CollectionCopyJob include/KF5/AkonadiCore/CollectionCreateJob include/KF5/AkonadiCore/CollectionDeleteJob include/KF5/AkonadiCore/CollectionFetchJob include/KF5/AkonadiCore/CollectionFetchScope include/KF5/AkonadiCore/CollectionFilterProxyModel include/KF5/AkonadiCore/CollectionIdentificationAttribute include/KF5/AkonadiCore/CollectionModifyJob include/KF5/AkonadiCore/CollectionMoveJob include/KF5/AkonadiCore/CollectionPathResolver include/KF5/AkonadiCore/CollectionQuotaAttribute include/KF5/AkonadiCore/CollectionStatistics include/KF5/AkonadiCore/CollectionStatisticsJob include/KF5/AkonadiCore/CollectionUtils include/KF5/AkonadiCore/Control include/KF5/AkonadiCore/DifferencesAlgorithmInterface include/KF5/AkonadiCore/EntityAnnotationsAttribute include/KF5/AkonadiCore/EntityDeletedAttribute include/KF5/AkonadiCore/EntityDisplayAttribute include/KF5/AkonadiCore/EntityHiddenAttribute include/KF5/AkonadiCore/EntityMimeTypeFilterModel include/KF5/AkonadiCore/EntityOrderProxyModel include/KF5/AkonadiCore/EntityRightsFilterModel include/KF5/AkonadiCore/EntityTreeModel include/KF5/AkonadiCore/ExceptionBase include/KF5/AkonadiCore/FavoriteCollectionAttribute include/KF5/AkonadiCore/FavoriteCollectionsModel include/KF5/AkonadiCore/GidExtractorInterface include/KF5/AkonadiCore/IndexPolicyAttribute include/KF5/AkonadiCore/Item include/KF5/AkonadiCore/ItemCopyJob include/KF5/AkonadiCore/ItemCreateJob include/KF5/AkonadiCore/ItemDeleteJob include/KF5/AkonadiCore/ItemFetchJob include/KF5/AkonadiCore/ItemFetchScope include/KF5/AkonadiCore/ItemModel include/KF5/AkonadiCore/ItemModifyJob include/KF5/AkonadiCore/ItemMonitor include/KF5/AkonadiCore/ItemMoveJob include/KF5/AkonadiCore/ItemSearchJob include/KF5/AkonadiCore/ItemSerializerPlugin include/KF5/AkonadiCore/ItemSync include/KF5/AkonadiCore/Job include/KF5/AkonadiCore/LinkJob include/KF5/AkonadiCore/MimeTypeChecker include/KF5/AkonadiCore/Monitor include/KF5/AkonadiCore/NewMailNotifierAttribute include/KF5/AkonadiCore/NotificationSubscriber include/KF5/AkonadiCore/PartFetcher include/KF5/AkonadiCore/PersistentSearchAttribute include/KF5/AkonadiCore/Pop3ResourceAttribute -include/KF5/AkonadiCore/QuotaColorProxyModel include/KF5/AkonadiCore/RecursiveCollectionFilterProxyModel include/KF5/AkonadiCore/RecursiveItemFetchJob include/KF5/AkonadiCore/Relation include/KF5/AkonadiCore/RelationCreateJob include/KF5/AkonadiCore/RelationDeleteJob include/KF5/AkonadiCore/RelationFetchJob include/KF5/AkonadiCore/ResourceSynchronizationJob include/KF5/AkonadiCore/SearchCreateJob include/KF5/AkonadiCore/SearchQuery include/KF5/AkonadiCore/SelectionProxyModel include/KF5/AkonadiCore/ServerManager include/KF5/AkonadiCore/Session include/KF5/AkonadiCore/SpecialCollectionAttribute include/KF5/AkonadiCore/SpecialCollections include/KF5/AkonadiCore/SpecialCollectionsDiscoveryJob include/KF5/AkonadiCore/SpecialCollectionsRequestJob include/KF5/AkonadiCore/StatisticsProxyModel include/KF5/AkonadiCore/Supertrait include/KF5/AkonadiCore/Tag include/KF5/AkonadiCore/TagAttribute include/KF5/AkonadiCore/TagCreateJob include/KF5/AkonadiCore/TagDeleteJob include/KF5/AkonadiCore/TagFetchJob include/KF5/AkonadiCore/TagFetchScope include/KF5/AkonadiCore/TagModel include/KF5/AkonadiCore/TagModifyJob include/KF5/AkonadiCore/TransactionJobs include/KF5/AkonadiCore/TransactionSequence include/KF5/AkonadiCore/TrashFilterProxyModel include/KF5/AkonadiCore/TrashJob include/KF5/AkonadiCore/TrashRestoreJob include/KF5/AkonadiCore/TrashSettings include/KF5/AkonadiCore/UnlinkJob include/KF5/AkonadiCore/VectorHelper include/KF5/AkonadiCore/abstractdifferencesreporter.h include/KF5/AkonadiCore/agentconfigurationbase.h include/KF5/AkonadiCore/agentconfigurationfactorybase.h include/KF5/AkonadiCore/agentfilterproxymodel.h include/KF5/AkonadiCore/agentinstance.h include/KF5/AkonadiCore/agentinstancecreatejob.h include/KF5/AkonadiCore/agentinstancemodel.h include/KF5/AkonadiCore/agentmanager.h include/KF5/AkonadiCore/agenttype.h include/KF5/AkonadiCore/agenttypemodel.h include/KF5/AkonadiCore/akonadicore_export.h include/KF5/AkonadiCore/attribute.h include/KF5/AkonadiCore/attributefactory.h include/KF5/AkonadiCore/cachepolicy.h include/KF5/AkonadiCore/changenotification.h include/KF5/AkonadiCore/changerecorder.h include/KF5/AkonadiCore/collection.h include/KF5/AkonadiCore/collectionattributessynchronizationjob.h include/KF5/AkonadiCore/collectioncolorattribute.h include/KF5/AkonadiCore/collectioncopyjob.h include/KF5/AkonadiCore/collectioncreatejob.h include/KF5/AkonadiCore/collectiondeletejob.h include/KF5/AkonadiCore/collectionfetchjob.h include/KF5/AkonadiCore/collectionfetchscope.h include/KF5/AkonadiCore/collectionfilterproxymodel.h include/KF5/AkonadiCore/collectionidentificationattribute.h include/KF5/AkonadiCore/collectionmodifyjob.h include/KF5/AkonadiCore/collectionmovejob.h include/KF5/AkonadiCore/collectionpathresolver.h include/KF5/AkonadiCore/collectionquotaattribute.h include/KF5/AkonadiCore/collectionstatistics.h include/KF5/AkonadiCore/collectionstatisticsjob.h include/KF5/AkonadiCore/collectionutils.h include/KF5/AkonadiCore/control.h include/KF5/AkonadiCore/differencesalgorithminterface.h include/KF5/AkonadiCore/entityannotationsattribute.h include/KF5/AkonadiCore/entitydeletedattribute.h include/KF5/AkonadiCore/entitydisplayattribute.h include/KF5/AkonadiCore/entityhiddenattribute.h include/KF5/AkonadiCore/entitymimetypefiltermodel.h include/KF5/AkonadiCore/entityorderproxymodel.h include/KF5/AkonadiCore/entityrightsfiltermodel.h include/KF5/AkonadiCore/entitytreemodel.h include/KF5/AkonadiCore/exceptionbase.h include/KF5/AkonadiCore/favoritecollectionattribute.h include/KF5/AkonadiCore/favoritecollectionsmodel.h include/KF5/AkonadiCore/gidextractorinterface.h include/KF5/AkonadiCore/indexpolicyattribute.h include/KF5/AkonadiCore/item.h include/KF5/AkonadiCore/itemcopyjob.h include/KF5/AkonadiCore/itemcreatejob.h include/KF5/AkonadiCore/itemdeletejob.h include/KF5/AkonadiCore/itemfetchjob.h include/KF5/AkonadiCore/itemfetchscope.h include/KF5/AkonadiCore/itemmodel.h include/KF5/AkonadiCore/itemmodifyjob.h include/KF5/AkonadiCore/itemmonitor.h include/KF5/AkonadiCore/itemmovejob.h include/KF5/AkonadiCore/itempayloadinternals_p.h include/KF5/AkonadiCore/itemsearchjob.h include/KF5/AkonadiCore/itemserializerplugin.h include/KF5/AkonadiCore/itemsync.h include/KF5/AkonadiCore/job.h include/KF5/AkonadiCore/linkjob.h include/KF5/AkonadiCore/mimetypechecker.h include/KF5/AkonadiCore/monitor.h include/KF5/AkonadiCore/newmailnotifierattribute.h include/KF5/AkonadiCore/notificationsubscriber.h include/KF5/AkonadiCore/partfetcher.h include/KF5/AkonadiCore/persistentsearchattribute.h include/KF5/AkonadiCore/pop3resourceattribute.h include/KF5/AkonadiCore/qtest_akonadi.h -include/KF5/AkonadiCore/quotacolorproxymodel.h include/KF5/AkonadiCore/recursivecollectionfilterproxymodel.h include/KF5/AkonadiCore/recursiveitemfetchjob.h include/KF5/AkonadiCore/relation.h include/KF5/AkonadiCore/relationcreatejob.h include/KF5/AkonadiCore/relationdeletejob.h include/KF5/AkonadiCore/relationfetchjob.h include/KF5/AkonadiCore/resourcesynchronizationjob.h include/KF5/AkonadiCore/searchcreatejob.h include/KF5/AkonadiCore/searchquery.h include/KF5/AkonadiCore/selectionproxymodel.h include/KF5/AkonadiCore/servermanager.h include/KF5/AkonadiCore/session.h include/KF5/AkonadiCore/specialcollectionattribute.h include/KF5/AkonadiCore/specialcollections.h include/KF5/AkonadiCore/specialcollectionsdiscoveryjob.h include/KF5/AkonadiCore/specialcollectionsrequestjob.h include/KF5/AkonadiCore/statisticsproxymodel.h include/KF5/AkonadiCore/supertrait.h include/KF5/AkonadiCore/tag.h include/KF5/AkonadiCore/tagattribute.h include/KF5/AkonadiCore/tagcreatejob.h include/KF5/AkonadiCore/tagdeletejob.h include/KF5/AkonadiCore/tagfetchjob.h include/KF5/AkonadiCore/tagfetchscope.h include/KF5/AkonadiCore/tagmodel.h include/KF5/AkonadiCore/tagmodifyjob.h include/KF5/AkonadiCore/transactionjobs.h include/KF5/AkonadiCore/transactionsequence.h include/KF5/AkonadiCore/trashfilterproxymodel.h include/KF5/AkonadiCore/trashjob.h include/KF5/AkonadiCore/trashrestorejob.h include/KF5/AkonadiCore/trashsettings.h include/KF5/AkonadiCore/unlinkjob.h include/KF5/AkonadiCore/vectorhelper.h include/KF5/AkonadiWidgets/AgentActionManager include/KF5/AkonadiWidgets/AgentConfigurationDialog include/KF5/AkonadiWidgets/AgentConfigurationWidget include/KF5/AkonadiWidgets/AgentInstanceWidget include/KF5/AkonadiWidgets/AgentTypeDialog include/KF5/AkonadiWidgets/AgentTypeWidget include/KF5/AkonadiWidgets/CollectionComboBox include/KF5/AkonadiWidgets/CollectionDialog include/KF5/AkonadiWidgets/CollectionMaintenancePage include/KF5/AkonadiWidgets/CollectionPropertiesDialog include/KF5/AkonadiWidgets/CollectionPropertiesPage include/KF5/AkonadiWidgets/CollectionRequester include/KF5/AkonadiWidgets/CollectionStatisticsDelegate include/KF5/AkonadiWidgets/CollectionView include/KF5/AkonadiWidgets/ControlGui include/KF5/AkonadiWidgets/ETMViewStateSaver include/KF5/AkonadiWidgets/EntityListView include/KF5/AkonadiWidgets/EntityTreeView include/KF5/AkonadiWidgets/ItemView include/KF5/AkonadiWidgets/ManageAccountWidget -include/KF5/AkonadiWidgets/RenameFavoriteDialog include/KF5/AkonadiWidgets/StandardActionManager include/KF5/AkonadiWidgets/SubscriptionDialog include/KF5/AkonadiWidgets/TagEditWidget include/KF5/AkonadiWidgets/TagManagementDialog include/KF5/AkonadiWidgets/TagSelectWidget include/KF5/AkonadiWidgets/TagSelectionDialog include/KF5/AkonadiWidgets/TagWidget include/KF5/AkonadiWidgets/agentactionmanager.h include/KF5/AkonadiWidgets/agentconfigurationdialog.h include/KF5/AkonadiWidgets/agentconfigurationwidget.h include/KF5/AkonadiWidgets/agentinstancewidget.h include/KF5/AkonadiWidgets/agenttypedialog.h include/KF5/AkonadiWidgets/agenttypewidget.h include/KF5/AkonadiWidgets/akonadiwidgets_export.h include/KF5/AkonadiWidgets/collectioncombobox.h include/KF5/AkonadiWidgets/collectiondialog.h include/KF5/AkonadiWidgets/collectionmaintenancepage.h include/KF5/AkonadiWidgets/collectionpropertiesdialog.h include/KF5/AkonadiWidgets/collectionpropertiespage.h include/KF5/AkonadiWidgets/collectionrequester.h include/KF5/AkonadiWidgets/collectionstatisticsdelegate.h include/KF5/AkonadiWidgets/collectionview.h include/KF5/AkonadiWidgets/controlgui.h include/KF5/AkonadiWidgets/entitylistview.h include/KF5/AkonadiWidgets/entitytreeview.h include/KF5/AkonadiWidgets/etmviewstatesaver.h include/KF5/AkonadiWidgets/itemview.h include/KF5/AkonadiWidgets/manageaccountwidget.h -include/KF5/AkonadiWidgets/renamefavoritedialog.h include/KF5/AkonadiWidgets/standardactionmanager.h include/KF5/AkonadiWidgets/subscriptiondialog.h include/KF5/AkonadiWidgets/tageditwidget.h include/KF5/AkonadiWidgets/tagmanagementdialog.h include/KF5/AkonadiWidgets/tagselectiondialog.h include/KF5/AkonadiWidgets/tagselectwidget.h include/KF5/AkonadiWidgets/tagwidget.h include/KF5/AkonadiXml/XmlDocument include/KF5/AkonadiXml/XmlReader include/KF5/AkonadiXml/XmlWriteJob include/KF5/AkonadiXml/XmlWriter include/KF5/AkonadiXml/akonadi-xml_export.h include/KF5/AkonadiXml/xmldocument.h include/KF5/AkonadiXml/xmlreader.h include/KF5/AkonadiXml/xmlwritejob.h include/KF5/AkonadiXml/xmlwriter.h include/KF5/akonadi/abstractsearchplugin.h include/KF5/akonadi/private/akonadiprivate_export.h include/KF5/akonadi/private/capabilities_p.h include/KF5/akonadi/private/dbus_p.h include/KF5/akonadi/private/externalpartstorage_p.h include/KF5/akonadi/private/imapparser_p.h include/KF5/akonadi/private/imapset_p.h include/KF5/akonadi/private/instance_p.h include/KF5/akonadi/private/protocol_exception_p.h include/KF5/akonadi/private/protocol_gen.h include/KF5/akonadi/private/protocol_p.h include/KF5/akonadi/private/scope_p.h include/KF5/akonadi/private/standarddirs_p.h include/KF5/akonadi/private/tristate_p.h include/KF5/akonadi_version.h lib/cmake/KF5Akonadi/KF5AkonadiConfig.cmake lib/cmake/KF5Akonadi/KF5AkonadiConfigVersion.cmake lib/cmake/KF5Akonadi/KF5AkonadiMacros.cmake lib/cmake/KF5Akonadi/KF5AkonadiTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5Akonadi/KF5AkonadiTargets.cmake lib/libKF5AkonadiAgentBase.so lib/libKF5AkonadiAgentBase.so.5 lib/libKF5AkonadiAgentBase.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKF5AkonadiCore.so lib/libKF5AkonadiCore.so.5 lib/libKF5AkonadiCore.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKF5AkonadiPrivate.so lib/libKF5AkonadiPrivate.so.5 lib/libKF5AkonadiPrivate.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKF5AkonadiWidgets.so lib/libKF5AkonadiWidgets.so.5 lib/libKF5AkonadiWidgets.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKF5AkonadiXml.so lib/libKF5AkonadiXml.so.5 lib/libKF5AkonadiXml.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_AkonadiAgentBase.pri %%QT_MKSPECDIR%%/modules/qt_AkonadiCore.pri %%QT_MKSPECDIR%%/modules/qt_AkonadiWidgets.pri %%QT_MKSPECDIR%%/modules/qt_AkonadiXml.pri %%QT_PLUGINDIR%%/akonadi/akonadi_test_searchplugin.so %%QT_PLUGINDIR%%/designer/akonadi5widgets.so %%SQLITE%%%%QT_PLUGINDIR%%/sqldrivers/libqsqlite3.so %%DATADIR%%/agents/knutresource.desktop share/config.kcfg/resourcebase.kcfg share/dbus-1/interfaces/org.freedesktop.Akonadi.Agent.Control.xml share/dbus-1/interfaces/org.freedesktop.Akonadi.Agent.Search.xml share/dbus-1/interfaces/org.freedesktop.Akonadi.Agent.Status.xml share/dbus-1/interfaces/org.freedesktop.Akonadi.AgentManager.xml share/dbus-1/interfaces/org.freedesktop.Akonadi.ControlManager.xml share/dbus-1/interfaces/org.freedesktop.Akonadi.DebugInterface.xml share/dbus-1/interfaces/org.freedesktop.Akonadi.NotificationManager.xml share/dbus-1/interfaces/org.freedesktop.Akonadi.NotificationSource.xml share/dbus-1/interfaces/org.freedesktop.Akonadi.Preprocessor.xml share/dbus-1/interfaces/org.freedesktop.Akonadi.Resource.xml share/dbus-1/interfaces/org.freedesktop.Akonadi.Server.xml share/dbus-1/interfaces/org.freedesktop.Akonadi.StorageDebugger.xml share/dbus-1/interfaces/org.freedesktop.Akonadi.Tracer.xml share/dbus-1/interfaces/org.freedesktop.Akonadi.TracerNotification.xml share/dbus-1/services/org.freedesktop.Akonadi.Control.service share/icons/hicolor/128x128/apps/akonadi.png share/icons/hicolor/16x16/apps/akonadi.png share/icons/hicolor/22x22/apps/akonadi.png share/icons/hicolor/256x256/apps/akonadi.png share/icons/hicolor/32x32/apps/akonadi.png share/icons/hicolor/48x48/apps/akonadi.png share/icons/hicolor/64x64/apps/akonadi.png share/icons/hicolor/scalable/apps/akonadi.svgz share/kdevappwizard/templates/akonadiresource.tar.bz2 share/kdevappwizard/templates/akonadiserializer.tar.bz2 share/kf5/akonadi/akonadi-xml.xsd share/kf5/akonadi/kcfg2dbus.xsl share/kf5/akonadi_knut_resource/knut-template.xml share/locale/ar/LC_MESSAGES/akonadi_knut_resource.mo share/locale/ar/LC_MESSAGES/libakonadi5.mo share/locale/bs/LC_MESSAGES/akonadi_knut_resource.mo share/locale/bs/LC_MESSAGES/libakonadi5.mo share/locale/ca/LC_MESSAGES/akonadi_knut_resource.mo share/locale/ca/LC_MESSAGES/libakonadi5.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_knut_resource.mo share/locale/ca@valencia/LC_MESSAGES/libakonadi5.mo share/locale/cs/LC_MESSAGES/akonadi_knut_resource.mo share/locale/cs/LC_MESSAGES/libakonadi5.mo share/locale/da/LC_MESSAGES/akonadi_knut_resource.mo share/locale/da/LC_MESSAGES/libakonadi5.mo share/locale/de/LC_MESSAGES/akonadi_knut_resource.mo share/locale/de/LC_MESSAGES/libakonadi5.mo share/locale/el/LC_MESSAGES/akonadi_knut_resource.mo share/locale/el/LC_MESSAGES/libakonadi5.mo share/locale/en_GB/LC_MESSAGES/akonadi_knut_resource.mo share/locale/en_GB/LC_MESSAGES/libakonadi5.mo share/locale/eo/LC_MESSAGES/akonadi_knut_resource.mo share/locale/eo/LC_MESSAGES/libakonadi5.mo share/locale/es/LC_MESSAGES/akonadi_knut_resource.mo share/locale/es/LC_MESSAGES/libakonadi5.mo share/locale/et/LC_MESSAGES/akonadi_knut_resource.mo share/locale/et/LC_MESSAGES/libakonadi5.mo share/locale/fi/LC_MESSAGES/akonadi_knut_resource.mo share/locale/fi/LC_MESSAGES/libakonadi5.mo share/locale/fr/LC_MESSAGES/akonadi_knut_resource.mo share/locale/fr/LC_MESSAGES/libakonadi5.mo share/locale/ga/LC_MESSAGES/akonadi_knut_resource.mo share/locale/ga/LC_MESSAGES/libakonadi5.mo share/locale/gl/LC_MESSAGES/akonadi_knut_resource.mo share/locale/gl/LC_MESSAGES/libakonadi5.mo share/locale/hu/LC_MESSAGES/akonadi_knut_resource.mo share/locale/hu/LC_MESSAGES/libakonadi5.mo share/locale/ia/LC_MESSAGES/akonadi_knut_resource.mo share/locale/ia/LC_MESSAGES/libakonadi5.mo share/locale/it/LC_MESSAGES/akonadi_knut_resource.mo share/locale/it/LC_MESSAGES/libakonadi5.mo share/locale/ja/LC_MESSAGES/akonadi_knut_resource.mo share/locale/ja/LC_MESSAGES/libakonadi5.mo share/locale/kk/LC_MESSAGES/akonadi_knut_resource.mo share/locale/kk/LC_MESSAGES/libakonadi5.mo share/locale/km/LC_MESSAGES/akonadi_knut_resource.mo share/locale/km/LC_MESSAGES/libakonadi5.mo share/locale/ko/LC_MESSAGES/akonadi_knut_resource.mo share/locale/ko/LC_MESSAGES/libakonadi5.mo share/locale/lt/LC_MESSAGES/akonadi_knut_resource.mo share/locale/lt/LC_MESSAGES/libakonadi5.mo share/locale/lv/LC_MESSAGES/akonadi_knut_resource.mo share/locale/lv/LC_MESSAGES/libakonadi5.mo share/locale/mr/LC_MESSAGES/akonadi_knut_resource.mo share/locale/mr/LC_MESSAGES/libakonadi5.mo share/locale/nb/LC_MESSAGES/akonadi_knut_resource.mo share/locale/nb/LC_MESSAGES/libakonadi5.mo share/locale/nds/LC_MESSAGES/akonadi_knut_resource.mo share/locale/nds/LC_MESSAGES/libakonadi5.mo share/locale/nl/LC_MESSAGES/akonadi_knut_resource.mo share/locale/nl/LC_MESSAGES/libakonadi5.mo share/locale/nn/LC_MESSAGES/akonadi_knut_resource.mo share/locale/nn/LC_MESSAGES/libakonadi5.mo share/locale/pa/LC_MESSAGES/akonadi_knut_resource.mo share/locale/pa/LC_MESSAGES/libakonadi5.mo share/locale/pl/LC_MESSAGES/akonadi_knut_resource.mo share/locale/pl/LC_MESSAGES/libakonadi5.mo share/locale/pt/LC_MESSAGES/akonadi_knut_resource.mo share/locale/pt/LC_MESSAGES/libakonadi5.mo share/locale/pt_BR/LC_MESSAGES/akonadi_knut_resource.mo share/locale/pt_BR/LC_MESSAGES/libakonadi5.mo share/locale/ro/LC_MESSAGES/akonadi_knut_resource.mo share/locale/ro/LC_MESSAGES/libakonadi5.mo share/locale/ru/LC_MESSAGES/akonadi_knut_resource.mo share/locale/ru/LC_MESSAGES/libakonadi5.mo share/locale/sk/LC_MESSAGES/akonadi_knut_resource.mo share/locale/sk/LC_MESSAGES/libakonadi5.mo share/locale/sl/LC_MESSAGES/akonadi_knut_resource.mo share/locale/sl/LC_MESSAGES/libakonadi5.mo share/locale/sr/LC_MESSAGES/akonadi_knut_resource.mo share/locale/sr/LC_MESSAGES/libakonadi5.mo share/locale/sv/LC_MESSAGES/akonadi_knut_resource.mo share/locale/sv/LC_MESSAGES/libakonadi5.mo share/locale/tr/LC_MESSAGES/akonadi_knut_resource.mo share/locale/tr/LC_MESSAGES/libakonadi5.mo share/locale/ug/LC_MESSAGES/akonadi_knut_resource.mo share/locale/ug/LC_MESSAGES/libakonadi5.mo share/locale/uk/LC_MESSAGES/akonadi_knut_resource.mo share/locale/uk/LC_MESSAGES/libakonadi5.mo share/locale/zh_CN/LC_MESSAGES/akonadi_knut_resource.mo share/locale/zh_CN/LC_MESSAGES/libakonadi5.mo share/locale/zh_TW/LC_MESSAGES/akonadi_knut_resource.mo share/locale/zh_TW/LC_MESSAGES/libakonadi5.mo share/mime/packages/akonadi-mime.xml Index: head/deskutils/akonadi-calendar-tools/distinfo =================================================================== --- head/deskutils/akonadi-calendar-tools/distinfo (revision 499276) +++ head/deskutils/akonadi-calendar-tools/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551811009 -SHA256 (KDE/applications/18.12.3/akonadi-calendar-tools-18.12.3.tar.xz) = 636ea364bea079cae0b899204add76b0d1d9a80d1955c914bc1dad3a6fc731ed -SIZE (KDE/applications/18.12.3/akonadi-calendar-tools-18.12.3.tar.xz) = 225324 +TIMESTAMP = 1555094782 +SHA256 (KDE/applications/19.04.0/akonadi-calendar-tools-19.04.0.tar.xz) = f9869574d880c53bfb87319348d75d8169ffb38bfdeb3b6066f25074409321ef +SIZE (KDE/applications/19.04.0/akonadi-calendar-tools-19.04.0.tar.xz) = 223700 Index: head/deskutils/akonadi-import-wizard/distinfo =================================================================== --- head/deskutils/akonadi-import-wizard/distinfo (revision 499276) +++ head/deskutils/akonadi-import-wizard/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551811011 -SHA256 (KDE/applications/18.12.3/akonadi-import-wizard-18.12.3.tar.xz) = a74ca212ab05706d5beb94696a933cb46dfd83d5ebd6723de97f7ce4efbe6104 -SIZE (KDE/applications/18.12.3/akonadi-import-wizard-18.12.3.tar.xz) = 439212 +TIMESTAMP = 1555094782 +SHA256 (KDE/applications/19.04.0/akonadi-import-wizard-19.04.0.tar.xz) = 541b858278d56a5d41858bfa644656d4f04bf6e5a52ce8014d207d64812d6d22 +SIZE (KDE/applications/19.04.0/akonadi-import-wizard-19.04.0.tar.xz) = 439360 Index: head/deskutils/akonadiconsole/distinfo =================================================================== --- head/deskutils/akonadiconsole/distinfo (revision 499276) +++ head/deskutils/akonadiconsole/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551811013 -SHA256 (KDE/applications/18.12.3/akonadiconsole-18.12.3.tar.xz) = d052084ecc1665976f7db08d11a15609f017b0803dd30b71b5d1dccc60ac6ed0 -SIZE (KDE/applications/18.12.3/akonadiconsole-18.12.3.tar.xz) = 193856 +TIMESTAMP = 1555094783 +SHA256 (KDE/applications/19.04.0/akonadiconsole-19.04.0.tar.xz) = 5118720b6e0ecdf689c7b7f005f732386d0b7a6258cc11fb44fcaac5cc9518a8 +SIZE (KDE/applications/19.04.0/akonadiconsole-19.04.0.tar.xz) = 193828 Index: head/deskutils/akregator/distinfo =================================================================== --- head/deskutils/akregator/distinfo (revision 499276) +++ head/deskutils/akregator/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551811012 -SHA256 (KDE/applications/18.12.3/akregator-18.12.3.tar.xz) = d3a4f0f4b677825d1b3e1461a020c17a36abe458d7e3ab40389627e2d8163ea1 -SIZE (KDE/applications/18.12.3/akregator-18.12.3.tar.xz) = 2190284 +TIMESTAMP = 1555094783 +SHA256 (KDE/applications/19.04.0/akregator-19.04.0.tar.xz) = 5104b0b66ac3917c7cb78f4a6cca952f7e4360cfcd0aa7ce1575d0551470fcee +SIZE (KDE/applications/19.04.0/akregator-19.04.0.tar.xz) = 2190328 Index: head/deskutils/grantlee-editor/distinfo =================================================================== --- head/deskutils/grantlee-editor/distinfo (revision 499276) +++ head/deskutils/grantlee-editor/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551811012 -SHA256 (KDE/applications/18.12.3/grantlee-editor-18.12.3.tar.xz) = d46831a589815581bce45c3954eb12fcbb1692fb407f566952a39e3e8c546b9c -SIZE (KDE/applications/18.12.3/grantlee-editor-18.12.3.tar.xz) = 110884 +TIMESTAMP = 1555094784 +SHA256 (KDE/applications/19.04.0/grantlee-editor-19.04.0.tar.xz) = ac888f2f2ccd4b289deac1d2df4415124e14bf183db1ff1088e88fa782f9f342 +SIZE (KDE/applications/19.04.0/grantlee-editor-19.04.0.tar.xz) = 111048 Index: head/deskutils/grantleetheme/distinfo =================================================================== --- head/deskutils/grantleetheme/distinfo (revision 499276) +++ head/deskutils/grantleetheme/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551811009 -SHA256 (KDE/applications/18.12.3/grantleetheme-18.12.3.tar.xz) = 7853075503f2a19713ce43ba077dde8036f892dee7f41e64ebc9af06b4005402 -SIZE (KDE/applications/18.12.3/grantleetheme-18.12.3.tar.xz) = 51548 +TIMESTAMP = 1555094784 +SHA256 (KDE/applications/19.04.0/grantleetheme-19.04.0.tar.xz) = 6896a7e1db662bea03b6bdd9f92214b5fa50dfbebbbaa7b3156ddb87ccd55a3e +SIZE (KDE/applications/19.04.0/grantleetheme-19.04.0.tar.xz) = 51728 Index: head/deskutils/kaddressbook/distinfo =================================================================== --- head/deskutils/kaddressbook/distinfo (revision 499276) +++ head/deskutils/kaddressbook/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551811011 -SHA256 (KDE/applications/18.12.3/kaddressbook-18.12.3.tar.xz) = 81d3ba7d5e8ed14b0cc32825f1efbdccbf9f79ffe4e1f8c888179c3d04b5bd28 -SIZE (KDE/applications/18.12.3/kaddressbook-18.12.3.tar.xz) = 472348 +TIMESTAMP = 1555094784 +SHA256 (KDE/applications/19.04.0/kaddressbook-19.04.0.tar.xz) = 821708c0a33063de050682c7768faeb51a467de9c4314901761449c09a8a3265 +SIZE (KDE/applications/19.04.0/kaddressbook-19.04.0.tar.xz) = 472556 Index: head/deskutils/kalarm/Makefile =================================================================== --- head/deskutils/kalarm/Makefile (revision 499276) +++ head/deskutils/kalarm/Makefile (revision 499277) @@ -1,36 +1,35 @@ # $FreeBSD$ PORTNAME= kalarm DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= deskutils kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Personal alarm scheduler LIB_DEPENDS= libical.so:devel/libical USES= cmake compiler:c++11-lib gettext kde:5 qt:5 shebangfix tar:xz USE_KDE= auth bookmarks codecs completion config configwidgets \ coreaddons crash dbusaddons ecm guiaddons i18n iconthemes \ itemmodels itemviews jobwidgets kcmutils kdelibs4support kio \ notifications parts service solid sonnet textwidgets \ unitconversion wallet widgetsaddons windowsystem xmlgui # pim components USE_KDE+= akonadi akonadicontacts akonadimime alarmcalendar calendarcore \ calendarutils contacts holidays identitymanagement \ kdepim-apps-libs libkdepim mailcommon mailtransport mime \ pimcommon pimtextedit imap \ kdepim-runtime5_run USE_QT= core dbus gui network phonon4 printsupport widgets x11extras xml \ buildtools_build qmake_build USE_LDCONFIG= yes SHEBANG_FILES= src/kconf_update/kalarm*.pl DESCR= ${.CURDIR:H:H}/deskutils/kdepim/pkg-descr OPTIONS_DEFINE= DOCS .include Index: head/deskutils/kalarm/distinfo =================================================================== --- head/deskutils/kalarm/distinfo (revision 499276) +++ head/deskutils/kalarm/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551811007 -SHA256 (KDE/applications/18.12.3/kalarm-18.12.3.tar.xz) = 5c116221e78755b8afd80287885cb50380c2136acd25aa615d3f6041cc0fbeb3 -SIZE (KDE/applications/18.12.3/kalarm-18.12.3.tar.xz) = 1812972 +TIMESTAMP = 1555094785 +SHA256 (KDE/applications/19.04.0/kalarm-19.04.0.tar.xz) = ed8f656e4aebb78d78f068ccde605489090ed0467452629784472b685fae331a +SIZE (KDE/applications/19.04.0/kalarm-19.04.0.tar.xz) = 1812640 Index: head/deskutils/kcharselect/distinfo =================================================================== --- head/deskutils/kcharselect/distinfo (revision 499276) +++ head/deskutils/kcharselect/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551811013 -SHA256 (KDE/applications/18.12.3/kcharselect-18.12.3.tar.xz) = e24e0268c5810cd3cf733dd8fcc8a9e04a111b761d4c1351d9976b3888278dcb -SIZE (KDE/applications/18.12.3/kcharselect-18.12.3.tar.xz) = 333872 +TIMESTAMP = 1555094785 +SHA256 (KDE/applications/19.04.0/kcharselect-19.04.0.tar.xz) = 788e6e97bb53216b4777fb19602d823a8e62f9ea25082f545e970a561fb3a78f +SIZE (KDE/applications/19.04.0/kcharselect-19.04.0.tar.xz) = 334436 Index: head/deskutils/kdepim-addons/distinfo =================================================================== --- head/deskutils/kdepim-addons/distinfo (revision 499276) +++ head/deskutils/kdepim-addons/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551811006 -SHA256 (KDE/applications/18.12.3/kdepim-addons-18.12.3.tar.xz) = 450a3f257e998e733b69703a1a813abab93c571c602702cbb4d9ab4ac25e8ce5 -SIZE (KDE/applications/18.12.3/kdepim-addons-18.12.3.tar.xz) = 2039560 +TIMESTAMP = 1555094786 +SHA256 (KDE/applications/19.04.0/kdepim-addons-19.04.0.tar.xz) = 778e946e74f36d368f484226ccc6f9cbd548d1cb2b0c3536e87d9374c64ddd88 +SIZE (KDE/applications/19.04.0/kdepim-addons-19.04.0.tar.xz) = 2081952 Index: head/deskutils/kdepim-addons/pkg-plist =================================================================== --- head/deskutils/kdepim-addons/pkg-plist (revision 499276) +++ head/deskutils/kdepim-addons/pkg-plist (revision 499277) @@ -1,924 +1,975 @@ bin/kmail_antivir.sh bin/kmail_clamav.sh bin/kmail_fprot.sh bin/kmail_sav.sh etc/xdg/kdepim-addons.categories etc/xdg/kdepim-addons.renamecategories etc/xdg/kmail.antispamrc etc/xdg/kmail.antivirusrc lib/contacteditor/editorpageplugins/cryptopageplugin.so lib/libadblocklibprivate.so.5 lib/libadblocklibprivate.so.%%KDE_APPLICATIONS_SHLIB_VER%% +lib/libgrammarcommon.so.5 +lib/libgrammarcommon.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libkaddressbookimportexportlibprivate.so.5 lib/libkaddressbookimportexportlibprivate.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libkaddressbookmergelibprivate.so.5 lib/libkaddressbookmergelibprivate.so.%%KDE_APPLICATIONS_SHLIB_VER%% +lib/libkmailgrammalecte.so.5 +lib/libkmailgrammalecte.so.%%KDE_APPLICATIONS_SHLIB_VER%% +lib/libkmaillanguagetool.so.5 +lib/libkmaillanguagetool.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libshorturlpluginprivate.so.5 lib/libshorturlpluginprivate.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_PLUGINDIR%%/contacteditor/addresslocationeditorplugin.so %%QT_PLUGINDIR%%/importwizard/evolutionv1importerplugin.so %%QT_PLUGINDIR%%/importwizard/evolutionv2importerplugin.so %%QT_PLUGINDIR%%/importwizard/gearyimporterplugin.so %%QT_PLUGINDIR%%/importwizard/nylasmailimporterplugin.so %%QT_PLUGINDIR%%/importwizard/operaimporterplugin.so %%QT_PLUGINDIR%%/kaddressbook/kaddressbook_checkgravatarplugin.so %%QT_PLUGINDIR%%/kaddressbook/kaddressbook_importexportcsvplugin.so %%QT_PLUGINDIR%%/kaddressbook/kaddressbook_importexportgmxplugin.so %%QT_PLUGINDIR%%/kaddressbook/kaddressbook_importexportldapplugin.so %%QT_PLUGINDIR%%/kaddressbook/kaddressbook_importexportldifplugin.so %%QT_PLUGINDIR%%/kaddressbook/kaddressbook_importexportvcardplugin.so %%QT_PLUGINDIR%%/kaddressbook/kaddressbook_mergecontactsplugin.so %%QT_PLUGINDIR%%/kaddressbook/kaddressbook_searchduplicatesplugin.so %%QT_PLUGINDIR%%/kaddressbook/kaddressbook_sendmailplugin.so %%QT_PLUGINDIR%%/kaddressbook/kaddressbook_sendvcardsplugin.so %%QT_PLUGINDIR%%/kmail/kmail_antispamplugin.so %%QT_PLUGINDIR%%/kmail/kmail_antivirusplugin.so %%QT_PLUGINDIR%%/kmail/kmail_autocorrectioneditorplugin.so %%QT_PLUGINDIR%%/kmail/kmail_automaticaddcontactseditorplugin.so %%QT_PLUGINDIR%%/kmail/kmail_changecaseeditorplugin.so %%QT_PLUGINDIR%%/kmail/kmail_checkbeforesendeditorplugin.so %%QT_PLUGINDIR%%/kmail/kmail_confirmaddresseditorplugin.so %%QT_PLUGINDIR%%/kmail/kmail_expertplugin.so %%QT_PLUGINDIR%%/kmail/kmail_externalcomposereditorplugin.so +%%QT_PLUGINDIR%%/kmail/kmail_grammalecteplugin.so %%QT_PLUGINDIR%%/kmail/kmail_insertemaileditorplugin.so %%QT_PLUGINDIR%%/kmail/kmail_insertshorturleditorplugin.so %%QT_PLUGINDIR%%/kmail/kmail_insertspecialcharactereditorplugin.so +%%QT_PLUGINDIR%%/kmail/kmail_languagetoolplugin.so %%QT_PLUGINDIR%%/kmail/kmail_logactivitiesplugin.so %%QT_PLUGINDIR%%/kmail/kmail_markdownplugin.so %%QT_PLUGINDIR%%/kmail/kmail_nonbreakingspaceeditorplugin.so %%QT_PLUGINDIR%%/kmail/kmail_sharetexteditorplugin.so %%QT_PLUGINDIR%%/kmail/kmail_zoomtexteditorplugin.so %%QT_PLUGINDIR%%/korg_datenums.so %%QT_PLUGINDIR%%/korg_picoftheday.so %%QT_PLUGINDIR%%/korg_thisdayinhistory.so %%QT_PLUGINDIR%%/libksieve/emaillineeditplugin.so %%QT_PLUGINDIR%%/libksieve/imapfoldercompletionplugin.so %%QT_PLUGINDIR%%/libksieve/regexpeditorlineeditplugin.so %%QT_PLUGINDIR%%/mailtransport/mailtransport_sendplugin.so %%QT_PLUGINDIR%%/messageviewer/bodypartformatter/messageviewer_bodypartformatter_application_gnupgwks.so %%QT_PLUGINDIR%%/messageviewer/bodypartformatter/messageviewer_bodypartformatter_application_mstnef.so %%QT_PLUGINDIR%%/messageviewer/bodypartformatter/messageviewer_bodypartformatter_pkpass.so %%QT_PLUGINDIR%%/messageviewer/bodypartformatter/messageviewer_bodypartformatter_semantic.so %%QT_PLUGINDIR%%/messageviewer/bodypartformatter/messageviewer_bodypartformatter_text_calendar.so %%QT_PLUGINDIR%%/messageviewer/bodypartformatter/messageviewer_bodypartformatter_text_highlighter.so %%QT_PLUGINDIR%%/messageviewer/bodypartformatter/messageviewer_bodypartformatter_text_vcard.so %%QT_PLUGINDIR%%/messageviewer/grantlee/5.0/kitinerary_grantlee_extension.so %%QT_PLUGINDIR%%/messageviewer/messageviewer_briefheaderstyleplugin.so %%QT_PLUGINDIR%%/messageviewer/messageviewer_createeventplugin.so %%QT_PLUGINDIR%%/messageviewer/messageviewer_createnoteplugin.so %%QT_PLUGINDIR%%/messageviewer/messageviewer_createtodoplugin.so %%QT_PLUGINDIR%%/messageviewer/messageviewer_expandurlplugin.so %%QT_PLUGINDIR%%/messageviewer/messageviewer_externalscriptplugin.so %%QT_PLUGINDIR%%/messageviewer/messageviewer_fancyheaderstyleplugin.so %%QT_PLUGINDIR%%/messageviewer/messageviewer_grantleeheaderstyleplugin.so +%%QT_PLUGINDIR%%/messageviewer/messageviewer_gravatarconfigplugin.so %%QT_PLUGINDIR%%/messageviewer/messageviewer_longheaderstyleplugin.so %%QT_PLUGINDIR%%/messageviewer/messageviewer_standardsheaderstyleplugin.so %%QT_PLUGINDIR%%/messageviewer/messageviewer_translatorplugin.so %%QT_PLUGINDIR%%/pimcommon/pimcommon_isgdshorturlengineplugin.so %%QT_PLUGINDIR%%/pimcommon/pimcommon_tinyurlengineplugin.so %%QT_PLUGINDIR%%/pimcommon/pimcommon_translatorplugin.so %%QT_PLUGINDIR%%/pimcommon/pimcommon_triopabshorturlengineplugin.so %%QT_PLUGINDIR%%/plasmacalendarplugins/pimevents.so %%QT_PLUGINDIR%%/plasmacalendarplugins/pimevents/PimEventsConfig.qml %%QT_PLUGINDIR%%/templateparser/templateparseraddressrequesterplugin.so %%QT_PLUGINDIR%%/webengineviewer/webengineviewer_adblockplugin.so %%QT_PLUGINDIR%%/webengineviewer/webengineviewer_donottrackplugin.so %%QT_QMLDIR%%/org/kde/plasma/PimCalendars/libpimcalendarsplugin.so %%QT_QMLDIR%%/org/kde/plasma/PimCalendars/qmldir share/contacteditor/grantleetheme/default/addresseslocation.css share/contacteditor/grantleetheme/default/addresseslocation.html share/kconf_update/webengineurlinterceptoradblock.upd share/kmail2/pics/kmwizard.png share/kmail2/pics/kmwizard.svg share/kservices5/korganizer/datenums.desktop share/kservices5/korganizer/picoftheday.desktop share/kservices5/korganizer/thisdayinhistory.desktop share/locale/ar/LC_MESSAGES/cryptopageplugin.mo share/locale/ar/LC_MESSAGES/customtoolsplugin.mo share/locale/ar/LC_MESSAGES/importwizard_plugins.mo share/locale/ar/LC_MESSAGES/kaddressbook_contacteditor.mo share/locale/ar/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ar/LC_MESSAGES/kaddressbook_plugins.mo share/locale/ar/LC_MESSAGES/kmail_editor_plugins.mo share/locale/ar/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/ar/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/ar/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/ar/LC_MESSAGES/kmail_plugins.mo share/locale/ar/LC_MESSAGES/kmailtransport_plugins.mo share/locale/ar/LC_MESSAGES/korganizer_plugins.mo share/locale/ar/LC_MESSAGES/mailreader.mo share/locale/ar/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/ar/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/ar/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/ar/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/ar/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ar/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ar/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/ar/LC_MESSAGES/messageviewerplugins.mo share/locale/ar/LC_MESSAGES/pimeventsplugin.mo share/locale/ar/LC_MESSAGES/sieveeditor_plugins.mo share/locale/ar/LC_MESSAGES/webengineurlinterceptor.mo share/locale/bg/LC_MESSAGES/cryptopageplugin.mo share/locale/bg/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/bg/LC_MESSAGES/korganizer_plugins.mo share/locale/bg/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/bg/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/bg/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/bs/LC_MESSAGES/cryptopageplugin.mo share/locale/bs/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/bs/LC_MESSAGES/korganizer_plugins.mo share/locale/bs/LC_MESSAGES/mailreader.mo share/locale/bs/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/bs/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/bs/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ca/LC_MESSAGES/cryptopageplugin.mo share/locale/ca/LC_MESSAGES/customtoolsplugin.mo share/locale/ca/LC_MESSAGES/importwizard_plugins.mo share/locale/ca/LC_MESSAGES/kaddressbook_contacteditor.mo share/locale/ca/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ca/LC_MESSAGES/kaddressbook_plugins.mo share/locale/ca/LC_MESSAGES/kmail_editor_plugins.mo share/locale/ca/LC_MESSAGES/kmail_editorconvertertext_plugins.mo +share/locale/ca/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/ca/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/ca/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/ca/LC_MESSAGES/kmail_plugins.mo share/locale/ca/LC_MESSAGES/kmailtransport_plugins.mo share/locale/ca/LC_MESSAGES/korganizer_plugins.mo share/locale/ca/LC_MESSAGES/mailreader.mo share/locale/ca/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/ca/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/ca/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/ca/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/ca/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ca/LC_MESSAGES/messageviewer_text_vcard_plugin.mo +share/locale/ca/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/ca/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/ca/LC_MESSAGES/messageviewerplugins.mo share/locale/ca/LC_MESSAGES/pimeventsplugin.mo share/locale/ca/LC_MESSAGES/sieveeditor_plugins.mo share/locale/ca/LC_MESSAGES/webengineurlinterceptor.mo share/locale/ca@valencia/LC_MESSAGES/cryptopageplugin.mo share/locale/ca@valencia/LC_MESSAGES/customtoolsplugin.mo share/locale/ca@valencia/LC_MESSAGES/importwizard_plugins.mo share/locale/ca@valencia/LC_MESSAGES/kaddressbook_contacteditor.mo share/locale/ca@valencia/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ca@valencia/LC_MESSAGES/kaddressbook_plugins.mo share/locale/ca@valencia/LC_MESSAGES/kmail_editor_plugins.mo share/locale/ca@valencia/LC_MESSAGES/kmail_editorconvertertext_plugins.mo +share/locale/ca@valencia/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/ca@valencia/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/ca@valencia/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/ca@valencia/LC_MESSAGES/kmail_plugins.mo share/locale/ca@valencia/LC_MESSAGES/kmailtransport_plugins.mo share/locale/ca@valencia/LC_MESSAGES/korganizer_plugins.mo share/locale/ca@valencia/LC_MESSAGES/mailreader.mo share/locale/ca@valencia/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/ca@valencia/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/ca@valencia/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/ca@valencia/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/ca@valencia/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ca@valencia/LC_MESSAGES/messageviewer_text_vcard_plugin.mo +share/locale/ca@valencia/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/ca@valencia/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/ca@valencia/LC_MESSAGES/messageviewerplugins.mo share/locale/ca@valencia/LC_MESSAGES/pimeventsplugin.mo share/locale/ca@valencia/LC_MESSAGES/sieveeditor_plugins.mo share/locale/ca@valencia/LC_MESSAGES/webengineurlinterceptor.mo share/locale/cs/LC_MESSAGES/cryptopageplugin.mo share/locale/cs/LC_MESSAGES/customtoolsplugin.mo share/locale/cs/LC_MESSAGES/importwizard_plugins.mo share/locale/cs/LC_MESSAGES/kaddressbook_contacteditor.mo share/locale/cs/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/cs/LC_MESSAGES/kaddressbook_plugins.mo share/locale/cs/LC_MESSAGES/kmail_editor_plugins.mo share/locale/cs/LC_MESSAGES/kmail_editorconvertertext_plugins.mo +share/locale/cs/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/cs/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/cs/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/cs/LC_MESSAGES/kmail_plugins.mo share/locale/cs/LC_MESSAGES/kmailtransport_plugins.mo share/locale/cs/LC_MESSAGES/korganizer_plugins.mo share/locale/cs/LC_MESSAGES/mailreader.mo share/locale/cs/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/cs/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/cs/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/cs/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/cs/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/cs/LC_MESSAGES/messageviewer_text_vcard_plugin.mo +share/locale/cs/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/cs/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/cs/LC_MESSAGES/messageviewerplugins.mo share/locale/cs/LC_MESSAGES/pimeventsplugin.mo share/locale/cs/LC_MESSAGES/sieveeditor_plugins.mo share/locale/cs/LC_MESSAGES/webengineurlinterceptor.mo share/locale/da/LC_MESSAGES/cryptopageplugin.mo share/locale/da/LC_MESSAGES/customtoolsplugin.mo share/locale/da/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/da/LC_MESSAGES/kaddressbook_plugins.mo share/locale/da/LC_MESSAGES/kmail_editor_plugins.mo share/locale/da/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/da/LC_MESSAGES/kmail_plugins.mo share/locale/da/LC_MESSAGES/korganizer_plugins.mo share/locale/da/LC_MESSAGES/mailreader.mo share/locale/da/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/da/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/da/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/da/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/da/LC_MESSAGES/messageviewerplugins.mo share/locale/da/LC_MESSAGES/webengineurlinterceptor.mo share/locale/de/LC_MESSAGES/cryptopageplugin.mo share/locale/de/LC_MESSAGES/customtoolsplugin.mo share/locale/de/LC_MESSAGES/importwizard_plugins.mo share/locale/de/LC_MESSAGES/kaddressbook_contacteditor.mo share/locale/de/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/de/LC_MESSAGES/kaddressbook_plugins.mo share/locale/de/LC_MESSAGES/kmail_editor_plugins.mo share/locale/de/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/de/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/de/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/de/LC_MESSAGES/kmail_plugins.mo share/locale/de/LC_MESSAGES/kmailtransport_plugins.mo share/locale/de/LC_MESSAGES/korganizer_plugins.mo share/locale/de/LC_MESSAGES/mailreader.mo share/locale/de/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/de/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/de/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/de/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/de/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/de/LC_MESSAGES/messageviewer_text_vcard_plugin.mo +share/locale/de/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/de/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/de/LC_MESSAGES/messageviewerplugins.mo share/locale/de/LC_MESSAGES/pimeventsplugin.mo share/locale/de/LC_MESSAGES/sieveeditor_plugins.mo share/locale/de/LC_MESSAGES/webengineurlinterceptor.mo share/locale/el/LC_MESSAGES/cryptopageplugin.mo share/locale/el/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/el/LC_MESSAGES/korganizer_plugins.mo share/locale/el/LC_MESSAGES/mailreader.mo share/locale/el/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/el/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/el/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/en_GB/LC_MESSAGES/cryptopageplugin.mo share/locale/en_GB/LC_MESSAGES/customtoolsplugin.mo share/locale/en_GB/LC_MESSAGES/importwizard_plugins.mo share/locale/en_GB/LC_MESSAGES/kaddressbook_contacteditor.mo share/locale/en_GB/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/en_GB/LC_MESSAGES/kaddressbook_plugins.mo share/locale/en_GB/LC_MESSAGES/kmail_editor_plugins.mo share/locale/en_GB/LC_MESSAGES/kmail_editorconvertertext_plugins.mo +share/locale/en_GB/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/en_GB/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/en_GB/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/en_GB/LC_MESSAGES/kmail_plugins.mo share/locale/en_GB/LC_MESSAGES/kmailtransport_plugins.mo share/locale/en_GB/LC_MESSAGES/korganizer_plugins.mo share/locale/en_GB/LC_MESSAGES/mailreader.mo share/locale/en_GB/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/en_GB/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/en_GB/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/en_GB/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/en_GB/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/en_GB/LC_MESSAGES/messageviewer_text_vcard_plugin.mo +share/locale/en_GB/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/en_GB/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/en_GB/LC_MESSAGES/messageviewerplugins.mo share/locale/en_GB/LC_MESSAGES/pimeventsplugin.mo share/locale/en_GB/LC_MESSAGES/sieveeditor_plugins.mo share/locale/en_GB/LC_MESSAGES/webengineurlinterceptor.mo share/locale/eo/LC_MESSAGES/cryptopageplugin.mo share/locale/eo/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/eo/LC_MESSAGES/korganizer_plugins.mo share/locale/eo/LC_MESSAGES/mailreader.mo share/locale/eo/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/eo/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/es/LC_MESSAGES/cryptopageplugin.mo share/locale/es/LC_MESSAGES/customtoolsplugin.mo share/locale/es/LC_MESSAGES/importwizard_plugins.mo share/locale/es/LC_MESSAGES/kaddressbook_contacteditor.mo share/locale/es/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/es/LC_MESSAGES/kaddressbook_plugins.mo share/locale/es/LC_MESSAGES/kmail_editor_plugins.mo share/locale/es/LC_MESSAGES/kmail_editorconvertertext_plugins.mo +share/locale/es/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/es/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/es/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/es/LC_MESSAGES/kmail_plugins.mo share/locale/es/LC_MESSAGES/kmailtransport_plugins.mo share/locale/es/LC_MESSAGES/korganizer_plugins.mo share/locale/es/LC_MESSAGES/mailreader.mo share/locale/es/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/es/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/es/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/es/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/es/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/es/LC_MESSAGES/messageviewer_text_vcard_plugin.mo +share/locale/es/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/es/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/es/LC_MESSAGES/messageviewerplugins.mo share/locale/es/LC_MESSAGES/pimeventsplugin.mo share/locale/es/LC_MESSAGES/sieveeditor_plugins.mo share/locale/es/LC_MESSAGES/webengineurlinterceptor.mo share/locale/et/LC_MESSAGES/cryptopageplugin.mo share/locale/et/LC_MESSAGES/customtoolsplugin.mo share/locale/et/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/et/LC_MESSAGES/kaddressbook_plugins.mo share/locale/et/LC_MESSAGES/kmail_editor_plugins.mo share/locale/et/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/et/LC_MESSAGES/kmail_plugins.mo share/locale/et/LC_MESSAGES/korganizer_plugins.mo share/locale/et/LC_MESSAGES/mailreader.mo share/locale/et/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/et/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/et/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/et/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/et/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/et/LC_MESSAGES/messageviewerplugins.mo share/locale/et/LC_MESSAGES/webengineurlinterceptor.mo share/locale/eu/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/eu/LC_MESSAGES/korganizer_plugins.mo share/locale/eu/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/eu/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/fa/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/fa/LC_MESSAGES/korganizer_plugins.mo share/locale/fa/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/fa/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/fi/LC_MESSAGES/cryptopageplugin.mo share/locale/fi/LC_MESSAGES/customtoolsplugin.mo share/locale/fi/LC_MESSAGES/importwizard_plugins.mo share/locale/fi/LC_MESSAGES/kaddressbook_contacteditor.mo share/locale/fi/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/fi/LC_MESSAGES/kaddressbook_plugins.mo share/locale/fi/LC_MESSAGES/kmail_editor_plugins.mo share/locale/fi/LC_MESSAGES/kmail_editorconvertertext_plugins.mo +share/locale/fi/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/fi/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/fi/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/fi/LC_MESSAGES/kmail_plugins.mo share/locale/fi/LC_MESSAGES/kmailtransport_plugins.mo share/locale/fi/LC_MESSAGES/korganizer_plugins.mo share/locale/fi/LC_MESSAGES/mailreader.mo share/locale/fi/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/fi/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/fi/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/fi/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/fi/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/fi/LC_MESSAGES/messageviewer_text_vcard_plugin.mo +share/locale/fi/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/fi/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/fi/LC_MESSAGES/messageviewerplugins.mo share/locale/fi/LC_MESSAGES/pimeventsplugin.mo share/locale/fi/LC_MESSAGES/sieveeditor_plugins.mo share/locale/fi/LC_MESSAGES/webengineurlinterceptor.mo share/locale/fr/LC_MESSAGES/cryptopageplugin.mo share/locale/fr/LC_MESSAGES/customtoolsplugin.mo share/locale/fr/LC_MESSAGES/importwizard_plugins.mo share/locale/fr/LC_MESSAGES/kaddressbook_contacteditor.mo share/locale/fr/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/fr/LC_MESSAGES/kaddressbook_plugins.mo share/locale/fr/LC_MESSAGES/kmail_editor_plugins.mo share/locale/fr/LC_MESSAGES/kmail_editorconvertertext_plugins.mo +share/locale/fr/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/fr/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/fr/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/fr/LC_MESSAGES/kmail_plugins.mo share/locale/fr/LC_MESSAGES/kmailtransport_plugins.mo share/locale/fr/LC_MESSAGES/korganizer_plugins.mo share/locale/fr/LC_MESSAGES/mailreader.mo share/locale/fr/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/fr/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/fr/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/fr/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/fr/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/fr/LC_MESSAGES/messageviewer_text_vcard_plugin.mo +share/locale/fr/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/fr/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/fr/LC_MESSAGES/messageviewerplugins.mo share/locale/fr/LC_MESSAGES/pimeventsplugin.mo share/locale/fr/LC_MESSAGES/sieveeditor_plugins.mo share/locale/fr/LC_MESSAGES/webengineurlinterceptor.mo share/locale/ga/LC_MESSAGES/cryptopageplugin.mo share/locale/ga/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ga/LC_MESSAGES/korganizer_plugins.mo share/locale/ga/LC_MESSAGES/mailreader.mo share/locale/ga/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/ga/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ga/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/gl/LC_MESSAGES/cryptopageplugin.mo share/locale/gl/LC_MESSAGES/customtoolsplugin.mo share/locale/gl/LC_MESSAGES/importwizard_plugins.mo share/locale/gl/LC_MESSAGES/kaddressbook_contacteditor.mo share/locale/gl/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/gl/LC_MESSAGES/kaddressbook_plugins.mo share/locale/gl/LC_MESSAGES/kmail_editor_plugins.mo share/locale/gl/LC_MESSAGES/kmail_editorconvertertext_plugins.mo +share/locale/gl/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/gl/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/gl/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/gl/LC_MESSAGES/kmail_plugins.mo share/locale/gl/LC_MESSAGES/kmailtransport_plugins.mo share/locale/gl/LC_MESSAGES/korganizer_plugins.mo share/locale/gl/LC_MESSAGES/mailreader.mo share/locale/gl/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/gl/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/gl/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/gl/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/gl/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/gl/LC_MESSAGES/messageviewer_text_vcard_plugin.mo +share/locale/gl/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/gl/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/gl/LC_MESSAGES/messageviewerplugins.mo share/locale/gl/LC_MESSAGES/pimeventsplugin.mo share/locale/gl/LC_MESSAGES/sieveeditor_plugins.mo share/locale/gl/LC_MESSAGES/webengineurlinterceptor.mo share/locale/he/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/he/LC_MESSAGES/korganizer_plugins.mo share/locale/he/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/he/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/hi/LC_MESSAGES/korganizer_plugins.mo share/locale/hi/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/hi/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/hr/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/hr/LC_MESSAGES/korganizer_plugins.mo share/locale/hu/LC_MESSAGES/cryptopageplugin.mo share/locale/hu/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/hu/LC_MESSAGES/korganizer_plugins.mo share/locale/hu/LC_MESSAGES/mailreader.mo share/locale/hu/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/hu/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/hu/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/hu/LC_MESSAGES/webengineurlinterceptor.mo share/locale/ia/LC_MESSAGES/cryptopageplugin.mo share/locale/ia/LC_MESSAGES/customtoolsplugin.mo share/locale/ia/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ia/LC_MESSAGES/kaddressbook_plugins.mo share/locale/ia/LC_MESSAGES/kmail_editor_plugins.mo share/locale/ia/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/ia/LC_MESSAGES/kmail_plugins.mo share/locale/ia/LC_MESSAGES/korganizer_plugins.mo share/locale/ia/LC_MESSAGES/mailreader.mo share/locale/ia/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/ia/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ia/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/is/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/is/LC_MESSAGES/korganizer_plugins.mo share/locale/is/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/is/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/it/LC_MESSAGES/cryptopageplugin.mo share/locale/it/LC_MESSAGES/customtoolsplugin.mo share/locale/it/LC_MESSAGES/importwizard_plugins.mo share/locale/it/LC_MESSAGES/kaddressbook_contacteditor.mo share/locale/it/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/it/LC_MESSAGES/kaddressbook_plugins.mo share/locale/it/LC_MESSAGES/kmail_editor_plugins.mo share/locale/it/LC_MESSAGES/kmail_editorconvertertext_plugins.mo +share/locale/it/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/it/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/it/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/it/LC_MESSAGES/kmail_plugins.mo share/locale/it/LC_MESSAGES/kmailtransport_plugins.mo share/locale/it/LC_MESSAGES/korganizer_plugins.mo share/locale/it/LC_MESSAGES/mailreader.mo share/locale/it/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/it/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/it/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/it/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/it/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/it/LC_MESSAGES/messageviewer_text_vcard_plugin.mo +share/locale/it/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/it/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/it/LC_MESSAGES/messageviewerplugins.mo share/locale/it/LC_MESSAGES/pimeventsplugin.mo share/locale/it/LC_MESSAGES/sieveeditor_plugins.mo share/locale/it/LC_MESSAGES/webengineurlinterceptor.mo share/locale/ja/LC_MESSAGES/cryptopageplugin.mo share/locale/ja/LC_MESSAGES/customtoolsplugin.mo share/locale/ja/LC_MESSAGES/importwizard_plugins.mo share/locale/ja/LC_MESSAGES/kaddressbook_contacteditor.mo share/locale/ja/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ja/LC_MESSAGES/kaddressbook_plugins.mo share/locale/ja/LC_MESSAGES/kmail_editor_plugins.mo +share/locale/ja/LC_MESSAGES/kmail_editorconvertertext_plugins.mo +share/locale/ja/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/ja/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/ja/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/ja/LC_MESSAGES/kmail_plugins.mo share/locale/ja/LC_MESSAGES/kmailtransport_plugins.mo share/locale/ja/LC_MESSAGES/korganizer_plugins.mo share/locale/ja/LC_MESSAGES/mailreader.mo share/locale/ja/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/ja/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/ja/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/ja/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/ja/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ja/LC_MESSAGES/messageviewer_text_vcard_plugin.mo +share/locale/ja/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/ja/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/ja/LC_MESSAGES/messageviewerplugins.mo share/locale/ja/LC_MESSAGES/pimeventsplugin.mo share/locale/ja/LC_MESSAGES/sieveeditor_plugins.mo share/locale/ja/LC_MESSAGES/webengineurlinterceptor.mo share/locale/kk/LC_MESSAGES/cryptopageplugin.mo share/locale/kk/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/kk/LC_MESSAGES/korganizer_plugins.mo share/locale/kk/LC_MESSAGES/mailreader.mo share/locale/kk/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/kk/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/kk/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/km/LC_MESSAGES/cryptopageplugin.mo share/locale/km/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/km/LC_MESSAGES/korganizer_plugins.mo share/locale/km/LC_MESSAGES/mailreader.mo share/locale/km/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/km/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ko/LC_MESSAGES/cryptopageplugin.mo share/locale/ko/LC_MESSAGES/customtoolsplugin.mo share/locale/ko/LC_MESSAGES/importwizard_plugins.mo share/locale/ko/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ko/LC_MESSAGES/kmail_editor_plugins.mo share/locale/ko/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/ko/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/ko/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/ko/LC_MESSAGES/kmail_plugins.mo share/locale/ko/LC_MESSAGES/kmailtransport_plugins.mo share/locale/ko/LC_MESSAGES/korganizer_plugins.mo share/locale/ko/LC_MESSAGES/mailreader.mo share/locale/ko/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/ko/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/ko/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/ko/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/ko/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ko/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ko/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/ko/LC_MESSAGES/messageviewerplugins.mo share/locale/ko/LC_MESSAGES/pimeventsplugin.mo share/locale/ko/LC_MESSAGES/sieveeditor_plugins.mo share/locale/lt/LC_MESSAGES/cryptopageplugin.mo share/locale/lt/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/lt/LC_MESSAGES/korganizer_plugins.mo share/locale/lt/LC_MESSAGES/mailreader.mo share/locale/lt/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/lt/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/lt/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/lv/LC_MESSAGES/cryptopageplugin.mo share/locale/lv/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/lv/LC_MESSAGES/korganizer_plugins.mo share/locale/lv/LC_MESSAGES/mailreader.mo share/locale/lv/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/lv/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/mr/LC_MESSAGES/cryptopageplugin.mo share/locale/mr/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/mr/LC_MESSAGES/korganizer_plugins.mo share/locale/mr/LC_MESSAGES/mailreader.mo share/locale/mr/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/mr/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/mr/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/nb/LC_MESSAGES/cryptopageplugin.mo share/locale/nb/LC_MESSAGES/kaddressbook_contacteditor.mo share/locale/nb/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/nb/LC_MESSAGES/korganizer_plugins.mo share/locale/nb/LC_MESSAGES/mailreader.mo share/locale/nb/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/nb/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/nb/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/nds/LC_MESSAGES/cryptopageplugin.mo share/locale/nds/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/nds/LC_MESSAGES/korganizer_plugins.mo share/locale/nds/LC_MESSAGES/mailreader.mo share/locale/nds/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/nds/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/nds/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/nl/LC_MESSAGES/cryptopageplugin.mo share/locale/nl/LC_MESSAGES/customtoolsplugin.mo share/locale/nl/LC_MESSAGES/importwizard_plugins.mo share/locale/nl/LC_MESSAGES/kaddressbook_contacteditor.mo share/locale/nl/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/nl/LC_MESSAGES/kaddressbook_plugins.mo share/locale/nl/LC_MESSAGES/kmail_editor_plugins.mo share/locale/nl/LC_MESSAGES/kmail_editorconvertertext_plugins.mo +share/locale/nl/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/nl/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/nl/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/nl/LC_MESSAGES/kmail_plugins.mo share/locale/nl/LC_MESSAGES/kmailtransport_plugins.mo share/locale/nl/LC_MESSAGES/korganizer_plugins.mo share/locale/nl/LC_MESSAGES/mailreader.mo share/locale/nl/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/nl/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/nl/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/nl/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/nl/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/nl/LC_MESSAGES/messageviewer_text_vcard_plugin.mo +share/locale/nl/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/nl/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/nl/LC_MESSAGES/messageviewerplugins.mo share/locale/nl/LC_MESSAGES/pimeventsplugin.mo share/locale/nl/LC_MESSAGES/sieveeditor_plugins.mo share/locale/nl/LC_MESSAGES/webengineurlinterceptor.mo share/locale/nn/LC_MESSAGES/cryptopageplugin.mo share/locale/nn/LC_MESSAGES/kaddressbook_contacteditor.mo share/locale/nn/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/nn/LC_MESSAGES/korganizer_plugins.mo share/locale/nn/LC_MESSAGES/mailreader.mo share/locale/nn/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/nn/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/pa/LC_MESSAGES/cryptopageplugin.mo share/locale/pa/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/pa/LC_MESSAGES/korganizer_plugins.mo share/locale/pa/LC_MESSAGES/mailreader.mo share/locale/pa/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/pa/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/pl/LC_MESSAGES/cryptopageplugin.mo share/locale/pl/LC_MESSAGES/customtoolsplugin.mo share/locale/pl/LC_MESSAGES/importwizard_plugins.mo share/locale/pl/LC_MESSAGES/kaddressbook_contacteditor.mo share/locale/pl/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/pl/LC_MESSAGES/kaddressbook_plugins.mo share/locale/pl/LC_MESSAGES/kmail_editor_plugins.mo share/locale/pl/LC_MESSAGES/kmail_editorconvertertext_plugins.mo +share/locale/pl/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/pl/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/pl/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/pl/LC_MESSAGES/kmail_plugins.mo share/locale/pl/LC_MESSAGES/kmailtransport_plugins.mo share/locale/pl/LC_MESSAGES/korganizer_plugins.mo share/locale/pl/LC_MESSAGES/mailreader.mo share/locale/pl/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/pl/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/pl/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/pl/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/pl/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/pl/LC_MESSAGES/messageviewer_text_vcard_plugin.mo +share/locale/pl/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/pl/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/pl/LC_MESSAGES/messageviewerplugins.mo share/locale/pl/LC_MESSAGES/pimeventsplugin.mo share/locale/pl/LC_MESSAGES/sieveeditor_plugins.mo share/locale/pl/LC_MESSAGES/webengineurlinterceptor.mo share/locale/pt/LC_MESSAGES/cryptopageplugin.mo share/locale/pt/LC_MESSAGES/customtoolsplugin.mo share/locale/pt/LC_MESSAGES/importwizard_plugins.mo share/locale/pt/LC_MESSAGES/kaddressbook_contacteditor.mo share/locale/pt/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/pt/LC_MESSAGES/kaddressbook_plugins.mo share/locale/pt/LC_MESSAGES/kmail_editor_plugins.mo share/locale/pt/LC_MESSAGES/kmail_editorconvertertext_plugins.mo +share/locale/pt/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/pt/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/pt/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/pt/LC_MESSAGES/kmail_plugins.mo share/locale/pt/LC_MESSAGES/kmailtransport_plugins.mo share/locale/pt/LC_MESSAGES/korganizer_plugins.mo share/locale/pt/LC_MESSAGES/mailreader.mo share/locale/pt/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/pt/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/pt/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/pt/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/pt/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/pt/LC_MESSAGES/messageviewer_text_vcard_plugin.mo +share/locale/pt/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/pt/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/pt/LC_MESSAGES/messageviewerplugins.mo share/locale/pt/LC_MESSAGES/pimeventsplugin.mo share/locale/pt/LC_MESSAGES/sieveeditor_plugins.mo share/locale/pt/LC_MESSAGES/webengineurlinterceptor.mo share/locale/pt_BR/LC_MESSAGES/cryptopageplugin.mo share/locale/pt_BR/LC_MESSAGES/customtoolsplugin.mo share/locale/pt_BR/LC_MESSAGES/importwizard_plugins.mo share/locale/pt_BR/LC_MESSAGES/kaddressbook_contacteditor.mo share/locale/pt_BR/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/pt_BR/LC_MESSAGES/kaddressbook_plugins.mo share/locale/pt_BR/LC_MESSAGES/kmail_editor_plugins.mo share/locale/pt_BR/LC_MESSAGES/kmail_editorconvertertext_plugins.mo +share/locale/pt_BR/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/pt_BR/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/pt_BR/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/pt_BR/LC_MESSAGES/kmail_plugins.mo share/locale/pt_BR/LC_MESSAGES/kmailtransport_plugins.mo share/locale/pt_BR/LC_MESSAGES/korganizer_plugins.mo share/locale/pt_BR/LC_MESSAGES/mailreader.mo share/locale/pt_BR/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/pt_BR/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/pt_BR/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/pt_BR/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/pt_BR/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/pt_BR/LC_MESSAGES/messageviewer_text_vcard_plugin.mo +share/locale/pt_BR/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/pt_BR/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/pt_BR/LC_MESSAGES/messageviewerplugins.mo share/locale/pt_BR/LC_MESSAGES/pimeventsplugin.mo share/locale/pt_BR/LC_MESSAGES/sieveeditor_plugins.mo share/locale/pt_BR/LC_MESSAGES/webengineurlinterceptor.mo share/locale/ro/LC_MESSAGES/cryptopageplugin.mo share/locale/ro/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ro/LC_MESSAGES/korganizer_plugins.mo share/locale/ro/LC_MESSAGES/mailreader.mo share/locale/ro/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/ro/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ro/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ru/LC_MESSAGES/cryptopageplugin.mo share/locale/ru/LC_MESSAGES/customtoolsplugin.mo share/locale/ru/LC_MESSAGES/importwizard_plugins.mo share/locale/ru/LC_MESSAGES/kaddressbook_contacteditor.mo share/locale/ru/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ru/LC_MESSAGES/kaddressbook_plugins.mo share/locale/ru/LC_MESSAGES/kmail_editor_plugins.mo share/locale/ru/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/ru/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/ru/LC_MESSAGES/kmail_plugins.mo share/locale/ru/LC_MESSAGES/kmailtransport_plugins.mo share/locale/ru/LC_MESSAGES/korganizer_plugins.mo share/locale/ru/LC_MESSAGES/mailreader.mo share/locale/ru/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/ru/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo +share/locale/ru/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/ru/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/ru/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ru/LC_MESSAGES/messageviewer_text_vcard_plugin.mo +share/locale/ru/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/ru/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/ru/LC_MESSAGES/messageviewerplugins.mo share/locale/ru/LC_MESSAGES/pimeventsplugin.mo share/locale/ru/LC_MESSAGES/sieveeditor_plugins.mo share/locale/ru/LC_MESSAGES/webengineurlinterceptor.mo share/locale/sk/LC_MESSAGES/cryptopageplugin.mo share/locale/sk/LC_MESSAGES/customtoolsplugin.mo share/locale/sk/LC_MESSAGES/importwizard_plugins.mo share/locale/sk/LC_MESSAGES/kaddressbook_contacteditor.mo share/locale/sk/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/sk/LC_MESSAGES/kaddressbook_plugins.mo share/locale/sk/LC_MESSAGES/kmail_editor_plugins.mo share/locale/sk/LC_MESSAGES/kmail_editorconvertertext_plugins.mo +share/locale/sk/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/sk/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/sk/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/sk/LC_MESSAGES/kmail_plugins.mo share/locale/sk/LC_MESSAGES/kmailtransport_plugins.mo share/locale/sk/LC_MESSAGES/korganizer_plugins.mo share/locale/sk/LC_MESSAGES/mailreader.mo share/locale/sk/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/sk/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/sk/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/sk/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/sk/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/sk/LC_MESSAGES/messageviewer_text_vcard_plugin.mo +share/locale/sk/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/sk/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/sk/LC_MESSAGES/messageviewerplugins.mo share/locale/sk/LC_MESSAGES/pimeventsplugin.mo share/locale/sk/LC_MESSAGES/sieveeditor_plugins.mo share/locale/sk/LC_MESSAGES/webengineurlinterceptor.mo share/locale/sl/LC_MESSAGES/cryptopageplugin.mo share/locale/sl/LC_MESSAGES/customtoolsplugin.mo share/locale/sl/LC_MESSAGES/importwizard_plugins.mo share/locale/sl/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/sl/LC_MESSAGES/kaddressbook_plugins.mo share/locale/sl/LC_MESSAGES/kmail_editor_plugins.mo share/locale/sl/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/sl/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/sl/LC_MESSAGES/kmail_plugins.mo share/locale/sl/LC_MESSAGES/kmailtransport_plugins.mo share/locale/sl/LC_MESSAGES/korganizer_plugins.mo share/locale/sl/LC_MESSAGES/mailreader.mo share/locale/sl/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/sl/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/sl/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/sl/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/sl/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/sl/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/sl/LC_MESSAGES/messageviewerplugins.mo share/locale/sl/LC_MESSAGES/pimeventsplugin.mo share/locale/sl/LC_MESSAGES/sieveeditor_plugins.mo share/locale/sl/LC_MESSAGES/webengineurlinterceptor.mo share/locale/sr/LC_MESSAGES/cryptopageplugin.mo share/locale/sr/LC_MESSAGES/customtoolsplugin.mo share/locale/sr/LC_MESSAGES/kaddressbook_contacteditor.mo share/locale/sr/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/sr/LC_MESSAGES/kaddressbook_plugins.mo share/locale/sr/LC_MESSAGES/kmail_editor_plugins.mo share/locale/sr/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/sr/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/sr/LC_MESSAGES/kmail_plugins.mo share/locale/sr/LC_MESSAGES/kmailtransport_plugins.mo share/locale/sr/LC_MESSAGES/korganizer_plugins.mo share/locale/sr/LC_MESSAGES/mailreader.mo share/locale/sr/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/sr/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/sr/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/sr/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/sr/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/sr/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/sr/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/sr/LC_MESSAGES/messageviewerplugins.mo share/locale/sr/LC_MESSAGES/pimeventsplugin.mo share/locale/sr/LC_MESSAGES/sieveeditor_plugins.mo share/locale/sr/LC_MESSAGES/webengineurlinterceptor.mo share/locale/sv/LC_MESSAGES/cryptopageplugin.mo share/locale/sv/LC_MESSAGES/customtoolsplugin.mo share/locale/sv/LC_MESSAGES/importwizard_plugins.mo share/locale/sv/LC_MESSAGES/kaddressbook_contacteditor.mo share/locale/sv/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/sv/LC_MESSAGES/kaddressbook_plugins.mo share/locale/sv/LC_MESSAGES/kmail_editor_plugins.mo share/locale/sv/LC_MESSAGES/kmail_editorconvertertext_plugins.mo +share/locale/sv/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/sv/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/sv/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/sv/LC_MESSAGES/kmail_plugins.mo share/locale/sv/LC_MESSAGES/kmailtransport_plugins.mo share/locale/sv/LC_MESSAGES/korganizer_plugins.mo share/locale/sv/LC_MESSAGES/mailreader.mo share/locale/sv/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/sv/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/sv/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/sv/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/sv/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/sv/LC_MESSAGES/messageviewer_text_vcard_plugin.mo +share/locale/sv/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/sv/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/sv/LC_MESSAGES/messageviewerplugins.mo share/locale/sv/LC_MESSAGES/pimeventsplugin.mo share/locale/sv/LC_MESSAGES/sieveeditor_plugins.mo share/locale/sv/LC_MESSAGES/webengineurlinterceptor.mo share/locale/tr/LC_MESSAGES/cryptopageplugin.mo share/locale/tr/LC_MESSAGES/customtoolsplugin.mo share/locale/tr/LC_MESSAGES/importwizard_plugins.mo share/locale/tr/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/tr/LC_MESSAGES/kaddressbook_plugins.mo share/locale/tr/LC_MESSAGES/kmail_editor_plugins.mo share/locale/tr/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/tr/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/tr/LC_MESSAGES/kmail_plugins.mo share/locale/tr/LC_MESSAGES/kmailtransport_plugins.mo share/locale/tr/LC_MESSAGES/korganizer_plugins.mo share/locale/tr/LC_MESSAGES/mailreader.mo share/locale/tr/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/tr/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/tr/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/tr/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/tr/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/tr/LC_MESSAGES/messageviewerplugins.mo share/locale/tr/LC_MESSAGES/pimeventsplugin.mo share/locale/tr/LC_MESSAGES/sieveeditor_plugins.mo share/locale/ug/LC_MESSAGES/cryptopageplugin.mo share/locale/ug/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ug/LC_MESSAGES/korganizer_plugins.mo share/locale/ug/LC_MESSAGES/mailreader.mo share/locale/ug/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/ug/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ug/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/uk/LC_MESSAGES/cryptopageplugin.mo share/locale/uk/LC_MESSAGES/customtoolsplugin.mo share/locale/uk/LC_MESSAGES/importwizard_plugins.mo share/locale/uk/LC_MESSAGES/kaddressbook_contacteditor.mo share/locale/uk/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/uk/LC_MESSAGES/kaddressbook_plugins.mo share/locale/uk/LC_MESSAGES/kmail_editor_plugins.mo share/locale/uk/LC_MESSAGES/kmail_editorconvertertext_plugins.mo +share/locale/uk/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/uk/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/uk/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/uk/LC_MESSAGES/kmail_plugins.mo share/locale/uk/LC_MESSAGES/kmailtransport_plugins.mo share/locale/uk/LC_MESSAGES/korganizer_plugins.mo share/locale/uk/LC_MESSAGES/mailreader.mo share/locale/uk/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/uk/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/uk/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/uk/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/uk/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/uk/LC_MESSAGES/messageviewer_text_vcard_plugin.mo +share/locale/uk/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/uk/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/uk/LC_MESSAGES/messageviewerplugins.mo share/locale/uk/LC_MESSAGES/pimeventsplugin.mo share/locale/uk/LC_MESSAGES/sieveeditor_plugins.mo share/locale/uk/LC_MESSAGES/webengineurlinterceptor.mo share/locale/wa/LC_MESSAGES/korganizer_plugins.mo share/locale/zh_CN/LC_MESSAGES/cryptopageplugin.mo share/locale/zh_CN/LC_MESSAGES/customtoolsplugin.mo share/locale/zh_CN/LC_MESSAGES/importwizard_plugins.mo share/locale/zh_CN/LC_MESSAGES/kaddressbook_contacteditor.mo share/locale/zh_CN/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/zh_CN/LC_MESSAGES/kaddressbook_plugins.mo share/locale/zh_CN/LC_MESSAGES/kmail_editor_plugins.mo share/locale/zh_CN/LC_MESSAGES/kmail_editorconvertertext_plugins.mo +share/locale/zh_CN/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/zh_CN/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/zh_CN/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/zh_CN/LC_MESSAGES/kmail_plugins.mo share/locale/zh_CN/LC_MESSAGES/kmailtransport_plugins.mo share/locale/zh_CN/LC_MESSAGES/korganizer_plugins.mo share/locale/zh_CN/LC_MESSAGES/mailreader.mo share/locale/zh_CN/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/zh_CN/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/zh_CN/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/zh_CN/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/zh_CN/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/zh_CN/LC_MESSAGES/messageviewer_text_vcard_plugin.mo +share/locale/zh_CN/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/zh_CN/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/zh_CN/LC_MESSAGES/messageviewerplugins.mo share/locale/zh_CN/LC_MESSAGES/pimeventsplugin.mo share/locale/zh_CN/LC_MESSAGES/sieveeditor_plugins.mo share/locale/zh_CN/LC_MESSAGES/webengineurlinterceptor.mo share/locale/zh_TW/LC_MESSAGES/cryptopageplugin.mo share/locale/zh_TW/LC_MESSAGES/customtoolsplugin.mo share/locale/zh_TW/LC_MESSAGES/importwizard_plugins.mo share/locale/zh_TW/LC_MESSAGES/kaddressbook_contacteditor.mo share/locale/zh_TW/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/zh_TW/LC_MESSAGES/kaddressbook_plugins.mo share/locale/zh_TW/LC_MESSAGES/kmail_editor_plugins.mo -share/locale/zh_TW/LC_MESSAGES/kmail_editorsendcheck_plugins.mo -share/locale/zh_TW/LC_MESSAGES/kmail_plugins.mo share/locale/zh_TW/LC_MESSAGES/kmail_editorconvertertext_plugins.mo +share/locale/zh_TW/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/zh_TW/LC_MESSAGES/kmail_editorinit_plugins.mo +share/locale/zh_TW/LC_MESSAGES/kmail_editorsendcheck_plugins.mo +share/locale/zh_TW/LC_MESSAGES/kmail_plugins.mo share/locale/zh_TW/LC_MESSAGES/kmailtransport_plugins.mo share/locale/zh_TW/LC_MESSAGES/korganizer_plugins.mo -share/locale/zh_TW/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo -share/locale/zh_TW/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/zh_TW/LC_MESSAGES/mailreader.mo share/locale/zh_TW/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/zh_TW/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo +share/locale/zh_TW/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo +share/locale/zh_TW/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/zh_TW/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/zh_TW/LC_MESSAGES/messageviewer_text_vcard_plugin.mo +share/locale/zh_TW/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/zh_TW/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/zh_TW/LC_MESSAGES/messageviewerplugins.mo share/locale/zh_TW/LC_MESSAGES/pimeventsplugin.mo share/locale/zh_TW/LC_MESSAGES/sieveeditor_plugins.mo share/locale/zh_TW/LC_MESSAGES/webengineurlinterceptor.mo share/qtcreator/templates/kmaileditorconvertertextplugins/CMakeLists.txt share/qtcreator/templates/kmaileditorconvertertextplugins/plugin.json.impl share/qtcreator/templates/kmaileditorconvertertextplugins/plugineditor.cpp share/qtcreator/templates/kmaileditorconvertertextplugins/plugineditor.h share/qtcreator/templates/kmaileditorconvertertextplugins/plugineditorinterface.cpp share/qtcreator/templates/kmaileditorconvertertextplugins/plugineditorinterface.h share/qtcreator/templates/kmaileditorconvertertextplugins/wizard.json share/qtcreator/templates/kmaileditorplugins/CMakeLists.txt share/qtcreator/templates/kmaileditorplugins/plugin.json.impl share/qtcreator/templates/kmaileditorplugins/plugineditor.cpp share/qtcreator/templates/kmaileditorplugins/plugineditor.h share/qtcreator/templates/kmaileditorplugins/plugineditorinterface.cpp share/qtcreator/templates/kmaileditorplugins/plugineditorinterface.h share/qtcreator/templates/kmaileditorplugins/wizard.json Index: head/deskutils/kdepim-apps-libs/distinfo =================================================================== --- head/deskutils/kdepim-apps-libs/distinfo (revision 499276) +++ head/deskutils/kdepim-apps-libs/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551811010 -SHA256 (KDE/applications/18.12.3/kdepim-apps-libs-18.12.3.tar.xz) = 40a6fb24fc262f5340fda4aed453c5d515976aea745765e83cf8053b44d60164 -SIZE (KDE/applications/18.12.3/kdepim-apps-libs-18.12.3.tar.xz) = 85396 +TIMESTAMP = 1555094786 +SHA256 (KDE/applications/19.04.0/kdepim-apps-libs-19.04.0.tar.xz) = f335f736d854b56bab89814db44761c7e49b35e5266dddee78d22c6465e305c1 +SIZE (KDE/applications/19.04.0/kdepim-apps-libs-19.04.0.tar.xz) = 85556 Index: head/deskutils/kdepim-apps-libs/pkg-plist =================================================================== --- head/deskutils/kdepim-apps-libs/pkg-plist (revision 499276) +++ head/deskutils/kdepim-apps-libs/pkg-plist (revision 499277) @@ -1,185 +1,186 @@ etc/xdg/kdepim-apps-lib.categories etc/xdg/kdepim-apps-lib.renamecategories include/KF5/FollowupReminder/FollowUpReminderInfo include/KF5/FollowupReminder/FollowUpReminderUtil include/KF5/KAddressBookImportExport/KAddressBookContactSelectionDialog include/KF5/KAddressBookImportExport/KAddressBookContactSelectionWidget include/KF5/KAddressBookImportExport/KAddressBookExportSelectionWidget include/KF5/KAddressBookImportExport/KAddressBookImportExportContactList include/KF5/KAddressBookImportExport/KAddressBookImportExportPlugin include/KF5/KAddressBookImportExport/KAddressBookImportExportPluginInterface include/KF5/KAddressBookImportExport/KAddressBookImportExportPluginManager include/KF5/KaddressbookGrantlee/GrantleeContactFormatter include/KF5/KaddressbookGrantlee/GrantleeContactGroupFormatter include/KF5/KaddressbookGrantlee/GrantleeContactViewer include/KF5/KaddressbookGrantlee/GrantleePrint include/KF5/KdepimDBusInterfaces/ReminderClient include/KF5/KdepimDBusInterfaces/UriHandler include/KF5/SendLater/SendLaterDialog include/KF5/SendLater/SendLaterInfo include/KF5/SendLater/SendLaterUtil include/KF5/followupreminder/followupreminder_export.h include/KF5/followupreminder/followupreminderagentsettings.h include/KF5/followupreminder/followupreminderinfo.h include/KF5/followupreminder/followupreminderutil.h include/KF5/followupreminder_version.h include/KF5/kaddressbookgrantlee/grantleecontactformatter.h include/KF5/kaddressbookgrantlee/grantleecontactgroupformatter.h include/KF5/kaddressbookgrantlee/grantleecontactviewer.h include/KF5/kaddressbookgrantlee/grantleeprint.h include/KF5/kaddressbookgrantlee/kaddressbook_grantlee_export.h include/KF5/kaddressbookgrantlee_version.h include/KF5/kaddressbookimportexport/kaddressbook_importexport_export.h include/KF5/kaddressbookimportexport/kaddressbookcontactselectiondialog.h include/KF5/kaddressbookimportexport/kaddressbookcontactselectionwidget.h include/KF5/kaddressbookimportexport/kaddressbookexportselectionwidget.h include/KF5/kaddressbookimportexport/kaddressbookimportexportcontactfields.h include/KF5/kaddressbookimportexport/kaddressbookimportexportcontactlist.h include/KF5/kaddressbookimportexport/kaddressbookimportexportplugin.h include/KF5/kaddressbookimportexport/kaddressbookimportexportplugininterface.h include/KF5/kaddressbookimportexport/kaddressbookimportexportpluginmanager.h include/KF5/kaddressbookimportexport_version.h include/KF5/kdepimdbusinterfaces/kdepimdbusinterfaces_export.h include/KF5/kdepimdbusinterfaces/reminderclient.h include/KF5/kdepimdbusinterfaces/urihandler.h include/KF5/kdepimdbusinterfaces_version.h include/KF5/sendlater/sendlater_export.h include/KF5/sendlater/sendlateragentsettings.h include/KF5/sendlater/sendlaterdialog.h include/KF5/sendlater/sendlaterinfo.h include/KF5/sendlater/sendlaterutil.h include/KF5/sendlater_version.h lib/cmake/KF5FollowupReminder/KF5FollowupReminderConfig.cmake lib/cmake/KF5FollowupReminder/KF5FollowupReminderConfigVersion.cmake lib/cmake/KF5FollowupReminder/KF5FollowupReminderTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5FollowupReminder/KF5FollowupReminderTargets.cmake lib/cmake/KF5KaddressbookGrantlee/KF5KaddressbookGrantleeConfig.cmake lib/cmake/KF5KaddressbookGrantlee/KF5KaddressbookGrantleeConfigVersion.cmake lib/cmake/KF5KaddressbookGrantlee/KF5KaddressbookGrantleeTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5KaddressbookGrantlee/KF5KaddressbookGrantleeTargets.cmake lib/cmake/KF5KaddressbookImportExport/KF5KaddressbookImportExportConfig.cmake lib/cmake/KF5KaddressbookImportExport/KF5KaddressbookImportExportConfigVersion.cmake lib/cmake/KF5KaddressbookImportExport/KF5KaddressbookImportExportTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5KaddressbookImportExport/KF5KaddressbookImportExportTargets.cmake lib/cmake/KF5KdepimDBusInterfaces/KF5KdepimDBusInterfacesConfig.cmake lib/cmake/KF5KdepimDBusInterfaces/KF5KdepimDBusInterfacesConfigVersion.cmake lib/cmake/KF5KdepimDBusInterfaces/KF5KdepimDBusInterfacesTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5KdepimDBusInterfaces/KF5KdepimDBusInterfacesTargets.cmake lib/cmake/KF5SendLater/KF5SendLaterConfig.cmake lib/cmake/KF5SendLater/KF5SendLaterConfigVersion.cmake lib/cmake/KF5SendLater/KF5SendLaterTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5SendLater/KF5SendLaterTargets.cmake lib/libKF5FollowupReminder.so lib/libKF5FollowupReminder.so.5 lib/libKF5FollowupReminder.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKF5KaddressbookGrantlee.so lib/libKF5KaddressbookGrantlee.so.5 lib/libKF5KaddressbookGrantlee.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKF5KaddressbookImportExport.so lib/libKF5KaddressbookImportExport.so.5 lib/libKF5KaddressbookImportExport.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKF5KdepimDBusInterfaces.so lib/libKF5KdepimDBusInterfaces.so.5 lib/libKF5KdepimDBusInterfaces.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKF5SendLater.so lib/libKF5SendLater.so.5 lib/libKF5SendLater.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_FollowupReminder.pri %%QT_MKSPECDIR%%/modules/qt_KaddressbookGrantlee.pri %%QT_MKSPECDIR%%/modules/qt_KaddressbookImportExport.pri %%QT_MKSPECDIR%%/modules/qt_KdepimDBusInterfaces.pri %%QT_MKSPECDIR%%/modules/qt_SendLater.pri share/locale/ar/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/ar/LC_MESSAGES/libsendlater.mo share/locale/bs/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/bs/LC_MESSAGES/libsendlater.mo share/locale/ca/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/ca/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/ca/LC_MESSAGES/libsendlater.mo share/locale/ca@valencia/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/ca@valencia/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/ca@valencia/LC_MESSAGES/libsendlater.mo share/locale/cs/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/cs/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/cs/LC_MESSAGES/libsendlater.mo share/locale/da/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/da/LC_MESSAGES/libsendlater.mo share/locale/de/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/de/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/de/LC_MESSAGES/libsendlater.mo share/locale/el/LC_MESSAGES/libsendlater.mo share/locale/en_GB/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/en_GB/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/en_GB/LC_MESSAGES/libsendlater.mo share/locale/es/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/es/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/es/LC_MESSAGES/libsendlater.mo share/locale/et/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/et/LC_MESSAGES/libsendlater.mo share/locale/fi/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/fi/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/fi/LC_MESSAGES/libsendlater.mo share/locale/fr/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/fr/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/fr/LC_MESSAGES/libsendlater.mo share/locale/gl/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/gl/LC_MESSAGES/libsendlater.mo share/locale/gl/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/hu/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/hu/LC_MESSAGES/libsendlater.mo share/locale/ia/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/ia/LC_MESSAGES/libsendlater.mo share/locale/it/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/it/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/it/LC_MESSAGES/libsendlater.mo share/locale/ja/LC_MESSAGES/libkaddressbookgrantlee.mo +share/locale/ja/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/ja/LC_MESSAGES/libsendlater.mo share/locale/kk/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/kk/LC_MESSAGES/libsendlater.mo share/locale/ko/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/ko/LC_MESSAGES/libsendlater.mo share/locale/lt/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/lt/LC_MESSAGES/libsendlater.mo share/locale/nb/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/nb/LC_MESSAGES/libsendlater.mo share/locale/nds/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/nds/LC_MESSAGES/libsendlater.mo share/locale/nl/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/nl/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/nl/LC_MESSAGES/libsendlater.mo share/locale/pl/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/pl/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/pl/LC_MESSAGES/libsendlater.mo share/locale/pt/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/pt/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/pt/LC_MESSAGES/libsendlater.mo share/locale/pt_BR/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/pt_BR/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/pt_BR/LC_MESSAGES/libsendlater.mo share/locale/ro/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/ro/LC_MESSAGES/libsendlater.mo share/locale/ru/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/ru/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/ru/LC_MESSAGES/libsendlater.mo share/locale/sk/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/sk/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/sk/LC_MESSAGES/libsendlater.mo share/locale/sl/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/sl/LC_MESSAGES/libsendlater.mo share/locale/sr/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/sr/LC_MESSAGES/libsendlater.mo share/locale/sv/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/sv/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/sv/LC_MESSAGES/libsendlater.mo share/locale/tr/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/tr/LC_MESSAGES/libsendlater.mo share/locale/ug/LC_MESSAGES/libsendlater.mo share/locale/uk/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/uk/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/uk/LC_MESSAGES/libsendlater.mo share/locale/zh_CN/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/zh_CN/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/zh_CN/LC_MESSAGES/libsendlater.mo share/locale/zh_TW/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/zh_TW/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/zh_TW/LC_MESSAGES/libsendlater.mo Index: head/deskutils/kdepim-runtime/Makefile =================================================================== --- head/deskutils/kdepim-runtime/Makefile (revision 499276) +++ head/deskutils/kdepim-runtime/Makefile (revision 499277) @@ -1,41 +1,40 @@ # $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 \ libsasl2.so:security/cyrus-sasl2 \ libxerces-c-3.2.so:textproc/xerces-c3 USES= cmake compiler:c++11-lib gettext kde:5 qt:5 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= core dbus declarative gui location network printsupport speech \ +USE_QT= 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 499276) +++ head/deskutils/kdepim-runtime/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551811007 -SHA256 (KDE/applications/18.12.3/kdepim-runtime-18.12.3.tar.xz) = f3a5da19bb0f60e148d071cf07fd9fd4e6ea116f6125567c767c03b98ea844c3 -SIZE (KDE/applications/18.12.3/kdepim-runtime-18.12.3.tar.xz) = 1773576 +TIMESTAMP = 1555094786 +SHA256 (KDE/applications/19.04.0/kdepim-runtime-19.04.0.tar.xz) = 944e956d260ba5a735b3c94c6c075f207a9c38bf977ed19507b4dd0f3eaa4993 +SIZE (KDE/applications/19.04.0/kdepim-runtime-19.04.0.tar.xz) = 1769100 Index: head/deskutils/kdepim-runtime/pkg-plist =================================================================== --- head/deskutils/kdepim-runtime/pkg-plist (revision 499276) +++ head/deskutils/kdepim-runtime/pkg-plist (revision 499277) @@ -1,1785 +1,1756 @@ bin/akonadi_akonotes_resource bin/akonadi_birthdays_resource bin/akonadi_contacts_resource bin/akonadi_davgroupware_resource bin/akonadi_ews_resource bin/akonadi_ewsmta_resource bin/akonadi_facebook_resource bin/akonadi_googlecalendar_resource bin/akonadi_googlecontacts_resource bin/akonadi_ical_resource bin/akonadi_icaldir_resource bin/akonadi_imap_resource -bin/akonadi_invitations_agent bin/akonadi_kalarm_dir_resource bin/akonadi_kalarm_resource bin/akonadi_kolab_resource bin/akonadi_maildir_resource bin/akonadi_maildispatcher_agent bin/akonadi_mbox_resource bin/akonadi_migration_agent bin/akonadi_mixedmaildir_resource bin/akonadi_newmailnotifier_agent bin/akonadi_notes_resource bin/akonadi_openxchange_resource bin/akonadi_pop3_resource bin/akonadi_tomboynotes_resource bin/akonadi_vcard_resource bin/akonadi_vcarddir_resource bin/gidmigrator etc/xdg/kdepim-runtime.categories etc/xdg/kdepim-runtime.renamecategories lib/libakonadi-filestore.so.5 lib/libakonadi-filestore.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libakonadi-singlefileresource.so.5 lib/libakonadi-singlefileresource.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libfolderarchivesettings.so.5 lib/libfolderarchivesettings.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libkmindexreader.so.5 lib/libkmindexreader.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libmaildir.so.5 lib/libmaildir.so.%%KDE_APPLICATIONS_SHLIB_VER%% +%%QT_PLUGINDIR%%/akonadi/config/akonotesconfig.so +%%QT_PLUGINDIR%%/akonadi/config/birthdaysconfig.so +%%QT_PLUGINDIR%%/akonadi/config/contactsconfig.so +%%QT_PLUGINDIR%%/akonadi/config/facebookconfig.so +%%QT_PLUGINDIR%%/akonadi/config/icalconfig.so +%%QT_PLUGINDIR%%/akonadi/config/icaldirconfig.so +%%QT_PLUGINDIR%%/akonadi/config/kalarmconfig.so +%%QT_PLUGINDIR%%/akonadi/config/maildirconfig.so +%%QT_PLUGINDIR%%/akonadi/config/maildispatcherconfig.so +%%QT_PLUGINDIR%%/akonadi/config/mboxconfig.so +%%QT_PLUGINDIR%%/akonadi/config/mixedmaildirconfig.so +%%QT_PLUGINDIR%%/akonadi/config/newmailnotifierconfig.so +%%QT_PLUGINDIR%%/akonadi/config/notesconfig.so +%%QT_PLUGINDIR%%/akonadi/config/openxchangeconfig.so +%%QT_PLUGINDIR%%/akonadi/config/pop3config.so +%%QT_PLUGINDIR%%/akonadi/config/tomboynotesconfig.so +%%QT_PLUGINDIR%%/akonadi/config/vcardconfig.so +%%QT_PLUGINDIR%%/akonadi/config/vcarddirconfig.so %%QT_PLUGINDIR%%/kf5/kio/akonadi.so %%QT_PLUGINDIR%%/kf5/kio/pop3.so share/akonadi/accountwizard/contacts/contactswizard.desktop share/akonadi/accountwizard/contacts/contactswizard.es share/akonadi/accountwizard/contacts/contactswizard.ui share/akonadi/accountwizard/ical/icalwizard.desktop share/akonadi/accountwizard/ical/icalwizard.es share/akonadi/accountwizard/ical/icalwizard.ui share/akonadi/accountwizard/imap/imapwizard.desktop share/akonadi/accountwizard/imap/imapwizard.es share/akonadi/accountwizard/imap/imapwizard.ui share/akonadi/accountwizard/kolab/kolabwizard.desktop share/akonadi/accountwizard/kolab/kolabwizard.es share/akonadi/accountwizard/kolab/kolabwizard.ui share/akonadi/accountwizard/kolab/kolabwizard2.ui share/akonadi/accountwizard/mailbox/mailboxwizard.desktop share/akonadi/accountwizard/mailbox/mailboxwizard.es share/akonadi/accountwizard/mailbox/mailboxwizard.ui share/akonadi/accountwizard/maildir/maildirwizard.desktop share/akonadi/accountwizard/maildir/maildirwizard.es share/akonadi/accountwizard/maildir/maildirwizard.ui share/akonadi/accountwizard/pop3/pop3wizard.desktop share/akonadi/accountwizard/pop3/pop3wizard.es share/akonadi/accountwizard/pop3/pop3wizard.ui share/akonadi/accountwizard/vcard/vcardwizard.desktop share/akonadi/accountwizard/vcard/vcardwizard.es share/akonadi/accountwizard/vcard/vcardwizard.ui share/akonadi/accountwizard/vcarddir/vcarddirwizard.desktop share/akonadi/accountwizard/vcarddir/vcarddirwizard.es share/akonadi/accountwizard/vcarddir/vcarddirwizard.ui share/akonadi/agents/akonotesresource.desktop share/akonadi/agents/birthdaysresource.desktop share/akonadi/agents/contactsresource.desktop share/akonadi/agents/davgroupwareresource.desktop share/akonadi/agents/ewsmtaresource.desktop share/akonadi/agents/ewsresource.desktop share/akonadi/agents/facebookresource.desktop share/akonadi/agents/googlecalendarresource.desktop share/akonadi/agents/googlecontactsresource.desktop share/akonadi/agents/icaldirresource.desktop share/akonadi/agents/icalresource.desktop share/akonadi/agents/imapresource.desktop -share/akonadi/agents/invitationsagent.desktop share/akonadi/agents/kalarmdirresource.desktop share/akonadi/agents/kalarmresource.desktop share/akonadi/agents/kolabresource.desktop share/akonadi/agents/maildirresource.desktop share/akonadi/agents/maildispatcheragent.desktop share/akonadi/agents/mboxresource.desktop share/akonadi/agents/migrationagent.desktop share/akonadi/agents/mixedmaildirresource.desktop share/akonadi/agents/newmailnotifieragent.desktop share/akonadi/agents/notesresource.desktop share/akonadi/agents/openxchangeresource.desktop share/akonadi/agents/pop3resource.desktop share/akonadi/agents/tomboynotesresource.desktop share/akonadi/agents/vcarddirresource.desktop share/akonadi/agents/vcardresource.desktop share/akonadi/firstrun/birthdaycalendar share/akonadi/firstrun/defaultaddressbook share/akonadi/firstrun/defaultcalendar share/akonadi/firstrun/defaultnotebook share/dbus-1/interfaces/org.kde.Akonadi.Maildir.Settings.xml share/dbus-1/interfaces/org.kde.Akonadi.MixedMaildir.Settings.xml share/icons/hicolor/128x128/apps/akonadi-ews.png share/icons/hicolor/128x128/apps/ox.png share/icons/hicolor/16x16/apps/akonadi-ews.png share/icons/hicolor/16x16/apps/ox.png share/icons/hicolor/22x22/apps/akonadi-ews.png share/icons/hicolor/24x24/apps/akonadi-ews.png share/icons/hicolor/32x32/apps/akonadi-ews.png share/icons/hicolor/32x32/apps/ox.png share/icons/hicolor/48x48/apps/akonadi-ews.png share/icons/hicolor/48x48/apps/ox.png share/icons/hicolor/64x64/apps/akonadi-ews.png share/icons/hicolor/64x64/apps/ox.png share/icons/hicolor/72x72/apps/akonadi-ews.png share/icons/hicolor/96x96/apps/akonadi-ews.png share/knotifications5/akonadi_ews_resource.notifyrc share/knotifications5/akonadi_maildispatcher_agent.notifyrc share/knotifications5/akonadi_newmailnotifier_agent.notifyrc share/knotifications5/akonadi_pop3_resource.notifyrc share/kservices5/akonadi.protocol share/kservices5/akonadi/davgroupware-providers/citadel.desktop share/kservices5/akonadi/davgroupware-providers/davical.desktop share/kservices5/akonadi/davgroupware-providers/egroupware.desktop share/kservices5/akonadi/davgroupware-providers/nextcloud.desktop share/kservices5/akonadi/davgroupware-providers/opengroupware.desktop share/kservices5/akonadi/davgroupware-providers/owncloud-pre5.desktop share/kservices5/akonadi/davgroupware-providers/owncloud-pre9.desktop share/kservices5/akonadi/davgroupware-providers/owncloud.desktop share/kservices5/akonadi/davgroupware-providers/scalix.desktop share/kservices5/akonadi/davgroupware-providers/sogo.desktop share/kservices5/akonadi/davgroupware-providers/yahoo.desktop share/kservices5/akonadi/davgroupware-providers/zarafa.desktop share/kservices5/akonadi/davgroupware-providers/zimbra.desktop share/kservices5/pop3.protocol share/kservices5/pop3s.protocol share/kservicetypes5/davgroupwareprovider.desktop share/locale/ar/LC_MESSAGES/accountwizard_contacts.mo share/locale/ar/LC_MESSAGES/accountwizard_ews.mo share/locale/ar/LC_MESSAGES/accountwizard_ical.mo share/locale/ar/LC_MESSAGES/accountwizard_imap.mo share/locale/ar/LC_MESSAGES/accountwizard_kolab.mo share/locale/ar/LC_MESSAGES/accountwizard_mailbox.mo share/locale/ar/LC_MESSAGES/accountwizard_maildir.mo share/locale/ar/LC_MESSAGES/accountwizard_pop3.mo share/locale/ar/LC_MESSAGES/accountwizard_vcard.mo share/locale/ar/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/ar/LC_MESSAGES/akonadi-filestore.mo share/locale/ar/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/ar/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/ar/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/ar/LC_MESSAGES/akonadi_ews_resource.mo share/locale/ar/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/ar/LC_MESSAGES/akonadi_gmail_resource.mo share/locale/ar/LC_MESSAGES/akonadi_googlecalendar_resource.mo share/locale/ar/LC_MESSAGES/akonadi_googlecontacts_resource.mo share/locale/ar/LC_MESSAGES/akonadi_ical_resource.mo share/locale/ar/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/ar/LC_MESSAGES/akonadi_imap_resource.mo -share/locale/ar/LC_MESSAGES/akonadi_invitations_agent.mo share/locale/ar/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/ar/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/ar/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/ar/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/ar/LC_MESSAGES/akonadi_migration_agent.mo share/locale/ar/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/ar/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/ar/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/ar/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/ar/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/ar/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/ar/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/ar/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/ar/LC_MESSAGES/gid-migrator.mo share/locale/ar/LC_MESSAGES/kio_akonadi.mo share/locale/ar/LC_MESSAGES/kio_pop3.mo share/locale/ar/LC_MESSAGES/libfolderarchivesettings.mo share/locale/bg/LC_MESSAGES/accountwizard_contacts.mo share/locale/bg/LC_MESSAGES/accountwizard_ical.mo share/locale/bg/LC_MESSAGES/accountwizard_imap.mo share/locale/bg/LC_MESSAGES/accountwizard_kolab.mo share/locale/bg/LC_MESSAGES/accountwizard_mailbox.mo share/locale/bg/LC_MESSAGES/accountwizard_maildir.mo share/locale/bg/LC_MESSAGES/accountwizard_pop3.mo share/locale/bg/LC_MESSAGES/accountwizard_vcard.mo share/locale/bg/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/bg/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/bg/LC_MESSAGES/kio_akonadi.mo share/locale/bg/LC_MESSAGES/kio_pop3.mo share/locale/bs/LC_MESSAGES/accountwizard_contacts.mo share/locale/bs/LC_MESSAGES/accountwizard_ical.mo share/locale/bs/LC_MESSAGES/accountwizard_imap.mo share/locale/bs/LC_MESSAGES/accountwizard_mailbox.mo share/locale/bs/LC_MESSAGES/accountwizard_maildir.mo share/locale/bs/LC_MESSAGES/accountwizard_pop3.mo share/locale/bs/LC_MESSAGES/accountwizard_vcard.mo share/locale/bs/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/bs/LC_MESSAGES/akonadi-filestore.mo share/locale/bs/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/bs/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/bs/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/bs/LC_MESSAGES/akonadi_gmail_resource.mo share/locale/bs/LC_MESSAGES/akonadi_googlecalendar_resource.mo share/locale/bs/LC_MESSAGES/akonadi_googlecontacts_resource.mo share/locale/bs/LC_MESSAGES/akonadi_ical_resource.mo share/locale/bs/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/bs/LC_MESSAGES/akonadi_imap_resource.mo -share/locale/bs/LC_MESSAGES/akonadi_invitations_agent.mo share/locale/bs/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/bs/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/bs/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/bs/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/bs/LC_MESSAGES/akonadi_migration_agent.mo share/locale/bs/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/bs/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/bs/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/bs/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/bs/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/bs/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/bs/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/bs/LC_MESSAGES/gid-migrator.mo share/locale/bs/LC_MESSAGES/kio_akonadi.mo share/locale/bs/LC_MESSAGES/kio_pop3.mo share/locale/bs/LC_MESSAGES/libfolderarchivesettings.mo share/locale/ca/LC_MESSAGES/accountwizard_contacts.mo share/locale/ca/LC_MESSAGES/accountwizard_ews.mo share/locale/ca/LC_MESSAGES/accountwizard_ical.mo share/locale/ca/LC_MESSAGES/accountwizard_imap.mo share/locale/ca/LC_MESSAGES/accountwizard_kolab.mo share/locale/ca/LC_MESSAGES/accountwizard_mailbox.mo share/locale/ca/LC_MESSAGES/accountwizard_maildir.mo share/locale/ca/LC_MESSAGES/accountwizard_pop3.mo share/locale/ca/LC_MESSAGES/accountwizard_vcard.mo share/locale/ca/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/ca/LC_MESSAGES/akonadi-filestore.mo share/locale/ca/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/ca/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/ca/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/ca/LC_MESSAGES/akonadi_ews_resource.mo share/locale/ca/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/ca/LC_MESSAGES/akonadi_gmail_resource.mo share/locale/ca/LC_MESSAGES/akonadi_googlecalendar_resource.mo share/locale/ca/LC_MESSAGES/akonadi_googlecontacts_resource.mo share/locale/ca/LC_MESSAGES/akonadi_ical_resource.mo share/locale/ca/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/ca/LC_MESSAGES/akonadi_imap_resource.mo -share/locale/ca/LC_MESSAGES/akonadi_invitations_agent.mo share/locale/ca/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/ca/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/ca/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/ca/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/ca/LC_MESSAGES/akonadi_migration_agent.mo share/locale/ca/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/ca/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/ca/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/ca/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/ca/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/ca/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/ca/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/ca/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/ca/LC_MESSAGES/gid-migrator.mo share/locale/ca/LC_MESSAGES/kio_akonadi.mo share/locale/ca/LC_MESSAGES/kio_pop3.mo share/locale/ca/LC_MESSAGES/libfolderarchivesettings.mo share/locale/ca@valencia/LC_MESSAGES/accountwizard_contacts.mo share/locale/ca@valencia/LC_MESSAGES/accountwizard_ews.mo share/locale/ca@valencia/LC_MESSAGES/accountwizard_ical.mo share/locale/ca@valencia/LC_MESSAGES/accountwizard_imap.mo share/locale/ca@valencia/LC_MESSAGES/accountwizard_kolab.mo share/locale/ca@valencia/LC_MESSAGES/accountwizard_mailbox.mo share/locale/ca@valencia/LC_MESSAGES/accountwizard_maildir.mo share/locale/ca@valencia/LC_MESSAGES/accountwizard_pop3.mo share/locale/ca@valencia/LC_MESSAGES/accountwizard_vcard.mo share/locale/ca@valencia/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/ca@valencia/LC_MESSAGES/akonadi-filestore.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_ews_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_gmail_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_googlecalendar_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_googlecontacts_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_ical_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_imap_resource.mo -share/locale/ca@valencia/LC_MESSAGES/akonadi_invitations_agent.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_migration_agent.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/ca@valencia/LC_MESSAGES/gid-migrator.mo share/locale/ca@valencia/LC_MESSAGES/kio_akonadi.mo share/locale/ca@valencia/LC_MESSAGES/kio_pop3.mo share/locale/ca@valencia/LC_MESSAGES/libfolderarchivesettings.mo share/locale/cs/LC_MESSAGES/accountwizard_contacts.mo share/locale/cs/LC_MESSAGES/accountwizard_ews.mo share/locale/cs/LC_MESSAGES/accountwizard_ical.mo share/locale/cs/LC_MESSAGES/accountwizard_imap.mo share/locale/cs/LC_MESSAGES/accountwizard_kolab.mo share/locale/cs/LC_MESSAGES/accountwizard_mailbox.mo share/locale/cs/LC_MESSAGES/accountwizard_maildir.mo share/locale/cs/LC_MESSAGES/accountwizard_pop3.mo share/locale/cs/LC_MESSAGES/accountwizard_vcard.mo share/locale/cs/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/cs/LC_MESSAGES/akonadi-filestore.mo share/locale/cs/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/cs/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/cs/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/cs/LC_MESSAGES/akonadi_ews_resource.mo share/locale/cs/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/cs/LC_MESSAGES/akonadi_gmail_resource.mo share/locale/cs/LC_MESSAGES/akonadi_googlecalendar_resource.mo share/locale/cs/LC_MESSAGES/akonadi_googlecontacts_resource.mo share/locale/cs/LC_MESSAGES/akonadi_ical_resource.mo share/locale/cs/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/cs/LC_MESSAGES/akonadi_imap_resource.mo -share/locale/cs/LC_MESSAGES/akonadi_invitations_agent.mo share/locale/cs/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/cs/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/cs/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/cs/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/cs/LC_MESSAGES/akonadi_migration_agent.mo share/locale/cs/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/cs/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/cs/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/cs/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/cs/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/cs/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/cs/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/cs/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/cs/LC_MESSAGES/gid-migrator.mo share/locale/cs/LC_MESSAGES/kio_akonadi.mo share/locale/cs/LC_MESSAGES/kio_pop3.mo share/locale/cs/LC_MESSAGES/libfolderarchivesettings.mo share/locale/da/LC_MESSAGES/accountwizard_contacts.mo share/locale/da/LC_MESSAGES/accountwizard_ical.mo share/locale/da/LC_MESSAGES/accountwizard_imap.mo share/locale/da/LC_MESSAGES/accountwizard_kolab.mo share/locale/da/LC_MESSAGES/accountwizard_mailbox.mo share/locale/da/LC_MESSAGES/accountwizard_maildir.mo share/locale/da/LC_MESSAGES/accountwizard_pop3.mo share/locale/da/LC_MESSAGES/accountwizard_vcard.mo share/locale/da/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/da/LC_MESSAGES/akonadi-filestore.mo share/locale/da/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/da/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/da/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/da/LC_MESSAGES/akonadi_gmail_resource.mo share/locale/da/LC_MESSAGES/akonadi_googlecalendar_resource.mo share/locale/da/LC_MESSAGES/akonadi_googlecontacts_resource.mo share/locale/da/LC_MESSAGES/akonadi_ical_resource.mo share/locale/da/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/da/LC_MESSAGES/akonadi_imap_resource.mo -share/locale/da/LC_MESSAGES/akonadi_invitations_agent.mo share/locale/da/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/da/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/da/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/da/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/da/LC_MESSAGES/akonadi_migration_agent.mo share/locale/da/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/da/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/da/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/da/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/da/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/da/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/da/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/da/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/da/LC_MESSAGES/gid-migrator.mo share/locale/da/LC_MESSAGES/kio_akonadi.mo share/locale/da/LC_MESSAGES/kio_pop3.mo share/locale/da/LC_MESSAGES/libfolderarchivesettings.mo share/locale/de/LC_MESSAGES/accountwizard_contacts.mo share/locale/de/LC_MESSAGES/accountwizard_ews.mo share/locale/de/LC_MESSAGES/accountwizard_ical.mo share/locale/de/LC_MESSAGES/accountwizard_imap.mo share/locale/de/LC_MESSAGES/accountwizard_kolab.mo share/locale/de/LC_MESSAGES/accountwizard_mailbox.mo share/locale/de/LC_MESSAGES/accountwizard_maildir.mo share/locale/de/LC_MESSAGES/accountwizard_pop3.mo share/locale/de/LC_MESSAGES/accountwizard_vcard.mo share/locale/de/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/de/LC_MESSAGES/akonadi-filestore.mo share/locale/de/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/de/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/de/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/de/LC_MESSAGES/akonadi_ews_resource.mo share/locale/de/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/de/LC_MESSAGES/akonadi_gmail_resource.mo share/locale/de/LC_MESSAGES/akonadi_googlecalendar_resource.mo share/locale/de/LC_MESSAGES/akonadi_googlecontacts_resource.mo share/locale/de/LC_MESSAGES/akonadi_ical_resource.mo share/locale/de/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/de/LC_MESSAGES/akonadi_imap_resource.mo -share/locale/de/LC_MESSAGES/akonadi_invitations_agent.mo share/locale/de/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/de/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/de/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/de/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/de/LC_MESSAGES/akonadi_migration_agent.mo share/locale/de/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/de/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/de/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/de/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/de/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/de/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/de/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/de/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/de/LC_MESSAGES/gid-migrator.mo share/locale/de/LC_MESSAGES/kio_akonadi.mo share/locale/de/LC_MESSAGES/kio_pop3.mo share/locale/de/LC_MESSAGES/libfolderarchivesettings.mo share/locale/el/LC_MESSAGES/accountwizard_contacts.mo share/locale/el/LC_MESSAGES/accountwizard_ical.mo share/locale/el/LC_MESSAGES/accountwizard_imap.mo share/locale/el/LC_MESSAGES/accountwizard_kolab.mo share/locale/el/LC_MESSAGES/accountwizard_mailbox.mo share/locale/el/LC_MESSAGES/accountwizard_maildir.mo share/locale/el/LC_MESSAGES/accountwizard_pop3.mo share/locale/el/LC_MESSAGES/accountwizard_vcard.mo share/locale/el/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/el/LC_MESSAGES/akonadi-filestore.mo share/locale/el/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/el/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/el/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/el/LC_MESSAGES/akonadi_gmail_resource.mo share/locale/el/LC_MESSAGES/akonadi_googlecalendar_resource.mo share/locale/el/LC_MESSAGES/akonadi_googlecontacts_resource.mo share/locale/el/LC_MESSAGES/akonadi_ical_resource.mo share/locale/el/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/el/LC_MESSAGES/akonadi_imap_resource.mo -share/locale/el/LC_MESSAGES/akonadi_invitations_agent.mo share/locale/el/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/el/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/el/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/el/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/el/LC_MESSAGES/akonadi_migration_agent.mo share/locale/el/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/el/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/el/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/el/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/el/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/el/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/el/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/el/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/el/LC_MESSAGES/gid-migrator.mo share/locale/el/LC_MESSAGES/kio_akonadi.mo share/locale/el/LC_MESSAGES/kio_pop3.mo share/locale/el/LC_MESSAGES/libfolderarchivesettings.mo share/locale/en_GB/LC_MESSAGES/accountwizard_contacts.mo share/locale/en_GB/LC_MESSAGES/accountwizard_ews.mo share/locale/en_GB/LC_MESSAGES/accountwizard_ical.mo share/locale/en_GB/LC_MESSAGES/accountwizard_imap.mo share/locale/en_GB/LC_MESSAGES/accountwizard_kolab.mo share/locale/en_GB/LC_MESSAGES/accountwizard_mailbox.mo share/locale/en_GB/LC_MESSAGES/accountwizard_maildir.mo share/locale/en_GB/LC_MESSAGES/accountwizard_pop3.mo share/locale/en_GB/LC_MESSAGES/accountwizard_vcard.mo share/locale/en_GB/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/en_GB/LC_MESSAGES/akonadi-filestore.mo share/locale/en_GB/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_ews_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_gmail_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_googlecalendar_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_googlecontacts_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_ical_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_imap_resource.mo -share/locale/en_GB/LC_MESSAGES/akonadi_invitations_agent.mo share/locale/en_GB/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/en_GB/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_migration_agent.mo share/locale/en_GB/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/en_GB/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/en_GB/LC_MESSAGES/gid-migrator.mo share/locale/en_GB/LC_MESSAGES/kio_akonadi.mo share/locale/en_GB/LC_MESSAGES/kio_pop3.mo share/locale/en_GB/LC_MESSAGES/libfolderarchivesettings.mo share/locale/eo/LC_MESSAGES/accountwizard_imap.mo share/locale/eo/LC_MESSAGES/accountwizard_mailbox.mo share/locale/eo/LC_MESSAGES/accountwizard_maildir.mo share/locale/eo/LC_MESSAGES/accountwizard_pop3.mo share/locale/eo/LC_MESSAGES/akonadi-filestore.mo share/locale/eo/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/eo/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/eo/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/eo/LC_MESSAGES/akonadi_ical_resource.mo share/locale/eo/LC_MESSAGES/akonadi_imap_resource.mo -share/locale/eo/LC_MESSAGES/akonadi_invitations_agent.mo share/locale/eo/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/eo/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/eo/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/eo/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/eo/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/eo/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/eo/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/eo/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/eo/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/eo/LC_MESSAGES/kio_akonadi.mo share/locale/eo/LC_MESSAGES/kio_pop3.mo share/locale/es/LC_MESSAGES/accountwizard_contacts.mo share/locale/es/LC_MESSAGES/accountwizard_ews.mo share/locale/es/LC_MESSAGES/accountwizard_ical.mo share/locale/es/LC_MESSAGES/accountwizard_imap.mo share/locale/es/LC_MESSAGES/accountwizard_kolab.mo share/locale/es/LC_MESSAGES/accountwizard_mailbox.mo share/locale/es/LC_MESSAGES/accountwizard_maildir.mo share/locale/es/LC_MESSAGES/accountwizard_pop3.mo share/locale/es/LC_MESSAGES/accountwizard_vcard.mo share/locale/es/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/es/LC_MESSAGES/akonadi-filestore.mo share/locale/es/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/es/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/es/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/es/LC_MESSAGES/akonadi_ews_resource.mo share/locale/es/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/es/LC_MESSAGES/akonadi_gmail_resource.mo share/locale/es/LC_MESSAGES/akonadi_googlecalendar_resource.mo share/locale/es/LC_MESSAGES/akonadi_googlecontacts_resource.mo share/locale/es/LC_MESSAGES/akonadi_ical_resource.mo share/locale/es/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/es/LC_MESSAGES/akonadi_imap_resource.mo -share/locale/es/LC_MESSAGES/akonadi_invitations_agent.mo share/locale/es/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/es/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/es/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/es/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/es/LC_MESSAGES/akonadi_migration_agent.mo share/locale/es/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/es/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/es/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/es/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/es/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/es/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/es/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/es/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/es/LC_MESSAGES/gid-migrator.mo share/locale/es/LC_MESSAGES/kio_akonadi.mo share/locale/es/LC_MESSAGES/kio_pop3.mo share/locale/es/LC_MESSAGES/libfolderarchivesettings.mo share/locale/et/LC_MESSAGES/accountwizard_contacts.mo share/locale/et/LC_MESSAGES/accountwizard_ical.mo share/locale/et/LC_MESSAGES/accountwizard_imap.mo share/locale/et/LC_MESSAGES/accountwizard_kolab.mo share/locale/et/LC_MESSAGES/accountwizard_mailbox.mo share/locale/et/LC_MESSAGES/accountwizard_maildir.mo share/locale/et/LC_MESSAGES/accountwizard_pop3.mo share/locale/et/LC_MESSAGES/accountwizard_vcard.mo share/locale/et/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/et/LC_MESSAGES/akonadi-filestore.mo share/locale/et/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/et/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/et/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/et/LC_MESSAGES/akonadi_gmail_resource.mo share/locale/et/LC_MESSAGES/akonadi_googlecalendar_resource.mo share/locale/et/LC_MESSAGES/akonadi_googlecontacts_resource.mo share/locale/et/LC_MESSAGES/akonadi_ical_resource.mo share/locale/et/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/et/LC_MESSAGES/akonadi_imap_resource.mo -share/locale/et/LC_MESSAGES/akonadi_invitations_agent.mo share/locale/et/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/et/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/et/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/et/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/et/LC_MESSAGES/akonadi_migration_agent.mo share/locale/et/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/et/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/et/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/et/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/et/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/et/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/et/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/et/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/et/LC_MESSAGES/gid-migrator.mo share/locale/et/LC_MESSAGES/kio_akonadi.mo share/locale/et/LC_MESSAGES/kio_pop3.mo share/locale/et/LC_MESSAGES/libfolderarchivesettings.mo share/locale/eu/LC_MESSAGES/kio_pop3.mo share/locale/fa/LC_MESSAGES/kio_pop3.mo share/locale/fi/LC_MESSAGES/accountwizard_contacts.mo share/locale/fi/LC_MESSAGES/accountwizard_ews.mo share/locale/fi/LC_MESSAGES/accountwizard_ical.mo share/locale/fi/LC_MESSAGES/accountwizard_imap.mo share/locale/fi/LC_MESSAGES/accountwizard_kolab.mo share/locale/fi/LC_MESSAGES/accountwizard_mailbox.mo share/locale/fi/LC_MESSAGES/accountwizard_maildir.mo share/locale/fi/LC_MESSAGES/accountwizard_pop3.mo share/locale/fi/LC_MESSAGES/accountwizard_vcard.mo share/locale/fi/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/fi/LC_MESSAGES/akonadi-filestore.mo share/locale/fi/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/fi/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/fi/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/fi/LC_MESSAGES/akonadi_ews_resource.mo share/locale/fi/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/fi/LC_MESSAGES/akonadi_gmail_resource.mo share/locale/fi/LC_MESSAGES/akonadi_googlecalendar_resource.mo share/locale/fi/LC_MESSAGES/akonadi_googlecontacts_resource.mo share/locale/fi/LC_MESSAGES/akonadi_ical_resource.mo share/locale/fi/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/fi/LC_MESSAGES/akonadi_imap_resource.mo -share/locale/fi/LC_MESSAGES/akonadi_invitations_agent.mo share/locale/fi/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/fi/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/fi/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/fi/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/fi/LC_MESSAGES/akonadi_migration_agent.mo share/locale/fi/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/fi/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/fi/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/fi/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/fi/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/fi/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/fi/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/fi/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/fi/LC_MESSAGES/gid-migrator.mo share/locale/fi/LC_MESSAGES/kio_akonadi.mo share/locale/fi/LC_MESSAGES/kio_pop3.mo share/locale/fi/LC_MESSAGES/libfolderarchivesettings.mo share/locale/fr/LC_MESSAGES/accountwizard_contacts.mo share/locale/fr/LC_MESSAGES/accountwizard_ews.mo share/locale/fr/LC_MESSAGES/accountwizard_ical.mo share/locale/fr/LC_MESSAGES/accountwizard_imap.mo share/locale/fr/LC_MESSAGES/accountwizard_kolab.mo share/locale/fr/LC_MESSAGES/accountwizard_mailbox.mo share/locale/fr/LC_MESSAGES/accountwizard_maildir.mo share/locale/fr/LC_MESSAGES/accountwizard_pop3.mo share/locale/fr/LC_MESSAGES/accountwizard_vcard.mo share/locale/fr/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/fr/LC_MESSAGES/akonadi-filestore.mo share/locale/fr/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/fr/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/fr/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/fr/LC_MESSAGES/akonadi_ews_resource.mo share/locale/fr/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/fr/LC_MESSAGES/akonadi_gmail_resource.mo share/locale/fr/LC_MESSAGES/akonadi_googlecalendar_resource.mo share/locale/fr/LC_MESSAGES/akonadi_googlecontacts_resource.mo share/locale/fr/LC_MESSAGES/akonadi_ical_resource.mo share/locale/fr/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/fr/LC_MESSAGES/akonadi_imap_resource.mo -share/locale/fr/LC_MESSAGES/akonadi_invitations_agent.mo share/locale/fr/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/fr/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/fr/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/fr/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/fr/LC_MESSAGES/akonadi_migration_agent.mo share/locale/fr/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/fr/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/fr/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/fr/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/fr/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/fr/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/fr/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/fr/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/fr/LC_MESSAGES/gid-migrator.mo share/locale/fr/LC_MESSAGES/kio_akonadi.mo share/locale/fr/LC_MESSAGES/kio_pop3.mo share/locale/fr/LC_MESSAGES/libfolderarchivesettings.mo share/locale/ga/LC_MESSAGES/accountwizard_ical.mo share/locale/ga/LC_MESSAGES/accountwizard_imap.mo share/locale/ga/LC_MESSAGES/accountwizard_mailbox.mo share/locale/ga/LC_MESSAGES/accountwizard_maildir.mo share/locale/ga/LC_MESSAGES/accountwizard_pop3.mo share/locale/ga/LC_MESSAGES/akonadi-filestore.mo share/locale/ga/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/ga/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/ga/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/ga/LC_MESSAGES/akonadi_googlecalendar_resource.mo share/locale/ga/LC_MESSAGES/akonadi_googlecontacts_resource.mo share/locale/ga/LC_MESSAGES/akonadi_ical_resource.mo share/locale/ga/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/ga/LC_MESSAGES/akonadi_imap_resource.mo -share/locale/ga/LC_MESSAGES/akonadi_invitations_agent.mo share/locale/ga/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/ga/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/ga/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/ga/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/ga/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/ga/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/ga/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/ga/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/ga/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/ga/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/ga/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/ga/LC_MESSAGES/kio_akonadi.mo share/locale/ga/LC_MESSAGES/kio_pop3.mo -share/locale/gl/LC_MESSAGES/accountwizard_ews.mo -share/locale/gl/LC_MESSAGES/akonadi_ews_resource.mo -share/locale/gl/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/gl/LC_MESSAGES/accountwizard_contacts.mo +share/locale/gl/LC_MESSAGES/accountwizard_ews.mo share/locale/gl/LC_MESSAGES/accountwizard_ical.mo share/locale/gl/LC_MESSAGES/accountwizard_imap.mo share/locale/gl/LC_MESSAGES/accountwizard_kolab.mo share/locale/gl/LC_MESSAGES/accountwizard_mailbox.mo share/locale/gl/LC_MESSAGES/accountwizard_maildir.mo share/locale/gl/LC_MESSAGES/accountwizard_pop3.mo share/locale/gl/LC_MESSAGES/accountwizard_vcard.mo share/locale/gl/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/gl/LC_MESSAGES/akonadi-filestore.mo share/locale/gl/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/gl/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/gl/LC_MESSAGES/akonadi_davgroupware_resource.mo +share/locale/gl/LC_MESSAGES/akonadi_ews_resource.mo +share/locale/gl/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/gl/LC_MESSAGES/akonadi_gmail_resource.mo share/locale/gl/LC_MESSAGES/akonadi_googlecalendar_resource.mo share/locale/gl/LC_MESSAGES/akonadi_googlecontacts_resource.mo share/locale/gl/LC_MESSAGES/akonadi_ical_resource.mo share/locale/gl/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/gl/LC_MESSAGES/akonadi_imap_resource.mo -share/locale/gl/LC_MESSAGES/akonadi_invitations_agent.mo share/locale/gl/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/gl/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/gl/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/gl/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/gl/LC_MESSAGES/akonadi_migration_agent.mo share/locale/gl/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/gl/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/gl/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/gl/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/gl/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/gl/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/gl/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/gl/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/gl/LC_MESSAGES/gid-migrator.mo share/locale/gl/LC_MESSAGES/kio_akonadi.mo share/locale/gl/LC_MESSAGES/kio_pop3.mo share/locale/gl/LC_MESSAGES/libfolderarchivesettings.mo share/locale/he/LC_MESSAGES/accountwizard_contacts.mo share/locale/he/LC_MESSAGES/kio_pop3.mo share/locale/hi/LC_MESSAGES/kio_pop3.mo share/locale/hr/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/hr/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/hr/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/hr/LC_MESSAGES/kio_pop3.mo share/locale/hu/LC_MESSAGES/accountwizard_contacts.mo share/locale/hu/LC_MESSAGES/accountwizard_ical.mo share/locale/hu/LC_MESSAGES/accountwizard_imap.mo share/locale/hu/LC_MESSAGES/accountwizard_mailbox.mo share/locale/hu/LC_MESSAGES/accountwizard_maildir.mo share/locale/hu/LC_MESSAGES/accountwizard_pop3.mo share/locale/hu/LC_MESSAGES/accountwizard_vcard.mo share/locale/hu/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/hu/LC_MESSAGES/akonadi-filestore.mo share/locale/hu/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/hu/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/hu/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/hu/LC_MESSAGES/akonadi_gmail_resource.mo share/locale/hu/LC_MESSAGES/akonadi_googlecalendar_resource.mo share/locale/hu/LC_MESSAGES/akonadi_googlecontacts_resource.mo share/locale/hu/LC_MESSAGES/akonadi_ical_resource.mo share/locale/hu/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/hu/LC_MESSAGES/akonadi_imap_resource.mo -share/locale/hu/LC_MESSAGES/akonadi_invitations_agent.mo share/locale/hu/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/hu/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/hu/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/hu/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/hu/LC_MESSAGES/akonadi_migration_agent.mo share/locale/hu/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/hu/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/hu/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/hu/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/hu/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/hu/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/hu/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/hu/LC_MESSAGES/gid-migrator.mo share/locale/hu/LC_MESSAGES/kio_akonadi.mo share/locale/hu/LC_MESSAGES/kio_pop3.mo share/locale/hu/LC_MESSAGES/libfolderarchivesettings.mo share/locale/ia/LC_MESSAGES/accountwizard_contacts.mo share/locale/ia/LC_MESSAGES/accountwizard_ical.mo share/locale/ia/LC_MESSAGES/accountwizard_imap.mo share/locale/ia/LC_MESSAGES/accountwizard_kolab.mo share/locale/ia/LC_MESSAGES/accountwizard_mailbox.mo share/locale/ia/LC_MESSAGES/accountwizard_maildir.mo share/locale/ia/LC_MESSAGES/accountwizard_pop3.mo share/locale/ia/LC_MESSAGES/accountwizard_vcard.mo share/locale/ia/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/ia/LC_MESSAGES/akonadi-filestore.mo share/locale/ia/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/ia/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/ia/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/ia/LC_MESSAGES/akonadi_gmail_resource.mo share/locale/ia/LC_MESSAGES/akonadi_googlecalendar_resource.mo share/locale/ia/LC_MESSAGES/akonadi_googlecontacts_resource.mo share/locale/ia/LC_MESSAGES/akonadi_ical_resource.mo share/locale/ia/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/ia/LC_MESSAGES/akonadi_imap_resource.mo -share/locale/ia/LC_MESSAGES/akonadi_invitations_agent.mo share/locale/ia/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/ia/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/ia/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/ia/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/ia/LC_MESSAGES/akonadi_migration_agent.mo share/locale/ia/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/ia/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/ia/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/ia/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/ia/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/ia/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/ia/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/ia/LC_MESSAGES/gid-migrator.mo share/locale/ia/LC_MESSAGES/kio_akonadi.mo share/locale/ia/LC_MESSAGES/kio_pop3.mo share/locale/ia/LC_MESSAGES/libfolderarchivesettings.mo share/locale/is/LC_MESSAGES/kio_pop3.mo share/locale/it/LC_MESSAGES/accountwizard_contacts.mo share/locale/it/LC_MESSAGES/accountwizard_ews.mo share/locale/it/LC_MESSAGES/accountwizard_ical.mo share/locale/it/LC_MESSAGES/accountwizard_imap.mo share/locale/it/LC_MESSAGES/accountwizard_kolab.mo share/locale/it/LC_MESSAGES/accountwizard_mailbox.mo share/locale/it/LC_MESSAGES/accountwizard_maildir.mo share/locale/it/LC_MESSAGES/accountwizard_pop3.mo share/locale/it/LC_MESSAGES/accountwizard_vcard.mo share/locale/it/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/it/LC_MESSAGES/akonadi-filestore.mo share/locale/it/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/it/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/it/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/it/LC_MESSAGES/akonadi_ews_resource.mo share/locale/it/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/it/LC_MESSAGES/akonadi_gmail_resource.mo share/locale/it/LC_MESSAGES/akonadi_googlecalendar_resource.mo share/locale/it/LC_MESSAGES/akonadi_googlecontacts_resource.mo share/locale/it/LC_MESSAGES/akonadi_ical_resource.mo share/locale/it/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/it/LC_MESSAGES/akonadi_imap_resource.mo -share/locale/it/LC_MESSAGES/akonadi_invitations_agent.mo share/locale/it/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/it/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/it/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/it/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/it/LC_MESSAGES/akonadi_migration_agent.mo share/locale/it/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/it/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/it/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/it/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/it/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/it/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/it/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/it/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/it/LC_MESSAGES/gid-migrator.mo share/locale/it/LC_MESSAGES/kio_akonadi.mo share/locale/it/LC_MESSAGES/kio_pop3.mo share/locale/it/LC_MESSAGES/libfolderarchivesettings.mo share/locale/ja/LC_MESSAGES/accountwizard_contacts.mo share/locale/ja/LC_MESSAGES/accountwizard_ews.mo share/locale/ja/LC_MESSAGES/accountwizard_ical.mo share/locale/ja/LC_MESSAGES/accountwizard_imap.mo share/locale/ja/LC_MESSAGES/accountwizard_kolab.mo share/locale/ja/LC_MESSAGES/accountwizard_mailbox.mo share/locale/ja/LC_MESSAGES/accountwizard_maildir.mo share/locale/ja/LC_MESSAGES/accountwizard_pop3.mo share/locale/ja/LC_MESSAGES/accountwizard_vcard.mo share/locale/ja/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/ja/LC_MESSAGES/akonadi-filestore.mo share/locale/ja/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/ja/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/ja/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/ja/LC_MESSAGES/akonadi_ews_resource.mo share/locale/ja/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/ja/LC_MESSAGES/akonadi_gmail_resource.mo share/locale/ja/LC_MESSAGES/akonadi_googlecalendar_resource.mo share/locale/ja/LC_MESSAGES/akonadi_googlecontacts_resource.mo share/locale/ja/LC_MESSAGES/akonadi_ical_resource.mo share/locale/ja/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/ja/LC_MESSAGES/akonadi_imap_resource.mo -share/locale/ja/LC_MESSAGES/akonadi_invitations_agent.mo share/locale/ja/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/ja/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/ja/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/ja/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/ja/LC_MESSAGES/akonadi_migration_agent.mo share/locale/ja/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/ja/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/ja/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/ja/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/ja/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/ja/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/ja/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/ja/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/ja/LC_MESSAGES/gid-migrator.mo share/locale/ja/LC_MESSAGES/kio_akonadi.mo share/locale/ja/LC_MESSAGES/kio_pop3.mo share/locale/ja/LC_MESSAGES/libfolderarchivesettings.mo share/locale/kk/LC_MESSAGES/accountwizard_ical.mo share/locale/kk/LC_MESSAGES/accountwizard_imap.mo share/locale/kk/LC_MESSAGES/accountwizard_mailbox.mo share/locale/kk/LC_MESSAGES/accountwizard_maildir.mo share/locale/kk/LC_MESSAGES/accountwizard_pop3.mo share/locale/kk/LC_MESSAGES/akonadi-filestore.mo share/locale/kk/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/kk/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/kk/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/kk/LC_MESSAGES/akonadi_googlecalendar_resource.mo share/locale/kk/LC_MESSAGES/akonadi_googlecontacts_resource.mo share/locale/kk/LC_MESSAGES/akonadi_ical_resource.mo share/locale/kk/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/kk/LC_MESSAGES/akonadi_imap_resource.mo -share/locale/kk/LC_MESSAGES/akonadi_invitations_agent.mo share/locale/kk/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/kk/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/kk/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/kk/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/kk/LC_MESSAGES/akonadi_migration_agent.mo share/locale/kk/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/kk/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/kk/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/kk/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/kk/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/kk/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/kk/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/kk/LC_MESSAGES/gid-migrator.mo share/locale/kk/LC_MESSAGES/kio_akonadi.mo share/locale/kk/LC_MESSAGES/kio_pop3.mo share/locale/km/LC_MESSAGES/accountwizard_ical.mo share/locale/km/LC_MESSAGES/accountwizard_imap.mo share/locale/km/LC_MESSAGES/accountwizard_mailbox.mo share/locale/km/LC_MESSAGES/accountwizard_maildir.mo share/locale/km/LC_MESSAGES/accountwizard_pop3.mo share/locale/km/LC_MESSAGES/akonadi-filestore.mo share/locale/km/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/km/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/km/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/km/LC_MESSAGES/akonadi_googlecalendar_resource.mo share/locale/km/LC_MESSAGES/akonadi_googlecontacts_resource.mo share/locale/km/LC_MESSAGES/akonadi_ical_resource.mo share/locale/km/LC_MESSAGES/akonadi_imap_resource.mo -share/locale/km/LC_MESSAGES/akonadi_invitations_agent.mo share/locale/km/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/km/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/km/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/km/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/km/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/km/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/km/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/km/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/km/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/km/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/km/LC_MESSAGES/kio_akonadi.mo share/locale/km/LC_MESSAGES/kio_pop3.mo share/locale/ko/LC_MESSAGES/accountwizard_contacts.mo share/locale/ko/LC_MESSAGES/accountwizard_ews.mo share/locale/ko/LC_MESSAGES/accountwizard_ical.mo share/locale/ko/LC_MESSAGES/accountwizard_imap.mo share/locale/ko/LC_MESSAGES/accountwizard_kolab.mo share/locale/ko/LC_MESSAGES/accountwizard_mailbox.mo share/locale/ko/LC_MESSAGES/accountwizard_maildir.mo share/locale/ko/LC_MESSAGES/accountwizard_pop3.mo share/locale/ko/LC_MESSAGES/accountwizard_vcard.mo share/locale/ko/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/ko/LC_MESSAGES/akonadi-filestore.mo share/locale/ko/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/ko/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/ko/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/ko/LC_MESSAGES/akonadi_ews_resource.mo share/locale/ko/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/ko/LC_MESSAGES/akonadi_gmail_resource.mo share/locale/ko/LC_MESSAGES/akonadi_googlecalendar_resource.mo share/locale/ko/LC_MESSAGES/akonadi_googlecontacts_resource.mo share/locale/ko/LC_MESSAGES/akonadi_ical_resource.mo share/locale/ko/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/ko/LC_MESSAGES/akonadi_imap_resource.mo -share/locale/ko/LC_MESSAGES/akonadi_invitations_agent.mo share/locale/ko/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/ko/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/ko/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/ko/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/ko/LC_MESSAGES/akonadi_migration_agent.mo share/locale/ko/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/ko/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/ko/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/ko/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/ko/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/ko/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/ko/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/ko/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/ko/LC_MESSAGES/gid-migrator.mo share/locale/ko/LC_MESSAGES/kio_akonadi.mo share/locale/ko/LC_MESSAGES/kio_pop3.mo share/locale/ko/LC_MESSAGES/libfolderarchivesettings.mo share/locale/lt/LC_MESSAGES/accountwizard_contacts.mo share/locale/lt/LC_MESSAGES/accountwizard_ical.mo share/locale/lt/LC_MESSAGES/accountwizard_imap.mo share/locale/lt/LC_MESSAGES/accountwizard_kolab.mo share/locale/lt/LC_MESSAGES/accountwizard_mailbox.mo share/locale/lt/LC_MESSAGES/accountwizard_maildir.mo share/locale/lt/LC_MESSAGES/accountwizard_pop3.mo share/locale/lt/LC_MESSAGES/accountwizard_vcard.mo share/locale/lt/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/lt/LC_MESSAGES/akonadi-filestore.mo share/locale/lt/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/lt/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/lt/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/lt/LC_MESSAGES/akonadi_gmail_resource.mo share/locale/lt/LC_MESSAGES/akonadi_googlecalendar_resource.mo share/locale/lt/LC_MESSAGES/akonadi_googlecontacts_resource.mo share/locale/lt/LC_MESSAGES/akonadi_ical_resource.mo share/locale/lt/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/lt/LC_MESSAGES/akonadi_imap_resource.mo -share/locale/lt/LC_MESSAGES/akonadi_invitations_agent.mo share/locale/lt/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/lt/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/lt/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/lt/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/lt/LC_MESSAGES/akonadi_migration_agent.mo share/locale/lt/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/lt/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/lt/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/lt/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/lt/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/lt/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/lt/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/lt/LC_MESSAGES/gid-migrator.mo share/locale/lt/LC_MESSAGES/kio_akonadi.mo share/locale/lt/LC_MESSAGES/kio_pop3.mo share/locale/lt/LC_MESSAGES/libfolderarchivesettings.mo share/locale/lv/LC_MESSAGES/accountwizard_ical.mo share/locale/lv/LC_MESSAGES/accountwizard_imap.mo share/locale/lv/LC_MESSAGES/accountwizard_mailbox.mo share/locale/lv/LC_MESSAGES/accountwizard_maildir.mo share/locale/lv/LC_MESSAGES/accountwizard_pop3.mo share/locale/lv/LC_MESSAGES/akonadi-filestore.mo share/locale/lv/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/lv/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/lv/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/lv/LC_MESSAGES/akonadi_googlecalendar_resource.mo share/locale/lv/LC_MESSAGES/akonadi_googlecontacts_resource.mo share/locale/lv/LC_MESSAGES/akonadi_ical_resource.mo share/locale/lv/LC_MESSAGES/akonadi_imap_resource.mo -share/locale/lv/LC_MESSAGES/akonadi_invitations_agent.mo share/locale/lv/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/lv/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/lv/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/lv/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/lv/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/lv/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/lv/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/lv/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/lv/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/lv/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/lv/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/lv/LC_MESSAGES/kio_akonadi.mo share/locale/lv/LC_MESSAGES/kio_pop3.mo share/locale/mr/LC_MESSAGES/accountwizard_ical.mo share/locale/mr/LC_MESSAGES/accountwizard_imap.mo share/locale/mr/LC_MESSAGES/accountwizard_mailbox.mo share/locale/mr/LC_MESSAGES/accountwizard_maildir.mo share/locale/mr/LC_MESSAGES/accountwizard_pop3.mo share/locale/mr/LC_MESSAGES/akonadi-filestore.mo share/locale/mr/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/mr/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/mr/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/mr/LC_MESSAGES/akonadi_googlecalendar_resource.mo share/locale/mr/LC_MESSAGES/akonadi_googlecontacts_resource.mo share/locale/mr/LC_MESSAGES/akonadi_ical_resource.mo share/locale/mr/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/mr/LC_MESSAGES/akonadi_imap_resource.mo -share/locale/mr/LC_MESSAGES/akonadi_invitations_agent.mo share/locale/mr/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/mr/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/mr/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/mr/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/mr/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/mr/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/mr/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/mr/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/mr/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/mr/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/mr/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/mr/LC_MESSAGES/kio_akonadi.mo share/locale/mr/LC_MESSAGES/kio_pop3.mo share/locale/nb/LC_MESSAGES/accountwizard_contacts.mo share/locale/nb/LC_MESSAGES/accountwizard_ical.mo share/locale/nb/LC_MESSAGES/accountwizard_imap.mo share/locale/nb/LC_MESSAGES/accountwizard_kolab.mo share/locale/nb/LC_MESSAGES/accountwizard_mailbox.mo share/locale/nb/LC_MESSAGES/accountwizard_maildir.mo share/locale/nb/LC_MESSAGES/accountwizard_pop3.mo share/locale/nb/LC_MESSAGES/accountwizard_vcard.mo share/locale/nb/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/nb/LC_MESSAGES/akonadi-filestore.mo share/locale/nb/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/nb/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/nb/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/nb/LC_MESSAGES/akonadi_gmail_resource.mo share/locale/nb/LC_MESSAGES/akonadi_googlecalendar_resource.mo share/locale/nb/LC_MESSAGES/akonadi_googlecontacts_resource.mo share/locale/nb/LC_MESSAGES/akonadi_ical_resource.mo share/locale/nb/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/nb/LC_MESSAGES/akonadi_imap_resource.mo -share/locale/nb/LC_MESSAGES/akonadi_invitations_agent.mo share/locale/nb/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/nb/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/nb/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/nb/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/nb/LC_MESSAGES/akonadi_migration_agent.mo share/locale/nb/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/nb/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/nb/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/nb/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/nb/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/nb/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/nb/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/nb/LC_MESSAGES/gid-migrator.mo share/locale/nb/LC_MESSAGES/kio_akonadi.mo share/locale/nb/LC_MESSAGES/kio_pop3.mo share/locale/nb/LC_MESSAGES/libfolderarchivesettings.mo share/locale/nds/LC_MESSAGES/accountwizard_contacts.mo share/locale/nds/LC_MESSAGES/accountwizard_ical.mo share/locale/nds/LC_MESSAGES/accountwizard_imap.mo share/locale/nds/LC_MESSAGES/accountwizard_mailbox.mo share/locale/nds/LC_MESSAGES/accountwizard_maildir.mo share/locale/nds/LC_MESSAGES/accountwizard_pop3.mo share/locale/nds/LC_MESSAGES/accountwizard_vcard.mo share/locale/nds/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/nds/LC_MESSAGES/akonadi-filestore.mo share/locale/nds/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/nds/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/nds/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/nds/LC_MESSAGES/akonadi_gmail_resource.mo share/locale/nds/LC_MESSAGES/akonadi_googlecalendar_resource.mo share/locale/nds/LC_MESSAGES/akonadi_googlecontacts_resource.mo share/locale/nds/LC_MESSAGES/akonadi_ical_resource.mo share/locale/nds/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/nds/LC_MESSAGES/akonadi_imap_resource.mo -share/locale/nds/LC_MESSAGES/akonadi_invitations_agent.mo share/locale/nds/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/nds/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/nds/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/nds/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/nds/LC_MESSAGES/akonadi_migration_agent.mo share/locale/nds/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/nds/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/nds/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/nds/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/nds/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/nds/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/nds/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/nds/LC_MESSAGES/gid-migrator.mo share/locale/nds/LC_MESSAGES/kio_akonadi.mo share/locale/nds/LC_MESSAGES/kio_pop3.mo share/locale/nds/LC_MESSAGES/libfolderarchivesettings.mo share/locale/nl/LC_MESSAGES/accountwizard_contacts.mo share/locale/nl/LC_MESSAGES/accountwizard_ews.mo share/locale/nl/LC_MESSAGES/accountwizard_ical.mo share/locale/nl/LC_MESSAGES/accountwizard_imap.mo share/locale/nl/LC_MESSAGES/accountwizard_kolab.mo share/locale/nl/LC_MESSAGES/accountwizard_mailbox.mo share/locale/nl/LC_MESSAGES/accountwizard_maildir.mo share/locale/nl/LC_MESSAGES/accountwizard_pop3.mo share/locale/nl/LC_MESSAGES/accountwizard_vcard.mo share/locale/nl/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/nl/LC_MESSAGES/akonadi-filestore.mo share/locale/nl/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/nl/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/nl/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/nl/LC_MESSAGES/akonadi_ews_resource.mo share/locale/nl/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/nl/LC_MESSAGES/akonadi_gmail_resource.mo share/locale/nl/LC_MESSAGES/akonadi_googlecalendar_resource.mo share/locale/nl/LC_MESSAGES/akonadi_googlecontacts_resource.mo share/locale/nl/LC_MESSAGES/akonadi_ical_resource.mo share/locale/nl/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/nl/LC_MESSAGES/akonadi_imap_resource.mo -share/locale/nl/LC_MESSAGES/akonadi_invitations_agent.mo share/locale/nl/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/nl/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/nl/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/nl/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/nl/LC_MESSAGES/akonadi_migration_agent.mo share/locale/nl/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/nl/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/nl/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/nl/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/nl/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/nl/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/nl/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/nl/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/nl/LC_MESSAGES/gid-migrator.mo share/locale/nl/LC_MESSAGES/kio_akonadi.mo share/locale/nl/LC_MESSAGES/kio_pop3.mo share/locale/nl/LC_MESSAGES/libfolderarchivesettings.mo share/locale/nn/LC_MESSAGES/accountwizard_imap.mo share/locale/nn/LC_MESSAGES/accountwizard_kolab.mo share/locale/nn/LC_MESSAGES/accountwizard_mailbox.mo share/locale/nn/LC_MESSAGES/accountwizard_maildir.mo share/locale/nn/LC_MESSAGES/accountwizard_pop3.mo share/locale/nn/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/nn/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/nn/LC_MESSAGES/akonadi_gmail_resource.mo share/locale/nn/LC_MESSAGES/akonadi_ical_resource.mo share/locale/nn/LC_MESSAGES/akonadi_imap_resource.mo -share/locale/nn/LC_MESSAGES/akonadi_invitations_agent.mo share/locale/nn/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/nn/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/nn/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/nn/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/nn/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/nn/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/nn/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/nn/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/nn/LC_MESSAGES/kio_akonadi.mo share/locale/nn/LC_MESSAGES/kio_pop3.mo share/locale/pa/LC_MESSAGES/accountwizard_ical.mo share/locale/pa/LC_MESSAGES/accountwizard_imap.mo share/locale/pa/LC_MESSAGES/accountwizard_mailbox.mo share/locale/pa/LC_MESSAGES/accountwizard_maildir.mo share/locale/pa/LC_MESSAGES/accountwizard_pop3.mo share/locale/pa/LC_MESSAGES/akonadi-filestore.mo share/locale/pa/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/pa/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/pa/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/pa/LC_MESSAGES/akonadi_ical_resource.mo share/locale/pa/LC_MESSAGES/akonadi_imap_resource.mo -share/locale/pa/LC_MESSAGES/akonadi_invitations_agent.mo share/locale/pa/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/pa/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/pa/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/pa/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/pa/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/pa/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/pa/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/pa/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/pa/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/pa/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/pa/LC_MESSAGES/kio_akonadi.mo share/locale/pa/LC_MESSAGES/kio_pop3.mo share/locale/pl/LC_MESSAGES/accountwizard_contacts.mo share/locale/pl/LC_MESSAGES/accountwizard_ews.mo share/locale/pl/LC_MESSAGES/accountwizard_ical.mo share/locale/pl/LC_MESSAGES/accountwizard_imap.mo share/locale/pl/LC_MESSAGES/accountwizard_kolab.mo share/locale/pl/LC_MESSAGES/accountwizard_mailbox.mo share/locale/pl/LC_MESSAGES/accountwizard_maildir.mo share/locale/pl/LC_MESSAGES/accountwizard_pop3.mo share/locale/pl/LC_MESSAGES/accountwizard_vcard.mo share/locale/pl/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/pl/LC_MESSAGES/akonadi-filestore.mo share/locale/pl/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/pl/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/pl/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/pl/LC_MESSAGES/akonadi_ews_resource.mo share/locale/pl/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/pl/LC_MESSAGES/akonadi_gmail_resource.mo share/locale/pl/LC_MESSAGES/akonadi_googlecalendar_resource.mo share/locale/pl/LC_MESSAGES/akonadi_googlecontacts_resource.mo share/locale/pl/LC_MESSAGES/akonadi_ical_resource.mo share/locale/pl/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/pl/LC_MESSAGES/akonadi_imap_resource.mo -share/locale/pl/LC_MESSAGES/akonadi_invitations_agent.mo share/locale/pl/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/pl/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/pl/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/pl/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/pl/LC_MESSAGES/akonadi_migration_agent.mo share/locale/pl/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/pl/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/pl/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/pl/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/pl/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/pl/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/pl/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/pl/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/pl/LC_MESSAGES/gid-migrator.mo share/locale/pl/LC_MESSAGES/kio_akonadi.mo share/locale/pl/LC_MESSAGES/kio_pop3.mo share/locale/pl/LC_MESSAGES/libfolderarchivesettings.mo share/locale/pt/LC_MESSAGES/accountwizard_contacts.mo share/locale/pt/LC_MESSAGES/accountwizard_ews.mo share/locale/pt/LC_MESSAGES/accountwizard_ical.mo share/locale/pt/LC_MESSAGES/accountwizard_imap.mo share/locale/pt/LC_MESSAGES/accountwizard_kolab.mo share/locale/pt/LC_MESSAGES/accountwizard_mailbox.mo share/locale/pt/LC_MESSAGES/accountwizard_maildir.mo share/locale/pt/LC_MESSAGES/accountwizard_pop3.mo share/locale/pt/LC_MESSAGES/accountwizard_vcard.mo share/locale/pt/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/pt/LC_MESSAGES/akonadi-filestore.mo share/locale/pt/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/pt/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/pt/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/pt/LC_MESSAGES/akonadi_ews_resource.mo share/locale/pt/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/pt/LC_MESSAGES/akonadi_gmail_resource.mo share/locale/pt/LC_MESSAGES/akonadi_googlecalendar_resource.mo share/locale/pt/LC_MESSAGES/akonadi_googlecontacts_resource.mo share/locale/pt/LC_MESSAGES/akonadi_ical_resource.mo share/locale/pt/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/pt/LC_MESSAGES/akonadi_imap_resource.mo -share/locale/pt/LC_MESSAGES/akonadi_invitations_agent.mo share/locale/pt/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/pt/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/pt/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/pt/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/pt/LC_MESSAGES/akonadi_migration_agent.mo share/locale/pt/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/pt/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/pt/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/pt/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/pt/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/pt/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/pt/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/pt/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/pt/LC_MESSAGES/gid-migrator.mo share/locale/pt/LC_MESSAGES/kio_akonadi.mo share/locale/pt/LC_MESSAGES/kio_pop3.mo share/locale/pt/LC_MESSAGES/libfolderarchivesettings.mo share/locale/pt_BR/LC_MESSAGES/accountwizard_contacts.mo share/locale/pt_BR/LC_MESSAGES/accountwizard_ews.mo share/locale/pt_BR/LC_MESSAGES/accountwizard_ical.mo share/locale/pt_BR/LC_MESSAGES/accountwizard_imap.mo share/locale/pt_BR/LC_MESSAGES/accountwizard_kolab.mo share/locale/pt_BR/LC_MESSAGES/accountwizard_mailbox.mo share/locale/pt_BR/LC_MESSAGES/accountwizard_maildir.mo share/locale/pt_BR/LC_MESSAGES/accountwizard_pop3.mo share/locale/pt_BR/LC_MESSAGES/accountwizard_vcard.mo share/locale/pt_BR/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/pt_BR/LC_MESSAGES/akonadi-filestore.mo share/locale/pt_BR/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_ews_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_gmail_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_googlecalendar_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_googlecontacts_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_ical_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_imap_resource.mo -share/locale/pt_BR/LC_MESSAGES/akonadi_invitations_agent.mo share/locale/pt_BR/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/pt_BR/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_migration_agent.mo share/locale/pt_BR/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/pt_BR/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/pt_BR/LC_MESSAGES/gid-migrator.mo share/locale/pt_BR/LC_MESSAGES/kio_akonadi.mo share/locale/pt_BR/LC_MESSAGES/kio_pop3.mo share/locale/pt_BR/LC_MESSAGES/libfolderarchivesettings.mo share/locale/ro/LC_MESSAGES/accountwizard_contacts.mo share/locale/ro/LC_MESSAGES/accountwizard_ical.mo share/locale/ro/LC_MESSAGES/accountwizard_imap.mo share/locale/ro/LC_MESSAGES/accountwizard_mailbox.mo share/locale/ro/LC_MESSAGES/accountwizard_maildir.mo share/locale/ro/LC_MESSAGES/accountwizard_pop3.mo share/locale/ro/LC_MESSAGES/accountwizard_vcard.mo share/locale/ro/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/ro/LC_MESSAGES/akonadi-filestore.mo share/locale/ro/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/ro/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/ro/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/ro/LC_MESSAGES/akonadi_gmail_resource.mo share/locale/ro/LC_MESSAGES/akonadi_ical_resource.mo share/locale/ro/LC_MESSAGES/akonadi_imap_resource.mo -share/locale/ro/LC_MESSAGES/akonadi_invitations_agent.mo share/locale/ro/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/ro/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/ro/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/ro/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/ro/LC_MESSAGES/akonadi_migration_agent.mo share/locale/ro/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/ro/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/ro/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/ro/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/ro/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/ro/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/ro/LC_MESSAGES/kio_akonadi.mo share/locale/ro/LC_MESSAGES/kio_pop3.mo share/locale/ru/LC_MESSAGES/accountwizard_contacts.mo share/locale/ru/LC_MESSAGES/accountwizard_ews.mo share/locale/ru/LC_MESSAGES/accountwizard_ical.mo share/locale/ru/LC_MESSAGES/accountwizard_imap.mo share/locale/ru/LC_MESSAGES/accountwizard_kolab.mo share/locale/ru/LC_MESSAGES/accountwizard_mailbox.mo share/locale/ru/LC_MESSAGES/accountwizard_maildir.mo share/locale/ru/LC_MESSAGES/accountwizard_pop3.mo share/locale/ru/LC_MESSAGES/accountwizard_vcard.mo share/locale/ru/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/ru/LC_MESSAGES/akonadi-filestore.mo share/locale/ru/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/ru/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/ru/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/ru/LC_MESSAGES/akonadi_ews_resource.mo share/locale/ru/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/ru/LC_MESSAGES/akonadi_gmail_resource.mo share/locale/ru/LC_MESSAGES/akonadi_googlecalendar_resource.mo share/locale/ru/LC_MESSAGES/akonadi_googlecontacts_resource.mo share/locale/ru/LC_MESSAGES/akonadi_ical_resource.mo share/locale/ru/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/ru/LC_MESSAGES/akonadi_imap_resource.mo -share/locale/ru/LC_MESSAGES/akonadi_invitations_agent.mo share/locale/ru/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/ru/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/ru/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/ru/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/ru/LC_MESSAGES/akonadi_migration_agent.mo share/locale/ru/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/ru/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/ru/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/ru/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/ru/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/ru/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/ru/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/ru/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/ru/LC_MESSAGES/gid-migrator.mo share/locale/ru/LC_MESSAGES/kio_akonadi.mo share/locale/ru/LC_MESSAGES/kio_pop3.mo share/locale/ru/LC_MESSAGES/libfolderarchivesettings.mo share/locale/sk/LC_MESSAGES/accountwizard_contacts.mo share/locale/sk/LC_MESSAGES/accountwizard_ews.mo share/locale/sk/LC_MESSAGES/accountwizard_ical.mo share/locale/sk/LC_MESSAGES/accountwizard_imap.mo share/locale/sk/LC_MESSAGES/accountwizard_kolab.mo share/locale/sk/LC_MESSAGES/accountwizard_mailbox.mo share/locale/sk/LC_MESSAGES/accountwizard_maildir.mo share/locale/sk/LC_MESSAGES/accountwizard_pop3.mo share/locale/sk/LC_MESSAGES/accountwizard_vcard.mo share/locale/sk/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/sk/LC_MESSAGES/akonadi-filestore.mo share/locale/sk/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/sk/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/sk/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/sk/LC_MESSAGES/akonadi_ews_resource.mo share/locale/sk/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/sk/LC_MESSAGES/akonadi_gmail_resource.mo share/locale/sk/LC_MESSAGES/akonadi_googlecalendar_resource.mo share/locale/sk/LC_MESSAGES/akonadi_googlecontacts_resource.mo share/locale/sk/LC_MESSAGES/akonadi_ical_resource.mo share/locale/sk/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/sk/LC_MESSAGES/akonadi_imap_resource.mo -share/locale/sk/LC_MESSAGES/akonadi_invitations_agent.mo share/locale/sk/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/sk/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/sk/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/sk/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/sk/LC_MESSAGES/akonadi_migration_agent.mo share/locale/sk/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/sk/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/sk/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/sk/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/sk/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/sk/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/sk/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/sk/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/sk/LC_MESSAGES/gid-migrator.mo share/locale/sk/LC_MESSAGES/kio_akonadi.mo share/locale/sk/LC_MESSAGES/kio_pop3.mo share/locale/sk/LC_MESSAGES/libfolderarchivesettings.mo share/locale/sl/LC_MESSAGES/accountwizard_contacts.mo share/locale/sl/LC_MESSAGES/accountwizard_ews.mo share/locale/sl/LC_MESSAGES/accountwizard_ical.mo share/locale/sl/LC_MESSAGES/accountwizard_imap.mo share/locale/sl/LC_MESSAGES/accountwizard_kolab.mo share/locale/sl/LC_MESSAGES/accountwizard_mailbox.mo share/locale/sl/LC_MESSAGES/accountwizard_maildir.mo share/locale/sl/LC_MESSAGES/accountwizard_pop3.mo share/locale/sl/LC_MESSAGES/accountwizard_vcard.mo share/locale/sl/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/sl/LC_MESSAGES/akonadi-filestore.mo share/locale/sl/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/sl/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/sl/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/sl/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/sl/LC_MESSAGES/akonadi_gmail_resource.mo share/locale/sl/LC_MESSAGES/akonadi_googlecalendar_resource.mo share/locale/sl/LC_MESSAGES/akonadi_googlecontacts_resource.mo share/locale/sl/LC_MESSAGES/akonadi_ical_resource.mo share/locale/sl/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/sl/LC_MESSAGES/akonadi_imap_resource.mo -share/locale/sl/LC_MESSAGES/akonadi_invitations_agent.mo share/locale/sl/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/sl/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/sl/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/sl/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/sl/LC_MESSAGES/akonadi_migration_agent.mo share/locale/sl/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/sl/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/sl/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/sl/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/sl/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/sl/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/sl/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/sl/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/sl/LC_MESSAGES/gid-migrator.mo share/locale/sl/LC_MESSAGES/kio_akonadi.mo share/locale/sl/LC_MESSAGES/kio_pop3.mo share/locale/sl/LC_MESSAGES/libfolderarchivesettings.mo share/locale/sr/LC_MESSAGES/accountwizard_contacts.mo share/locale/sr/LC_MESSAGES/accountwizard_ews.mo share/locale/sr/LC_MESSAGES/accountwizard_ical.mo share/locale/sr/LC_MESSAGES/accountwizard_imap.mo share/locale/sr/LC_MESSAGES/accountwizard_kolab.mo share/locale/sr/LC_MESSAGES/accountwizard_mailbox.mo share/locale/sr/LC_MESSAGES/accountwizard_maildir.mo share/locale/sr/LC_MESSAGES/accountwizard_pop3.mo share/locale/sr/LC_MESSAGES/accountwizard_vcard.mo share/locale/sr/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/sr/LC_MESSAGES/akonadi-filestore.mo share/locale/sr/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/sr/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/sr/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/sr/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/sr/LC_MESSAGES/akonadi_gmail_resource.mo share/locale/sr/LC_MESSAGES/akonadi_googlecalendar_resource.mo share/locale/sr/LC_MESSAGES/akonadi_googlecontacts_resource.mo share/locale/sr/LC_MESSAGES/akonadi_ical_resource.mo share/locale/sr/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/sr/LC_MESSAGES/akonadi_imap_resource.mo -share/locale/sr/LC_MESSAGES/akonadi_invitations_agent.mo share/locale/sr/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/sr/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/sr/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/sr/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/sr/LC_MESSAGES/akonadi_migration_agent.mo share/locale/sr/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/sr/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/sr/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/sr/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/sr/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/sr/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/sr/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/sr/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/sr/LC_MESSAGES/gid-migrator.mo share/locale/sr/LC_MESSAGES/kio_akonadi.mo share/locale/sr/LC_MESSAGES/kio_pop3.mo share/locale/sr/LC_MESSAGES/libfolderarchivesettings.mo share/locale/sv/LC_MESSAGES/accountwizard_contacts.mo share/locale/sv/LC_MESSAGES/accountwizard_ews.mo share/locale/sv/LC_MESSAGES/accountwizard_ical.mo share/locale/sv/LC_MESSAGES/accountwizard_imap.mo share/locale/sv/LC_MESSAGES/accountwizard_kolab.mo share/locale/sv/LC_MESSAGES/accountwizard_mailbox.mo share/locale/sv/LC_MESSAGES/accountwizard_maildir.mo share/locale/sv/LC_MESSAGES/accountwizard_pop3.mo share/locale/sv/LC_MESSAGES/accountwizard_vcard.mo share/locale/sv/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/sv/LC_MESSAGES/akonadi-filestore.mo share/locale/sv/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/sv/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/sv/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/sv/LC_MESSAGES/akonadi_ews_resource.mo share/locale/sv/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/sv/LC_MESSAGES/akonadi_gmail_resource.mo share/locale/sv/LC_MESSAGES/akonadi_googlecalendar_resource.mo share/locale/sv/LC_MESSAGES/akonadi_googlecontacts_resource.mo share/locale/sv/LC_MESSAGES/akonadi_ical_resource.mo share/locale/sv/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/sv/LC_MESSAGES/akonadi_imap_resource.mo -share/locale/sv/LC_MESSAGES/akonadi_invitations_agent.mo share/locale/sv/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/sv/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/sv/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/sv/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/sv/LC_MESSAGES/akonadi_migration_agent.mo share/locale/sv/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/sv/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/sv/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/sv/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/sv/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/sv/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/sv/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/sv/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/sv/LC_MESSAGES/gid-migrator.mo share/locale/sv/LC_MESSAGES/kio_akonadi.mo share/locale/sv/LC_MESSAGES/kio_pop3.mo share/locale/sv/LC_MESSAGES/libfolderarchivesettings.mo share/locale/tr/LC_MESSAGES/accountwizard_contacts.mo share/locale/tr/LC_MESSAGES/accountwizard_ical.mo share/locale/tr/LC_MESSAGES/accountwizard_imap.mo share/locale/tr/LC_MESSAGES/accountwizard_kolab.mo share/locale/tr/LC_MESSAGES/accountwizard_mailbox.mo share/locale/tr/LC_MESSAGES/accountwizard_maildir.mo share/locale/tr/LC_MESSAGES/accountwizard_pop3.mo share/locale/tr/LC_MESSAGES/accountwizard_vcard.mo share/locale/tr/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/tr/LC_MESSAGES/akonadi-filestore.mo share/locale/tr/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/tr/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/tr/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/tr/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/tr/LC_MESSAGES/akonadi_googlecalendar_resource.mo share/locale/tr/LC_MESSAGES/akonadi_googlecontacts_resource.mo share/locale/tr/LC_MESSAGES/akonadi_ical_resource.mo share/locale/tr/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/tr/LC_MESSAGES/akonadi_imap_resource.mo -share/locale/tr/LC_MESSAGES/akonadi_invitations_agent.mo share/locale/tr/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/tr/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/tr/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/tr/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/tr/LC_MESSAGES/akonadi_migration_agent.mo share/locale/tr/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/tr/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/tr/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/tr/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/tr/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/tr/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/tr/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/tr/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/tr/LC_MESSAGES/gid-migrator.mo share/locale/tr/LC_MESSAGES/kio_akonadi.mo share/locale/tr/LC_MESSAGES/kio_pop3.mo share/locale/tr/LC_MESSAGES/libfolderarchivesettings.mo share/locale/ug/LC_MESSAGES/accountwizard_ical.mo share/locale/ug/LC_MESSAGES/accountwizard_imap.mo share/locale/ug/LC_MESSAGES/accountwizard_mailbox.mo share/locale/ug/LC_MESSAGES/accountwizard_maildir.mo share/locale/ug/LC_MESSAGES/accountwizard_pop3.mo share/locale/ug/LC_MESSAGES/akonadi-filestore.mo share/locale/ug/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/ug/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/ug/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/ug/LC_MESSAGES/akonadi_googlecalendar_resource.mo share/locale/ug/LC_MESSAGES/akonadi_googlecontacts_resource.mo share/locale/ug/LC_MESSAGES/akonadi_ical_resource.mo share/locale/ug/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/ug/LC_MESSAGES/akonadi_imap_resource.mo -share/locale/ug/LC_MESSAGES/akonadi_invitations_agent.mo share/locale/ug/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/ug/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/ug/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/ug/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/ug/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/ug/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/ug/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/ug/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/ug/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/ug/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/ug/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/ug/LC_MESSAGES/kio_akonadi.mo share/locale/ug/LC_MESSAGES/kio_pop3.mo share/locale/uk/LC_MESSAGES/accountwizard_contacts.mo share/locale/uk/LC_MESSAGES/accountwizard_ews.mo share/locale/uk/LC_MESSAGES/accountwizard_ical.mo share/locale/uk/LC_MESSAGES/accountwizard_imap.mo share/locale/uk/LC_MESSAGES/accountwizard_kolab.mo share/locale/uk/LC_MESSAGES/accountwizard_mailbox.mo share/locale/uk/LC_MESSAGES/accountwizard_maildir.mo share/locale/uk/LC_MESSAGES/accountwizard_pop3.mo share/locale/uk/LC_MESSAGES/accountwizard_vcard.mo share/locale/uk/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/uk/LC_MESSAGES/akonadi-filestore.mo share/locale/uk/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/uk/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/uk/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/uk/LC_MESSAGES/akonadi_ews_resource.mo share/locale/uk/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/uk/LC_MESSAGES/akonadi_gmail_resource.mo share/locale/uk/LC_MESSAGES/akonadi_googlecalendar_resource.mo share/locale/uk/LC_MESSAGES/akonadi_googlecontacts_resource.mo share/locale/uk/LC_MESSAGES/akonadi_ical_resource.mo share/locale/uk/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/uk/LC_MESSAGES/akonadi_imap_resource.mo -share/locale/uk/LC_MESSAGES/akonadi_invitations_agent.mo share/locale/uk/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/uk/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/uk/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/uk/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/uk/LC_MESSAGES/akonadi_migration_agent.mo share/locale/uk/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/uk/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/uk/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/uk/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/uk/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/uk/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/uk/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/uk/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/uk/LC_MESSAGES/gid-migrator.mo share/locale/uk/LC_MESSAGES/kio_akonadi.mo share/locale/uk/LC_MESSAGES/kio_pop3.mo share/locale/uk/LC_MESSAGES/libfolderarchivesettings.mo share/locale/zh_CN/LC_MESSAGES/accountwizard_contacts.mo share/locale/zh_CN/LC_MESSAGES/accountwizard_ews.mo share/locale/zh_CN/LC_MESSAGES/accountwizard_ical.mo share/locale/zh_CN/LC_MESSAGES/accountwizard_imap.mo share/locale/zh_CN/LC_MESSAGES/accountwizard_kolab.mo share/locale/zh_CN/LC_MESSAGES/accountwizard_mailbox.mo share/locale/zh_CN/LC_MESSAGES/accountwizard_maildir.mo share/locale/zh_CN/LC_MESSAGES/accountwizard_pop3.mo share/locale/zh_CN/LC_MESSAGES/accountwizard_vcard.mo share/locale/zh_CN/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/zh_CN/LC_MESSAGES/akonadi-filestore.mo share/locale/zh_CN/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_ews_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_gmail_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_googlecalendar_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_googlecontacts_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_ical_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_imap_resource.mo -share/locale/zh_CN/LC_MESSAGES/akonadi_invitations_agent.mo share/locale/zh_CN/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/zh_CN/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_migration_agent.mo share/locale/zh_CN/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/zh_CN/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/zh_CN/LC_MESSAGES/gid-migrator.mo share/locale/zh_CN/LC_MESSAGES/kio_akonadi.mo share/locale/zh_CN/LC_MESSAGES/kio_pop3.mo share/locale/zh_CN/LC_MESSAGES/libfolderarchivesettings.mo share/locale/zh_TW/LC_MESSAGES/accountwizard_contacts.mo share/locale/zh_TW/LC_MESSAGES/accountwizard_ews.mo share/locale/zh_TW/LC_MESSAGES/accountwizard_ical.mo share/locale/zh_TW/LC_MESSAGES/accountwizard_imap.mo share/locale/zh_TW/LC_MESSAGES/accountwizard_kolab.mo share/locale/zh_TW/LC_MESSAGES/accountwizard_mailbox.mo share/locale/zh_TW/LC_MESSAGES/accountwizard_maildir.mo share/locale/zh_TW/LC_MESSAGES/accountwizard_pop3.mo share/locale/zh_TW/LC_MESSAGES/accountwizard_vcard.mo share/locale/zh_TW/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/zh_TW/LC_MESSAGES/akonadi-filestore.mo share/locale/zh_TW/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_davgroupware_resource.mo -share/locale/zh_TW/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_ews_resource.mo +share/locale/zh_TW/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_gmail_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_googlecalendar_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_googlecontacts_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_ical_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_imap_resource.mo -share/locale/zh_TW/LC_MESSAGES/akonadi_invitations_agent.mo share/locale/zh_TW/LC_MESSAGES/akonadi_kalarm_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/zh_TW/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_migration_agent.mo share/locale/zh_TW/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/zh_TW/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/zh_TW/LC_MESSAGES/gid-migrator.mo share/locale/zh_TW/LC_MESSAGES/kio_akonadi.mo share/locale/zh_TW/LC_MESSAGES/kio_pop3.mo share/locale/zh_TW/LC_MESSAGES/libfolderarchivesettings.mo share/mime/packages/kdepim-mime.xml Index: head/deskutils/keditbookmarks/distinfo =================================================================== --- head/deskutils/keditbookmarks/distinfo (revision 499276) +++ head/deskutils/keditbookmarks/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551811008 -SHA256 (KDE/applications/18.12.3/keditbookmarks-18.12.3.tar.xz) = 8d1f1a6ffa3b68d318ac6eb72707e5e5bb4f6f43ebb25c0475121469a71f6a8d -SIZE (KDE/applications/18.12.3/keditbookmarks-18.12.3.tar.xz) = 184744 +TIMESTAMP = 1555094787 +SHA256 (KDE/applications/19.04.0/keditbookmarks-19.04.0.tar.xz) = 23770a42aa72eb275b2b5a21f8e2f0959eec112ab048c6d89999ee156cd2ef65 +SIZE (KDE/applications/19.04.0/keditbookmarks-19.04.0.tar.xz) = 184748 Index: head/deskutils/kfind/distinfo =================================================================== --- head/deskutils/kfind/distinfo (revision 499276) +++ head/deskutils/kfind/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551811009 -SHA256 (KDE/applications/18.12.3/kfind-18.12.3.tar.xz) = ad123b24f88e1ade5a845c16a84a483835cce31b92741107d8dbd02f462d4cd9 -SIZE (KDE/applications/18.12.3/kfind-18.12.3.tar.xz) = 267760 +TIMESTAMP = 1555094787 +SHA256 (KDE/applications/19.04.0/kfind-19.04.0.tar.xz) = 7eec5b096738bb28264bf870bdd85e24f97c62677be2d2a061f6c426ecfc3a47 +SIZE (KDE/applications/19.04.0/kfind-19.04.0.tar.xz) = 267804 Index: head/deskutils/kmail/distinfo =================================================================== --- head/deskutils/kmail/distinfo (revision 499276) +++ head/deskutils/kmail/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551811008 -SHA256 (KDE/applications/18.12.3/kmail-18.12.3.tar.xz) = 9dd9865d4a463ac552c25126ecaee662b83548091c5abef168bdc7a6d2fb5c76 -SIZE (KDE/applications/18.12.3/kmail-18.12.3.tar.xz) = 4724432 +TIMESTAMP = 1555094787 +SHA256 (KDE/applications/19.04.0/kmail-19.04.0.tar.xz) = c191057769513d51d6604e0f51e441e54770ac07a982175a5be29b7797d6f486 +SIZE (KDE/applications/19.04.0/kmail-19.04.0.tar.xz) = 4729284 Index: head/deskutils/kmail/pkg-plist =================================================================== --- head/deskutils/kmail/pkg-plist (revision 499276) +++ head/deskutils/kmail/pkg-plist (revision 499277) @@ -1,361 +1,365 @@ bin/akonadi_archivemail_agent bin/akonadi_followupreminder_agent bin/akonadi_mailfilter_agent bin/akonadi_sendlater_agent bin/akonadi_unifiedmailbox_agent bin/kmail bin/ktnef etc/xdg/kmail.categories etc/xdg/kmail.renamecategories etc/xdg/ktnefapps.categories etc/xdg/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/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/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/kservicetypes5/dbusmail.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.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.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.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.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.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.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.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.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.mo share/locale/it/LC_MESSAGES/ktnef.mo share/locale/ja/LC_MESSAGES/akonadi_archivemail_agent.mo +share/locale/ja/LC_MESSAGES/akonadi_unifiedmailbox_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/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/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/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.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.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.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.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_unifiedmailbox_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/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.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.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.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.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.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 499276) +++ head/deskutils/kmail-account-wizard/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551811007 -SHA256 (KDE/applications/18.12.3/kmail-account-wizard-18.12.3.tar.xz) = 102a4170cb4f80c7a9ba3aec7a4d34a3e6a8ca18c975b5c0ea33cf7bac9e21df -SIZE (KDE/applications/18.12.3/kmail-account-wizard-18.12.3.tar.xz) = 155932 +TIMESTAMP = 1555094788 +SHA256 (KDE/applications/19.04.0/kmail-account-wizard-19.04.0.tar.xz) = 640d63ceca23644e2f358c7117eb54daa0fffc669628398f7930fe273d7944a9 +SIZE (KDE/applications/19.04.0/kmail-account-wizard-19.04.0.tar.xz) = 156172 Index: head/deskutils/knotes/distinfo =================================================================== --- head/deskutils/knotes/distinfo (revision 499276) +++ head/deskutils/knotes/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551811011 -SHA256 (KDE/applications/18.12.3/knotes-18.12.3.tar.xz) = 4cd3a4e5064211f3df6ebf4711c2f4e01b09c77580493de9070c9ee842059578 -SIZE (KDE/applications/18.12.3/knotes-18.12.3.tar.xz) = 319992 +TIMESTAMP = 1555094788 +SHA256 (KDE/applications/19.04.0/knotes-19.04.0.tar.xz) = e2f98d029105d18c5c14b774782287e281e2367eebeb84d52727a5156abe4092 +SIZE (KDE/applications/19.04.0/knotes-19.04.0.tar.xz) = 320232 Index: head/deskutils/kontact/distinfo =================================================================== --- head/deskutils/kontact/distinfo (revision 499276) +++ head/deskutils/kontact/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551811006 -SHA256 (KDE/applications/18.12.3/kontact-18.12.3.tar.xz) = 81426545a958d6d71210040f5ede6407048a16d320ea90c405318cdd7e8e9315 -SIZE (KDE/applications/18.12.3/kontact-18.12.3.tar.xz) = 792840 +TIMESTAMP = 1555094788 +SHA256 (KDE/applications/19.04.0/kontact-19.04.0.tar.xz) = 710d72ba01afa2aea89efca61f6c25245c0db04dc675b8871f7109a42a945cca +SIZE (KDE/applications/19.04.0/kontact-19.04.0.tar.xz) = 792972 Index: head/deskutils/korganizer/Makefile =================================================================== --- head/deskutils/korganizer/Makefile (revision 499276) +++ head/deskutils/korganizer/Makefile (revision 499277) @@ -1,35 +1,34 @@ # $FreeBSD$ PORTNAME= korganizer DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= deskutils kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Calendar and scheduling Program LIB_DEPENDS= libical.so:devel/libical USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= attica auth bookmarks codecs completion config configwidgets \ coreaddons crash dbusaddons ecm guiaddons i18n iconthemes \ itemmodels itemviews jobwidgets kcmutils kdelibs4support kio \ newstuff notifications parts service solid sonnet textwidgets \ unitconversion wallet widgetsaddons windowsystem xmlgui # pim components USE_KDE+= akonadi akonadicalendar akonadicontacts akonadimime \ akonadinotes akonadisearch calendarcore calendarsupport \ calendarutils contacts eventviews holidays identitymanagement \ incidenceeditor kdepim-apps-libs kontactinterface ldap \ libkdepim mailtransport mime pimcommon pimtextedit \ kdepim-runtime5_run -USE_QT= core dbus gui network phonon4 printsupport widgets xml \ +USE_QT= core dbus gui multimedia network phonon4 printsupport widgets xml \ buildtools_build qmake_build USE_LDCONFIG= yes DESCR= ${.CURDIR:H:H}/deskutils/kdepim/pkg-descr OPTIONS_DEFINE= DOCS .include Index: head/deskutils/korganizer/distinfo =================================================================== --- head/deskutils/korganizer/distinfo (revision 499276) +++ head/deskutils/korganizer/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551811010 -SHA256 (KDE/applications/18.12.3/korganizer-18.12.3.tar.xz) = 6a63e60b60af6cb95c78382da15e9e3cf04f936689ce12b62fe38968fad75a9c -SIZE (KDE/applications/18.12.3/korganizer-18.12.3.tar.xz) = 2233636 +TIMESTAMP = 1555094789 +SHA256 (KDE/applications/19.04.0/korganizer-19.04.0.tar.xz) = 3e8c69db9f504e3ec80307d1552af21440621c0e480abf874a5a73482800bcaf +SIZE (KDE/applications/19.04.0/korganizer-19.04.0.tar.xz) = 2233956 Index: head/deskutils/kruler/distinfo =================================================================== --- head/deskutils/kruler/distinfo (revision 499276) +++ head/deskutils/kruler/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551811013 -SHA256 (KDE/applications/18.12.3/kruler-18.12.3.tar.xz) = 1b347c552648caca99364a0524945d0849cd84b29e4d07f62ee518ec07a98e33 -SIZE (KDE/applications/18.12.3/kruler-18.12.3.tar.xz) = 285036 +TIMESTAMP = 1555094789 +SHA256 (KDE/applications/19.04.0/kruler-19.04.0.tar.xz) = 7d29eac1d7f4e39f7d754ebb9d68aba70ab3dc12e8241007de750572ce761d73 +SIZE (KDE/applications/19.04.0/kruler-19.04.0.tar.xz) = 249356 Index: head/deskutils/libkdepim/Makefile =================================================================== --- head/deskutils/libkdepim/Makefile (revision 499276) +++ head/deskutils/libkdepim/Makefile (revision 499277) @@ -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= 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 499276) +++ head/deskutils/libkdepim/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551811007 -SHA256 (KDE/applications/18.12.3/libkdepim-18.12.3.tar.xz) = 1c53148dd9f477b1ca2ea622b25100eab95531115e9798264d3e65d28183e640 -SIZE (KDE/applications/18.12.3/libkdepim-18.12.3.tar.xz) = 336464 +TIMESTAMP = 1555094790 +SHA256 (KDE/applications/19.04.0/libkdepim-19.04.0.tar.xz) = 099c7bd90e540c6996f333393afa4831c94b6fbe65f7800bde712ebae4ba8a8e +SIZE (KDE/applications/19.04.0/libkdepim-19.04.0.tar.xz) = 337264 Index: head/deskutils/libkdepim/pkg-plist =================================================================== --- head/deskutils/libkdepim/pkg-plist (revision 499276) +++ head/deskutils/libkdepim/pkg-plist (revision 499277) @@ -1,168 +1,170 @@ etc/xdg/libkdepim.categories etc/xdg/libkdepim.renamecategories include/KF5/Libkdepim/AddHostDialog include/KF5/Libkdepim/AddresseeLineEditUtil include/KF5/Libkdepim/BroadcastStatus include/KF5/Libkdepim/CustomLogWidget include/KF5/Libkdepim/EmailValidator include/KF5/Libkdepim/KCheckComboBox include/KF5/Libkdepim/KCursorSaver include/KF5/Libkdepim/KDatePickerPopup include/KF5/Libkdepim/KPrefsDialog include/KF5/Libkdepim/KWeekdayCheckCombo include/KF5/Libkdepim/KWidgetLister include/KF5/Libkdepim/LdapClient include/KF5/Libkdepim/LdapClientSearch include/KF5/Libkdepim/LdapClientSearchConfig +include/KF5/Libkdepim/LdapConfigureWidget include/KF5/Libkdepim/LdapSearchDialog include/KF5/Libkdepim/MaillistDrag include/KF5/Libkdepim/MultiplyingLine include/KF5/Libkdepim/MultiplyingLineEditor include/KF5/Libkdepim/OverlayWidget include/KF5/Libkdepim/PIMMessageBox include/KF5/Libkdepim/ProgressDialog include/KF5/Libkdepim/ProgressIndicatorLabel include/KF5/Libkdepim/ProgressIndicatorWidget include/KF5/Libkdepim/ProgressManager include/KF5/Libkdepim/ProgressStatusBarWidget include/KF5/Libkdepim/RecentAddresses include/KF5/Libkdepim/StatusbarProgressWidget include/KF5/Libkdepim/UiStateSaver include/KF5/LibkdepimAkonadi/AddContactJob include/KF5/LibkdepimAkonadi/AddEmailAddressJob include/KF5/LibkdepimAkonadi/AddEmailDisplayJob include/KF5/LibkdepimAkonadi/AddresseeLineEdit include/KF5/LibkdepimAkonadi/CollectionSearchJob include/KF5/LibkdepimAkonadi/CompletionConfigureDialog include/KF5/LibkdepimAkonadi/CompletionOrderEditor include/KF5/LibkdepimAkonadi/OpenEmailAddressJob include/KF5/LibkdepimAkonadi/Person include/KF5/LibkdepimAkonadi/PersonSearchJob include/KF5/LibkdepimAkonadi/ProgressManagerAkonadi include/KF5/LibkdepimAkonadi/TagSelectionCombo include/KF5/LibkdepimAkonadi/TagWidgets include/KF5/libkdepim/addhostdialog.h include/KF5/libkdepim/addresseelineeditutil.h include/KF5/libkdepim/broadcaststatus.h include/KF5/libkdepim/customlogwidget.h include/KF5/libkdepim/emailvalidator.h include/KF5/libkdepim/kcheckcombobox.h include/KF5/libkdepim/kcursorsaver.h include/KF5/libkdepim/kdatepickerpopup.h include/KF5/libkdepim/kdepim_export.h include/KF5/libkdepim/kprefsdialog.h include/KF5/libkdepim/kweekdaycheckcombo.h include/KF5/libkdepim/kwidgetlister.h include/KF5/libkdepim/ldapclient.h include/KF5/libkdepim/ldapclientsearch.h include/KF5/libkdepim/ldapclientsearchconfig.h +include/KF5/libkdepim/ldapconfigurewidget.h include/KF5/libkdepim/ldapsearchdialog.h include/KF5/libkdepim/maillistdrag.h include/KF5/libkdepim/multiplyingline.h include/KF5/libkdepim/multiplyinglineeditor.h include/KF5/libkdepim/overlaywidget.h include/KF5/libkdepim/pimmessagebox.h include/KF5/libkdepim/progressdialog.h include/KF5/libkdepim/progressindicatorlabel.h include/KF5/libkdepim/progressindicatorwidget.h include/KF5/libkdepim/progressmanager.h include/KF5/libkdepim/progressstatusbarwidget.h include/KF5/libkdepim/recentaddresses.h include/KF5/libkdepim/statusbarprogresswidget.h include/KF5/libkdepim/uistatesaver.h include/KF5/libkdepim_version.h include/KF5/libkdepimakonadi/addcontactjob.h include/KF5/libkdepimakonadi/addemailaddressjob.h include/KF5/libkdepimakonadi/addemaildisplayjob.h include/KF5/libkdepimakonadi/addresseelineedit.h include/KF5/libkdepimakonadi/collectionsearchjob.h include/KF5/libkdepimakonadi/completionconfiguredialog.h include/KF5/libkdepimakonadi/completionordereditor.h include/KF5/libkdepimakonadi/kdepimakonadi_export.h include/KF5/libkdepimakonadi/openemailaddressjob.h include/KF5/libkdepimakonadi/person.h include/KF5/libkdepimakonadi/personsearchjob.h include/KF5/libkdepimakonadi/progressmanagerakonadi.h include/KF5/libkdepimakonadi/tagselectioncombo.h include/KF5/libkdepimakonadi/tagwidgets.h include/KF5/libkdepimakonadi_version.h lib/cmake/KF5Libkdepim/KF5LibkdepimConfig.cmake lib/cmake/KF5Libkdepim/KF5LibkdepimConfigVersion.cmake lib/cmake/KF5Libkdepim/KF5LibkdepimTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5Libkdepim/KF5LibkdepimTargets.cmake lib/cmake/KF5LibkdepimAkonadi/KF5LibkdepimAkonadiConfig.cmake lib/cmake/KF5LibkdepimAkonadi/KF5LibkdepimAkonadiConfigVersion.cmake lib/cmake/KF5LibkdepimAkonadi/KF5LibkdepimAkonadiTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5LibkdepimAkonadi/KF5LibkdepimAkonadiTargets.cmake lib/cmake/MailTransportDBusService/MailTransportDBusServiceConfig.cmake lib/libKF5Libkdepim.so lib/libKF5Libkdepim.so.5 lib/libKF5Libkdepim.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKF5LibkdepimAkonadi.so lib/libKF5LibkdepimAkonadi.so.5 lib/libKF5LibkdepimAkonadi.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_Libkdepim.pri %%QT_MKSPECDIR%%/modules/qt_LibkdepimAkonadi.pri %%QT_PLUGINDIR%%/designer/kdepimakonadiwidgets.so %%QT_PLUGINDIR%%/designer/kdepimwidgets.so %%QT_PLUGINDIR%%/kcm_ldap.so share/dbus-1/interfaces/org.kde.addressbook.service.xml share/dbus-1/interfaces/org.kde.mailtransport.service.xml share/kdepimwidgets/pics/addresseelineedit.png share/kdepimwidgets/pics/clicklineedit.png share/kdepimwidgets/pics/kdateedit.png share/kdepimwidgets/pics/ktimeedit.png share/kservices5/kcmldap.desktop share/locale/ar/LC_MESSAGES/libkdepim.mo share/locale/bg/LC_MESSAGES/libkdepim.mo share/locale/bs/LC_MESSAGES/libkdepim.mo share/locale/ca/LC_MESSAGES/libkdepim.mo share/locale/ca@valencia/LC_MESSAGES/libkdepim.mo share/locale/cs/LC_MESSAGES/libkdepim.mo share/locale/da/LC_MESSAGES/libkdepim.mo share/locale/de/LC_MESSAGES/libkdepim.mo share/locale/el/LC_MESSAGES/libkdepim.mo share/locale/en_GB/LC_MESSAGES/libkdepim.mo share/locale/eo/LC_MESSAGES/libkdepim.mo share/locale/es/LC_MESSAGES/libkdepim.mo share/locale/et/LC_MESSAGES/libkdepim.mo share/locale/eu/LC_MESSAGES/libkdepim.mo share/locale/fa/LC_MESSAGES/libkdepim.mo share/locale/fi/LC_MESSAGES/libkdepim.mo share/locale/fr/LC_MESSAGES/libkdepim.mo share/locale/ga/LC_MESSAGES/libkdepim.mo share/locale/gl/LC_MESSAGES/libkdepim.mo share/locale/he/LC_MESSAGES/libkdepim.mo share/locale/hi/LC_MESSAGES/libkdepim.mo share/locale/hr/LC_MESSAGES/libkdepim.mo share/locale/hu/LC_MESSAGES/libkdepim.mo share/locale/ia/LC_MESSAGES/libkdepim.mo share/locale/is/LC_MESSAGES/libkdepim.mo share/locale/it/LC_MESSAGES/libkdepim.mo share/locale/ja/LC_MESSAGES/libkdepim.mo share/locale/kk/LC_MESSAGES/libkdepim.mo share/locale/km/LC_MESSAGES/libkdepim.mo share/locale/ko/LC_MESSAGES/libkdepim.mo share/locale/lt/LC_MESSAGES/libkdepim.mo share/locale/lv/LC_MESSAGES/libkdepim.mo share/locale/mr/LC_MESSAGES/libkdepim.mo share/locale/nb/LC_MESSAGES/libkdepim.mo share/locale/nds/LC_MESSAGES/libkdepim.mo share/locale/nl/LC_MESSAGES/libkdepim.mo share/locale/nn/LC_MESSAGES/libkdepim.mo share/locale/pa/LC_MESSAGES/libkdepim.mo share/locale/pl/LC_MESSAGES/libkdepim.mo share/locale/pt/LC_MESSAGES/libkdepim.mo share/locale/pt_BR/LC_MESSAGES/libkdepim.mo share/locale/ro/LC_MESSAGES/libkdepim.mo share/locale/ru/LC_MESSAGES/libkdepim.mo share/locale/sk/LC_MESSAGES/libkdepim.mo share/locale/sl/LC_MESSAGES/libkdepim.mo share/locale/sr/LC_MESSAGES/libkdepim.mo share/locale/sv/LC_MESSAGES/libkdepim.mo share/locale/tr/LC_MESSAGES/libkdepim.mo share/locale/ug/LC_MESSAGES/libkdepim.mo share/locale/uk/LC_MESSAGES/libkdepim.mo share/locale/wa/LC_MESSAGES/libkdepim.mo share/locale/zh_CN/LC_MESSAGES/libkdepim.mo share/locale/zh_TW/LC_MESSAGES/libkdepim.mo Index: head/deskutils/mbox-importer/distinfo =================================================================== --- head/deskutils/mbox-importer/distinfo (revision 499276) +++ head/deskutils/mbox-importer/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551811010 -SHA256 (KDE/applications/18.12.3/mbox-importer-18.12.3.tar.xz) = a220ca69dd6f78cf18c3d8cb1bb293dc2ab2ff45f2a25df72cad8df78f581201 -SIZE (KDE/applications/18.12.3/mbox-importer-18.12.3.tar.xz) = 33468 +TIMESTAMP = 1555094790 +SHA256 (KDE/applications/19.04.0/mbox-importer-19.04.0.tar.xz) = 0fba78f2feee2ec7c11e64511195546b9c34695c091632494c1d77c2555eb888 +SIZE (KDE/applications/19.04.0/mbox-importer-19.04.0.tar.xz) = 33604 Index: head/deskutils/pim-data-exporter/distinfo =================================================================== --- head/deskutils/pim-data-exporter/distinfo (revision 499276) +++ head/deskutils/pim-data-exporter/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551811012 -SHA256 (KDE/applications/18.12.3/pim-data-exporter-18.12.3.tar.xz) = 7deb5baf5a36b96f1414e0b67192cd1ad48f396fb3cb5f5eb2fc90a312d74941 -SIZE (KDE/applications/18.12.3/pim-data-exporter-18.12.3.tar.xz) = 270928 +TIMESTAMP = 1555094790 +SHA256 (KDE/applications/19.04.0/pim-data-exporter-19.04.0.tar.xz) = ae1c3bbfffebb85533b0bbf4b0f8b54c06e29fcdf7284295c89ab43d196a6ac3 +SIZE (KDE/applications/19.04.0/pim-data-exporter-19.04.0.tar.xz) = 271220 Index: head/deskutils/pim-sieve-editor/distinfo =================================================================== --- head/deskutils/pim-sieve-editor/distinfo (revision 499276) +++ head/deskutils/pim-sieve-editor/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551811008 -SHA256 (KDE/applications/18.12.3/pim-sieve-editor-18.12.3.tar.xz) = 6e755ec258b0a75e4e83adb82551c1779c2ab7766aef26d2f1c9c00f3809deb5 -SIZE (KDE/applications/18.12.3/pim-sieve-editor-18.12.3.tar.xz) = 450752 +TIMESTAMP = 1555094791 +SHA256 (KDE/applications/19.04.0/pim-sieve-editor-19.04.0.tar.xz) = 0843df57695ca4dc359d048a7e3bf2b6bb66bd10d861714d316baa8ecb387dd1 +SIZE (KDE/applications/19.04.0/pim-sieve-editor-19.04.0.tar.xz) = 451312 Index: head/devel/cervisia/distinfo =================================================================== --- head/devel/cervisia/distinfo (revision 499276) +++ head/devel/cervisia/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551810939 -SHA256 (KDE/applications/18.12.3/cervisia-18.12.3.tar.xz) = a5e4034b0d1ee07c2efaef6e8eef17b48a340e9d046cd23efceaf67f07ab5a85 -SIZE (KDE/applications/18.12.3/cervisia-18.12.3.tar.xz) = 1905952 +TIMESTAMP = 1555094791 +SHA256 (KDE/applications/19.04.0/cervisia-19.04.0.tar.xz) = 011d9b38a82508ae73328dc56723af11fa8403c0dcf5b7d7703118d79f2ad8f4 +SIZE (KDE/applications/19.04.0/cervisia-19.04.0.tar.xz) = 1896124 Index: head/devel/dolphin-plugins/distinfo =================================================================== --- head/devel/dolphin-plugins/distinfo (revision 499276) +++ head/devel/dolphin-plugins/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551810939 -SHA256 (KDE/applications/18.12.3/dolphin-plugins-18.12.3.tar.xz) = 1bff5f828f11e9b9a527b59f12ec16745fa19fb09392ca1872d6b0c909212427 -SIZE (KDE/applications/18.12.3/dolphin-plugins-18.12.3.tar.xz) = 191992 +TIMESTAMP = 1555094791 +SHA256 (KDE/applications/19.04.0/dolphin-plugins-19.04.0.tar.xz) = c2898e0a64d5a9eab2a4bd661694b75805adfd0a925f1a21f894892264f96469 +SIZE (KDE/applications/19.04.0/dolphin-plugins-19.04.0.tar.xz) = 192060 Index: head/devel/kapptemplate/distinfo =================================================================== --- head/devel/kapptemplate/distinfo (revision 499276) +++ head/devel/kapptemplate/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551810938 -SHA256 (KDE/applications/18.12.3/kapptemplate-18.12.3.tar.xz) = dd4e34e1ed60f4cb03836576dfd5d306ec1890cd0fe583b516bf49c628f1078f -SIZE (KDE/applications/18.12.3/kapptemplate-18.12.3.tar.xz) = 317308 +TIMESTAMP = 1555094792 +SHA256 (KDE/applications/19.04.0/kapptemplate-19.04.0.tar.xz) = 7983c4576c6168731958790851d732f8bd4f4313d2cd00a8bf4dd37a4b6a4bb4 +SIZE (KDE/applications/19.04.0/kapptemplate-19.04.0.tar.xz) = 317548 Index: head/devel/kcachegrind/distinfo =================================================================== --- head/devel/kcachegrind/distinfo (revision 499276) +++ head/devel/kcachegrind/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551810937 -SHA256 (KDE/applications/18.12.3/kcachegrind-18.12.3.tar.xz) = 48011190a0ef28998e6c96b9d644e3d06b68606b7d1467c84a8d176eeebb9adf -SIZE (KDE/applications/18.12.3/kcachegrind-18.12.3.tar.xz) = 808252 +TIMESTAMP = 1555094792 +SHA256 (KDE/applications/19.04.0/kcachegrind-19.04.0.tar.xz) = 7021ac1b133e86692dad92ff8de6a0467c2b488d7e5c2977ee4880c166e088ca +SIZE (KDE/applications/19.04.0/kcachegrind-19.04.0.tar.xz) = 808596 Index: head/devel/kcachegrind/pkg-plist =================================================================== --- head/devel/kcachegrind/pkg-plist (revision 499276) +++ head/devel/kcachegrind/pkg-plist (revision 499277) @@ -1,104 +1,103 @@ bin/dprof2calltree bin/hotshot2calltree bin/kcachegrind bin/memprof2calltree bin/op2calltree bin/pprof2calltree share/applications/org.kde.kcachegrind.desktop share/icons/hicolor/128x128/apps/kcachegrind.png share/icons/hicolor/32x32/apps/kcachegrind.png share/icons/hicolor/48x48/apps/kcachegrind.png share/icons/hicolor/64x64/apps/kcachegrind.png %%DATADIR%%/icons/hicolor/16x16/actions/move.png %%DATADIR%%/icons/hicolor/16x16/actions/percent.png %%DATADIR%%/icons/hicolor/22x22/actions/hidetemplates.png %%DATADIR%%/icons/hicolor/22x22/actions/move.png %%DATADIR%%/icons/hicolor/22x22/actions/percent.png %%DATADIR%%/icons/hicolor/32x32/actions/percent.png %%DATADIR%%/tips -share/kxmlgui5/kcachegrind/kcachegrindui.rc share/locale/ar/LC_MESSAGES/kcachegrind.mo share/locale/bs/LC_MESSAGES/kcachegrind.mo share/locale/bs/LC_MESSAGES/kcachegrind_qt.qm share/locale/ca/LC_MESSAGES/kcachegrind.mo share/locale/ca/LC_MESSAGES/kcachegrind_qt.qm share/locale/ca@valencia/LC_MESSAGES/kcachegrind.mo share/locale/ca@valencia/LC_MESSAGES/kcachegrind_qt.qm share/locale/cs/LC_MESSAGES/kcachegrind.mo share/locale/cs/LC_MESSAGES/kcachegrind_qt.qm share/locale/da/LC_MESSAGES/kcachegrind.mo share/locale/da/LC_MESSAGES/kcachegrind_qt.qm share/locale/de/LC_MESSAGES/kcachegrind.mo share/locale/de/LC_MESSAGES/kcachegrind_qt.qm share/locale/el/LC_MESSAGES/kcachegrind.mo share/locale/el/LC_MESSAGES/kcachegrind_qt.qm share/locale/en_GB/LC_MESSAGES/kcachegrind.mo share/locale/en_GB/LC_MESSAGES/kcachegrind_qt.qm share/locale/eo/LC_MESSAGES/kcachegrind.mo share/locale/eo/LC_MESSAGES/kcachegrind_qt.qm share/locale/es/LC_MESSAGES/kcachegrind.mo share/locale/es/LC_MESSAGES/kcachegrind_qt.qm share/locale/et/LC_MESSAGES/kcachegrind.mo share/locale/et/LC_MESSAGES/kcachegrind_qt.qm share/locale/eu/LC_MESSAGES/kcachegrind.mo share/locale/fa/LC_MESSAGES/kcachegrind.mo share/locale/fi/LC_MESSAGES/kcachegrind.mo share/locale/fi/LC_MESSAGES/kcachegrind_qt.qm share/locale/fr/LC_MESSAGES/kcachegrind.mo share/locale/fr/LC_MESSAGES/kcachegrind_qt.qm share/locale/ga/LC_MESSAGES/kcachegrind.mo share/locale/ga/LC_MESSAGES/kcachegrind_qt.qm share/locale/gl/LC_MESSAGES/kcachegrind.mo share/locale/gl/LC_MESSAGES/kcachegrind_qt.qm share/locale/hi/LC_MESSAGES/kcachegrind.mo share/locale/hr/LC_MESSAGES/kcachegrind.mo share/locale/hr/LC_MESSAGES/kcachegrind_qt.qm share/locale/hu/LC_MESSAGES/kcachegrind.mo share/locale/hu/LC_MESSAGES/kcachegrind_qt.qm share/locale/it/LC_MESSAGES/kcachegrind.mo share/locale/it/LC_MESSAGES/kcachegrind_qt.qm share/locale/ja/LC_MESSAGES/kcachegrind.mo share/locale/ja/LC_MESSAGES/kcachegrind_qt.qm share/locale/kk/LC_MESSAGES/kcachegrind.mo share/locale/kk/LC_MESSAGES/kcachegrind_qt.qm share/locale/km/LC_MESSAGES/kcachegrind.mo share/locale/ko/LC_MESSAGES/kcachegrind.mo share/locale/ko/LC_MESSAGES/kcachegrind_qt.qm share/locale/lt/LC_MESSAGES/kcachegrind.mo share/locale/lt/LC_MESSAGES/kcachegrind_qt.qm share/locale/mr/LC_MESSAGES/kcachegrind.mo share/locale/mr/LC_MESSAGES/kcachegrind_qt.qm share/locale/nb/LC_MESSAGES/kcachegrind.mo share/locale/nb/LC_MESSAGES/kcachegrind_qt.qm share/locale/nds/LC_MESSAGES/kcachegrind.mo share/locale/nds/LC_MESSAGES/kcachegrind_qt.qm share/locale/nl/LC_MESSAGES/kcachegrind.mo share/locale/nl/LC_MESSAGES/kcachegrind_qt.qm share/locale/nn/LC_MESSAGES/kcachegrind.mo share/locale/nn/LC_MESSAGES/kcachegrind_qt.qm share/locale/pa/LC_MESSAGES/kcachegrind.mo share/locale/pl/LC_MESSAGES/kcachegrind.mo share/locale/pl/LC_MESSAGES/kcachegrind_qt.qm share/locale/pt/LC_MESSAGES/kcachegrind.mo share/locale/pt/LC_MESSAGES/kcachegrind_qt.qm share/locale/pt_BR/LC_MESSAGES/kcachegrind.mo share/locale/pt_BR/LC_MESSAGES/kcachegrind_qt.qm share/locale/ro/LC_MESSAGES/kcachegrind.mo share/locale/ru/LC_MESSAGES/kcachegrind.mo share/locale/ru/LC_MESSAGES/kcachegrind_qt.qm share/locale/sk/LC_MESSAGES/kcachegrind.mo share/locale/sk/LC_MESSAGES/kcachegrind_qt.qm share/locale/sl/LC_MESSAGES/kcachegrind.mo share/locale/sv/LC_MESSAGES/kcachegrind.mo share/locale/sv/LC_MESSAGES/kcachegrind_qt.qm share/locale/tr/LC_MESSAGES/kcachegrind.mo share/locale/tr/LC_MESSAGES/kcachegrind_qt.qm share/locale/ug/LC_MESSAGES/kcachegrind.mo share/locale/ug/LC_MESSAGES/kcachegrind_qt.qm share/locale/uk/LC_MESSAGES/kcachegrind.mo share/locale/uk/LC_MESSAGES/kcachegrind_qt.qm share/locale/zh_CN/LC_MESSAGES/kcachegrind.mo share/locale/zh_CN/LC_MESSAGES/kcachegrind_qt.qm share/locale/zh_TW/LC_MESSAGES/kcachegrind.mo share/locale/zh_TW/LC_MESSAGES/kcachegrind_qt.qm share/metainfo/org.kde.kcachegrind.appdata.xml Index: head/devel/kde-dev-scripts/distinfo =================================================================== --- head/devel/kde-dev-scripts/distinfo (revision 499276) +++ head/devel/kde-dev-scripts/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551810939 -SHA256 (KDE/applications/18.12.3/kde-dev-scripts-18.12.3.tar.xz) = c62f05b86615a810beb2573ee2106bc68fc8be586b66bcdde62d3ba4e4c16fb4 -SIZE (KDE/applications/18.12.3/kde-dev-scripts-18.12.3.tar.xz) = 378180 +TIMESTAMP = 1555094792 +SHA256 (KDE/applications/19.04.0/kde-dev-scripts-19.04.0.tar.xz) = 23b777143c9402bf089cd2f84c5ac363183b74dcf81be8c08d74d5d099e898e5 +SIZE (KDE/applications/19.04.0/kde-dev-scripts-19.04.0.tar.xz) = 378052 Index: head/devel/kde-dev-utils/distinfo =================================================================== --- head/devel/kde-dev-utils/distinfo (revision 499276) +++ head/devel/kde-dev-utils/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551810938 -SHA256 (KDE/applications/18.12.3/kde-dev-utils-18.12.3.tar.xz) = f53b896b62b7d2267b78d23fb24cf495932c4c8b552d8bf56c722a49acc54be6 -SIZE (KDE/applications/18.12.3/kde-dev-utils-18.12.3.tar.xz) = 61112 +TIMESTAMP = 1555094793 +SHA256 (KDE/applications/19.04.0/kde-dev-utils-19.04.0.tar.xz) = ec2df1ab8b73f19ffc8ec7abeba0577b42d15bc372a19b456a2a04ebb4691031 +SIZE (KDE/applications/19.04.0/kde-dev-utils-19.04.0.tar.xz) = 61648 Index: head/devel/kde-dev-utils/pkg-plist =================================================================== --- head/devel/kde-dev-utils/pkg-plist (revision 499276) +++ head/devel/kde-dev-utils/pkg-plist (revision 499277) @@ -1,105 +1,102 @@ bin/kpartloader bin/kuiviewer -%%QT_PLUGINDIR%%/kuiviewerpart.so +%%QT_PLUGINDIR%%/kf5/parts/kuiviewerpart.so %%QT_PLUGINDIR%%/quithumbnail.so share/applications/org.kde.kuiviewer.desktop share/icons/hicolor/128x128/apps/kuiviewer.png share/icons/hicolor/16x16/apps/kuiviewer.png share/icons/hicolor/32x32/apps/kuiviewer.png share/icons/hicolor/48x48/apps/kuiviewer.png share/icons/hicolor/64x64/apps/kuiviewer.png share/icons/hicolor/scalable/apps/kuiviewer.svg share/kservices5/designerthumbnail.desktop share/kservices5/kuiviewer_part.desktop -share/kxmlgui5/kpartloader/kpartloaderui.rc -share/kxmlgui5/kuiviewer/kuiviewerui.rc -share/kxmlgui5/kuiviewerpart/kuiviewer_part.rc share/locale/ar/LC_MESSAGES/kuiviewer.mo share/locale/bg/LC_MESSAGES/kuiviewer.mo share/locale/bs/LC_MESSAGES/kpartloader.mo share/locale/bs/LC_MESSAGES/kuiviewer.mo share/locale/ca/LC_MESSAGES/kpartloader.mo share/locale/ca/LC_MESSAGES/kuiviewer.mo share/locale/ca@valencia/LC_MESSAGES/kpartloader.mo share/locale/ca@valencia/LC_MESSAGES/kuiviewer.mo share/locale/cs/LC_MESSAGES/kpartloader.mo share/locale/cs/LC_MESSAGES/kuiviewer.mo share/locale/da/LC_MESSAGES/kpartloader.mo share/locale/da/LC_MESSAGES/kuiviewer.mo share/locale/de/LC_MESSAGES/kpartloader.mo share/locale/de/LC_MESSAGES/kuiviewer.mo share/locale/el/LC_MESSAGES/kpartloader.mo share/locale/el/LC_MESSAGES/kuiviewer.mo share/locale/en_GB/LC_MESSAGES/kpartloader.mo share/locale/en_GB/LC_MESSAGES/kuiviewer.mo share/locale/eo/LC_MESSAGES/kpartloader.mo share/locale/eo/LC_MESSAGES/kuiviewer.mo share/locale/es/LC_MESSAGES/kpartloader.mo share/locale/es/LC_MESSAGES/kuiviewer.mo share/locale/et/LC_MESSAGES/kpartloader.mo share/locale/et/LC_MESSAGES/kuiviewer.mo share/locale/eu/LC_MESSAGES/kuiviewer.mo share/locale/fa/LC_MESSAGES/kuiviewer.mo share/locale/fi/LC_MESSAGES/kpartloader.mo share/locale/fi/LC_MESSAGES/kuiviewer.mo share/locale/fr/LC_MESSAGES/kpartloader.mo share/locale/fr/LC_MESSAGES/kuiviewer.mo share/locale/ga/LC_MESSAGES/kpartloader.mo share/locale/ga/LC_MESSAGES/kuiviewer.mo share/locale/gl/LC_MESSAGES/kpartloader.mo share/locale/gl/LC_MESSAGES/kuiviewer.mo share/locale/hi/LC_MESSAGES/kuiviewer.mo share/locale/hr/LC_MESSAGES/kpartloader.mo share/locale/hu/LC_MESSAGES/kpartloader.mo share/locale/hu/LC_MESSAGES/kuiviewer.mo share/locale/is/LC_MESSAGES/kuiviewer.mo share/locale/it/LC_MESSAGES/kpartloader.mo share/locale/it/LC_MESSAGES/kuiviewer.mo share/locale/ja/LC_MESSAGES/kpartloader.mo share/locale/ja/LC_MESSAGES/kuiviewer.mo share/locale/kk/LC_MESSAGES/kpartloader.mo share/locale/kk/LC_MESSAGES/kuiviewer.mo share/locale/km/LC_MESSAGES/kuiviewer.mo share/locale/ko/LC_MESSAGES/kpartloader.mo share/locale/ko/LC_MESSAGES/kuiviewer.mo share/locale/lt/LC_MESSAGES/kpartloader.mo share/locale/lt/LC_MESSAGES/kuiviewer.mo share/locale/lv/LC_MESSAGES/kpartloader.mo share/locale/lv/LC_MESSAGES/kuiviewer.mo share/locale/mr/LC_MESSAGES/kpartloader.mo share/locale/mr/LC_MESSAGES/kuiviewer.mo share/locale/nb/LC_MESSAGES/kpartloader.mo share/locale/nb/LC_MESSAGES/kuiviewer.mo share/locale/nds/LC_MESSAGES/kpartloader.mo share/locale/nds/LC_MESSAGES/kuiviewer.mo share/locale/nl/LC_MESSAGES/kpartloader.mo share/locale/nl/LC_MESSAGES/kuiviewer.mo share/locale/nn/LC_MESSAGES/kpartloader.mo share/locale/nn/LC_MESSAGES/kuiviewer.mo share/locale/pa/LC_MESSAGES/kpartloader.mo share/locale/pa/LC_MESSAGES/kuiviewer.mo share/locale/pl/LC_MESSAGES/kpartloader.mo share/locale/pl/LC_MESSAGES/kuiviewer.mo share/locale/pt/LC_MESSAGES/kpartloader.mo share/locale/pt/LC_MESSAGES/kuiviewer.mo share/locale/pt_BR/LC_MESSAGES/kpartloader.mo share/locale/pt_BR/LC_MESSAGES/kuiviewer.mo share/locale/ro/LC_MESSAGES/kuiviewer.mo share/locale/ru/LC_MESSAGES/kpartloader.mo share/locale/ru/LC_MESSAGES/kuiviewer.mo share/locale/sk/LC_MESSAGES/kpartloader.mo share/locale/sk/LC_MESSAGES/kuiviewer.mo share/locale/sl/LC_MESSAGES/kpartloader.mo share/locale/sl/LC_MESSAGES/kuiviewer.mo share/locale/sv/LC_MESSAGES/kpartloader.mo share/locale/sv/LC_MESSAGES/kuiviewer.mo share/locale/tr/LC_MESSAGES/kpartloader.mo share/locale/tr/LC_MESSAGES/kuiviewer.mo share/locale/ug/LC_MESSAGES/kpartloader.mo share/locale/ug/LC_MESSAGES/kuiviewer.mo share/locale/uk/LC_MESSAGES/kpartloader.mo share/locale/uk/LC_MESSAGES/kuiviewer.mo share/locale/zh_CN/LC_MESSAGES/kpartloader.mo share/locale/zh_CN/LC_MESSAGES/kuiviewer.mo share/locale/zh_TW/LC_MESSAGES/kpartloader.mo share/locale/zh_TW/LC_MESSAGES/kuiviewer.mo Index: head/devel/kdesdk-thumbnailers/distinfo =================================================================== --- head/devel/kdesdk-thumbnailers/distinfo (revision 499276) +++ head/devel/kdesdk-thumbnailers/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551810938 -SHA256 (KDE/applications/18.12.3/kdesdk-thumbnailers-18.12.3.tar.xz) = a4694da94bd671a1395a32a527c919fb2207e8a959ceff32a11488e2015a784b -SIZE (KDE/applications/18.12.3/kdesdk-thumbnailers-18.12.3.tar.xz) = 17244 +TIMESTAMP = 1555094793 +SHA256 (KDE/applications/19.04.0/kdesdk-thumbnailers-19.04.0.tar.xz) = 195f539bec6e19de83e07dce117f7cd656f77199c2863a6a5738112d53843243 +SIZE (KDE/applications/19.04.0/kdesdk-thumbnailers-19.04.0.tar.xz) = 17252 Index: head/devel/kio-extras/Makefile =================================================================== --- head/devel/kio-extras/Makefile (revision 499276) +++ head/devel/kio-extras/Makefile (revision 499277) @@ -1,63 +1,62 @@ # $FreeBSD$ PORTNAME= kio-extras DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 2 CATEGORIES= devel kde kde-applications # kde kde-applications-plasma MAINTAINER= kde@FreeBSD.org COMMENT= Plasma5 library to increase the functionality of KIO LIB_DEPENDS= libtag.so:audio/taglib \ libHalf.so:graphics/ilmbase USES= cmake compiler:c++11-lib gettext gperf kde:5 \ pkgconfig qt:5 shared-mime-info shebangfix tar:xz USE_KDE= activities archive auth bookmarks codecs completion config \ configwidgets coreaddons crash dbusaddons dnssd doctools ecm \ emoticons guiaddons i18n iconthemes init itemmodels itemviews \ jobwidgets js kdelibs4support khtml kio notifications parts \ - pty service solid sonnet textwidgets unitconversion \ + pty service solid sonnet syntaxhighlighting textwidgets unitconversion \ widgetsaddons windowsystem xmlgui USE_QT= core dbus declarative gui location network phonon4 printsupport \ sql svg testlib webchannel widgets xml \ buildtools_build qmake_build SHEBANG_FILES= info/kde-info2html # CVE-2018-19120 CMAKE_ON= CMAKE_DISABLE_FIND_PACKAGE_Qt5WebEngineWidget OPTIONS_DEFINE= SAMBA MTP EXR EXIV SLP SSH TAGLIB DOCS OPTIONS_DEFAULT=SAMBA MTP EXR EXIV SLP SSH TAGLIB OPTIONS_SUB= yes SAMBA_DESC= Needed to build the SMB kioslave SAMBA_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_Samba SAMBA_USES= samba:lib MTP_DESC= Needed to build the MTP kioslave MTP_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_Mtp MTP_LIB_DEPENDS= libmtp.so:multimedia/libmtp EXR_DESC= Provides support for OpenEXR formatted images in the thumbnail kioslave EXR_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_OpenEXR EXR_LIB_DEPENDS= libIlmImf.so:graphics/openexr EXIV_DESC= Provides support for automatic rotation of JPEGs in the thumbnail kioslave EXIV_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_Exiv2 EXIV_LIB_DEPENDS= libexiv2.so:graphics/exiv2 SLP_DESC= Provides SLP support in the network:/ kioslave SLP_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_SLP SLP_LIB_DEPENDS= libslp.so:net/openslp SSH_DESC= Needed to build the SFTP kioslave SSH_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_LibSSH SSH_LIB_DEPENDS= libssh.so:security/libssh # Our taglib is too old TAGLIB_DESC= Needed to build the audio thumbnail kioslave TAGLIB_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_Taglib TAGLIB_LIB_DEPENDS= libtag.so:audio/taglib .include Index: head/devel/kio-extras/distinfo =================================================================== --- head/devel/kio-extras/distinfo (revision 499276) +++ head/devel/kio-extras/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551810937 -SHA256 (KDE/applications/18.12.3/kio-extras-18.12.3.tar.xz) = f8879abaea6fcf31ee0bd4a55d0c24a5fded6d61abed1b059f704f797793aef2 -SIZE (KDE/applications/18.12.3/kio-extras-18.12.3.tar.xz) = 562196 +TIMESTAMP = 1555094794 +SHA256 (KDE/applications/19.04.0/kio-extras-19.04.0.tar.xz) = 0f3f2eaf40512cf4a61b09b94ca365d7d05c7b1a75f4e8afd047143a8e962d85 +SIZE (KDE/applications/19.04.0/kio-extras-19.04.0.tar.xz) = 569440 Index: head/devel/kio-extras/pkg-plist =================================================================== --- head/devel/kio-extras/pkg-plist (revision 499276) +++ head/devel/kio-extras/pkg-plist (revision 499277) @@ -1,778 +1,780 @@ etc/xdg/kio-extras.categories include/KF5/kio_archivebase.h include/KF5/libkioarchive_export.h lib/cmake/KioArchive/KioArchiveConfig.cmake lib/cmake/KioArchive/KioArchiveConfigVersion.cmake lib/cmake/KioArchive/KioArchiveTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KioArchive/KioArchiveTargets.cmake lib/libkioarchive.so.5 lib/libkioarchive.so.5.97.0 lib/libmolletnetwork5.so.%%KDE_APPLICATIONS_VERSION_SHORT%% lib/libmolletnetwork5.so.%%KDE_APPLICATIONS_VERSION%% %%TAGLIB%%%%QT_PLUGINDIR%%/audiothumbnail.so %%QT_PLUGINDIR%%/comicbookthumbnail.so %%QT_PLUGINDIR%%/djvuthumbnail.so +%%QT_PLUGINDIR%%/ebookthumbnail.so %%EXR%%%%QT_PLUGINDIR%%/exrthumbnail.so %%QT_PLUGINDIR%%/imagethumbnail.so %%QT_PLUGINDIR%%/jpegthumbnail.so %%QT_PLUGINDIR%%/kactivitymanagerd_fileitem_linking_plugin.so %%QT_PLUGINDIR%%/kf5/kded/filenamesearchmodule.so %%QT_PLUGINDIR%%/kf5/kded/networkwatcher.so %%QT_PLUGINDIR%%/kf5/kded/recentdocumentsnotifier.so +%%QT_PLUGINDIR%%/kf5/kio/about.so +%%QT_PLUGINDIR%%/kf5/kio/activities.so %%QT_PLUGINDIR%%/kf5/kio/archive.so %%QT_PLUGINDIR%%/kf5/kio/bookmarks.so %%QT_PLUGINDIR%%/kf5/kio/filenamesearch.so %%QT_PLUGINDIR%%/kf5/kio/filter.so %%QT_PLUGINDIR%%/kf5/kio/fish.so %%QT_PLUGINDIR%%/kf5/kio/info.so +%%QT_PLUGINDIR%%/kf5/parts/kmanpart.so %%QT_PLUGINDIR%%/kf5/kio/man.so %%MTP%%%%QT_PLUGINDIR%%/kf5/kio/mtp.so %%QT_PLUGINDIR%%/kf5/kio/network.so %%QT_PLUGINDIR%%/kf5/kio/nfs.so %%QT_PLUGINDIR%%/kf5/kio/recentdocuments.so %%QT_PLUGINDIR%%/kf5/kio/settings.so %%SSH%%%%QT_PLUGINDIR%%/kf5/kio/sftp.so %%SAMBA%%%%QT_PLUGINDIR%%/kf5/kio/smb.so %%QT_PLUGINDIR%%/kf5/kio/thumbnail.so %%MTP%%%%QT_PLUGINDIR%%/kf5/kiod/kmtpd.so %%QT_PLUGINDIR%%/kfileaudiopreview.so -%%QT_PLUGINDIR%%/kio_activities.so %%QT_PLUGINDIR%%/kritathumbnail.so -%%QT_PLUGINDIR%%/libkio_about.so -%%QT_PLUGINDIR%%/libkmanpart.so %%QT_PLUGINDIR%%/opendocumentthumbnail.so %%QT_PLUGINDIR%%/svgthumbnail.so %%QT_PLUGINDIR%%/textthumbnail.so %%QT_PLUGINDIR%%/windowsexethumbnail.so %%QT_PLUGINDIR%%/windowsimagethumbnail.so share/config.kcfg/jpegcreatorsettings5.kcfg share/dbus-1/interfaces/kf5_org.kde.network.kioslavenotifier.xml %%MTP%%share/dbus-1/services/org.kde.kmtp.daemon.service share/kio_bookmarks/kio_bookmarks.css share/kio_docfilter/kio_docfilter.css share/kio_info/kde-info2html share/kio_info/kde-info2html.conf share/konqsidebartng/virtual_folders/remote/virtualfolder_network.desktop %%MTP%%share/konqueror/dirtree/remote/mtp-network.desktop %%SAMBA%%share/konqueror/dirtree/remote/smb-network.desktop share/kservices5/about.protocol share/kservices5/activities.protocol share/kservices5/ar.protocol %%TAGLIB%%share/kservices5/audiothumbnail.desktop share/kservices5/bookmarks.protocol share/kservices5/bzip.protocol share/kservices5/bzip2.protocol share/kservices5/comicbookthumbnail.desktop share/kservices5/directorythumbnail.desktop share/kservices5/djvuthumbnail.desktop +share/kservices5/ebookthumbnail.desktop %%EXR%%share/kservices5/exrthumbnail.desktop share/kservices5/filenamesearch.protocol share/kservices5/fish.protocol share/kservices5/gzip.protocol share/kservices5/imagethumbnail.desktop share/kservices5/info.protocol share/kservices5/jpegthumbnail.desktop share/kservices5/kactivitymanagerd_fileitem_linking_plugin.desktop share/kservices5/kmanpart.desktop share/kservices5/kraorathumbnail.desktop share/kservices5/lzma.protocol share/kservices5/man.protocol %%MTP%%share/kservices5/mtp.protocol share/kservices5/network.protocol share/kservices5/nfs.protocol share/kservices5/opendocumentthumbnail.desktop share/kservices5/recentdocuments.protocol share/kservices5/settings.protocol %%SSH%%share/kservices5/sftp.protocol %%SAMBA%%share/kservices5/smb.protocol share/kservices5/svgthumbnail.desktop share/kservices5/tar.protocol share/kservices5/textthumbnail.desktop share/kservices5/thumbnail.protocol share/kservices5/windowsexethumbnail.desktop share/kservices5/windowsimagethumbnail.desktop share/kservices5/xz.protocol share/kservices5/zip.protocol share/kservicetypes5/thumbcreator.desktop share/locale/ar/LC_MESSAGES/kfileaudiopreview5.mo share/locale/ar/LC_MESSAGES/kio5_activities.mo share/locale/ar/LC_MESSAGES/kio5_archive.mo share/locale/ar/LC_MESSAGES/kio5_bookmarks.mo share/locale/ar/LC_MESSAGES/kio5_fish.mo share/locale/ar/LC_MESSAGES/kio5_info.mo share/locale/ar/LC_MESSAGES/kio5_man.mo share/locale/ar/LC_MESSAGES/kio5_mtp.mo share/locale/ar/LC_MESSAGES/kio5_nfs.mo share/locale/ar/LC_MESSAGES/kio5_recentdocuments.mo share/locale/ar/LC_MESSAGES/kio5_sftp.mo share/locale/ar/LC_MESSAGES/kio5_smb.mo share/locale/ar/LC_MESSAGES/kio5_thumbnail.mo share/locale/bg/LC_MESSAGES/kfileaudiopreview5.mo share/locale/bg/LC_MESSAGES/kio5_activities.mo share/locale/bg/LC_MESSAGES/kio5_archive.mo share/locale/bg/LC_MESSAGES/kio5_bookmarks.mo share/locale/bg/LC_MESSAGES/kio5_fish.mo share/locale/bg/LC_MESSAGES/kio5_info.mo share/locale/bg/LC_MESSAGES/kio5_man.mo share/locale/bg/LC_MESSAGES/kio5_nfs.mo share/locale/bg/LC_MESSAGES/kio5_recentdocuments.mo share/locale/bg/LC_MESSAGES/kio5_sftp.mo share/locale/bg/LC_MESSAGES/kio5_smb.mo share/locale/bg/LC_MESSAGES/kio5_thumbnail.mo share/locale/bs/LC_MESSAGES/kfileaudiopreview5.mo share/locale/bs/LC_MESSAGES/kio5_activities.mo share/locale/bs/LC_MESSAGES/kio5_archive.mo share/locale/bs/LC_MESSAGES/kio5_bookmarks.mo share/locale/bs/LC_MESSAGES/kio5_fish.mo share/locale/bs/LC_MESSAGES/kio5_info.mo share/locale/bs/LC_MESSAGES/kio5_man.mo share/locale/bs/LC_MESSAGES/kio5_mtp.mo share/locale/bs/LC_MESSAGES/kio5_nfs.mo share/locale/bs/LC_MESSAGES/kio5_recentdocuments.mo share/locale/bs/LC_MESSAGES/kio5_sftp.mo share/locale/bs/LC_MESSAGES/kio5_smb.mo share/locale/bs/LC_MESSAGES/kio5_thumbnail.mo share/locale/ca/LC_MESSAGES/kfileaudiopreview5.mo share/locale/ca/LC_MESSAGES/kio5_activities.mo share/locale/ca/LC_MESSAGES/kio5_archive.mo share/locale/ca/LC_MESSAGES/kio5_bookmarks.mo share/locale/ca/LC_MESSAGES/kio5_fish.mo share/locale/ca/LC_MESSAGES/kio5_info.mo share/locale/ca/LC_MESSAGES/kio5_man.mo share/locale/ca/LC_MESSAGES/kio5_mtp.mo share/locale/ca/LC_MESSAGES/kio5_nfs.mo share/locale/ca/LC_MESSAGES/kio5_recentdocuments.mo share/locale/ca/LC_MESSAGES/kio5_sftp.mo share/locale/ca/LC_MESSAGES/kio5_smb.mo share/locale/ca/LC_MESSAGES/kio5_thumbnail.mo share/locale/ca@valencia/LC_MESSAGES/kfileaudiopreview5.mo share/locale/ca@valencia/LC_MESSAGES/kio5_activities.mo share/locale/ca@valencia/LC_MESSAGES/kio5_archive.mo share/locale/ca@valencia/LC_MESSAGES/kio5_bookmarks.mo share/locale/ca@valencia/LC_MESSAGES/kio5_fish.mo share/locale/ca@valencia/LC_MESSAGES/kio5_info.mo share/locale/ca@valencia/LC_MESSAGES/kio5_man.mo share/locale/ca@valencia/LC_MESSAGES/kio5_mtp.mo share/locale/ca@valencia/LC_MESSAGES/kio5_nfs.mo share/locale/ca@valencia/LC_MESSAGES/kio5_recentdocuments.mo share/locale/ca@valencia/LC_MESSAGES/kio5_sftp.mo share/locale/ca@valencia/LC_MESSAGES/kio5_smb.mo share/locale/ca@valencia/LC_MESSAGES/kio5_thumbnail.mo share/locale/cs/LC_MESSAGES/kfileaudiopreview5.mo share/locale/cs/LC_MESSAGES/kio5_activities.mo share/locale/cs/LC_MESSAGES/kio5_archive.mo share/locale/cs/LC_MESSAGES/kio5_bookmarks.mo share/locale/cs/LC_MESSAGES/kio5_fish.mo share/locale/cs/LC_MESSAGES/kio5_info.mo share/locale/cs/LC_MESSAGES/kio5_man.mo share/locale/cs/LC_MESSAGES/kio5_mtp.mo share/locale/cs/LC_MESSAGES/kio5_nfs.mo share/locale/cs/LC_MESSAGES/kio5_recentdocuments.mo share/locale/cs/LC_MESSAGES/kio5_sftp.mo share/locale/cs/LC_MESSAGES/kio5_smb.mo share/locale/cs/LC_MESSAGES/kio5_thumbnail.mo share/locale/da/LC_MESSAGES/kfileaudiopreview5.mo share/locale/da/LC_MESSAGES/kio5_activities.mo share/locale/da/LC_MESSAGES/kio5_archive.mo share/locale/da/LC_MESSAGES/kio5_bookmarks.mo share/locale/da/LC_MESSAGES/kio5_fish.mo share/locale/da/LC_MESSAGES/kio5_info.mo share/locale/da/LC_MESSAGES/kio5_man.mo share/locale/da/LC_MESSAGES/kio5_mtp.mo share/locale/da/LC_MESSAGES/kio5_nfs.mo share/locale/da/LC_MESSAGES/kio5_recentdocuments.mo share/locale/da/LC_MESSAGES/kio5_sftp.mo share/locale/da/LC_MESSAGES/kio5_smb.mo share/locale/da/LC_MESSAGES/kio5_thumbnail.mo share/locale/de/LC_MESSAGES/kfileaudiopreview5.mo share/locale/de/LC_MESSAGES/kio5_activities.mo share/locale/de/LC_MESSAGES/kio5_archive.mo share/locale/de/LC_MESSAGES/kio5_bookmarks.mo share/locale/de/LC_MESSAGES/kio5_fish.mo share/locale/de/LC_MESSAGES/kio5_info.mo share/locale/de/LC_MESSAGES/kio5_man.mo share/locale/de/LC_MESSAGES/kio5_mtp.mo share/locale/de/LC_MESSAGES/kio5_nfs.mo share/locale/de/LC_MESSAGES/kio5_recentdocuments.mo share/locale/de/LC_MESSAGES/kio5_sftp.mo share/locale/de/LC_MESSAGES/kio5_smb.mo share/locale/de/LC_MESSAGES/kio5_thumbnail.mo share/locale/el/LC_MESSAGES/kfileaudiopreview5.mo share/locale/el/LC_MESSAGES/kio5_activities.mo share/locale/el/LC_MESSAGES/kio5_archive.mo share/locale/el/LC_MESSAGES/kio5_bookmarks.mo share/locale/el/LC_MESSAGES/kio5_fish.mo share/locale/el/LC_MESSAGES/kio5_info.mo share/locale/el/LC_MESSAGES/kio5_man.mo share/locale/el/LC_MESSAGES/kio5_mtp.mo share/locale/el/LC_MESSAGES/kio5_nfs.mo share/locale/el/LC_MESSAGES/kio5_recentdocuments.mo share/locale/el/LC_MESSAGES/kio5_sftp.mo share/locale/el/LC_MESSAGES/kio5_smb.mo share/locale/el/LC_MESSAGES/kio5_thumbnail.mo share/locale/en_GB/LC_MESSAGES/kfileaudiopreview5.mo share/locale/en_GB/LC_MESSAGES/kio5_activities.mo share/locale/en_GB/LC_MESSAGES/kio5_archive.mo share/locale/en_GB/LC_MESSAGES/kio5_bookmarks.mo share/locale/en_GB/LC_MESSAGES/kio5_fish.mo share/locale/en_GB/LC_MESSAGES/kio5_info.mo share/locale/en_GB/LC_MESSAGES/kio5_man.mo share/locale/en_GB/LC_MESSAGES/kio5_mtp.mo share/locale/en_GB/LC_MESSAGES/kio5_nfs.mo share/locale/en_GB/LC_MESSAGES/kio5_recentdocuments.mo share/locale/en_GB/LC_MESSAGES/kio5_sftp.mo share/locale/en_GB/LC_MESSAGES/kio5_smb.mo share/locale/en_GB/LC_MESSAGES/kio5_thumbnail.mo share/locale/eo/LC_MESSAGES/kfileaudiopreview5.mo share/locale/eo/LC_MESSAGES/kio5_archive.mo share/locale/eo/LC_MESSAGES/kio5_bookmarks.mo share/locale/eo/LC_MESSAGES/kio5_fish.mo share/locale/eo/LC_MESSAGES/kio5_info.mo share/locale/eo/LC_MESSAGES/kio5_man.mo share/locale/eo/LC_MESSAGES/kio5_nfs.mo share/locale/eo/LC_MESSAGES/kio5_sftp.mo share/locale/eo/LC_MESSAGES/kio5_smb.mo share/locale/eo/LC_MESSAGES/kio5_thumbnail.mo share/locale/es/LC_MESSAGES/kfileaudiopreview5.mo share/locale/es/LC_MESSAGES/kio5_activities.mo share/locale/es/LC_MESSAGES/kio5_archive.mo share/locale/es/LC_MESSAGES/kio5_bookmarks.mo share/locale/es/LC_MESSAGES/kio5_fish.mo share/locale/es/LC_MESSAGES/kio5_info.mo share/locale/es/LC_MESSAGES/kio5_man.mo share/locale/es/LC_MESSAGES/kio5_mtp.mo share/locale/es/LC_MESSAGES/kio5_nfs.mo share/locale/es/LC_MESSAGES/kio5_recentdocuments.mo share/locale/es/LC_MESSAGES/kio5_sftp.mo share/locale/es/LC_MESSAGES/kio5_smb.mo share/locale/es/LC_MESSAGES/kio5_thumbnail.mo share/locale/et/LC_MESSAGES/kfileaudiopreview5.mo share/locale/et/LC_MESSAGES/kio5_activities.mo share/locale/et/LC_MESSAGES/kio5_archive.mo share/locale/et/LC_MESSAGES/kio5_bookmarks.mo share/locale/et/LC_MESSAGES/kio5_fish.mo share/locale/et/LC_MESSAGES/kio5_info.mo share/locale/et/LC_MESSAGES/kio5_man.mo share/locale/et/LC_MESSAGES/kio5_mtp.mo share/locale/et/LC_MESSAGES/kio5_nfs.mo share/locale/et/LC_MESSAGES/kio5_recentdocuments.mo share/locale/et/LC_MESSAGES/kio5_sftp.mo share/locale/et/LC_MESSAGES/kio5_smb.mo share/locale/et/LC_MESSAGES/kio5_thumbnail.mo share/locale/eu/LC_MESSAGES/kfileaudiopreview5.mo share/locale/eu/LC_MESSAGES/kio5_activities.mo share/locale/eu/LC_MESSAGES/kio5_archive.mo share/locale/eu/LC_MESSAGES/kio5_bookmarks.mo share/locale/eu/LC_MESSAGES/kio5_fish.mo share/locale/eu/LC_MESSAGES/kio5_info.mo share/locale/eu/LC_MESSAGES/kio5_man.mo share/locale/eu/LC_MESSAGES/kio5_nfs.mo share/locale/eu/LC_MESSAGES/kio5_recentdocuments.mo share/locale/eu/LC_MESSAGES/kio5_sftp.mo share/locale/eu/LC_MESSAGES/kio5_smb.mo share/locale/eu/LC_MESSAGES/kio5_thumbnail.mo share/locale/fa/LC_MESSAGES/kfileaudiopreview5.mo share/locale/fa/LC_MESSAGES/kio5_archive.mo share/locale/fa/LC_MESSAGES/kio5_bookmarks.mo share/locale/fa/LC_MESSAGES/kio5_fish.mo share/locale/fa/LC_MESSAGES/kio5_info.mo share/locale/fa/LC_MESSAGES/kio5_man.mo share/locale/fa/LC_MESSAGES/kio5_nfs.mo share/locale/fa/LC_MESSAGES/kio5_recentdocuments.mo share/locale/fa/LC_MESSAGES/kio5_sftp.mo share/locale/fa/LC_MESSAGES/kio5_smb.mo share/locale/fa/LC_MESSAGES/kio5_thumbnail.mo share/locale/fi/LC_MESSAGES/kfileaudiopreview5.mo share/locale/fi/LC_MESSAGES/kio5_activities.mo share/locale/fi/LC_MESSAGES/kio5_archive.mo share/locale/fi/LC_MESSAGES/kio5_bookmarks.mo share/locale/fi/LC_MESSAGES/kio5_fish.mo share/locale/fi/LC_MESSAGES/kio5_info.mo share/locale/fi/LC_MESSAGES/kio5_man.mo share/locale/fi/LC_MESSAGES/kio5_mtp.mo share/locale/fi/LC_MESSAGES/kio5_nfs.mo share/locale/fi/LC_MESSAGES/kio5_recentdocuments.mo share/locale/fi/LC_MESSAGES/kio5_sftp.mo share/locale/fi/LC_MESSAGES/kio5_smb.mo share/locale/fi/LC_MESSAGES/kio5_thumbnail.mo share/locale/fr/LC_MESSAGES/kfileaudiopreview5.mo share/locale/fr/LC_MESSAGES/kio5_activities.mo share/locale/fr/LC_MESSAGES/kio5_archive.mo share/locale/fr/LC_MESSAGES/kio5_bookmarks.mo share/locale/fr/LC_MESSAGES/kio5_fish.mo share/locale/fr/LC_MESSAGES/kio5_info.mo share/locale/fr/LC_MESSAGES/kio5_man.mo share/locale/fr/LC_MESSAGES/kio5_mtp.mo share/locale/fr/LC_MESSAGES/kio5_nfs.mo share/locale/fr/LC_MESSAGES/kio5_recentdocuments.mo share/locale/fr/LC_MESSAGES/kio5_sftp.mo share/locale/fr/LC_MESSAGES/kio5_smb.mo share/locale/fr/LC_MESSAGES/kio5_thumbnail.mo share/locale/ga/LC_MESSAGES/kfileaudiopreview5.mo share/locale/ga/LC_MESSAGES/kio5_activities.mo share/locale/ga/LC_MESSAGES/kio5_archive.mo share/locale/ga/LC_MESSAGES/kio5_bookmarks.mo share/locale/ga/LC_MESSAGES/kio5_fish.mo share/locale/ga/LC_MESSAGES/kio5_info.mo share/locale/ga/LC_MESSAGES/kio5_man.mo share/locale/ga/LC_MESSAGES/kio5_nfs.mo share/locale/ga/LC_MESSAGES/kio5_recentdocuments.mo share/locale/ga/LC_MESSAGES/kio5_sftp.mo share/locale/ga/LC_MESSAGES/kio5_smb.mo share/locale/ga/LC_MESSAGES/kio5_thumbnail.mo share/locale/gl/LC_MESSAGES/kfileaudiopreview5.mo share/locale/gl/LC_MESSAGES/kio5_activities.mo share/locale/gl/LC_MESSAGES/kio5_archive.mo share/locale/gl/LC_MESSAGES/kio5_bookmarks.mo share/locale/gl/LC_MESSAGES/kio5_fish.mo share/locale/gl/LC_MESSAGES/kio5_info.mo share/locale/gl/LC_MESSAGES/kio5_man.mo share/locale/gl/LC_MESSAGES/kio5_mtp.mo share/locale/gl/LC_MESSAGES/kio5_nfs.mo share/locale/gl/LC_MESSAGES/kio5_recentdocuments.mo share/locale/gl/LC_MESSAGES/kio5_sftp.mo share/locale/gl/LC_MESSAGES/kio5_smb.mo share/locale/gl/LC_MESSAGES/kio5_thumbnail.mo share/locale/he/LC_MESSAGES/kfileaudiopreview5.mo share/locale/he/LC_MESSAGES/kio5_activities.mo share/locale/he/LC_MESSAGES/kio5_archive.mo share/locale/he/LC_MESSAGES/kio5_bookmarks.mo share/locale/he/LC_MESSAGES/kio5_fish.mo share/locale/he/LC_MESSAGES/kio5_info.mo share/locale/he/LC_MESSAGES/kio5_man.mo share/locale/he/LC_MESSAGES/kio5_nfs.mo share/locale/he/LC_MESSAGES/kio5_recentdocuments.mo share/locale/he/LC_MESSAGES/kio5_sftp.mo share/locale/he/LC_MESSAGES/kio5_smb.mo share/locale/he/LC_MESSAGES/kio5_thumbnail.mo share/locale/hi/LC_MESSAGES/kfileaudiopreview5.mo share/locale/hi/LC_MESSAGES/kio5_activities.mo share/locale/hi/LC_MESSAGES/kio5_archive.mo share/locale/hi/LC_MESSAGES/kio5_bookmarks.mo share/locale/hi/LC_MESSAGES/kio5_fish.mo share/locale/hi/LC_MESSAGES/kio5_info.mo share/locale/hi/LC_MESSAGES/kio5_man.mo share/locale/hi/LC_MESSAGES/kio5_nfs.mo share/locale/hi/LC_MESSAGES/kio5_recentdocuments.mo share/locale/hi/LC_MESSAGES/kio5_sftp.mo share/locale/hi/LC_MESSAGES/kio5_smb.mo share/locale/hi/LC_MESSAGES/kio5_thumbnail.mo share/locale/hr/LC_MESSAGES/kfileaudiopreview5.mo share/locale/hr/LC_MESSAGES/kio5_activities.mo share/locale/hr/LC_MESSAGES/kio5_archive.mo share/locale/hr/LC_MESSAGES/kio5_bookmarks.mo share/locale/hr/LC_MESSAGES/kio5_fish.mo share/locale/hr/LC_MESSAGES/kio5_info.mo share/locale/hr/LC_MESSAGES/kio5_man.mo share/locale/hr/LC_MESSAGES/kio5_nfs.mo share/locale/hr/LC_MESSAGES/kio5_sftp.mo share/locale/hr/LC_MESSAGES/kio5_smb.mo share/locale/hr/LC_MESSAGES/kio5_thumbnail.mo share/locale/hu/LC_MESSAGES/kfileaudiopreview5.mo share/locale/hu/LC_MESSAGES/kio5_activities.mo share/locale/hu/LC_MESSAGES/kio5_archive.mo share/locale/hu/LC_MESSAGES/kio5_bookmarks.mo share/locale/hu/LC_MESSAGES/kio5_fish.mo share/locale/hu/LC_MESSAGES/kio5_info.mo share/locale/hu/LC_MESSAGES/kio5_man.mo share/locale/hu/LC_MESSAGES/kio5_nfs.mo share/locale/hu/LC_MESSAGES/kio5_recentdocuments.mo share/locale/hu/LC_MESSAGES/kio5_sftp.mo share/locale/hu/LC_MESSAGES/kio5_smb.mo share/locale/hu/LC_MESSAGES/kio5_thumbnail.mo share/locale/ia/LC_MESSAGES/kfileaudiopreview5.mo share/locale/ia/LC_MESSAGES/kio5_activities.mo share/locale/ia/LC_MESSAGES/kio5_archive.mo share/locale/ia/LC_MESSAGES/kio5_bookmarks.mo share/locale/ia/LC_MESSAGES/kio5_fish.mo share/locale/ia/LC_MESSAGES/kio5_info.mo share/locale/ia/LC_MESSAGES/kio5_man.mo share/locale/ia/LC_MESSAGES/kio5_mtp.mo share/locale/ia/LC_MESSAGES/kio5_nfs.mo share/locale/ia/LC_MESSAGES/kio5_recentdocuments.mo share/locale/ia/LC_MESSAGES/kio5_sftp.mo share/locale/ia/LC_MESSAGES/kio5_smb.mo share/locale/ia/LC_MESSAGES/kio5_thumbnail.mo share/locale/id/LC_MESSAGES/kfileaudiopreview5.mo share/locale/id/LC_MESSAGES/kio5_archive.mo share/locale/id/LC_MESSAGES/kio5_bookmarks.mo share/locale/id/LC_MESSAGES/kio5_fish.mo share/locale/id/LC_MESSAGES/kio5_info.mo share/locale/id/LC_MESSAGES/kio5_man.mo share/locale/id/LC_MESSAGES/kio5_nfs.mo share/locale/id/LC_MESSAGES/kio5_recentdocuments.mo share/locale/id/LC_MESSAGES/kio5_sftp.mo share/locale/id/LC_MESSAGES/kio5_smb.mo share/locale/id/LC_MESSAGES/kio5_thumbnail.mo share/locale/is/LC_MESSAGES/kfileaudiopreview5.mo share/locale/is/LC_MESSAGES/kio5_activities.mo share/locale/is/LC_MESSAGES/kio5_archive.mo share/locale/is/LC_MESSAGES/kio5_bookmarks.mo share/locale/is/LC_MESSAGES/kio5_fish.mo share/locale/is/LC_MESSAGES/kio5_info.mo share/locale/is/LC_MESSAGES/kio5_man.mo share/locale/is/LC_MESSAGES/kio5_nfs.mo share/locale/is/LC_MESSAGES/kio5_recentdocuments.mo share/locale/is/LC_MESSAGES/kio5_sftp.mo share/locale/is/LC_MESSAGES/kio5_smb.mo share/locale/is/LC_MESSAGES/kio5_thumbnail.mo share/locale/it/LC_MESSAGES/kfileaudiopreview5.mo share/locale/it/LC_MESSAGES/kio5_activities.mo share/locale/it/LC_MESSAGES/kio5_archive.mo share/locale/it/LC_MESSAGES/kio5_bookmarks.mo share/locale/it/LC_MESSAGES/kio5_fish.mo share/locale/it/LC_MESSAGES/kio5_info.mo share/locale/it/LC_MESSAGES/kio5_man.mo share/locale/it/LC_MESSAGES/kio5_mtp.mo share/locale/it/LC_MESSAGES/kio5_nfs.mo share/locale/it/LC_MESSAGES/kio5_recentdocuments.mo share/locale/it/LC_MESSAGES/kio5_sftp.mo share/locale/it/LC_MESSAGES/kio5_smb.mo share/locale/it/LC_MESSAGES/kio5_thumbnail.mo share/locale/ja/LC_MESSAGES/kfileaudiopreview5.mo share/locale/ja/LC_MESSAGES/kio5_activities.mo share/locale/ja/LC_MESSAGES/kio5_archive.mo share/locale/ja/LC_MESSAGES/kio5_bookmarks.mo share/locale/ja/LC_MESSAGES/kio5_fish.mo share/locale/ja/LC_MESSAGES/kio5_info.mo share/locale/ja/LC_MESSAGES/kio5_man.mo share/locale/ja/LC_MESSAGES/kio5_mtp.mo share/locale/ja/LC_MESSAGES/kio5_nfs.mo share/locale/ja/LC_MESSAGES/kio5_recentdocuments.mo share/locale/ja/LC_MESSAGES/kio5_sftp.mo share/locale/ja/LC_MESSAGES/kio5_smb.mo share/locale/ja/LC_MESSAGES/kio5_thumbnail.mo share/locale/kk/LC_MESSAGES/kfileaudiopreview5.mo share/locale/kk/LC_MESSAGES/kio5_activities.mo share/locale/kk/LC_MESSAGES/kio5_archive.mo share/locale/kk/LC_MESSAGES/kio5_bookmarks.mo share/locale/kk/LC_MESSAGES/kio5_fish.mo share/locale/kk/LC_MESSAGES/kio5_info.mo share/locale/kk/LC_MESSAGES/kio5_man.mo share/locale/kk/LC_MESSAGES/kio5_nfs.mo share/locale/kk/LC_MESSAGES/kio5_recentdocuments.mo share/locale/kk/LC_MESSAGES/kio5_sftp.mo share/locale/kk/LC_MESSAGES/kio5_smb.mo share/locale/kk/LC_MESSAGES/kio5_thumbnail.mo share/locale/km/LC_MESSAGES/kfileaudiopreview5.mo share/locale/km/LC_MESSAGES/kio5_activities.mo share/locale/km/LC_MESSAGES/kio5_archive.mo share/locale/km/LC_MESSAGES/kio5_bookmarks.mo share/locale/km/LC_MESSAGES/kio5_fish.mo share/locale/km/LC_MESSAGES/kio5_info.mo share/locale/km/LC_MESSAGES/kio5_man.mo share/locale/km/LC_MESSAGES/kio5_nfs.mo share/locale/km/LC_MESSAGES/kio5_recentdocuments.mo share/locale/km/LC_MESSAGES/kio5_sftp.mo share/locale/km/LC_MESSAGES/kio5_smb.mo share/locale/km/LC_MESSAGES/kio5_thumbnail.mo share/locale/ko/LC_MESSAGES/kfileaudiopreview5.mo share/locale/ko/LC_MESSAGES/kio5_activities.mo share/locale/ko/LC_MESSAGES/kio5_archive.mo share/locale/ko/LC_MESSAGES/kio5_bookmarks.mo share/locale/ko/LC_MESSAGES/kio5_fish.mo share/locale/ko/LC_MESSAGES/kio5_info.mo share/locale/ko/LC_MESSAGES/kio5_man.mo share/locale/ko/LC_MESSAGES/kio5_mtp.mo share/locale/ko/LC_MESSAGES/kio5_nfs.mo share/locale/ko/LC_MESSAGES/kio5_recentdocuments.mo share/locale/ko/LC_MESSAGES/kio5_sftp.mo share/locale/ko/LC_MESSAGES/kio5_smb.mo share/locale/ko/LC_MESSAGES/kio5_thumbnail.mo share/locale/lt/LC_MESSAGES/kfileaudiopreview5.mo share/locale/lt/LC_MESSAGES/kio5_activities.mo share/locale/lt/LC_MESSAGES/kio5_archive.mo share/locale/lt/LC_MESSAGES/kio5_bookmarks.mo share/locale/lt/LC_MESSAGES/kio5_fish.mo share/locale/lt/LC_MESSAGES/kio5_info.mo share/locale/lt/LC_MESSAGES/kio5_man.mo share/locale/lt/LC_MESSAGES/kio5_mtp.mo share/locale/lt/LC_MESSAGES/kio5_nfs.mo share/locale/lt/LC_MESSAGES/kio5_recentdocuments.mo share/locale/lt/LC_MESSAGES/kio5_sftp.mo share/locale/lt/LC_MESSAGES/kio5_smb.mo share/locale/lt/LC_MESSAGES/kio5_thumbnail.mo share/locale/lv/LC_MESSAGES/kfileaudiopreview5.mo share/locale/lv/LC_MESSAGES/kio5_activities.mo share/locale/lv/LC_MESSAGES/kio5_archive.mo share/locale/lv/LC_MESSAGES/kio5_bookmarks.mo share/locale/lv/LC_MESSAGES/kio5_fish.mo share/locale/lv/LC_MESSAGES/kio5_info.mo share/locale/lv/LC_MESSAGES/kio5_man.mo share/locale/lv/LC_MESSAGES/kio5_nfs.mo share/locale/lv/LC_MESSAGES/kio5_recentdocuments.mo share/locale/lv/LC_MESSAGES/kio5_sftp.mo share/locale/lv/LC_MESSAGES/kio5_smb.mo share/locale/lv/LC_MESSAGES/kio5_thumbnail.mo share/locale/mr/LC_MESSAGES/kfileaudiopreview5.mo share/locale/mr/LC_MESSAGES/kio5_activities.mo share/locale/mr/LC_MESSAGES/kio5_archive.mo share/locale/mr/LC_MESSAGES/kio5_bookmarks.mo share/locale/mr/LC_MESSAGES/kio5_fish.mo share/locale/mr/LC_MESSAGES/kio5_info.mo share/locale/mr/LC_MESSAGES/kio5_man.mo share/locale/mr/LC_MESSAGES/kio5_nfs.mo share/locale/mr/LC_MESSAGES/kio5_recentdocuments.mo share/locale/mr/LC_MESSAGES/kio5_sftp.mo share/locale/mr/LC_MESSAGES/kio5_smb.mo share/locale/mr/LC_MESSAGES/kio5_thumbnail.mo share/locale/nb/LC_MESSAGES/kfileaudiopreview5.mo share/locale/nb/LC_MESSAGES/kio5_activities.mo share/locale/nb/LC_MESSAGES/kio5_archive.mo share/locale/nb/LC_MESSAGES/kio5_bookmarks.mo share/locale/nb/LC_MESSAGES/kio5_fish.mo share/locale/nb/LC_MESSAGES/kio5_info.mo share/locale/nb/LC_MESSAGES/kio5_man.mo share/locale/nb/LC_MESSAGES/kio5_nfs.mo share/locale/nb/LC_MESSAGES/kio5_recentdocuments.mo share/locale/nb/LC_MESSAGES/kio5_sftp.mo share/locale/nb/LC_MESSAGES/kio5_smb.mo share/locale/nb/LC_MESSAGES/kio5_thumbnail.mo share/locale/nds/LC_MESSAGES/kfileaudiopreview5.mo share/locale/nds/LC_MESSAGES/kio5_activities.mo share/locale/nds/LC_MESSAGES/kio5_archive.mo share/locale/nds/LC_MESSAGES/kio5_bookmarks.mo share/locale/nds/LC_MESSAGES/kio5_fish.mo share/locale/nds/LC_MESSAGES/kio5_info.mo share/locale/nds/LC_MESSAGES/kio5_man.mo share/locale/nds/LC_MESSAGES/kio5_nfs.mo share/locale/nds/LC_MESSAGES/kio5_recentdocuments.mo share/locale/nds/LC_MESSAGES/kio5_sftp.mo share/locale/nds/LC_MESSAGES/kio5_smb.mo share/locale/nds/LC_MESSAGES/kio5_thumbnail.mo share/locale/nl/LC_MESSAGES/kfileaudiopreview5.mo share/locale/nl/LC_MESSAGES/kio5_activities.mo share/locale/nl/LC_MESSAGES/kio5_archive.mo share/locale/nl/LC_MESSAGES/kio5_bookmarks.mo share/locale/nl/LC_MESSAGES/kio5_fish.mo share/locale/nl/LC_MESSAGES/kio5_info.mo share/locale/nl/LC_MESSAGES/kio5_man.mo share/locale/nl/LC_MESSAGES/kio5_mtp.mo share/locale/nl/LC_MESSAGES/kio5_nfs.mo share/locale/nl/LC_MESSAGES/kio5_recentdocuments.mo share/locale/nl/LC_MESSAGES/kio5_sftp.mo share/locale/nl/LC_MESSAGES/kio5_smb.mo share/locale/nl/LC_MESSAGES/kio5_thumbnail.mo share/locale/nn/LC_MESSAGES/kfileaudiopreview5.mo share/locale/nn/LC_MESSAGES/kio5_activities.mo share/locale/nn/LC_MESSAGES/kio5_archive.mo share/locale/nn/LC_MESSAGES/kio5_bookmarks.mo share/locale/nn/LC_MESSAGES/kio5_fish.mo share/locale/nn/LC_MESSAGES/kio5_info.mo share/locale/nn/LC_MESSAGES/kio5_man.mo share/locale/nn/LC_MESSAGES/kio5_mtp.mo share/locale/nn/LC_MESSAGES/kio5_nfs.mo share/locale/nn/LC_MESSAGES/kio5_recentdocuments.mo share/locale/nn/LC_MESSAGES/kio5_sftp.mo share/locale/nn/LC_MESSAGES/kio5_smb.mo share/locale/nn/LC_MESSAGES/kio5_thumbnail.mo share/locale/pa/LC_MESSAGES/kfileaudiopreview5.mo share/locale/pa/LC_MESSAGES/kio5_activities.mo share/locale/pa/LC_MESSAGES/kio5_archive.mo share/locale/pa/LC_MESSAGES/kio5_bookmarks.mo share/locale/pa/LC_MESSAGES/kio5_fish.mo share/locale/pa/LC_MESSAGES/kio5_info.mo share/locale/pa/LC_MESSAGES/kio5_man.mo share/locale/pa/LC_MESSAGES/kio5_mtp.mo share/locale/pa/LC_MESSAGES/kio5_nfs.mo share/locale/pa/LC_MESSAGES/kio5_recentdocuments.mo share/locale/pa/LC_MESSAGES/kio5_sftp.mo share/locale/pa/LC_MESSAGES/kio5_smb.mo share/locale/pa/LC_MESSAGES/kio5_thumbnail.mo share/locale/pl/LC_MESSAGES/kfileaudiopreview5.mo share/locale/pl/LC_MESSAGES/kio5_activities.mo share/locale/pl/LC_MESSAGES/kio5_archive.mo share/locale/pl/LC_MESSAGES/kio5_bookmarks.mo share/locale/pl/LC_MESSAGES/kio5_fish.mo share/locale/pl/LC_MESSAGES/kio5_info.mo share/locale/pl/LC_MESSAGES/kio5_man.mo share/locale/pl/LC_MESSAGES/kio5_mtp.mo share/locale/pl/LC_MESSAGES/kio5_nfs.mo share/locale/pl/LC_MESSAGES/kio5_recentdocuments.mo share/locale/pl/LC_MESSAGES/kio5_sftp.mo share/locale/pl/LC_MESSAGES/kio5_smb.mo share/locale/pl/LC_MESSAGES/kio5_thumbnail.mo share/locale/pt/LC_MESSAGES/kfileaudiopreview5.mo share/locale/pt/LC_MESSAGES/kio5_activities.mo share/locale/pt/LC_MESSAGES/kio5_archive.mo share/locale/pt/LC_MESSAGES/kio5_bookmarks.mo share/locale/pt/LC_MESSAGES/kio5_fish.mo share/locale/pt/LC_MESSAGES/kio5_info.mo share/locale/pt/LC_MESSAGES/kio5_man.mo share/locale/pt/LC_MESSAGES/kio5_mtp.mo share/locale/pt/LC_MESSAGES/kio5_nfs.mo share/locale/pt/LC_MESSAGES/kio5_recentdocuments.mo share/locale/pt/LC_MESSAGES/kio5_sftp.mo share/locale/pt/LC_MESSAGES/kio5_smb.mo share/locale/pt/LC_MESSAGES/kio5_thumbnail.mo share/locale/pt_BR/LC_MESSAGES/kfileaudiopreview5.mo share/locale/pt_BR/LC_MESSAGES/kio5_activities.mo share/locale/pt_BR/LC_MESSAGES/kio5_archive.mo share/locale/pt_BR/LC_MESSAGES/kio5_bookmarks.mo share/locale/pt_BR/LC_MESSAGES/kio5_fish.mo share/locale/pt_BR/LC_MESSAGES/kio5_info.mo share/locale/pt_BR/LC_MESSAGES/kio5_man.mo share/locale/pt_BR/LC_MESSAGES/kio5_mtp.mo share/locale/pt_BR/LC_MESSAGES/kio5_nfs.mo share/locale/pt_BR/LC_MESSAGES/kio5_recentdocuments.mo share/locale/pt_BR/LC_MESSAGES/kio5_sftp.mo share/locale/pt_BR/LC_MESSAGES/kio5_smb.mo share/locale/pt_BR/LC_MESSAGES/kio5_thumbnail.mo share/locale/ro/LC_MESSAGES/kfileaudiopreview5.mo share/locale/ro/LC_MESSAGES/kio5_activities.mo share/locale/ro/LC_MESSAGES/kio5_archive.mo share/locale/ro/LC_MESSAGES/kio5_bookmarks.mo share/locale/ro/LC_MESSAGES/kio5_fish.mo share/locale/ro/LC_MESSAGES/kio5_info.mo share/locale/ro/LC_MESSAGES/kio5_man.mo share/locale/ro/LC_MESSAGES/kio5_mtp.mo share/locale/ro/LC_MESSAGES/kio5_nfs.mo share/locale/ro/LC_MESSAGES/kio5_recentdocuments.mo share/locale/ro/LC_MESSAGES/kio5_sftp.mo share/locale/ro/LC_MESSAGES/kio5_smb.mo share/locale/ro/LC_MESSAGES/kio5_thumbnail.mo share/locale/ru/LC_MESSAGES/kfileaudiopreview5.mo share/locale/ru/LC_MESSAGES/kio5_activities.mo share/locale/ru/LC_MESSAGES/kio5_archive.mo share/locale/ru/LC_MESSAGES/kio5_bookmarks.mo share/locale/ru/LC_MESSAGES/kio5_fish.mo share/locale/ru/LC_MESSAGES/kio5_info.mo share/locale/ru/LC_MESSAGES/kio5_man.mo share/locale/ru/LC_MESSAGES/kio5_mtp.mo share/locale/ru/LC_MESSAGES/kio5_nfs.mo share/locale/ru/LC_MESSAGES/kio5_recentdocuments.mo share/locale/ru/LC_MESSAGES/kio5_sftp.mo share/locale/ru/LC_MESSAGES/kio5_smb.mo share/locale/ru/LC_MESSAGES/kio5_thumbnail.mo share/locale/sk/LC_MESSAGES/kfileaudiopreview5.mo share/locale/sk/LC_MESSAGES/kio5_activities.mo share/locale/sk/LC_MESSAGES/kio5_archive.mo share/locale/sk/LC_MESSAGES/kio5_bookmarks.mo share/locale/sk/LC_MESSAGES/kio5_fish.mo share/locale/sk/LC_MESSAGES/kio5_info.mo share/locale/sk/LC_MESSAGES/kio5_man.mo share/locale/sk/LC_MESSAGES/kio5_mtp.mo share/locale/sk/LC_MESSAGES/kio5_nfs.mo share/locale/sk/LC_MESSAGES/kio5_recentdocuments.mo share/locale/sk/LC_MESSAGES/kio5_sftp.mo share/locale/sk/LC_MESSAGES/kio5_smb.mo share/locale/sk/LC_MESSAGES/kio5_thumbnail.mo share/locale/sl/LC_MESSAGES/kfileaudiopreview5.mo share/locale/sl/LC_MESSAGES/kio5_activities.mo share/locale/sl/LC_MESSAGES/kio5_archive.mo share/locale/sl/LC_MESSAGES/kio5_bookmarks.mo share/locale/sl/LC_MESSAGES/kio5_fish.mo share/locale/sl/LC_MESSAGES/kio5_info.mo share/locale/sl/LC_MESSAGES/kio5_man.mo share/locale/sl/LC_MESSAGES/kio5_mtp.mo share/locale/sl/LC_MESSAGES/kio5_nfs.mo share/locale/sl/LC_MESSAGES/kio5_recentdocuments.mo share/locale/sl/LC_MESSAGES/kio5_sftp.mo share/locale/sl/LC_MESSAGES/kio5_smb.mo share/locale/sl/LC_MESSAGES/kio5_thumbnail.mo share/locale/sr/LC_MESSAGES/kfileaudiopreview5.mo share/locale/sr/LC_MESSAGES/kio5_activities.mo share/locale/sr/LC_MESSAGES/kio5_archive.mo share/locale/sr/LC_MESSAGES/kio5_bookmarks.mo share/locale/sr/LC_MESSAGES/kio5_fish.mo share/locale/sr/LC_MESSAGES/kio5_info.mo share/locale/sr/LC_MESSAGES/kio5_man.mo share/locale/sr/LC_MESSAGES/kio5_mtp.mo share/locale/sr/LC_MESSAGES/kio5_nfs.mo share/locale/sr/LC_MESSAGES/kio5_recentdocuments.mo share/locale/sr/LC_MESSAGES/kio5_sftp.mo share/locale/sr/LC_MESSAGES/kio5_smb.mo share/locale/sr/LC_MESSAGES/kio5_thumbnail.mo share/locale/sv/LC_MESSAGES/kfileaudiopreview5.mo share/locale/sv/LC_MESSAGES/kio5_activities.mo share/locale/sv/LC_MESSAGES/kio5_archive.mo share/locale/sv/LC_MESSAGES/kio5_bookmarks.mo share/locale/sv/LC_MESSAGES/kio5_fish.mo share/locale/sv/LC_MESSAGES/kio5_info.mo share/locale/sv/LC_MESSAGES/kio5_man.mo share/locale/sv/LC_MESSAGES/kio5_mtp.mo share/locale/sv/LC_MESSAGES/kio5_nfs.mo share/locale/sv/LC_MESSAGES/kio5_recentdocuments.mo share/locale/sv/LC_MESSAGES/kio5_sftp.mo share/locale/sv/LC_MESSAGES/kio5_smb.mo share/locale/sv/LC_MESSAGES/kio5_thumbnail.mo share/locale/tr/LC_MESSAGES/kfileaudiopreview5.mo share/locale/tr/LC_MESSAGES/kio5_activities.mo share/locale/tr/LC_MESSAGES/kio5_archive.mo share/locale/tr/LC_MESSAGES/kio5_bookmarks.mo share/locale/tr/LC_MESSAGES/kio5_fish.mo share/locale/tr/LC_MESSAGES/kio5_info.mo share/locale/tr/LC_MESSAGES/kio5_man.mo share/locale/tr/LC_MESSAGES/kio5_mtp.mo share/locale/tr/LC_MESSAGES/kio5_nfs.mo share/locale/tr/LC_MESSAGES/kio5_recentdocuments.mo share/locale/tr/LC_MESSAGES/kio5_sftp.mo share/locale/tr/LC_MESSAGES/kio5_smb.mo share/locale/tr/LC_MESSAGES/kio5_thumbnail.mo share/locale/ug/LC_MESSAGES/kfileaudiopreview5.mo share/locale/ug/LC_MESSAGES/kio5_activities.mo share/locale/ug/LC_MESSAGES/kio5_archive.mo share/locale/ug/LC_MESSAGES/kio5_bookmarks.mo share/locale/ug/LC_MESSAGES/kio5_fish.mo share/locale/ug/LC_MESSAGES/kio5_info.mo share/locale/ug/LC_MESSAGES/kio5_man.mo share/locale/ug/LC_MESSAGES/kio5_nfs.mo share/locale/ug/LC_MESSAGES/kio5_recentdocuments.mo share/locale/ug/LC_MESSAGES/kio5_sftp.mo share/locale/ug/LC_MESSAGES/kio5_smb.mo share/locale/ug/LC_MESSAGES/kio5_thumbnail.mo share/locale/uk/LC_MESSAGES/kfileaudiopreview5.mo share/locale/uk/LC_MESSAGES/kio5_activities.mo share/locale/uk/LC_MESSAGES/kio5_archive.mo share/locale/uk/LC_MESSAGES/kio5_bookmarks.mo share/locale/uk/LC_MESSAGES/kio5_fish.mo share/locale/uk/LC_MESSAGES/kio5_info.mo share/locale/uk/LC_MESSAGES/kio5_man.mo share/locale/uk/LC_MESSAGES/kio5_mtp.mo share/locale/uk/LC_MESSAGES/kio5_nfs.mo share/locale/uk/LC_MESSAGES/kio5_recentdocuments.mo share/locale/uk/LC_MESSAGES/kio5_sftp.mo share/locale/uk/LC_MESSAGES/kio5_smb.mo share/locale/uk/LC_MESSAGES/kio5_thumbnail.mo share/locale/wa/LC_MESSAGES/kfileaudiopreview5.mo share/locale/wa/LC_MESSAGES/kio5_activities.mo share/locale/wa/LC_MESSAGES/kio5_archive.mo share/locale/wa/LC_MESSAGES/kio5_bookmarks.mo share/locale/wa/LC_MESSAGES/kio5_fish.mo share/locale/wa/LC_MESSAGES/kio5_info.mo share/locale/wa/LC_MESSAGES/kio5_man.mo share/locale/wa/LC_MESSAGES/kio5_nfs.mo share/locale/wa/LC_MESSAGES/kio5_sftp.mo share/locale/wa/LC_MESSAGES/kio5_smb.mo share/locale/wa/LC_MESSAGES/kio5_thumbnail.mo share/locale/zh_CN/LC_MESSAGES/kfileaudiopreview5.mo share/locale/zh_CN/LC_MESSAGES/kio5_activities.mo share/locale/zh_CN/LC_MESSAGES/kio5_archive.mo share/locale/zh_CN/LC_MESSAGES/kio5_bookmarks.mo share/locale/zh_CN/LC_MESSAGES/kio5_fish.mo share/locale/zh_CN/LC_MESSAGES/kio5_info.mo share/locale/zh_CN/LC_MESSAGES/kio5_man.mo share/locale/zh_CN/LC_MESSAGES/kio5_mtp.mo share/locale/zh_CN/LC_MESSAGES/kio5_nfs.mo share/locale/zh_CN/LC_MESSAGES/kio5_recentdocuments.mo share/locale/zh_CN/LC_MESSAGES/kio5_sftp.mo share/locale/zh_CN/LC_MESSAGES/kio5_smb.mo share/locale/zh_CN/LC_MESSAGES/kio5_thumbnail.mo share/locale/zh_TW/LC_MESSAGES/kfileaudiopreview5.mo share/locale/zh_TW/LC_MESSAGES/kio5_activities.mo share/locale/zh_TW/LC_MESSAGES/kio5_archive.mo share/locale/zh_TW/LC_MESSAGES/kio5_bookmarks.mo share/locale/zh_TW/LC_MESSAGES/kio5_fish.mo share/locale/zh_TW/LC_MESSAGES/kio5_info.mo share/locale/zh_TW/LC_MESSAGES/kio5_man.mo share/locale/zh_TW/LC_MESSAGES/kio5_mtp.mo share/locale/zh_TW/LC_MESSAGES/kio5_nfs.mo share/locale/zh_TW/LC_MESSAGES/kio5_recentdocuments.mo share/locale/zh_TW/LC_MESSAGES/kio5_sftp.mo share/locale/zh_TW/LC_MESSAGES/kio5_smb.mo share/locale/zh_TW/LC_MESSAGES/kio5_thumbnail.mo share/mime/packages/kf5_network.xml %%MTP%%share/remoteview/mtp-network.desktop share/remoteview/network.desktop %%SAMBA%%share/remoteview/smb-network.desktop %%MTP%%share/solid/actions/solid_mtp.desktop Index: head/devel/lokalize/distinfo =================================================================== --- head/devel/lokalize/distinfo (revision 499276) +++ head/devel/lokalize/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551810940 -SHA256 (KDE/applications/18.12.3/lokalize-18.12.3.tar.xz) = cce11b9384d27006855a141d2241a67d05679baa7096db2311c49a78bd642fed -SIZE (KDE/applications/18.12.3/lokalize-18.12.3.tar.xz) = 2312372 +TIMESTAMP = 1555094794 +SHA256 (KDE/applications/19.04.0/lokalize-19.04.0.tar.xz) = e2e8cd6f9bb0e59ffd4b88e5513b757df3b63892ce90e7000c872e896ef74266 +SIZE (KDE/applications/19.04.0/lokalize-19.04.0.tar.xz) = 1680008 Index: head/devel/poxml/distinfo =================================================================== --- head/devel/poxml/distinfo (revision 499276) +++ head/devel/poxml/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551810939 -SHA256 (KDE/applications/18.12.3/poxml-18.12.3.tar.xz) = 6714e371957d175b859894149a3791acb3b8ef62b653b7b09f34819e92c8eaf7 -SIZE (KDE/applications/18.12.3/poxml-18.12.3.tar.xz) = 43160 +TIMESTAMP = 1555094794 +SHA256 (KDE/applications/19.04.0/poxml-19.04.0.tar.xz) = c0a24557cc7e243790c5273fb2a4ff585a3e89cc994772a52979015d2e57a985 +SIZE (KDE/applications/19.04.0/poxml-19.04.0.tar.xz) = 43172 Index: head/devel/umbrello/Makefile =================================================================== --- head/devel/umbrello/Makefile (revision 499276) +++ head/devel/umbrello/Makefile (revision 499277) @@ -1,34 +1,33 @@ # $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 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= core dbus gui network printsupport svg webkit widgets xml \ buildtools_build qmake_build # Build the KDE Frameworks 5 based version. CMAKE_BOOL= BUILD_KF5 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 499276) +++ head/devel/umbrello/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551810937 -SHA256 (KDE/applications/18.12.3/umbrello-18.12.3.tar.xz) = 2ab53b33cf1fcaea470c01b2421e911d4287b1d0421fa33e0b60043fe6943cc7 -SIZE (KDE/applications/18.12.3/umbrello-18.12.3.tar.xz) = 3055608 +TIMESTAMP = 1555094795 +SHA256 (KDE/applications/19.04.0/umbrello-19.04.0.tar.xz) = 7c37363a92bd91f2a515438068ba6f1c8747269ddaf2eda5a7998539ece4468d +SIZE (KDE/applications/19.04.0/umbrello-19.04.0.tar.xz) = 3680256 Index: head/devel/umbrello/pkg-plist =================================================================== --- head/devel/umbrello/pkg-plist (revision 499276) +++ head/devel/umbrello/pkg-plist (revision 499277) @@ -1,158 +1,159 @@ bin/po2xmi5 bin/umbrello5 bin/xmi2pot5 share/applications/org.kde.umbrello.desktop share/icons/hicolor/128x128/apps/umbrello.png share/icons/hicolor/16x16/apps/umbrello.png share/icons/hicolor/16x16/mimetypes/application-x-uml.png share/icons/hicolor/22x22/apps/umbrello.png share/icons/hicolor/32x32/apps/umbrello.png share/icons/hicolor/32x32/mimetypes/application-x-uml.png share/icons/hicolor/48x48/apps/umbrello.png share/icons/hicolor/64x64/apps/umbrello.png share/icons/hicolor/scalable/apps/umbrello.svgz share/locale/ar/LC_MESSAGES/umbrello.mo share/locale/bg/LC_MESSAGES/umbrello.mo share/locale/bs/LC_MESSAGES/umbrello.mo share/locale/bs/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/ca/LC_MESSAGES/umbrello.mo share/locale/ca/LC_MESSAGES/umbrello_kdevphp.mo share/locale/ca/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/ca@valencia/LC_MESSAGES/umbrello.mo share/locale/ca@valencia/LC_MESSAGES/umbrello_kdevphp.mo share/locale/ca@valencia/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/cs/LC_MESSAGES/umbrello.mo share/locale/cs/LC_MESSAGES/umbrello_kdevphp.mo share/locale/cs/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/da/LC_MESSAGES/umbrello.mo share/locale/da/LC_MESSAGES/umbrello_kdevphp.mo share/locale/da/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/de/LC_MESSAGES/umbrello.mo share/locale/de/LC_MESSAGES/umbrello_kdevphp.mo share/locale/de/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/el/LC_MESSAGES/umbrello.mo +share/locale/el/LC_MESSAGES/umbrello_kdevphp.mo share/locale/el/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/en_GB/LC_MESSAGES/umbrello.mo share/locale/en_GB/LC_MESSAGES/umbrello_kdevphp.mo share/locale/en_GB/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/eo/LC_MESSAGES/umbrello.mo share/locale/eo/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/es/LC_MESSAGES/umbrello.mo share/locale/es/LC_MESSAGES/umbrello_kdevphp.mo share/locale/es/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/et/LC_MESSAGES/umbrello.mo share/locale/et/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/eu/LC_MESSAGES/umbrello.mo share/locale/fa/LC_MESSAGES/umbrello.mo share/locale/fi/LC_MESSAGES/umbrello.mo share/locale/fi/LC_MESSAGES/umbrello_kdevphp.mo share/locale/fi/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/fr/LC_MESSAGES/umbrello.mo share/locale/fr/LC_MESSAGES/umbrello_kdevphp.mo share/locale/fr/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/ga/LC_MESSAGES/umbrello.mo share/locale/ga/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/gl/LC_MESSAGES/umbrello.mo share/locale/gl/LC_MESSAGES/umbrello_kdevphp.mo share/locale/gl/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/hi/LC_MESSAGES/umbrello.mo share/locale/hr/LC_MESSAGES/umbrello.mo share/locale/hr/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/hu/LC_MESSAGES/umbrello.mo share/locale/hu/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/it/LC_MESSAGES/umbrello.mo share/locale/it/LC_MESSAGES/umbrello_kdevphp.mo share/locale/it/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/ja/LC_MESSAGES/umbrello.mo share/locale/ja/LC_MESSAGES/umbrello_kdevphp.mo share/locale/ja/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/kk/LC_MESSAGES/umbrello.mo share/locale/kk/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/km/LC_MESSAGES/umbrello.mo share/locale/ko/LC_MESSAGES/umbrello.mo share/locale/ko/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/lt/LC_MESSAGES/umbrello.mo share/locale/lt/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/mr/LC_MESSAGES/umbrello.mo share/locale/mr/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/nb/LC_MESSAGES/umbrello.mo share/locale/nb/LC_MESSAGES/umbrello_kdevphp.mo share/locale/nb/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/nds/LC_MESSAGES/umbrello.mo share/locale/nds/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/nl/LC_MESSAGES/umbrello.mo share/locale/nl/LC_MESSAGES/umbrello_kdevphp.mo share/locale/nl/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/nn/LC_MESSAGES/umbrello.mo share/locale/pl/LC_MESSAGES/umbrello.mo share/locale/pl/LC_MESSAGES/umbrello_kdevphp.mo share/locale/pl/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/pt/LC_MESSAGES/umbrello.mo share/locale/pt/LC_MESSAGES/umbrello_kdevphp.mo share/locale/pt/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/pt_BR/LC_MESSAGES/umbrello.mo share/locale/pt_BR/LC_MESSAGES/umbrello_kdevphp.mo share/locale/pt_BR/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/ro/LC_MESSAGES/umbrello.mo share/locale/ro/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/ru/LC_MESSAGES/umbrello.mo share/locale/ru/LC_MESSAGES/umbrello_kdevphp.mo share/locale/ru/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/sk/LC_MESSAGES/umbrello.mo share/locale/sk/LC_MESSAGES/umbrello_kdevphp.mo share/locale/sk/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/sl/LC_MESSAGES/umbrello.mo share/locale/sl/LC_MESSAGES/umbrello_kdevphp.mo share/locale/sl/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/sv/LC_MESSAGES/umbrello.mo share/locale/sv/LC_MESSAGES/umbrello_kdevphp.mo share/locale/sv/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/tr/LC_MESSAGES/umbrello.mo share/locale/tr/LC_MESSAGES/umbrello_kdevphp.mo share/locale/tr/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/ug/LC_MESSAGES/umbrello.mo share/locale/ug/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/uk/LC_MESSAGES/umbrello.mo share/locale/uk/LC_MESSAGES/umbrello_kdevphp.mo share/locale/uk/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/zh_CN/LC_MESSAGES/umbrello.mo share/locale/zh_CN/LC_MESSAGES/umbrello_kdevphp.mo share/locale/zh_CN/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/zh_TW/LC_MESSAGES/umbrello.mo share/locale/zh_TW/LC_MESSAGES/umbrello_kdevphp.mo share/locale/zh_TW/LC_MESSAGES/umbrello_kdevphp5.mo share/metainfo/org.kde.umbrello.appdata.xml share/umbrello5/common.ent share/umbrello5/docbook2xhtml.xsl share/umbrello5/headings/heading.adb share/umbrello5/headings/heading.ads share/umbrello5/headings/heading.as share/umbrello5/headings/heading.cpp share/umbrello5/headings/heading.cs share/umbrello5/headings/heading.d share/umbrello5/headings/heading.h share/umbrello5/headings/heading.idl share/umbrello5/headings/heading.java share/umbrello5/headings/heading.js share/umbrello5/headings/heading.php share/umbrello5/headings/heading.pm share/umbrello5/headings/heading.py share/umbrello5/headings/heading.rb share/umbrello5/headings/heading.sql share/umbrello5/headings/heading.xsd share/umbrello5/layouts/activity-export.desktop share/umbrello5/layouts/activity-vertical.desktop share/umbrello5/layouts/class-export.desktop share/umbrello5/layouts/class-horizontal.desktop share/umbrello5/layouts/class-vertical.desktop share/umbrello5/layouts/entityrelationship-export.desktop share/umbrello5/layouts/entityrelationship-horizontal.desktop share/umbrello5/layouts/entityrelationship-vertical.desktop share/umbrello5/layouts/object-export.desktop share/umbrello5/layouts/object-horizontal.desktop share/umbrello5/layouts/object-vertical.desktop share/umbrello5/layouts/state-export.desktop share/umbrello5/layouts/state-vertical.desktop share/umbrello5/layouts/usecase-default.desktop share/umbrello5/xmi.css share/umbrello5/xmi2docbook.xsl Index: head/editors/kate/Makefile =================================================================== --- head/editors/kate/Makefile (revision 499276) +++ head/editors/kate/Makefile (revision 499277) @@ -1,28 +1,27 @@ # $FreeBSD$ PORTNAME= kate DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= editors kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Basic editor framework for the KDE system BUILD_DEPENDS= ${LOCALBASE}/share/xsl/docbook/html/docbook.xsl:textproc/docbook-xsl \ docbook-xml>0:textproc/docbook-xml LIB_DEPENDS= libgit2.so:devel/libgit2 USES= cmake compiler:c++11-lang desktop-file-utils gettext \ pkgconfig kde:5 qt:5 tar:xz USE_KDE= activities attica auth bookmarks codecs completion config \ configwidgets coreaddons crash dbusaddons doctools ecm \ guiaddons i18n iconthemes init itemmodels itemviews \ jobwidgets kio newstuff package parts plasma-framework \ service solid sonnet texteditor textwidgets threadweaver \ wallet widgetsaddons windowsystem xmlgui USE_QT= core dbus gui network script sql widgets xml \ buildtools_build qmake_build OPTIONS_DEFINE= DOCS .include Index: head/editors/kate/distinfo =================================================================== --- head/editors/kate/distinfo (revision 499276) +++ head/editors/kate/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551811075 -SHA256 (KDE/applications/18.12.3/kate-18.12.3.tar.xz) = f7f2cba41a4c88b65885532db6b6161c66055a6697d20ee88adb70f302d387e1 -SIZE (KDE/applications/18.12.3/kate-18.12.3.tar.xz) = 5765324 +TIMESTAMP = 1555094795 +SHA256 (KDE/applications/19.04.0/kate-19.04.0.tar.xz) = 64c3c312a69d45624e3619309b86de796f67d30a864433a5c24aeb4e299bacc9 +SIZE (KDE/applications/19.04.0/kate-19.04.0.tar.xz) = 5792940 Index: head/emulators/virtualbox-ose/Makefile =================================================================== --- head/emulators/virtualbox-ose/Makefile (revision 499276) +++ head/emulators/virtualbox-ose/Makefile (revision 499277) @@ -1,410 +1,412 @@ # Created by: Bernhard Froehlich # $FreeBSD$ PORTNAME= virtualbox-ose PORTVERSION= 5.2.26 PORTREVISION= 4 CATEGORIES= emulators MASTER_SITES= https://download.virtualbox.org/virtualbox/${PORTVERSION}/ DISTFILES= VirtualBox-${PORTVERSION}${EXTRACT_SUFX} ${GUESTADDITIONS} EXTRACT_ONLY= VirtualBox-${PORTVERSION}${EXTRACT_SUFX} MAINTAINER= vbox@FreeBSD.org COMMENT= General-purpose full virtualizer for x86 hardware LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING BUILD_DEPENDS= yasm:devel/yasm \ xsltproc:textproc/libxslt \ kmk:devel/kBuild \ gtar:archivers/gtar LIB_DEPENDS= libpng.so:graphics/png \ libxslt.so:textproc/libxslt \ libcurl.so:ftp/curl RUN_DEPENDS= ${LOCALBASE}/etc/rc.d/vboxnet:emulators/virtualbox-ose-kmod CPE_VENDOR= oracle CPE_PRODUCT= vm_virtualbox WRKSRC= ${WRKDIR}/VirtualBox-${PORTVERSION} ONLY_FOR_ARCHS= i386 amd64 USES= compiler:c++14-lang cpe gnome iconv pkgconfig ssl tar:bzip2 USE_GNOME= libidl libxml2 HAS_CONFIGURE= yes CONFIGURE_ARGS= --disable-java --passive-mesa CONFIGURE_ARGS+= --with-gcc="${CC}" --with-g++="${CXX}" CONFLICTS_INSTALL= virtualbox-ose-additions-* \ virtualbox-ose-devel-[0-9]* \ virtualbox-ose-legacy-[0-9]* \ virtualbox-ose-lite-[0-9]* +LDFLAGS= -lpthread + VBOXUSER?= vboxusers VBOXWSUSER?= vboxusers VBOXGROUP?= vboxusers USERS= ${VBOXUSER} GROUPS= ${VBOXGROUP} VBOX_DIR= ${PREFIX}/${VBOX_DIR_REL} VBOX_DIR_REL= lib/virtualbox VBOX_LINKS= VBoxVRDP VBOX_PROGS= VBoxAutostart VBoxBalloonCtrl VBoxBugReport VBoxHeadless \ VBoxManage VBOX_UTILS= VBoxExtPackHelperApp VBoxNetAdpCtl VBoxNetDHCP VBoxNetNAT \ VBoxSVC VBoxXPCOMIPCD OPTIONS_DEFINE= ALSA DBUS DEBUG GUESTADDITIONS MANUAL NLS PULSEAUDIO \ PYTHON QT5 R0LOGGING UDPTUNNEL VDE VNC WEBSERVICE VPX X11 OPTIONS_DEFAULT= DBUS QT5 UDPTUNNEL VNC WEBSERVICE X11 OPTIONS_SUB= yes DEBUG_DESC= Debug symbols, additional logs and assertions GUESTADDITIONS_DESC= Build with Guest Additions MANUAL_DESC= Build with user manual NLS_DESC= Native language support (requires QT5) QT5_DESC= Build with QT5 frontend (requires X11) R0LOGGING_DESC= Enable R0 logging (requires DEBUG) UDPTUNNEL_DESC= Build with UDP tunnel support VDE_DESC= Build with VDE support VNC_DESC= Build with VNC support VPX_DESC= Use libvpx for video recording WEBSERVICE_DESC= Build Webservice ALSA_CONFIGURE_OFF= --disable-alsa ALSA_LIB_DEPENDS= libasound.so:audio/alsa-lib DBUS_CONFIGURE_OFF= --disable-dbus DBUS_LIB_DEPENDS= libdbus-1.so:devel/dbus DEBUG_CONFIGURE_ON= --build-debug MANUAL_BUILD_DEPENDS= ${LOCALBASE}/share/xml/docbook/4.4/docbookx.dtd:textproc/docbook-xml MANUAL_CONFIGURE_OFF= --disable-docs NLS_IMPLIES= QT5 PULSEAUDIO_CONFIGURE_OFF= --disable-pulse PULSEAUDIO_LIB_DEPENDS= libpulse.so:audio/pulseaudio PYTHON_CONFIGURE_OFF= --disable-python QT5_IMPLIES= X11 R0LOGGING_IMPLIES= DEBUG UDPTUNNEL_CONFIGURE_OFF= --disable-udptunnel VDE_CONFIGURE_ON= --enable-vde VDE_RUN_DEPENDS= vde_switch:net/vde2 VNC_CONFIGURE_ON= --enable-vnc VNC_LIB_DEPENDS= libvncserver.so:net/libvncserver VPX_CONFIGURE_OFF= --disable-libvpx VPX_LIB_DEPENDS= libvpx.so:multimedia/libvpx X11_CONFIGURE_OFF= --build-headless ENV= .export ENV PLIST_SUB= GUEST_VER=${PORTVERSION} \ PYTHON_VERU=${PYTHON_VER:S/./_/}${PYTHON_ABIVER} \ VBOXGROUP=${VBOXGROUP} SUB_LIST= VBOXDIR=${VBOX_DIR} \ VBOXGROUP=${VBOXGROUP} \ VBOXUSER=${VBOXUSER} \ VBOXWSUSER=${VBOXWSUSER} USE_RC_SUBR= vboxheadless vboxwatchdog .include .if ${SLAVE_PORT} == no CONFLICTS_INSTALL+= virtualbox-ose-nox11-[0-9]* OPTIONS_DEFAULT+= PYTHON .else CONFLICTS_INSTALL+= virtualbox-ose-[0-9]* .endif .if ${ARCH} == "amd64" _ELF32!= kldstat -q -m elf32 && echo yes || echo no .endif .if ${PORT_OPTIONS:MDEBUG} KMK_BUILDTYPE= debug KMK_FLAGS+= BUILD_TYPE=debug .else KMK_BUILDTYPE= release .endif .if ${PORT_OPTIONS:MGUESTADDITIONS} GUESTADDITIONS= VBoxGuestAdditions_${PORTVERSION}.iso RESTRICTED= for personal use only RESTRICTED_FILES= ${GUESTADDITIONS} .endif .if ${PORT_OPTIONS:MMANUAL} DBKXMLDIR= ${LOCALBASE}/share/xml/docbook/4.4 DBKXSLDIR= ${LOCALBASE}/share/xsl/docbook USE_TEX= dvipsk:build formats:build .endif .if ${PORT_OPTIONS:MPYTHON} USES+= python:2.7 USE_PYTHON= distutils noegginfo noflavors PYDISTUTILS_PKGNAME= vboxapi PYDISTUTILS_PKGVERSION= 1.0 .else USES+= python:2.7,build .endif .if ${PORT_OPTIONS:MQT5} CONFIGURE_ARGS+= --enable-qt5 PLIST_SUB+= QT="" USES+= gl qmake:no_env qt:5 USE_GL= gl glu USE_QT= buildtools_build core dbus gui linguisttools_build opengl USE_QT+= printsupport widgets x11extras USE_XORG= xcb INSTALLS_ICONS= yes VBOX_PROGS+= VirtualBox VBOX_UTILS+= VBoxTestOGL VBOX_WITH_QT= 1 .else CONFIGURE_ARGS+= --disable-qt PLIST_SUB+= QT="@comment " .endif .if ${PORT_OPTIONS:MWEBSERVICE} BUILD_DEPENDS+= soapcpp2:devel/gsoap USE_RC_SUBR+= vboxwebsrv VBOX_LINKS+= vboxwebsrv VBOX_UTILS+= vboxwebsrv webtest .endif .if ${PORT_OPTIONS:MX11} USE_SDL= sdl USE_XORG+= xorgproto x11 xcursor xext xinerama xmu xt VBOX_PROGS+= VBoxSDL .endif .if ${PORT_OPTIONS:MPYTHON} || ${PORT_OPTIONS:MWEBSERVICE} PLIST_SUB+= SDK="" .else PLIST_SUB+= SDK="@comment " .endif .if ${ARCH} == i386 KMK_ARCH= freebsd.x86 PLIST_SUB+= I386="" .else KMK_ARCH= freebsd.${ARCH} PLIST_SUB+= I386="@comment " .endif PLIST_SUB+= ARCH="${KMK_ARCH}" KMK_BUILDDIR= ${WRKSRC}/out/${KMK_ARCH}/${KMK_BUILDTYPE} KMK_CONFIG= VBOX_LIBPATH_X11=${LOCALBASE} VBOX_FREEBSD_SRC=${SRC_BASE}/sys KMK_FLAGS+= -j${MAKE_JOBS_NUMBER} .include .if ${COMPILER_TYPE} == clang .if ${COMPILER_VERSION} == 80 # XXX PR236616: Clang 8.0 caused runtime problems. BUILD_DEPENDS+= ${LOCALBASE}/bin/clang${VBOX_LLVM_VER}:devel/llvm${VBOX_LLVM_VER} CC= ${LOCALBASE}/bin/clang${VBOX_LLVM_VER} CXX= ${LOCALBASE}/bin/clang++${VBOX_LLVM_VER} VBOX_LLVM_VER?= 60 .endif PATCH_DEPENDS+= ${LOCALBASE}/share/kBuild/tools/GXX3.kmk:devel/kBuild EXTRA_PATCHES+= ${PATCHDIR}/extrapatch-Config.kmk \ ${PATCHDIR}/extrapatch-src-VBox-Devices-PC-ipxe-Makefile.kmk \ ${PATCHDIR}/extrapatch-src-recompiler-Makefile.kmk .endif .if ${PYTHON_MAJOR_VER} >= 3 PLIST_SUB+= PYTHON_PYCDIR=/__pycache__/ \ PYTHON_PYCEXT=.cpython-${PYTHON_SUFFIX}.pyc .else PLIST_SUB+= PYTHON_PYCDIR=/ \ PYTHON_PYCEXT=.pyc .endif .if ${SSL_DEFAULT} != base CONFIGURE_ARGS+= --with-openssl-dir="${OPENSSLBASE}" .endif pre-everything:: .if ${ARCH} == "amd64" .if ${_ELF32} != yes @${ECHO} 'Requires 32-bit runtime support in kernel.' @${ECHO} 'Rebuild kernel with "options COMPAT_FREEBSD32" and reboot.' @${FALSE} .elif !exists(/usr/lib32/libc.so) @${ECHO} 'Requires 32-bit libraries installed under /usr/lib32.' @${ECHO} 'Do: cd /usr/src; make build32 install32; service ldconfig restart' @${FALSE} .endif .endif post-patch: @${ECHO} 'VBOX_PATH_APP_PRIVATE_ARCH = ${VBOX_DIR}' > \ ${WRKSRC}/LocalConfig.kmk @${ECHO} 'VBOX_PATH_DOCBOOK = ${DBKXSLDIR}' >> \ ${WRKSRC}/LocalConfig.kmk @${ECHO} 'VBOX_PATH_DOCBOOK_DTD = ${DBKXMLDIR}' >> \ ${WRKSRC}/LocalConfig.kmk @${ECHO} 'VBOX_PATH_SHARED_LIBS = ${VBOX_DIR}' >> \ ${WRKSRC}/LocalConfig.kmk @${ECHO} 'VBOX_WITH_RUNPATH = ${VBOX_DIR}' >> \ ${WRKSRC}/LocalConfig.kmk @${ECHO} 'VBOX_PATH_APP_PRIVATE = ${DATADIR}' >> \ ${WRKSRC}/LocalConfig.kmk @${ECHO} 'VBOX_PATH_APP_DOCS = ${DOCSDIR}' >> ${WRKSRC}/LocalConfig.kmk .if ${SSL_DEFAULT} != base @${ECHO} 'VBOX_WITH_ALT_HASH_CODE = 1' >> ${WRKSRC}/LocalConfig.kmk .endif @${ECHO} 'VBOX_WITH_EXTPACK_VBOXDTRACE =' >> ${WRKSRC}/LocalConfig.kmk @${ECHO} 'VBOX_WITH_INSTALLER = 1' >> ${WRKSRC}/LocalConfig.kmk @${ECHO} 'VBOX_WITH_VBOXDRV =' >> ${WRKSRC}/LocalConfig.kmk @${ECHO} 'VBOX_WITH_TESTCASES =' >> ${WRKSRC}/LocalConfig.kmk @${ECHO} 'SDK_VBOX_LIBPNG_INCS = ${PREFIX}/include/libpng' >> \ ${WRKSRC}/LocalConfig.kmk @${ECHO} 'SDK_VBOX_LIBPNG_LIBS = png' >> ${WRKSRC}/LocalConfig.kmk @${ECHO} 'VBOX_WITH_ADDITIONS =' >> ${WRKSRC}/LocalConfig.kmk @${ECHO} 'VBOX_WITH_DRAG_AND_DROP = ${VBOX_WITH_QT}' >> \ ${WRKSRC}/LocalConfig.kmk @${ECHO} 'VBOX_WITH_DRAG_AND_DROP_GH = ${VBOX_WITH_QT}' >> \ ${WRKSRC}/LocalConfig.kmk @${ECHO} 'VBOX_WITH_VALIDATIONKIT =' >> ${WRKSRC}/LocalConfig.kmk @${ECHO} 'VBOX_WITH_X11_ADDITIONS =' >> ${WRKSRC}/LocalConfig.kmk .if ${PORT_OPTIONS:MR0LOGGING} @${ECHO} 'VBOX_WITH_R0_LOGGING = 1' >> ${WRKSRC}/LocalConfig.kmk .endif .if ${PORT_OPTIONS:MWEBSERVICE} @${ECHO} 'VBOX_WITH_WEBSERVICES = 1' >> ${WRKSRC}/LocalConfig.kmk @${ECHO} 'VBOX_GSOAP_INSTALLED = 1' >> ${WRKSRC}/LocalConfig.kmk @${ECHO} 'VBOX_PATH_GSOAP = ${PREFIX}/lib/gsoap' >> \ ${WRKSRC}/LocalConfig.kmk @${ECHO} 'VBOX_PATH_GSOAP_BIN = ${PREFIX}/bin' >> \ ${WRKSRC}/LocalConfig.kmk @${ECHO} 'VBOX_PATH_GSOAP_IMPORT = ${PREFIX}/share/gsoap/import' >> \ ${WRKSRC}/LocalConfig.kmk @${ECHO} 'VBOX_GCC_PEDANTIC_CXX = -Wshadow $$(VBOX_GCC_WARN) -Wno-long-long' >> \ ${WRKSRC}/LocalConfig.kmk .endif .if ${COMPILER_TYPE} == clang @${REINPLACE_CMD} -e 's| -finline-limit=8000||' \ -e 's| -mpreferred-stack-boundary=2||' ${WRKSRC}/Config.kmk @${REINPLACE_CMD} -e 's| -fpermissive||' ${WRKSRC}/Config.kmk \ ${WRKSRC}/src/VBox/Main/webservice/Makefile.kmk @${ECHO} 'TOOL_VBoxGccFreeBSD_LD = ${CXX}' >> ${WRKSRC}/LocalConfig.kmk @${SED} -e 's|GXX3|VBoxGccFreeBSD|g' \ ${LOCALBASE}/share/kBuild/tools/GXX3.kmk > \ ${WRKSRC}/tools/kBuildTools/VBoxGccFreeBSD.kmk .endif @${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|g' \ ${WRKSRC}/Config.kmk ${WRKSRC}/configure \ ${WRKSRC}/kBuild/header.kmk ${WRKSRC}/kBuild/units/qt4.kmk \ ${WRKSRC}/kBuild/units/qt5.kmk ${WRKSRC}/kBuild/sdks/LIBSDL.kmk \ ${WRKSRC}/src/libs/xpcom18a4/python/gen_python_deps.py @${REINPLACE_CMD} \ -e 's|\$$KBUILDDIR_BIN/kmk_sed|${LOCALBASE}/bin/kmk_sed|g' \ -e 's|SUPPYTHONLIBS=.*|SUPPYTHONLIBS="${PYTHON_VERSION}${PYTHON_ABIVER}"|' \ ${WRKSRC}/configure .if empty(ICONV_LIB) @${REINPLACE_CMD} -e 's|iconv||' ${WRKSRC}/Config.kmk \ ${WRKSRC}/src/VBox/Runtime/Makefile.kmk @${ECHO} 'VBOX_ICONV_DEFS = LIBICONV_PLUG' >> ${WRKSRC}/LocalConfig.kmk .endif @${REINPLACE_CMD} -e 's|/usr/local/lib/virtualbox|${VBOX_DIR}|' \ -e 's|/usr/local|${PREFIX}|' \ ${WRKSRC}/src/VBox/Installer/freebsd/VBox.sh @${REINPLACE_CMD} \ -e 's|^versions =.*|versions = ["${PYTHON_VER}${PYTHON_ABIVER}"]|' \ ${WRKSRC}/src/libs/xpcom18a4/python/gen_python_deps.py do-build: cd ${WRKSRC} && ${SH} -c '. ${WRKSRC}/env.sh && \ ${KMK_CONFIG} ${LOCALBASE}/bin/kmk ${KMK_FLAGS}' .if ${PORT_OPTIONS:MPYTHON} ${PYTHON_CMD} -mcompileall \ ${KMK_BUILDDIR}/bin/sdk/bindings/xpcom/python/xpcom .endif do-install: .if ${PORT_OPTIONS:MPYTHON} || ${PORT_OPTIONS:MWEBSERVICE} ${MKDIR} ${STAGEDIR}${DATADIR}/sdk .endif cd ${KMK_BUILDDIR}/bin/sdk/bindings/xpcom && \ ${COPYTREE_SHARE} "idl samples" ${STAGEDIR}${DATADIR} ${MKDIR} ${STAGEDIR}${PREFIX}/include/virtualbox cd ${KMK_BUILDDIR}/bin/sdk/bindings/xpcom/include && \ ${COPYTREE_SHARE} "*" ${STAGEDIR}${PREFIX}/include/virtualbox ${MKDIR} ${STAGEDIR}${VBOX_DIR} cd ${KMK_BUILDDIR}/bin && ${COPYTREE_SHARE} \ "*.fd *.r0 *.rc *.so components" ${STAGEDIR}${VBOX_DIR} .if ${PORT_OPTIONS:MPYTHON} || ${PORT_OPTIONS:MWEBSERVICE} ${RLN} ${STAGEDIR}${DATADIR}/sdk ${STAGEDIR}${VBOX_DIR} .endif ${INSTALL_SCRIPT} ${WRKSRC}/src/VBox/Installer/freebsd/VBox.sh \ ${STAGEDIR}${VBOX_DIR} .for f in ${VBOX_PROGS} ${VBOX_UTILS} ${INSTALL_PROGRAM} ${KMK_BUILDDIR}/bin/${f} ${STAGEDIR}${VBOX_DIR} .endfor .for f in ${VBOX_PROGS} ${VBOX_LINKS} ${LN} -fs ../${VBOX_DIR_REL}/VBox.sh ${STAGEDIR}${PREFIX}/bin/${f} .endfor .for f in ${VBOX_PROGS} ${LN} -fs ../${VBOX_DIR_REL}/VBox.sh ${STAGEDIR}${PREFIX}/bin/${f:tl} .endfor .if ${PORT_OPTIONS:MGUESTADDITIONS} ${MKDIR} ${STAGEDIR}${VBOX_DIR}/additions ${INSTALL_DATA} ${DISTDIR}/${GUESTADDITIONS} \ ${STAGEDIR}${VBOX_DIR}/additions/ ${RLN} ${STAGEDIR}${VBOX_DIR}/additions/${GUESTADDITIONS} \ ${STAGEDIR}${VBOX_DIR}/additions/VBoxGuestAdditions.iso .endif .if ${PORT_OPTIONS:MMANUAL} ${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${KMK_BUILDDIR}/bin/UserManual*.pdf \ ${STAGEDIR}${DOCSDIR} .endif .if ${PORT_OPTIONS:MNLS} cd ${KMK_BUILDDIR}/obj/VirtualBox/qtnls && \ ${COPYTREE_SHARE} "*.qm" ${STAGEDIR}${DATADIR}/nls .endif .if ${PORT_OPTIONS:MPYTHON} cd ${KMK_BUILDDIR}/bin/sdk/installer && \ ${SETENV} VBOX_INSTALL_PATH="${VBOX_DIR}" \ ${PYTHON_CMD} vboxapisetup.py install --root=${STAGEDIR} @${MKDIR} ${STAGEDIR}${PYTHON_SITELIBDIR}/xpcom cd ${KMK_BUILDDIR}/bin/sdk/bindings/xpcom/python/xpcom && \ ${COPYTREE_SHARE} "*" ${STAGEDIR}${PYTHON_SITELIBDIR}/xpcom @${MKDIR} ${STAGEDIR}${DATADIR}/sdk/bindings/xpcom/python ${RLN} ${STAGEDIR}${PYTHON_SITELIBDIR}/xpcom \ ${STAGEDIR}${DATADIR}/sdk/bindings/xpcom/python .endif .if ${PORT_OPTIONS:MQT5} ${INSTALL_DATA} \ ${WRKSRC}/src/VBox/Frontends/VirtualBox/images/OSE/VirtualBox_48px.png \ ${STAGEDIR}${PREFIX}/share/pixmaps/VBox.png ${INSTALL_DATA} \ ${WRKSRC}/src/VBox/Installer/freebsd/virtualbox.desktop \ ${STAGEDIR}${PREFIX}/share/applications/virtualbox.desktop .endif .if ${PORT_OPTIONS:MVNC} ${MKDIR} ${STAGEDIR}${VBOX_DIR}/ExtensionPacks/VNC/${KMK_ARCH} ${INSTALL_DATA} ${KMK_BUILDDIR}/bin/ExtensionPacks/VNC/ExtPack* \ ${STAGEDIR}${VBOX_DIR}/ExtensionPacks/VNC/ ${INSTALL_LIB} ${KMK_BUILDDIR}/bin/ExtensionPacks/VNC/${KMK_ARCH}/* \ ${STAGEDIR}${VBOX_DIR}/ExtensionPacks/VNC/${KMK_ARCH}/ .endif .if ${PORT_OPTIONS:MWEBSERVICE} ${MKDIR} ${STAGEDIR}${DATADIR}/sdk/bindings/webservice ${INSTALL_DATA} ${KMK_BUILDDIR}/obj/webservice/vboxweb.wsdl \ ${STAGEDIR}${DATADIR}/sdk/bindings/webservice/ .endif .include Index: head/games/blinken/Makefile =================================================================== --- head/games/blinken/Makefile (revision 499276) +++ head/games/blinken/Makefile (revision 499277) @@ -1,19 +1,18 @@ # $FreeBSD$ PORTNAME= blinken DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= games kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Memory enhancement game for KDE USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs config configwidgets coreaddons crash dbusaddons \ doctools ecm guiaddons i18n widgetsaddons xmlgui USE_QT= core dbus gui phonon4 svg widgets xml \ buildtools_build qmake_build OPTIONS_DEFINE= DOCS .include Index: head/games/blinken/distinfo =================================================================== --- head/games/blinken/distinfo (revision 499276) +++ head/games/blinken/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551811058 -SHA256 (KDE/applications/18.12.3/blinken-18.12.3.tar.xz) = 2b6a11fa56b8837618e157a4a974eb1dff956cfb8b93e6cb0601bda66a234579 -SIZE (KDE/applications/18.12.3/blinken-18.12.3.tar.xz) = 2803260 +TIMESTAMP = 1555094795 +SHA256 (KDE/applications/19.04.0/blinken-19.04.0.tar.xz) = 5d470c7f0d232ea01c99fbe1ed08e103291e80c3cfe74e245aba1c2009573eed +SIZE (KDE/applications/19.04.0/blinken-19.04.0.tar.xz) = 2819928 Index: head/games/bomber/Makefile =================================================================== --- head/games/bomber/Makefile (revision 499276) +++ head/games/bomber/Makefile (revision 499277) @@ -1,20 +1,19 @@ # $FreeBSD$ PORTNAME= bomber DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= games kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= ${${PORTNAME}_DESC} USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs config configwidgets coreaddons crash dbusaddons \ ecm i18n kio libkdegames widgetsaddons xmlgui USE_QT= core dbus declarative gui network widgets phonon4 xml \ buildtools_build qmake_build OPTIONS_DEFINE= DOCS .include <${.CURDIR}/../kdegames/Makefile.common> .include Index: head/games/bomber/distinfo =================================================================== --- head/games/bomber/distinfo (revision 499276) +++ head/games/bomber/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551811069 -SHA256 (KDE/applications/18.12.3/bomber-18.12.3.tar.xz) = 5b8e24aba4fb14ffc72313f9754315d6a7d98a3e00ee118a2551ac3357ead771 -SIZE (KDE/applications/18.12.3/bomber-18.12.3.tar.xz) = 819708 +TIMESTAMP = 1555094796 +SHA256 (KDE/applications/19.04.0/bomber-19.04.0.tar.xz) = 4f82f3f42aff36de837f7c9ddc5986f6c73cb50de122b46320dba0a0b03f9a7d +SIZE (KDE/applications/19.04.0/bomber-19.04.0.tar.xz) = 819520 Index: head/games/bovo/distinfo =================================================================== --- head/games/bovo/distinfo (revision 499276) +++ head/games/bovo/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551811069 -SHA256 (KDE/applications/18.12.3/bovo-18.12.3.tar.xz) = 7fc7ff304cf5b5bf2049fdd53fbb4a819bddefc77fde94702c5118240403d972 -SIZE (KDE/applications/18.12.3/bovo-18.12.3.tar.xz) = 199600 +TIMESTAMP = 1555094796 +SHA256 (KDE/applications/19.04.0/bovo-19.04.0.tar.xz) = 2cfccb09087a32d8a75f6dd763168e2ef5928f55b58505a542bc36fdac8e141e +SIZE (KDE/applications/19.04.0/bovo-19.04.0.tar.xz) = 199636 Index: head/games/granatier/distinfo =================================================================== --- head/games/granatier/distinfo (revision 499276) +++ head/games/granatier/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551811073 -SHA256 (KDE/applications/18.12.3/granatier-18.12.3.tar.xz) = ad065e488f9a751423d571f51449e766c625e88ca7d3c30d21ff3b9027fc04af -SIZE (KDE/applications/18.12.3/granatier-18.12.3.tar.xz) = 1942648 +TIMESTAMP = 1555094796 +SHA256 (KDE/applications/19.04.0/granatier-19.04.0.tar.xz) = d83e91a5056e4caf1e522921025cb79355c0c2d53b7f0e98444d37291d80d63a +SIZE (KDE/applications/19.04.0/granatier-19.04.0.tar.xz) = 1942988 Index: head/games/kanagram/distinfo =================================================================== --- head/games/kanagram/distinfo (revision 499276) +++ head/games/kanagram/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551811071 -SHA256 (KDE/applications/18.12.3/kanagram-18.12.3.tar.xz) = dcc06543830ab06066f2f37eba6722f5cb0893355e30cee8d522085ed5fb2204 -SIZE (KDE/applications/18.12.3/kanagram-18.12.3.tar.xz) = 8030452 +TIMESTAMP = 1555094797 +SHA256 (KDE/applications/19.04.0/kanagram-19.04.0.tar.xz) = dda3ce8211957e016521597a923de92d261e32c31ebf84faa697bd26cf16647c +SIZE (KDE/applications/19.04.0/kanagram-19.04.0.tar.xz) = 8030456 Index: head/games/kapman/distinfo =================================================================== --- head/games/kapman/distinfo (revision 499276) +++ head/games/kapman/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551811070 -SHA256 (KDE/applications/18.12.3/kapman-18.12.3.tar.xz) = ad4a6377d260df76d000631ab4c95e5cb82ce47d031edc9801b6ed92d856305c -SIZE (KDE/applications/18.12.3/kapman-18.12.3.tar.xz) = 2525712 +TIMESTAMP = 1555094797 +SHA256 (KDE/applications/19.04.0/kapman-19.04.0.tar.xz) = f77dd3210bcdfb2d424f7a919848e25a4b4ae994d74b59111f352e41c2086324 +SIZE (KDE/applications/19.04.0/kapman-19.04.0.tar.xz) = 2525660 Index: head/games/katomic/distinfo =================================================================== --- head/games/katomic/distinfo (revision 499276) +++ head/games/katomic/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551811044 -SHA256 (KDE/applications/18.12.3/katomic-18.12.3.tar.xz) = 0e18087d0de067282023a98b800807632dd6a91bab51cf0d43d53bffba9b33f1 -SIZE (KDE/applications/18.12.3/katomic-18.12.3.tar.xz) = 1422648 +TIMESTAMP = 1555094798 +SHA256 (KDE/applications/19.04.0/katomic-19.04.0.tar.xz) = ea6e6642e16f985653caf2cd9dd61248e7038fb0246e9af4d4daec20401537a2 +SIZE (KDE/applications/19.04.0/katomic-19.04.0.tar.xz) = 1422836 Index: head/games/kblackbox/distinfo =================================================================== --- head/games/kblackbox/distinfo (revision 499276) +++ head/games/kblackbox/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551811042 -SHA256 (KDE/applications/18.12.3/kblackbox-18.12.3.tar.xz) = d88b2906de45b129f1706b3d250b80f86acb0cc926a3cee679265b86c8934a9b -SIZE (KDE/applications/18.12.3/kblackbox-18.12.3.tar.xz) = 444320 +TIMESTAMP = 1555094798 +SHA256 (KDE/applications/19.04.0/kblackbox-19.04.0.tar.xz) = 9363167664b6b4e54325f9691333df912eefa1e19d387c9a2780626914b813f9 +SIZE (KDE/applications/19.04.0/kblackbox-19.04.0.tar.xz) = 444344 Index: head/games/kblocks/Makefile =================================================================== --- head/games/kblocks/Makefile (revision 499276) +++ head/games/kblocks/Makefile (revision 499277) @@ -1,21 +1,20 @@ # $FreeBSD$ PORTNAME= kblocks DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= games kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= ${${PORTNAME}_DESC} USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs completion config configwidgets coreaddons crash \ dbusaddons i18n itemmodels kio libkdegames newstuff \ notifyconfig textwidgets widgetsaddons windowsystem xmlgui USE_QT= core dbus declarative gui network phonon4 svg testlib widgets xml \ buildtools_build qmake_build OPTIONS_DEFINE= DOCS .include <${.CURDIR}/../kdegames/Makefile.common> .include Index: head/games/kblocks/distinfo =================================================================== --- head/games/kblocks/distinfo (revision 499276) +++ head/games/kblocks/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551811042 -SHA256 (KDE/applications/18.12.3/kblocks-18.12.3.tar.xz) = e981107096893a8078ab978c429f367432a74de1bdeffe8fb628ccc397701332 -SIZE (KDE/applications/18.12.3/kblocks-18.12.3.tar.xz) = 1921544 +TIMESTAMP = 1555094798 +SHA256 (KDE/applications/19.04.0/kblocks-19.04.0.tar.xz) = c70a60f3a2e4c8f7756a1f9b1e025f8f91ec83c4f54feedf0ba05eea36b0037e +SIZE (KDE/applications/19.04.0/kblocks-19.04.0.tar.xz) = 1920744 Index: head/games/kbounce/Makefile =================================================================== --- head/games/kbounce/Makefile (revision 499276) +++ head/games/kbounce/Makefile (revision 499277) @@ -1,21 +1,20 @@ # $FreeBSD$ PORTNAME= kbounce DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= games kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= ${${PORTNAME}_DESC} USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs completion config configwidgets coreaddons crash \ dbusaddons ecm guiaddons i18n iconthemes jobwidgets kio \ libkdegames notifyconfig service textwidgets widgetsaddons xmlgui USE_QT= core dbus declarative gui network phonon4 svg testlib widgets xml \ buildtools_build qmake_build OPTIONS_DEFINE= DOCS .include <${.CURDIR}/../kdegames/Makefile.common> .include Index: head/games/kbounce/distinfo =================================================================== --- head/games/kbounce/distinfo (revision 499276) +++ head/games/kbounce/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551811031 -SHA256 (KDE/applications/18.12.3/kbounce-18.12.3.tar.xz) = c62cb68b4246c1aef73efb04ea883599384afbd977e8da93893346cbd835f343 -SIZE (KDE/applications/18.12.3/kbounce-18.12.3.tar.xz) = 3467828 +TIMESTAMP = 1555094799 +SHA256 (KDE/applications/19.04.0/kbounce-19.04.0.tar.xz) = cd28d777db8ff1dc1437fb6456c2fdfe8b9005c0cea3ce05337fbf425803834f +SIZE (KDE/applications/19.04.0/kbounce-19.04.0.tar.xz) = 3467584 Index: head/games/kbreakout/distinfo =================================================================== --- head/games/kbreakout/distinfo (revision 499276) +++ head/games/kbreakout/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551811073 -SHA256 (KDE/applications/18.12.3/kbreakout-18.12.3.tar.xz) = 23e1cc935eab6a2520e683185cb223243c71553b1ef6059a21f09d72e8fe00af -SIZE (KDE/applications/18.12.3/kbreakout-18.12.3.tar.xz) = 2276628 +TIMESTAMP = 1555094799 +SHA256 (KDE/applications/19.04.0/kbreakout-19.04.0.tar.xz) = c4aa847def701be288e53ceb27c8c63c34aa527f8e64c91fb007d053b1119db8 +SIZE (KDE/applications/19.04.0/kbreakout-19.04.0.tar.xz) = 2276364 Index: head/games/kbreakout/pkg-plist =================================================================== --- head/games/kbreakout/pkg-plist (revision 499276) +++ head/games/kbreakout/pkg-plist (revision 499277) @@ -1,87 +1,88 @@ bin/kbreakout +etc/xdg/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/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/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 499276) +++ head/games/kdiamond/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551811031 -SHA256 (KDE/applications/18.12.3/kdiamond-18.12.3.tar.xz) = b3d959cc195b924ca877df2762c3e8ef115ac41c2355f34efbbcaabe9b02b500 -SIZE (KDE/applications/18.12.3/kdiamond-18.12.3.tar.xz) = 4719772 +TIMESTAMP = 1555094810 +SHA256 (KDE/applications/19.04.0/kdiamond-19.04.0.tar.xz) = 121ef36611bf7fe9a7d1d4700622a4cc8a349fe262b7c568026a4da55dfd4b26 +SIZE (KDE/applications/19.04.0/kdiamond-19.04.0.tar.xz) = 4719696 Index: head/games/kfourinline/distinfo =================================================================== --- head/games/kfourinline/distinfo (revision 499276) +++ head/games/kfourinline/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551811045 -SHA256 (KDE/applications/18.12.3/kfourinline-18.12.3.tar.xz) = cd3c3129c50502d9fe35f2382fcb1a512519626eb1b776600fdac2190390b9ce -SIZE (KDE/applications/18.12.3/kfourinline-18.12.3.tar.xz) = 636588 +TIMESTAMP = 1555094810 +SHA256 (KDE/applications/19.04.0/kfourinline-19.04.0.tar.xz) = 458bc34c169df064c8d974d6f27e18e3cc5f3e9fb069358817d00a590f2e200a +SIZE (KDE/applications/19.04.0/kfourinline-19.04.0.tar.xz) = 636688 Index: head/games/kgoldrunner/distinfo =================================================================== --- head/games/kgoldrunner/distinfo (revision 499276) +++ head/games/kgoldrunner/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551811045 -SHA256 (KDE/applications/18.12.3/kgoldrunner-18.12.3.tar.xz) = 1d54b485ccb81106853d5229422c753a5b0bbd2f9239a17b1c44f737a32d93b6 -SIZE (KDE/applications/18.12.3/kgoldrunner-18.12.3.tar.xz) = 4415392 +TIMESTAMP = 1555094810 +SHA256 (KDE/applications/19.04.0/kgoldrunner-19.04.0.tar.xz) = 3d2eb37695328065ee5cf4c4ba4ee707ce514b4c7aab84c93cd3bef8d329b8ba +SIZE (KDE/applications/19.04.0/kgoldrunner-19.04.0.tar.xz) = 4415300 Index: head/games/khangman/distinfo =================================================================== --- head/games/khangman/distinfo (revision 499276) +++ head/games/khangman/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551811073 -SHA256 (KDE/applications/18.12.3/khangman-18.12.3.tar.xz) = 1a7cdd27abf229603965ff6b3392bd7935f7f5a2d6418b23f802cfae45f74013 -SIZE (KDE/applications/18.12.3/khangman-18.12.3.tar.xz) = 7124056 +TIMESTAMP = 1555094811 +SHA256 (KDE/applications/19.04.0/khangman-19.04.0.tar.xz) = 2a7120f7a54848dc017efdb86c22a964626029d9ca300d8e1488d385f10dc61c +SIZE (KDE/applications/19.04.0/khangman-19.04.0.tar.xz) = 7124812 Index: head/games/kigo/distinfo =================================================================== --- head/games/kigo/distinfo (revision 499276) +++ head/games/kigo/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551811069 -SHA256 (KDE/applications/18.12.3/kigo-18.12.3.tar.xz) = fa767319c3ac3e2dea48a5b09284e47e5f0c5d1862af813258758773998d1484 -SIZE (KDE/applications/18.12.3/kigo-18.12.3.tar.xz) = 5224396 +TIMESTAMP = 1555094811 +SHA256 (KDE/applications/19.04.0/kigo-19.04.0.tar.xz) = 30f12515ec4d22d39c6c90690545e1975a3ba9917180503ef42cba40ffbd874c +SIZE (KDE/applications/19.04.0/kigo-19.04.0.tar.xz) = 5224380 Index: head/games/killbots/distinfo =================================================================== --- head/games/killbots/distinfo (revision 499276) +++ head/games/killbots/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551811070 -SHA256 (KDE/applications/18.12.3/killbots-18.12.3.tar.xz) = 4efb4fcd4f34f1843b990a92e5b0309c196071f0778cdc8376eff5eef405deb9 -SIZE (KDE/applications/18.12.3/killbots-18.12.3.tar.xz) = 1165004 +TIMESTAMP = 1555094811 +SHA256 (KDE/applications/19.04.0/killbots-19.04.0.tar.xz) = 0cc928a1956b72bc207feed237598b445b5a7d7d26a266ec88080c1510870359 +SIZE (KDE/applications/19.04.0/killbots-19.04.0.tar.xz) = 1167108 Index: head/games/killbots/pkg-plist =================================================================== --- head/games/killbots/pkg-plist (revision 499276) +++ head/games/killbots/pkg-plist (revision 499277) @@ -1,69 +1,70 @@ bin/killbots share/applications/org.kde.killbots.desktop share/config.kcfg/killbots.kcfg share/icons/hicolor/128x128/apps/killbots.png share/icons/hicolor/16x16/apps/killbots.png share/icons/hicolor/22x22/apps/killbots.png share/icons/hicolor/32x32/apps/killbots.png share/icons/hicolor/48x48/apps/killbots.png share/icons/hicolor/64x64/apps/killbots.png %%DATADIR%%/rulesets/classic.desktop %%DATADIR%%/rulesets/daleks.desktop %%DATADIR%%/rulesets/default.desktop %%DATADIR%%/rulesets/easy.desktop %%DATADIR%%/rulesets/energycrisis.desktop %%DATADIR%%/themes/classic.desktop %%DATADIR%%/themes/classic.png %%DATADIR%%/themes/classic.svgz %%DATADIR%%/themes/mountainadventure.desktop %%DATADIR%%/themes/mountainadventure.png %%DATADIR%%/themes/mountainadventure.svgz %%DATADIR%%/themes/mummymadness.desktop %%DATADIR%%/themes/mummymadness.png %%DATADIR%%/themes/mummymadness.svgz %%DATADIR%%/themes/robotkill.desktop %%DATADIR%%/themes/robotkill.png %%DATADIR%%/themes/robotkill.svgz share/locale/bs/LC_MESSAGES/killbots.mo share/locale/ca/LC_MESSAGES/killbots.mo share/locale/ca@valencia/LC_MESSAGES/killbots.mo share/locale/cs/LC_MESSAGES/killbots.mo share/locale/da/LC_MESSAGES/killbots.mo share/locale/de/LC_MESSAGES/killbots.mo share/locale/el/LC_MESSAGES/killbots.mo share/locale/en_GB/LC_MESSAGES/killbots.mo share/locale/eo/LC_MESSAGES/killbots.mo share/locale/es/LC_MESSAGES/killbots.mo share/locale/et/LC_MESSAGES/killbots.mo share/locale/fi/LC_MESSAGES/killbots.mo share/locale/fr/LC_MESSAGES/killbots.mo share/locale/ga/LC_MESSAGES/killbots.mo share/locale/gl/LC_MESSAGES/killbots.mo share/locale/hr/LC_MESSAGES/killbots.mo share/locale/hu/LC_MESSAGES/killbots.mo share/locale/is/LC_MESSAGES/killbots.mo share/locale/it/LC_MESSAGES/killbots.mo share/locale/ja/LC_MESSAGES/killbots.mo share/locale/kk/LC_MESSAGES/killbots.mo share/locale/km/LC_MESSAGES/killbots.mo share/locale/lt/LC_MESSAGES/killbots.mo share/locale/lv/LC_MESSAGES/killbots.mo share/locale/mr/LC_MESSAGES/killbots.mo share/locale/nb/LC_MESSAGES/killbots.mo share/locale/nds/LC_MESSAGES/killbots.mo share/locale/nl/LC_MESSAGES/killbots.mo share/locale/nn/LC_MESSAGES/killbots.mo share/locale/pl/LC_MESSAGES/killbots.mo share/locale/pt/LC_MESSAGES/killbots.mo share/locale/pt_BR/LC_MESSAGES/killbots.mo share/locale/ro/LC_MESSAGES/killbots.mo share/locale/ru/LC_MESSAGES/killbots.mo share/locale/sk/LC_MESSAGES/killbots.mo share/locale/sl/LC_MESSAGES/killbots.mo share/locale/sr/LC_MESSAGES/killbots.mo share/locale/sv/LC_MESSAGES/killbots.mo share/locale/tr/LC_MESSAGES/killbots.mo share/locale/ug/LC_MESSAGES/killbots.mo share/locale/uk/LC_MESSAGES/killbots.mo share/locale/zh_CN/LC_MESSAGES/killbots.mo share/locale/zh_TW/LC_MESSAGES/killbots.mo +share/metainfo/org.kde.killbots.appdata.xml Index: head/games/kiriki/distinfo =================================================================== --- head/games/kiriki/distinfo (revision 499276) +++ head/games/kiriki/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551811071 -SHA256 (KDE/applications/18.12.3/kiriki-18.12.3.tar.xz) = 0b67b5069625fe04f6ffaa65d0d4abcf86f2f067483b4db15508d2b5ee9742ac -SIZE (KDE/applications/18.12.3/kiriki-18.12.3.tar.xz) = 371832 +TIMESTAMP = 1555094812 +SHA256 (KDE/applications/19.04.0/kiriki-19.04.0.tar.xz) = feb7b4fce0e6b1749bddd254a46a5d34bf5584a3d60aef460816380141ad630e +SIZE (KDE/applications/19.04.0/kiriki-19.04.0.tar.xz) = 371864 Index: head/games/kjumpingcube/distinfo =================================================================== --- head/games/kjumpingcube/distinfo (revision 499276) +++ head/games/kjumpingcube/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551811046 -SHA256 (KDE/applications/18.12.3/kjumpingcube-18.12.3.tar.xz) = 6409a3bb398ab90959afc24fa42b01b6e544526b1dab6f36bb700703fa794993 -SIZE (KDE/applications/18.12.3/kjumpingcube-18.12.3.tar.xz) = 286524 +TIMESTAMP = 1555094812 +SHA256 (KDE/applications/19.04.0/kjumpingcube-19.04.0.tar.xz) = 28fabf01d0a2481c54018d00985254acb107579c5afa93bbec7b3795c2a3f143 +SIZE (KDE/applications/19.04.0/kjumpingcube-19.04.0.tar.xz) = 286896 Index: head/games/kjumpingcube/pkg-plist =================================================================== --- head/games/kjumpingcube/pkg-plist (revision 499276) +++ head/games/kjumpingcube/pkg-plist (revision 499277) @@ -1,62 +1,63 @@ bin/kjumpingcube +etc/xdg/kjumpingcube.categories share/applications/org.kde.kjumpingcube.desktop share/config.kcfg/kjumpingcube.kcfg share/icons/hicolor/128x128/apps/kjumpingcube.png share/icons/hicolor/16x16/apps/kjumpingcube.png share/icons/hicolor/22x22/apps/kjumpingcube.png share/icons/hicolor/32x32/apps/kjumpingcube.png share/icons/hicolor/48x48/apps/kjumpingcube.png share/icons/hicolor/64x64/apps/kjumpingcube.png %%DATADIR%%/pics/default.desktop %%DATADIR%%/pics/default.svg share/locale/ar/LC_MESSAGES/kjumpingcube.mo share/locale/bg/LC_MESSAGES/kjumpingcube.mo share/locale/bs/LC_MESSAGES/kjumpingcube.mo share/locale/ca/LC_MESSAGES/kjumpingcube.mo share/locale/ca@valencia/LC_MESSAGES/kjumpingcube.mo share/locale/cs/LC_MESSAGES/kjumpingcube.mo share/locale/da/LC_MESSAGES/kjumpingcube.mo share/locale/de/LC_MESSAGES/kjumpingcube.mo share/locale/el/LC_MESSAGES/kjumpingcube.mo share/locale/en_GB/LC_MESSAGES/kjumpingcube.mo share/locale/eo/LC_MESSAGES/kjumpingcube.mo share/locale/es/LC_MESSAGES/kjumpingcube.mo share/locale/et/LC_MESSAGES/kjumpingcube.mo share/locale/eu/LC_MESSAGES/kjumpingcube.mo share/locale/fa/LC_MESSAGES/kjumpingcube.mo share/locale/fi/LC_MESSAGES/kjumpingcube.mo share/locale/fr/LC_MESSAGES/kjumpingcube.mo share/locale/ga/LC_MESSAGES/kjumpingcube.mo share/locale/gl/LC_MESSAGES/kjumpingcube.mo share/locale/he/LC_MESSAGES/kjumpingcube.mo share/locale/hi/LC_MESSAGES/kjumpingcube.mo share/locale/hr/LC_MESSAGES/kjumpingcube.mo share/locale/hu/LC_MESSAGES/kjumpingcube.mo share/locale/is/LC_MESSAGES/kjumpingcube.mo share/locale/it/LC_MESSAGES/kjumpingcube.mo share/locale/ja/LC_MESSAGES/kjumpingcube.mo share/locale/kk/LC_MESSAGES/kjumpingcube.mo share/locale/km/LC_MESSAGES/kjumpingcube.mo share/locale/lt/LC_MESSAGES/kjumpingcube.mo share/locale/lv/LC_MESSAGES/kjumpingcube.mo share/locale/mr/LC_MESSAGES/kjumpingcube.mo share/locale/nb/LC_MESSAGES/kjumpingcube.mo share/locale/nds/LC_MESSAGES/kjumpingcube.mo share/locale/nl/LC_MESSAGES/kjumpingcube.mo share/locale/nn/LC_MESSAGES/kjumpingcube.mo share/locale/pa/LC_MESSAGES/kjumpingcube.mo share/locale/pl/LC_MESSAGES/kjumpingcube.mo share/locale/pt/LC_MESSAGES/kjumpingcube.mo share/locale/pt_BR/LC_MESSAGES/kjumpingcube.mo share/locale/ro/LC_MESSAGES/kjumpingcube.mo share/locale/ru/LC_MESSAGES/kjumpingcube.mo share/locale/sk/LC_MESSAGES/kjumpingcube.mo share/locale/sl/LC_MESSAGES/kjumpingcube.mo share/locale/sr/LC_MESSAGES/kjumpingcube.mo share/locale/sv/LC_MESSAGES/kjumpingcube.mo share/locale/tr/LC_MESSAGES/kjumpingcube.mo share/locale/ug/LC_MESSAGES/kjumpingcube.mo share/locale/uk/LC_MESSAGES/kjumpingcube.mo share/locale/zh_CN/LC_MESSAGES/kjumpingcube.mo share/locale/zh_TW/LC_MESSAGES/kjumpingcube.mo share/metainfo/org.kde.kjumpingcube.appdata.xml Index: head/games/klickety/distinfo =================================================================== --- head/games/klickety/distinfo (revision 499276) +++ head/games/klickety/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551811069 -SHA256 (KDE/applications/18.12.3/klickety-18.12.3.tar.xz) = 45ed455fd9628aaf081bfa6b672199fbb6913c7dc5d5c04ad9df206a3bd962a5 -SIZE (KDE/applications/18.12.3/klickety-18.12.3.tar.xz) = 1388840 +TIMESTAMP = 1555094812 +SHA256 (KDE/applications/19.04.0/klickety-19.04.0.tar.xz) = 2ad160e3ea0a6f11c828f3b4bcea8f75db4121dda6d6e498fa1fc095e82e80e5 +SIZE (KDE/applications/19.04.0/klickety-19.04.0.tar.xz) = 1388736 Index: head/games/klines/distinfo =================================================================== --- head/games/klines/distinfo (revision 499276) +++ head/games/klines/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551811044 -SHA256 (KDE/applications/18.12.3/klines-18.12.3.tar.xz) = 6d93e5bee1135f4eeb67e7f845a4fd658be7e5fb33f42c0ad6320200bc86fd80 -SIZE (KDE/applications/18.12.3/klines-18.12.3.tar.xz) = 1781676 +TIMESTAMP = 1555094813 +SHA256 (KDE/applications/19.04.0/klines-19.04.0.tar.xz) = 139c0a4da7186e6e57228fcbe8666aa40e52ae01f328fea4d53ed8611ed54a96 +SIZE (KDE/applications/19.04.0/klines-19.04.0.tar.xz) = 1781660 Index: head/games/kmahjongg/distinfo =================================================================== --- head/games/kmahjongg/distinfo (revision 499276) +++ head/games/kmahjongg/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551811123 -SHA256 (KDE/applications/18.12.3/kmahjongg-18.12.3.tar.xz) = 188a8d921b72965d4ed0f6490048cde7b9d5606cca7d3cea12463dc71a90ccf6 -SIZE (KDE/applications/18.12.3/kmahjongg-18.12.3.tar.xz) = 4065120 +TIMESTAMP = 1555094813 +SHA256 (KDE/applications/19.04.0/kmahjongg-19.04.0.tar.xz) = 519bf6bb0bc098f74467d3ec9b49c82d22241dfd518d004163565e86dbc21a36 +SIZE (KDE/applications/19.04.0/kmahjongg-19.04.0.tar.xz) = 4065108 Index: head/games/kmahjongg/pkg-plist =================================================================== --- head/games/kmahjongg/pkg-plist (revision 499276) +++ head/games/kmahjongg/pkg-plist (revision 499277) @@ -1,209 +1,210 @@ bin/kmahjongg +etc/xdg/kmahjongg.categories share/applications/org.kde.kmahjongg.desktop share/config.kcfg/kmahjongg.kcfg share/icons/hicolor/128x128/apps/kmahjongg.png share/icons/hicolor/16x16/apps/kmahjongg.png share/icons/hicolor/22x22/apps/kmahjongg.png share/icons/hicolor/32x32/apps/kmahjongg.png share/icons/hicolor/48x48/apps/kmahjongg.png share/icons/hicolor/64x64/apps/kmahjongg.png share/icons/hicolor/scalable/apps/kmahjongg.svgz %%DATADIR%%/layouts/4_winds.desktop %%DATADIR%%/layouts/4_winds.layout %%DATADIR%%/layouts/Vi.desktop %%DATADIR%%/layouts/Vi.layout %%DATADIR%%/layouts/X_shaped.desktop %%DATADIR%%/layouts/X_shaped.layout %%DATADIR%%/layouts/alien.desktop %%DATADIR%%/layouts/alien.layout %%DATADIR%%/layouts/altar.desktop %%DATADIR%%/layouts/altar.layout %%DATADIR%%/layouts/arena.desktop %%DATADIR%%/layouts/arena.layout %%DATADIR%%/layouts/arrow.desktop %%DATADIR%%/layouts/arrow.layout %%DATADIR%%/layouts/atlantis.desktop %%DATADIR%%/layouts/atlantis.layout %%DATADIR%%/layouts/aztec.desktop %%DATADIR%%/layouts/aztec.layout %%DATADIR%%/layouts/balance.desktop %%DATADIR%%/layouts/balance.layout %%DATADIR%%/layouts/bat.desktop %%DATADIR%%/layouts/bat.layout %%DATADIR%%/layouts/bug.desktop %%DATADIR%%/layouts/bug.layout %%DATADIR%%/layouts/castle.desktop %%DATADIR%%/layouts/castle.layout %%DATADIR%%/layouts/castle2.desktop %%DATADIR%%/layouts/castle2.layout %%DATADIR%%/layouts/cat.desktop %%DATADIR%%/layouts/cat.layout %%DATADIR%%/layouts/chains.desktop %%DATADIR%%/layouts/chains.layout %%DATADIR%%/layouts/checkered.desktop %%DATADIR%%/layouts/checkered.layout %%DATADIR%%/layouts/chip.desktop %%DATADIR%%/layouts/chip.layout %%DATADIR%%/layouts/clubs.desktop %%DATADIR%%/layouts/clubs.layout %%DATADIR%%/layouts/columns.desktop %%DATADIR%%/layouts/columns.layout %%DATADIR%%/layouts/crab.desktop %%DATADIR%%/layouts/crab.layout %%DATADIR%%/layouts/cross.desktop %%DATADIR%%/layouts/cross.layout %%DATADIR%%/layouts/default.desktop %%DATADIR%%/layouts/default.layout %%DATADIR%%/layouts/dragon.desktop %%DATADIR%%/layouts/dragon.layout %%DATADIR%%/layouts/eagle.desktop %%DATADIR%%/layouts/eagle.layout %%DATADIR%%/layouts/enterprise.desktop %%DATADIR%%/layouts/enterprise.layout %%DATADIR%%/layouts/explosion.desktop %%DATADIR%%/layouts/explosion.layout %%DATADIR%%/layouts/flowers.desktop %%DATADIR%%/layouts/flowers.layout %%DATADIR%%/layouts/future.desktop %%DATADIR%%/layouts/future.layout %%DATADIR%%/layouts/galaxy.desktop %%DATADIR%%/layouts/galaxy.layout %%DATADIR%%/layouts/garden.desktop %%DATADIR%%/layouts/garden.layout %%DATADIR%%/layouts/girl.desktop %%DATADIR%%/layouts/girl.layout %%DATADIR%%/layouts/glade.desktop %%DATADIR%%/layouts/glade.layout %%DATADIR%%/layouts/grid.desktop %%DATADIR%%/layouts/grid.layout %%DATADIR%%/layouts/helios.desktop %%DATADIR%%/layouts/helios.layout %%DATADIR%%/layouts/hole.desktop %%DATADIR%%/layouts/hole.layout %%DATADIR%%/layouts/inner_circle.desktop %%DATADIR%%/layouts/inner_circle.layout %%DATADIR%%/layouts/key.desktop %%DATADIR%%/layouts/key.layout %%DATADIR%%/layouts/km.desktop %%DATADIR%%/layouts/km.layout %%DATADIR%%/layouts/labyrinth.desktop %%DATADIR%%/layouts/labyrinth.layout %%DATADIR%%/layouts/mask.desktop %%DATADIR%%/layouts/mask.layout %%DATADIR%%/layouts/maya.desktop %%DATADIR%%/layouts/maya.layout %%DATADIR%%/layouts/maze.desktop %%DATADIR%%/layouts/maze.layout %%DATADIR%%/layouts/mesh.desktop %%DATADIR%%/layouts/mesh.layout %%DATADIR%%/layouts/moth.desktop %%DATADIR%%/layouts/moth.layout %%DATADIR%%/layouts/order.desktop %%DATADIR%%/layouts/order.layout %%DATADIR%%/layouts/pattern.desktop %%DATADIR%%/layouts/pattern.layout %%DATADIR%%/layouts/penta.desktop %%DATADIR%%/layouts/penta.layout %%DATADIR%%/layouts/pillars.desktop %%DATADIR%%/layouts/pillars.layout %%DATADIR%%/layouts/pirates.desktop %%DATADIR%%/layouts/pirates.layout %%DATADIR%%/layouts/pyramid.desktop %%DATADIR%%/layouts/pyramid.layout %%DATADIR%%/layouts/rocket.desktop %%DATADIR%%/layouts/rocket.layout %%DATADIR%%/layouts/shield.desktop %%DATADIR%%/layouts/shield.layout %%DATADIR%%/layouts/spider.desktop %%DATADIR%%/layouts/spider.layout %%DATADIR%%/layouts/squares.desktop %%DATADIR%%/layouts/squares.layout %%DATADIR%%/layouts/squaring.desktop %%DATADIR%%/layouts/squaring.layout %%DATADIR%%/layouts/stadion.desktop %%DATADIR%%/layouts/stadion.layout %%DATADIR%%/layouts/stairs.desktop %%DATADIR%%/layouts/stairs.layout %%DATADIR%%/layouts/star.desktop %%DATADIR%%/layouts/star.layout %%DATADIR%%/layouts/star_ship.desktop %%DATADIR%%/layouts/star_ship.layout %%DATADIR%%/layouts/stax.desktop %%DATADIR%%/layouts/stax.layout %%DATADIR%%/layouts/swirl.desktop %%DATADIR%%/layouts/swirl.layout %%DATADIR%%/layouts/temple.desktop %%DATADIR%%/layouts/temple.layout %%DATADIR%%/layouts/the_door.desktop %%DATADIR%%/layouts/the_door.layout %%DATADIR%%/layouts/theatre.desktop %%DATADIR%%/layouts/theatre.layout %%DATADIR%%/layouts/time_tunnel.desktop %%DATADIR%%/layouts/time_tunnel.layout %%DATADIR%%/layouts/tomb.desktop %%DATADIR%%/layouts/tomb.layout %%DATADIR%%/layouts/totem.desktop %%DATADIR%%/layouts/totem.layout %%DATADIR%%/layouts/tower.desktop %%DATADIR%%/layouts/tower.layout %%DATADIR%%/layouts/triangle.desktop %%DATADIR%%/layouts/triangle.layout %%DATADIR%%/layouts/up&down.desktop %%DATADIR%%/layouts/up&down.layout %%DATADIR%%/layouts/well.desktop %%DATADIR%%/layouts/well.layout share/kxmlgui5/kmahjongg/kmahjonggui.rc share/locale/ar/LC_MESSAGES/kmahjongg.mo share/locale/bg/LC_MESSAGES/kmahjongg.mo share/locale/bs/LC_MESSAGES/kmahjongg.mo share/locale/ca/LC_MESSAGES/kmahjongg.mo share/locale/ca@valencia/LC_MESSAGES/kmahjongg.mo share/locale/cs/LC_MESSAGES/kmahjongg.mo share/locale/da/LC_MESSAGES/kmahjongg.mo share/locale/de/LC_MESSAGES/kmahjongg.mo share/locale/el/LC_MESSAGES/kmahjongg.mo share/locale/en_GB/LC_MESSAGES/kmahjongg.mo share/locale/eo/LC_MESSAGES/kmahjongg.mo share/locale/es/LC_MESSAGES/kmahjongg.mo share/locale/et/LC_MESSAGES/kmahjongg.mo share/locale/eu/LC_MESSAGES/kmahjongg.mo share/locale/fa/LC_MESSAGES/kmahjongg.mo share/locale/fi/LC_MESSAGES/kmahjongg.mo share/locale/fr/LC_MESSAGES/kmahjongg.mo share/locale/ga/LC_MESSAGES/kmahjongg.mo share/locale/gl/LC_MESSAGES/kmahjongg.mo share/locale/he/LC_MESSAGES/kmahjongg.mo share/locale/hi/LC_MESSAGES/kmahjongg.mo share/locale/hr/LC_MESSAGES/kmahjongg.mo share/locale/hu/LC_MESSAGES/kmahjongg.mo share/locale/id/LC_MESSAGES/kmahjongg.mo share/locale/is/LC_MESSAGES/kmahjongg.mo share/locale/it/LC_MESSAGES/kmahjongg.mo share/locale/ja/LC_MESSAGES/kmahjongg.mo share/locale/kk/LC_MESSAGES/kmahjongg.mo share/locale/km/LC_MESSAGES/kmahjongg.mo share/locale/ko/LC_MESSAGES/kmahjongg.mo share/locale/lt/LC_MESSAGES/kmahjongg.mo share/locale/lv/LC_MESSAGES/kmahjongg.mo share/locale/mr/LC_MESSAGES/kmahjongg.mo share/locale/nb/LC_MESSAGES/kmahjongg.mo share/locale/nds/LC_MESSAGES/kmahjongg.mo share/locale/nl/LC_MESSAGES/kmahjongg.mo share/locale/nn/LC_MESSAGES/kmahjongg.mo share/locale/pa/LC_MESSAGES/kmahjongg.mo share/locale/pl/LC_MESSAGES/kmahjongg.mo share/locale/pt/LC_MESSAGES/kmahjongg.mo share/locale/pt_BR/LC_MESSAGES/kmahjongg.mo share/locale/ro/LC_MESSAGES/kmahjongg.mo share/locale/ru/LC_MESSAGES/kmahjongg.mo share/locale/sk/LC_MESSAGES/kmahjongg.mo share/locale/sl/LC_MESSAGES/kmahjongg.mo share/locale/sr/LC_MESSAGES/kmahjongg.mo share/locale/sv/LC_MESSAGES/kmahjongg.mo share/locale/tr/LC_MESSAGES/kmahjongg.mo share/locale/ug/LC_MESSAGES/kmahjongg.mo share/locale/uk/LC_MESSAGES/kmahjongg.mo share/locale/wa/LC_MESSAGES/kmahjongg.mo share/locale/zh_CN/LC_MESSAGES/kmahjongg.mo share/locale/zh_TW/LC_MESSAGES/kmahjongg.mo share/metainfo/org.kde.kmahjongg.appdata.xml Index: head/games/kmines/distinfo =================================================================== --- head/games/kmines/distinfo (revision 499276) +++ head/games/kmines/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551811030 -SHA256 (KDE/applications/18.12.3/kmines-18.12.3.tar.xz) = 40c16b57614098555c32252c75e3890922b62d7005b9059f6ae92e11c96d980f -SIZE (KDE/applications/18.12.3/kmines-18.12.3.tar.xz) = 901312 +TIMESTAMP = 1555094814 +SHA256 (KDE/applications/19.04.0/kmines-19.04.0.tar.xz) = 56452ab18c74f2863efc99200a5facd53827382c06fc8534d095bffaca497566 +SIZE (KDE/applications/19.04.0/kmines-19.04.0.tar.xz) = 904216 Index: head/games/knavalbattle/distinfo =================================================================== --- head/games/knavalbattle/distinfo (revision 499276) +++ head/games/knavalbattle/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551811068 -SHA256 (KDE/applications/18.12.3/knavalbattle-18.12.3.tar.xz) = bce9294830a55e96b234c93fa20eb7d7ae963223e724ab0211ec472c79d35fa3 -SIZE (KDE/applications/18.12.3/knavalbattle-18.12.3.tar.xz) = 1280596 +TIMESTAMP = 1555094814 +SHA256 (KDE/applications/19.04.0/knavalbattle-19.04.0.tar.xz) = 1e6fbd202092230017c268cd825438debf766e3cc810244b63dc8690b5a69585 +SIZE (KDE/applications/19.04.0/knavalbattle-19.04.0.tar.xz) = 1280608 Index: head/games/knetwalk/distinfo =================================================================== --- head/games/knetwalk/distinfo (revision 499276) +++ head/games/knetwalk/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551811074 -SHA256 (KDE/applications/18.12.3/knetwalk-18.12.3.tar.xz) = 75ed9859ebb0c40d4efadaf1724b50c1a0436a5d3cd7cb540031cf5535794e3f -SIZE (KDE/applications/18.12.3/knetwalk-18.12.3.tar.xz) = 1036516 +TIMESTAMP = 1555094814 +SHA256 (KDE/applications/19.04.0/knetwalk-19.04.0.tar.xz) = 84b03a6b7c3ff6634402b016089a54ed0116ace221fdfb04ad3d2a8997f68b4b +SIZE (KDE/applications/19.04.0/knetwalk-19.04.0.tar.xz) = 1037856 Index: head/games/knetwalk/pkg-plist =================================================================== --- head/games/knetwalk/pkg-plist (revision 499276) +++ head/games/knetwalk/pkg-plist (revision 499277) @@ -1,75 +1,76 @@ bin/knetwalk share/applications/org.kde.knetwalk.desktop share/icons/hicolor/128x128/apps/knetwalk.png share/icons/hicolor/16x16/apps/knetwalk.png share/icons/hicolor/22x22/apps/knetwalk.png share/icons/hicolor/32x32/apps/knetwalk.png share/icons/hicolor/48x48/apps/knetwalk.png share/icons/hicolor/64x64/apps/knetwalk.png %%DATADIR%%/qml/Cable.qml %%DATADIR%%/qml/CanvasItem.qml %%DATADIR%%/qml/Cell.qml %%DATADIR%%/qml/logic.js %%DATADIR%%/qml/main.qml %%DATADIR%%/sounds/click.wav %%DATADIR%%/sounds/connect.wav %%DATADIR%%/sounds/start.wav %%DATADIR%%/sounds/turn.wav %%DATADIR%%/sounds/win.wav %%DATADIR%%/themes/default.desktop %%DATADIR%%/themes/default.svgz %%DATADIR%%/themes/default_preview.png %%DATADIR%%/themes/electronic.desktop %%DATADIR%%/themes/electronic.svgz %%DATADIR%%/themes/electronic_preview.png share/locale/ar/LC_MESSAGES/knetwalk.mo share/locale/bg/LC_MESSAGES/knetwalk.mo share/locale/bs/LC_MESSAGES/knetwalk.mo share/locale/ca/LC_MESSAGES/knetwalk.mo share/locale/ca@valencia/LC_MESSAGES/knetwalk.mo share/locale/cs/LC_MESSAGES/knetwalk.mo share/locale/da/LC_MESSAGES/knetwalk.mo share/locale/de/LC_MESSAGES/knetwalk.mo share/locale/el/LC_MESSAGES/knetwalk.mo share/locale/en_GB/LC_MESSAGES/knetwalk.mo share/locale/eo/LC_MESSAGES/knetwalk.mo share/locale/es/LC_MESSAGES/knetwalk.mo share/locale/et/LC_MESSAGES/knetwalk.mo share/locale/eu/LC_MESSAGES/knetwalk.mo share/locale/fa/LC_MESSAGES/knetwalk.mo share/locale/fi/LC_MESSAGES/knetwalk.mo share/locale/fr/LC_MESSAGES/knetwalk.mo share/locale/ga/LC_MESSAGES/knetwalk.mo share/locale/gl/LC_MESSAGES/knetwalk.mo share/locale/he/LC_MESSAGES/knetwalk.mo share/locale/hi/LC_MESSAGES/knetwalk.mo share/locale/hr/LC_MESSAGES/knetwalk.mo share/locale/hu/LC_MESSAGES/knetwalk.mo share/locale/is/LC_MESSAGES/knetwalk.mo share/locale/it/LC_MESSAGES/knetwalk.mo share/locale/ja/LC_MESSAGES/knetwalk.mo share/locale/kk/LC_MESSAGES/knetwalk.mo share/locale/km/LC_MESSAGES/knetwalk.mo share/locale/ko/LC_MESSAGES/knetwalk.mo share/locale/lt/LC_MESSAGES/knetwalk.mo share/locale/lv/LC_MESSAGES/knetwalk.mo share/locale/mr/LC_MESSAGES/knetwalk.mo share/locale/nb/LC_MESSAGES/knetwalk.mo share/locale/nds/LC_MESSAGES/knetwalk.mo share/locale/nl/LC_MESSAGES/knetwalk.mo share/locale/nn/LC_MESSAGES/knetwalk.mo share/locale/pa/LC_MESSAGES/knetwalk.mo share/locale/pl/LC_MESSAGES/knetwalk.mo share/locale/pt/LC_MESSAGES/knetwalk.mo share/locale/pt_BR/LC_MESSAGES/knetwalk.mo share/locale/ro/LC_MESSAGES/knetwalk.mo share/locale/ru/LC_MESSAGES/knetwalk.mo share/locale/sk/LC_MESSAGES/knetwalk.mo share/locale/sl/LC_MESSAGES/knetwalk.mo share/locale/sr/LC_MESSAGES/knetwalk.mo share/locale/sv/LC_MESSAGES/knetwalk.mo share/locale/tr/LC_MESSAGES/knetwalk.mo share/locale/ug/LC_MESSAGES/knetwalk.mo share/locale/uk/LC_MESSAGES/knetwalk.mo share/locale/zh_CN/LC_MESSAGES/knetwalk.mo share/locale/zh_TW/LC_MESSAGES/knetwalk.mo +share/metainfo/org.kde.knetwalk.appdata.xml Index: head/games/knights/distinfo =================================================================== --- head/games/knights/distinfo (revision 499276) +++ head/games/knights/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551811042 -SHA256 (KDE/applications/18.12.3/knights-18.12.3.tar.xz) = 9472ffa7800bd79a84dd0c36e3058d3f6e0813b5695aeffeb73bccb801870990 -SIZE (KDE/applications/18.12.3/knights-18.12.3.tar.xz) = 3508860 +TIMESTAMP = 1555094815 +SHA256 (KDE/applications/19.04.0/knights-19.04.0.tar.xz) = 53eb3214550fc104755ffe076c970cf5499c9553b543d83df42a3b5f5d8d309a +SIZE (KDE/applications/19.04.0/knights-19.04.0.tar.xz) = 3509000 Index: head/games/kolf/Makefile =================================================================== --- head/games/kolf/Makefile (revision 499276) +++ head/games/kolf/Makefile (revision 499277) @@ -1,26 +1,25 @@ # $FreeBSD$ PORTNAME= kolf DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= games kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= ${${PORTNAME}_DESC} USES= cmake compiler:c++11-lang kde:5 qt:5 tar:xz USE_KDE= auth bookmarks codecs completion config configwidgets \ coreaddons crash dbusaddons ecm guiaddons i18n iconthemes \ itemviews jobwidgets kdelibs4support kio libkdegames \ notifications parts service solid sonnet textwidgets \ unitconversion widgetsaddons windowsystem xmlgui USE_QT= core dbus declarative gui network phonon4 printsupport \ widgets xml \ buildtools_build qmake_build USE_LDCONFIG= yes OPTIONS_DEFINE= DOCS .include <${.CURDIR}/../kdegames/Makefile.common> .include Index: head/games/kolf/distinfo =================================================================== --- head/games/kolf/distinfo (revision 499276) +++ head/games/kolf/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551811057 -SHA256 (KDE/applications/18.12.3/kolf-18.12.3.tar.xz) = 330cd299702e282a8b248b81cd50ee7ff60a6f512967029730ab87bedb69652f -SIZE (KDE/applications/18.12.3/kolf-18.12.3.tar.xz) = 925428 +TIMESTAMP = 1555094815 +SHA256 (KDE/applications/19.04.0/kolf-19.04.0.tar.xz) = 431b31dc6290214be5f5df1d3c6a8eb4a910b4f72135840d4ec3fa6945319c81 +SIZE (KDE/applications/19.04.0/kolf-19.04.0.tar.xz) = 1023072 Index: head/games/kolf/pkg-plist =================================================================== --- head/games/kolf/pkg-plist (revision 499276) +++ head/games/kolf/pkg-plist (revision 499277) @@ -1,81 +1,84 @@ bin/kolf lib/libkolfprivate.so.5.0.0 share/applications/org.kde.kolf.desktop share/icons/hicolor/128x128/apps/kolf.png share/icons/hicolor/16x16/apps/kolf.png share/icons/hicolor/22x22/apps/kolf.png share/icons/hicolor/32x32/apps/kolf.png share/icons/hicolor/48x48/apps/kolf.png share/icons/hicolor/64x64/apps/kolf.png +share/icons/hicolor/scalable/apps/kolf.svgz %%DATADIR%%/courses/Classic.kolf %%DATADIR%%/courses/Easy.kolf %%DATADIR%%/courses/Hard.kolf %%DATADIR%%/courses/Impossible %%DATADIR%%/courses/Medium.kolf %%DATADIR%%/courses/Practice %%DATADIR%%/courses/ReallyEasy %%DATADIR%%/courses/USApro %%DATADIR%%/intro %%DATADIR%%/pics/default_theme.svgz %%DATADIR%%/sounds/blackhole.wav %%DATADIR%%/sounds/blackholeeject.wav %%DATADIR%%/sounds/blackholeputin.wav +%%DATADIR%%/sounds/bumper.wav %%DATADIR%%/sounds/hit.wav %%DATADIR%%/sounds/holed.wav %%DATADIR%%/sounds/holeinone.wav %%DATADIR%%/sounds/puddle.wav %%DATADIR%%/sounds/wall.wav +%%DATADIR%%/sounds/woohoo.wav %%DATADIR%%/tutorial.kolf %%DATADIR%%/tutorial.kolfgame share/kxmlgui5/kolf/kolfui.rc share/locale/ar/LC_MESSAGES/kolf.mo share/locale/bg/LC_MESSAGES/kolf.mo share/locale/bs/LC_MESSAGES/kolf.mo share/locale/ca/LC_MESSAGES/kolf.mo share/locale/ca@valencia/LC_MESSAGES/kolf.mo share/locale/cs/LC_MESSAGES/kolf.mo share/locale/da/LC_MESSAGES/kolf.mo share/locale/de/LC_MESSAGES/kolf.mo share/locale/el/LC_MESSAGES/kolf.mo share/locale/en_GB/LC_MESSAGES/kolf.mo share/locale/eo/LC_MESSAGES/kolf.mo share/locale/es/LC_MESSAGES/kolf.mo share/locale/et/LC_MESSAGES/kolf.mo share/locale/eu/LC_MESSAGES/kolf.mo share/locale/fa/LC_MESSAGES/kolf.mo share/locale/fi/LC_MESSAGES/kolf.mo share/locale/fr/LC_MESSAGES/kolf.mo share/locale/ga/LC_MESSAGES/kolf.mo share/locale/gl/LC_MESSAGES/kolf.mo share/locale/he/LC_MESSAGES/kolf.mo share/locale/hi/LC_MESSAGES/kolf.mo share/locale/hr/LC_MESSAGES/kolf.mo share/locale/hu/LC_MESSAGES/kolf.mo share/locale/is/LC_MESSAGES/kolf.mo share/locale/it/LC_MESSAGES/kolf.mo share/locale/ja/LC_MESSAGES/kolf.mo share/locale/kk/LC_MESSAGES/kolf.mo share/locale/km/LC_MESSAGES/kolf.mo share/locale/lt/LC_MESSAGES/kolf.mo share/locale/lv/LC_MESSAGES/kolf.mo share/locale/mr/LC_MESSAGES/kolf.mo share/locale/nb/LC_MESSAGES/kolf.mo share/locale/nds/LC_MESSAGES/kolf.mo share/locale/nl/LC_MESSAGES/kolf.mo share/locale/nn/LC_MESSAGES/kolf.mo share/locale/pa/LC_MESSAGES/kolf.mo share/locale/pl/LC_MESSAGES/kolf.mo share/locale/pt/LC_MESSAGES/kolf.mo share/locale/pt_BR/LC_MESSAGES/kolf.mo share/locale/ro/LC_MESSAGES/kolf.mo share/locale/ru/LC_MESSAGES/kolf.mo share/locale/sk/LC_MESSAGES/kolf.mo share/locale/sl/LC_MESSAGES/kolf.mo share/locale/sr/LC_MESSAGES/kolf.mo share/locale/sv/LC_MESSAGES/kolf.mo share/locale/tr/LC_MESSAGES/kolf.mo share/locale/ug/LC_MESSAGES/kolf.mo share/locale/uk/LC_MESSAGES/kolf.mo share/locale/zh_CN/LC_MESSAGES/kolf.mo share/locale/zh_TW/LC_MESSAGES/kolf.mo share/metainfo/org.kde.kolf.appdata.xml Index: head/games/kollision/Makefile =================================================================== --- head/games/kollision/Makefile (revision 499276) +++ head/games/kollision/Makefile (revision 499277) @@ -1,21 +1,20 @@ # $FreeBSD$ PORTNAME= kollision DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= games kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= ${${PORTNAME}_DESC} USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs config configwidgets coreaddons crash dbusaddons \ ecm i18n kio libkdegames newstuff notifyconfig textwidgets \ widgetsaddons xmlgui USE_QT= core dbus declarative gui network phonon4 svg widgets xml \ buildtools_build qmake_build OPTIONS_DEFINE= DOCS .include <${.CURDIR}/../kdegames/Makefile.common> .include Index: head/games/kollision/distinfo =================================================================== --- head/games/kollision/distinfo (revision 499276) +++ head/games/kollision/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551811072 -SHA256 (KDE/applications/18.12.3/kollision-18.12.3.tar.xz) = 17376f73da0ea5e05998a4f9f0ccb6c0e41461007b8815637ac1980673e9a856 -SIZE (KDE/applications/18.12.3/kollision-18.12.3.tar.xz) = 280760 +TIMESTAMP = 1555094815 +SHA256 (KDE/applications/19.04.0/kollision-19.04.0.tar.xz) = f218ef5691235155911b4d03cd301ee6caa0bde6eb324cd55117e722002b0927 +SIZE (KDE/applications/19.04.0/kollision-19.04.0.tar.xz) = 280852 Index: head/games/konquest/distinfo =================================================================== --- head/games/konquest/distinfo (revision 499276) +++ head/games/konquest/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551811057 -SHA256 (KDE/applications/18.12.3/konquest-18.12.3.tar.xz) = 3698253f8e873819680ed99f377a679bacf5351f3fadc92c07fbaa0f6b269172 -SIZE (KDE/applications/18.12.3/konquest-18.12.3.tar.xz) = 658560 +TIMESTAMP = 1555094816 +SHA256 (KDE/applications/19.04.0/konquest-19.04.0.tar.xz) = 5361a865fefc0dac19e166d282188b732cfbe4389afe095c38c8d30b56f7ff6f +SIZE (KDE/applications/19.04.0/konquest-19.04.0.tar.xz) = 658504 Index: head/games/kpat/Makefile =================================================================== --- head/games/kpat/Makefile (revision 499276) +++ head/games/kpat/Makefile (revision 499277) @@ -1,25 +1,24 @@ # $FreeBSD$ PORTNAME= kpat DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= games kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= ${${PORTNAME}_DESC} LIB_DEPENDS= libfreecell-solver.so:games/freecell-solver USES= cmake compiler:c++11-lang gettext kde:5 pkgconfig \ qt:5 shared-mime-info tar:xz USE_KDE= attica auth codecs completion config configwidgets coreaddons \ crash dbusaddons ecm guiaddons i18n iconthemes itemviews \ kdeclarative kio libkdegames newstuff notifyconfig service \ textwidgets widgetsaddons xmlgui USE_QT= core dbus declarative gui network phonon4 svg widgets xml \ buildtools_build qmake_build OPTIONS_DEFINE= DOCS .include <${.CURDIR}/../kdegames/Makefile.common> .include Index: head/games/kpat/distinfo =================================================================== --- head/games/kpat/distinfo (revision 499276) +++ head/games/kpat/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551811057 -SHA256 (KDE/applications/18.12.3/kpat-18.12.3.tar.xz) = 62c31d6f7a9bb49c09725722bea472811d897b149e29558ca6e248b5d2a41377 -SIZE (KDE/applications/18.12.3/kpat-18.12.3.tar.xz) = 3572544 +TIMESTAMP = 1555094816 +SHA256 (KDE/applications/19.04.0/kpat-19.04.0.tar.xz) = bcd295a3df422b5cfa8258bb3cd0be7e4405f44604681d98589f2982c44414a1 +SIZE (KDE/applications/19.04.0/kpat-19.04.0.tar.xz) = 3574476 Index: head/games/kreversi/distinfo =================================================================== --- head/games/kreversi/distinfo (revision 499276) +++ head/games/kreversi/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551811070 -SHA256 (KDE/applications/18.12.3/kreversi-18.12.3.tar.xz) = 818ef2ded02caacf2ccf3c012e992070c3b898db319682e8a42cf5726d56b3fc -SIZE (KDE/applications/18.12.3/kreversi-18.12.3.tar.xz) = 943184 +TIMESTAMP = 1555094816 +SHA256 (KDE/applications/19.04.0/kreversi-19.04.0.tar.xz) = a715d068eaf381a26e1f432f2d6b3f3ffffb388282b484cd8ad0833acf429d82 +SIZE (KDE/applications/19.04.0/kreversi-19.04.0.tar.xz) = 943104 Index: head/games/kshisen/distinfo =================================================================== --- head/games/kshisen/distinfo (revision 499276) +++ head/games/kshisen/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551811043 -SHA256 (KDE/applications/18.12.3/kshisen-18.12.3.tar.xz) = 00c5de16c335262287bab37b07822b6fd2997abcec25a0ad0a7d1ece6769060f -SIZE (KDE/applications/18.12.3/kshisen-18.12.3.tar.xz) = 821168 +TIMESTAMP = 1555094817 +SHA256 (KDE/applications/19.04.0/kshisen-19.04.0.tar.xz) = c7d2799105c71d5d0077383c9b24a52ae85705c39977c8dc167a2594651c17eb +SIZE (KDE/applications/19.04.0/kshisen-19.04.0.tar.xz) = 821292 Index: head/games/ksirk/Makefile =================================================================== --- head/games/ksirk/Makefile (revision 499276) +++ head/games/ksirk/Makefile (revision 499277) @@ -1,24 +1,23 @@ # $FreeBSD$ PORTNAME= ksirk DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 2 CATEGORIES= games kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= ${${PORTNAME}_DESC} LIB_DEPENDS= libqca-qt5.so:devel/qca USES= cmake compiler:c++11-lang kde:5 qt:5 tar:xz USE_KDE= attica auth codecs completion config configwidgets \ coreaddons crash i18n iconthemes kio libkdegames newstuff \ service wallet widgetsaddons xmlgui USE_QT= core dbus declarative gui network phonon4 svg widgets xml \ buildtools_build qmake_build USE_LDCONFIG= yes OPTIONS_DEFINE= DOCS .include <${.CURDIR}/../kdegames/Makefile.common> .include Index: head/games/ksirk/distinfo =================================================================== --- head/games/ksirk/distinfo (revision 499276) +++ head/games/ksirk/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551811071 -SHA256 (KDE/applications/18.12.3/ksirk-18.12.3.tar.xz) = cb8f3cc98fe861b0f4ebff77aeeffa12905b98b6db0c8800525f4fb052be4e7a -SIZE (KDE/applications/18.12.3/ksirk-18.12.3.tar.xz) = 6987812 +TIMESTAMP = 1555094817 +SHA256 (KDE/applications/19.04.0/ksirk-19.04.0.tar.xz) = 3dcd578050807aa37652e5e589ddff7a5aec46c82309db85aab588bd3060d5a0 +SIZE (KDE/applications/19.04.0/ksirk-19.04.0.tar.xz) = 6989220 Index: head/games/ksnakeduel/distinfo =================================================================== --- head/games/ksnakeduel/distinfo (revision 499276) +++ head/games/ksnakeduel/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551811072 -SHA256 (KDE/applications/18.12.3/ksnakeduel-18.12.3.tar.xz) = 5d55e4c11baecbd77b94dd004b490a7f73870a383e0bf3ad0381f22d36a27a36 -SIZE (KDE/applications/18.12.3/ksnakeduel-18.12.3.tar.xz) = 604888 +TIMESTAMP = 1555094817 +SHA256 (KDE/applications/19.04.0/ksnakeduel-19.04.0.tar.xz) = e9ca727c7e7cef21e9bedbb1504b2023baac9ab5ba0b624dc91e1bf716eb8335 +SIZE (KDE/applications/19.04.0/ksnakeduel-19.04.0.tar.xz) = 605036 Index: head/games/kspaceduel/distinfo =================================================================== --- head/games/kspaceduel/distinfo (revision 499276) +++ head/games/kspaceduel/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551811056 -SHA256 (KDE/applications/18.12.3/kspaceduel-18.12.3.tar.xz) = f40d0a7c578f461875efaf9e25d2b061486a21f750ce8bc922db4aed6fed1f11 -SIZE (KDE/applications/18.12.3/kspaceduel-18.12.3.tar.xz) = 610672 +TIMESTAMP = 1555094818 +SHA256 (KDE/applications/19.04.0/kspaceduel-19.04.0.tar.xz) = 486b8d84f3070b7795456ec5847d7b5a9bb3c2b5d3e1c4bcdfedff18b8d735a7 +SIZE (KDE/applications/19.04.0/kspaceduel-19.04.0.tar.xz) = 610640 Index: head/games/ksquares/distinfo =================================================================== --- head/games/ksquares/distinfo (revision 499276) +++ head/games/ksquares/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551811031 -SHA256 (KDE/applications/18.12.3/ksquares-18.12.3.tar.xz) = 82a90b7fe5ca8e46950a0de1742783c522fcd85bbc3aabe5955834865bc36b7d -SIZE (KDE/applications/18.12.3/ksquares-18.12.3.tar.xz) = 259604 +TIMESTAMP = 1555094818 +SHA256 (KDE/applications/19.04.0/ksquares-19.04.0.tar.xz) = c5a7dc34619f1ee4d621c3371b65bdcd46cf3433c183b4bc85c8a7586b6e85b4 +SIZE (KDE/applications/19.04.0/ksquares-19.04.0.tar.xz) = 259712 Index: head/games/ksudoku/distinfo =================================================================== --- head/games/ksudoku/distinfo (revision 499276) +++ head/games/ksudoku/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551811056 -SHA256 (KDE/applications/18.12.3/ksudoku-18.12.3.tar.xz) = 4a44248f2bde9c66c911fe7ed7bd54e31956053dac18e29217a355ad2b3a05e1 -SIZE (KDE/applications/18.12.3/ksudoku-18.12.3.tar.xz) = 1646136 +TIMESTAMP = 1555094828 +SHA256 (KDE/applications/19.04.0/ksudoku-19.04.0.tar.xz) = 4f5cff274741326bff02108fef4996f289c56ff026fd6e2921e4a2bf492a14cb +SIZE (KDE/applications/19.04.0/ksudoku-19.04.0.tar.xz) = 1646724 Index: head/games/ktuberling/Makefile =================================================================== --- head/games/ktuberling/Makefile (revision 499276) +++ head/games/ktuberling/Makefile (revision 499277) @@ -1,25 +1,24 @@ # $FreeBSD$ PORTNAME= ktuberling DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= games kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= ${${PORTNAME}_DESC} USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= auth bookmarks codecs completion config configwidgets \ coreaddons crash dbusaddons ecm emoticons guiaddons i18n \ iconthemes init itemmodels itemviews jobwidgets \ kdelibs4support kio libkdegames newstuff notifications \ notifyconfig parts service solid sonnet textwidgets \ unitconversion widgetsaddons windowsystem xmlgui USE_QT= core dbus declarative gui multimedia network phonon4 printsupport \ svg testlib widgets xml \ buildtools_build qmake_build OPTIONS_DEFINE= DOCS .include <${.CURDIR}/../kdegames/Makefile.common> .include Index: head/games/ktuberling/distinfo =================================================================== --- head/games/ktuberling/distinfo (revision 499276) +++ head/games/ktuberling/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551811043 -SHA256 (KDE/applications/18.12.3/ktuberling-18.12.3.tar.xz) = b69815f3553f843c30ab9d026ca7da97e62e66b58851111d1e4d29e57d67bd04 -SIZE (KDE/applications/18.12.3/ktuberling-18.12.3.tar.xz) = 32798716 +TIMESTAMP = 1555094829 +SHA256 (KDE/applications/19.04.0/ktuberling-19.04.0.tar.xz) = 984c29562bd20f93117e7d79aa120dd906e6d4490ae5d2b52ad03f7bbfb85ace +SIZE (KDE/applications/19.04.0/ktuberling-19.04.0.tar.xz) = 32630400 Index: head/games/kubrick/distinfo =================================================================== --- head/games/kubrick/distinfo (revision 499276) +++ head/games/kubrick/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551811068 -SHA256 (KDE/applications/18.12.3/kubrick-18.12.3.tar.xz) = 0deb9022a028a6c068203e5bf20820b5561c92b5117735e8a58f212c2ba460e3 -SIZE (KDE/applications/18.12.3/kubrick-18.12.3.tar.xz) = 311300 +TIMESTAMP = 1555094839 +SHA256 (KDE/applications/19.04.0/kubrick-19.04.0.tar.xz) = 72adc4e07df6062dd444c4bb9571429acf9c2ee68e273bc42c7925b1c06aad5e +SIZE (KDE/applications/19.04.0/kubrick-19.04.0.tar.xz) = 311376 Index: head/games/libkdegames/distinfo =================================================================== --- head/games/libkdegames/distinfo (revision 499276) +++ head/games/libkdegames/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551811045 -SHA256 (KDE/applications/18.12.3/libkdegames-18.12.3.tar.xz) = 7c833fe476043f0492a09a52af60ee7652805cccbbb72e5f473a9d35abff9ed9 -SIZE (KDE/applications/18.12.3/libkdegames-18.12.3.tar.xz) = 6381772 +TIMESTAMP = 1555094840 +SHA256 (KDE/applications/19.04.0/libkdegames-19.04.0.tar.xz) = 2965e4a313609f6408becb13e54e26bfe14b37b58e7737e051129896f6e8bcd3 +SIZE (KDE/applications/19.04.0/libkdegames-19.04.0.tar.xz) = 6382296 Index: head/games/libkmahjongg/distinfo =================================================================== --- head/games/libkmahjongg/distinfo (revision 499276) +++ head/games/libkmahjongg/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551811074 -SHA256 (KDE/applications/18.12.3/libkmahjongg-18.12.3.tar.xz) = 25e5cea50b6c96f18efa8d013ab58abfaac7845edb969b8e63e0c297482a6be4 -SIZE (KDE/applications/18.12.3/libkmahjongg-18.12.3.tar.xz) = 1683820 +TIMESTAMP = 1555094840 +SHA256 (KDE/applications/19.04.0/libkmahjongg-19.04.0.tar.xz) = 1ab4461ba92de0cc56bd349a859d5c647f816b20923692237e7f3098ba9dd76e +SIZE (KDE/applications/19.04.0/libkmahjongg-19.04.0.tar.xz) = 1683724 Index: head/games/lskat/distinfo =================================================================== --- head/games/lskat/distinfo (revision 499276) +++ head/games/lskat/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551811072 -SHA256 (KDE/applications/18.12.3/lskat-18.12.3.tar.xz) = d81d3af26b9f23abc40f1e2f97410d662c11d4641b67c32d427846a561f0b1e2 -SIZE (KDE/applications/18.12.3/lskat-18.12.3.tar.xz) = 1217968 +TIMESTAMP = 1555094840 +SHA256 (KDE/applications/19.04.0/lskat-19.04.0.tar.xz) = c3358e62eb8a0c428c32f1ac759f5ead15d4ab552b1ae5b273e6927d14bb0ad1 +SIZE (KDE/applications/19.04.0/lskat-19.04.0.tar.xz) = 1218076 Index: head/games/palapeli/distinfo =================================================================== --- head/games/palapeli/distinfo (revision 499276) +++ head/games/palapeli/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551811044 -SHA256 (KDE/applications/18.12.3/palapeli-18.12.3.tar.xz) = b28fa1cf7a763125a09baa8f4e7562e17892475444d3907e566281328502e593 -SIZE (KDE/applications/18.12.3/palapeli-18.12.3.tar.xz) = 2064976 +TIMESTAMP = 1555094841 +SHA256 (KDE/applications/19.04.0/palapeli-19.04.0.tar.xz) = 21f8b6b109d6cc61acbb0ee01aa31982bb6e27e8894e4f00407f52904d177a2b +SIZE (KDE/applications/19.04.0/palapeli-19.04.0.tar.xz) = 2065264 Index: head/games/palapeli/pkg-plist =================================================================== --- head/games/palapeli/pkg-plist (revision 499276) +++ head/games/palapeli/pkg-plist (revision 499277) @@ -1,107 +1,108 @@ bin/palapeli +etc/xdg/palapeli.categories etc/xdg/palapeli-collectionrc include/Pala/Slicer include/Pala/SlicerJob include/Pala/SlicerMode include/Pala/SlicerProperty include/Pala/SlicerPropertySet include/libpala/libpala_export.h include/libpala/slicer.h include/libpala/slicerjob.h include/libpala/slicermode.h include/libpala/slicerproperty.h include/libpala/slicerpropertyset.h lib/libpala.so lib/libpala.so.0 lib/libpala.so.0.2.0 lib/libpala/libpala-config.cmake lib/libpala/pala-targets-%%CMAKE_BUILD_TYPE%%.cmake lib/libpala/pala-targets.cmake %%QT_PLUGINDIR%%/palapeli_goldbergslicer.so %%QT_PLUGINDIR%%/palapeli_jigsawslicer.so %%QT_PLUGINDIR%%/palapeli_rectslicer.so %%QT_PLUGINDIR%%/palathumbcreator.so share/applications/org.kde.palapeli.desktop share/icons/hicolor/128x128/apps/palapeli.png share/icons/hicolor/128x128/mimetypes/application-x-palapeli.png share/icons/hicolor/16x16/apps/palapeli.png share/icons/hicolor/16x16/mimetypes/application-x-palapeli.png share/icons/hicolor/24x24/apps/palapeli.png share/icons/hicolor/24x24/mimetypes/application-x-palapeli.png share/icons/hicolor/32x32/apps/palapeli.png share/icons/hicolor/32x32/mimetypes/application-x-palapeli.png share/icons/hicolor/48x48/apps/palapeli.png share/icons/hicolor/48x48/mimetypes/application-x-palapeli.png share/icons/hicolor/64x64/apps/palapeli.png share/icons/hicolor/64x64/mimetypes/application-x-palapeli.png share/knotifications5/palapeli.notifyrc share/kservices5/ServiceMenus/palapeli_servicemenu.desktop share/kservices5/palapeli_goldbergslicer.desktop share/kservices5/palapeli_jigsawslicer.desktop share/kservices5/palapeli_rectslicer.desktop share/kservices5/palathumbcreator.desktop share/kservicetypes5/libpala-slicerplugin.desktop share/kxmlgui5/palapeli/palapeliui.rc share/locale/bs/LC_MESSAGES/palapeli.mo share/locale/ca/LC_MESSAGES/palapeli.mo share/locale/ca@valencia/LC_MESSAGES/palapeli.mo share/locale/cs/LC_MESSAGES/palapeli.mo share/locale/da/LC_MESSAGES/palapeli.mo share/locale/de/LC_MESSAGES/palapeli.mo share/locale/el/LC_MESSAGES/palapeli.mo share/locale/en_GB/LC_MESSAGES/palapeli.mo share/locale/eo/LC_MESSAGES/palapeli.mo share/locale/es/LC_MESSAGES/palapeli.mo share/locale/et/LC_MESSAGES/palapeli.mo share/locale/eu/LC_MESSAGES/palapeli.mo share/locale/fi/LC_MESSAGES/palapeli.mo share/locale/fr/LC_MESSAGES/palapeli.mo share/locale/ga/LC_MESSAGES/palapeli.mo share/locale/gl/LC_MESSAGES/palapeli.mo share/locale/hr/LC_MESSAGES/palapeli.mo share/locale/hu/LC_MESSAGES/palapeli.mo share/locale/is/LC_MESSAGES/palapeli.mo share/locale/it/LC_MESSAGES/palapeli.mo share/locale/ja/LC_MESSAGES/palapeli.mo share/locale/kk/LC_MESSAGES/palapeli.mo share/locale/km/LC_MESSAGES/palapeli.mo share/locale/lt/LC_MESSAGES/palapeli.mo share/locale/lv/LC_MESSAGES/palapeli.mo share/locale/mr/LC_MESSAGES/palapeli.mo share/locale/nb/LC_MESSAGES/palapeli.mo share/locale/nds/LC_MESSAGES/palapeli.mo share/locale/nl/LC_MESSAGES/palapeli.mo share/locale/nn/LC_MESSAGES/palapeli.mo share/locale/pl/LC_MESSAGES/palapeli.mo share/locale/pt/LC_MESSAGES/palapeli.mo share/locale/pt_BR/LC_MESSAGES/palapeli.mo share/locale/ro/LC_MESSAGES/palapeli.mo share/locale/ru/LC_MESSAGES/palapeli.mo share/locale/sk/LC_MESSAGES/palapeli.mo share/locale/sl/LC_MESSAGES/palapeli.mo share/locale/sr/LC_MESSAGES/palapeli.mo share/locale/sv/LC_MESSAGES/palapeli.mo share/locale/tr/LC_MESSAGES/palapeli.mo share/locale/ug/LC_MESSAGES/palapeli.mo share/locale/uk/LC_MESSAGES/palapeli.mo share/locale/zh_CN/LC_MESSAGES/palapeli.mo share/locale/zh_TW/LC_MESSAGES/palapeli.mo share/metainfo/org.kde.palapeli.appdata.xml share/mime/packages/palapeli-mimetypes.xml %%DATADIR%%/backgrounds/Eliminator-Funk-2.jpg %%DATADIR%%/backgrounds/Rear-Admiral-Diplomat-1.jpg %%DATADIR%%/backgrounds/Time-For-Lunch-2.jpg %%DATADIR%%/backgrounds/background.svg %%DATADIR%%/backgrounds/gon-defends-the-critters-1.jpg %%DATADIR%%/backgrounds/mahogany-handjob-1.jpg %%DATADIR%%/collection/castle-maintenon.desktop %%DATADIR%%/collection/castle-maintenon.jpg %%DATADIR%%/collection/cincinnati-bridge.desktop %%DATADIR%%/collection/cincinnati-bridge.jpg %%DATADIR%%/collection/citrus-fruits.desktop %%DATADIR%%/collection/citrus-fruits.jpg %%DATADIR%%/collection/european-honey-bee.desktop %%DATADIR%%/collection/european-honey-bee.jpg %%DATADIR%%/collection/panther-chameleon-female.desktop %%DATADIR%%/collection/panther-chameleon-female.jpg %%DATADIR%%/palapeli.kcfg Index: head/games/picmi/distinfo =================================================================== --- head/games/picmi/distinfo (revision 499276) +++ head/games/picmi/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551811057 -SHA256 (KDE/applications/18.12.3/picmi-18.12.3.tar.xz) = 0691c70d746aa9d444559970e002561a1123963d617b36ceef4a8c3ee4730f49 -SIZE (KDE/applications/18.12.3/picmi-18.12.3.tar.xz) = 1355988 +TIMESTAMP = 1555094841 +SHA256 (KDE/applications/19.04.0/picmi-19.04.0.tar.xz) = edb10bc29d6817dffeb51762c5fa793ee8de3b3a70c2c6616012f5a043799d86 +SIZE (KDE/applications/19.04.0/picmi-19.04.0.tar.xz) = 1356056 Index: head/graphics/gwenview/files/patch-git_61543b =================================================================== --- head/graphics/gwenview/files/patch-git_61543b (revision 499276) +++ head/graphics/gwenview/files/patch-git_61543b (nonexistent) @@ -1,474 +0,0 @@ -From 61543b42289fc986e580f2e3443719f3334f17b5 Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?Stefan=20Br=C3=BCns?= -Date: Sun, 30 Dec 2018 02:46:28 +0100 -Subject: [PATCH] Use forward declaration for Exiv2::Image, port to - std::unique_ptr - -Summary: -Instead of the Exiv2::Image::AutoPtr typedef just use a forward declaration -for Exiv2::Image, and use std::unique_ptr instead of std::auto_ptr. - -The forward declaration avoids pulling in Exiv2 declarations everywhere, -e.g. via document.h. - -Although it would be possible to use std::auto_ptr, unique_ptr is -preferable for two reasons: -- ownership transfer is explicit (std::move, release()/reset()) -- Exiv2 0.28 will use std::unique_ptr as well, i.e. the code is forward -compatible. - -Reviewers: #gwenview, cfeck, ngraham - -Reviewed By: #gwenview, ngraham - -Subscribers: lbeltrame, ngraham, asturmlechner, shubham - -Tags: #gwenview - -Differential Revision: https://phabricator.kde.org/D17872 ---- - lib/cms/cmsprofile.cpp | 3 +++ - lib/cms/cmsprofile.h | 8 +++++--- - lib/document/abstractdocumentimpl.cpp | 5 +++-- - lib/document/abstractdocumentimpl.h | 7 ++++++- - lib/document/document.cpp | 7 +++++-- - lib/document/document.h | 11 ++++++++--- - lib/document/document_p.h | 10 +++++++++- - lib/document/loadingdocumentimpl.cpp | 7 +++++-- - lib/exiv2imageloader.cpp | 13 ++++++------- - lib/exiv2imageloader.h | 11 ++++++++--- - lib/jpegcontent.cpp | 10 +++++----- - lib/timeutils.cpp | 8 +++++--- - tests/auto/cmsprofiletest.cpp | 4 ++-- - tests/auto/imagemetainfomodeltest.cpp | 9 +++++++-- - 14 files changed, 77 insertions(+), 36 deletions(-) - -diff --git a/lib/cms/cmsprofile.cpp b/lib/cms/cmsprofile.cpp -index 188b90a4..7d2b753e 100644 ---- lib/cms/cmsprofile.cpp -+++ lib/cms/cmsprofile.cpp -@@ -42,6 +42,9 @@ extern "C" { - // lcms - #include - -+// Exiv2 -+#include -+ - // X11 - #ifdef HAVE_X11 - #include -diff --git a/lib/cms/cmsprofile.h b/lib/cms/cmsprofile.h -index a2a38a87..06c7672d 100644 ---- lib/cms/cmsprofile.h -+++ lib/cms/cmsprofile.h -@@ -29,12 +29,14 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Cambridge, MA 02110-1301, USA - #include - #include - --// Exiv2 --#include -- - class QByteArray; - class QString; - -+namespace Exiv2 -+{ -+ class Image; -+} -+ - typedef void* cmsHPROFILE; - - namespace Gwenview -diff --git a/lib/document/abstractdocumentimpl.cpp b/lib/document/abstractdocumentimpl.cpp -index d841ae5f..d3d0002c 100644 ---- lib/document/abstractdocumentimpl.cpp -+++ lib/document/abstractdocumentimpl.cpp -@@ -21,6 +21,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - // Self - #include "abstractdocumentimpl.h" - -+#include - // Qt - - // KDE -@@ -77,9 +78,9 @@ void AbstractDocumentImpl::setDocumentKind(MimeTypeUtils::Kind kind) - d->mDocument->setKind(kind); - } - --void AbstractDocumentImpl::setDocumentExiv2Image(Exiv2::Image::AutoPtr image) -+void AbstractDocumentImpl::setDocumentExiv2Image(std::unique_ptr image) - { -- d->mDocument->setExiv2Image(image); -+ d->mDocument->setExiv2Image(std::move(image)); - } - - void AbstractDocumentImpl::setDocumentDownSampledImage(const QImage& image, int invertedZoom) -diff --git a/lib/document/abstractdocumentimpl.h b/lib/document/abstractdocumentimpl.h -index 1f427e60..86e6bfd2 100644 ---- lib/document/abstractdocumentimpl.h -+++ lib/document/abstractdocumentimpl.h -@@ -34,6 +34,11 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - class QImage; - class QRect; - -+namespace Exiv2 -+{ -+ class Image; -+} -+ - namespace Gwenview - { - -@@ -108,7 +113,7 @@ class AbstractDocumentImpl : public QObject - void setDocumentImageSize(const QSize& size); - void setDocumentKind(MimeTypeUtils::Kind); - void setDocumentFormat(const QByteArray& format); -- void setDocumentExiv2Image(Exiv2::Image::AutoPtr); -+ void setDocumentExiv2Image(std::unique_ptr); - void setDocumentDownSampledImage(const QImage&, int invertedZoom); - void setDocumentCmsProfile(Cms::Profile::Ptr profile); - void setDocumentErrorString(const QString&); -diff --git a/lib/document/document.cpp b/lib/document/document.cpp -index 18756700..afa9ed03 100644 ---- lib/document/document.cpp -+++ lib/document/document.cpp -@@ -31,6 +31,9 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - #include - #include - -+// Exiv2 -+#include -+ - // Local - #include "documentjob.h" - #include "emptydocumentimpl.h" -@@ -388,9 +391,9 @@ AbstractDocumentEditor* Document::editor() - return d->mImpl->editor(); - } - --void Document::setExiv2Image(Exiv2::Image::AutoPtr image) -+void Document::setExiv2Image(std::unique_ptr image) - { -- d->mExiv2Image = image; -+ d->mExiv2Image = std::move(image); - d->mImageMetaInfoModel.setExiv2Image(d->mExiv2Image.get()); - emit metaInfoUpdated(); - } -diff --git a/lib/document/document.h b/lib/document/document.h -index c0bb454b..4b40a6e1 100644 ---- lib/document/document.h -+++ lib/document/document.h -@@ -22,8 +22,8 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - - #include - --#include --#include -+// STL -+#include - - // Qt - #include -@@ -43,6 +43,11 @@ class QUndoStack; - class KJob; - class QUrl; - -+namespace Exiv2 -+{ -+ class Image; -+} -+ - namespace Gwenview - { - -@@ -235,7 +240,7 @@ private Q_SLOTS: - void setKind(MimeTypeUtils::Kind); - void setFormat(const QByteArray&); - void setSize(const QSize&); -- void setExiv2Image(Exiv2::Image::AutoPtr); -+ void setExiv2Image(std::unique_ptr); - void setDownSampledImage(const QImage&, int invertedZoom); - void switchToImpl(AbstractDocumentImpl* impl); - void setErrorString(const QString&); -diff --git a/lib/document/document_p.h b/lib/document/document_p.h -index 78e0ac6e..4de25f15 100644 ---- lib/document/document_p.h -+++ lib/document/document_p.h -@@ -21,6 +21,9 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Cambridge, MA 02110-1301, USA - #ifndef DOCUMENT_P_H - #define DOCUMENT_P_H - -+// STL -+#include -+ - // Local - #include - #include -@@ -34,6 +37,11 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Cambridge, MA 02110-1301, USA - #include - #include - -+namespace Exiv2 -+{ -+ class Image; -+} -+ - namespace Gwenview - { - -@@ -54,7 +62,7 @@ struct DocumentPrivate - QSize mSize; - QImage mImage; - QMap mDownSampledImageMap; -- Exiv2::Image::AutoPtr mExiv2Image; -+ std::unique_ptr mExiv2Image; - MimeTypeUtils::Kind mKind; - QByteArray mFormat; - ImageMetaInfoModel mImageMetaInfoModel; -diff --git a/lib/document/loadingdocumentimpl.cpp b/lib/document/loadingdocumentimpl.cpp -index 07675783..766a1831 100644 ---- lib/document/loadingdocumentimpl.cpp -+++ lib/document/loadingdocumentimpl.cpp -@@ -24,6 +24,9 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - // STL - #include - -+// Exiv2 -+#include -+ - // Qt - #include - #include -@@ -100,7 +103,7 @@ struct LoadingDocumentImplPrivate - QByteArray mData; - QByteArray mFormat; - QSize mImageSize; -- Exiv2::Image::AutoPtr mExiv2Image; -+ std::unique_ptr mExiv2Image; - std::unique_ptr mJpegContent; - QImage mImage; - Cms::Profile::Ptr mCmsProfile; -@@ -486,7 +489,7 @@ void LoadingDocumentImpl::slotMetaInfoLoaded() - - setDocumentFormat(d->mFormat); - setDocumentImageSize(d->mImageSize); -- setDocumentExiv2Image(d->mExiv2Image); -+ setDocumentExiv2Image(std::move(d->mExiv2Image)); - setDocumentCmsProfile(d->mCmsProfile); - - d->mMetaInfoLoaded = true; -diff --git a/lib/exiv2imageloader.cpp b/lib/exiv2imageloader.cpp -index f2830f81..f13dff7a 100644 ---- lib/exiv2imageloader.cpp -+++ lib/exiv2imageloader.cpp -@@ -29,8 +29,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - // KDE - - // Exiv2 --#include --#include -+#include - - // Local - -@@ -39,7 +38,7 @@ namespace Gwenview - - struct Exiv2ImageLoaderPrivate - { -- Exiv2::Image::AutoPtr mImage; -+ std::unique_ptr mImage; - QString mErrorMessage; - }; - -@@ -57,7 +56,7 @@ bool Exiv2ImageLoader::load(const QString& filePath) - { - QByteArray filePathByteArray = QFile::encodeName(filePath); - try { -- d->mImage = Exiv2::ImageFactory::open(filePathByteArray.constData()); -+ d->mImage.reset(Exiv2::ImageFactory::open(filePathByteArray.constData()).release()); - d->mImage->readMetadata(); - } catch (const Exiv2::Error& error) { - d->mErrorMessage = QString::fromUtf8(error.what()); -@@ -69,7 +68,7 @@ bool Exiv2ImageLoader::load(const QString& filePath) - bool Exiv2ImageLoader::load(const QByteArray& data) - { - try { -- d->mImage = Exiv2::ImageFactory::open((unsigned char*)data.constData(), data.size()); -+ d->mImage.reset(Exiv2::ImageFactory::open((unsigned char*)data.constData(), data.size()).release()); - d->mImage->readMetadata(); - } catch (const Exiv2::Error& error) { - d->mErrorMessage = QString::fromUtf8(error.what()); -@@ -83,9 +82,9 @@ QString Exiv2ImageLoader::errorMessage() const - return d->mErrorMessage; - } - --Exiv2::Image::AutoPtr Exiv2ImageLoader::popImage() -+std::unique_ptr Exiv2ImageLoader::popImage() - { -- return d->mImage; -+ return std::move(d->mImage); - } - - } // namespace -diff --git a/lib/exiv2imageloader.h b/lib/exiv2imageloader.h -index 57ef24d2..12a45b68 100644 ---- lib/exiv2imageloader.h -+++ lib/exiv2imageloader.h -@@ -23,13 +23,18 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - - #include - -+// STL -+#include -+ - // Qt - - // KDE - - // Exiv2 --#include --#include -+namespace Exiv2 -+{ -+ class Image; -+} - - // Local - -@@ -54,7 +59,7 @@ class GWENVIEWLIB_EXPORT Exiv2ImageLoader - bool load(const QString&); - bool load(const QByteArray&); - QString errorMessage() const; -- Exiv2::Image::AutoPtr popImage(); -+ std::unique_ptr popImage(); - - private: - Exiv2ImageLoaderPrivate* const d; -diff --git a/lib/jpegcontent.cpp b/lib/jpegcontent.cpp -index bb810dd4..a8cf909f 100644 ---- lib/jpegcontent.cpp -+++ lib/jpegcontent.cpp -@@ -42,8 +42,7 @@ extern "C" { - #include - - // Exiv2 --#include --#include -+#include - - // Local - #include "jpegerrormanager.h" -@@ -216,12 +215,12 @@ bool JpegContent::load(const QString& path) - - bool JpegContent::loadFromData(const QByteArray& data) - { -- Exiv2::Image::AutoPtr image; -+ std::unique_ptr image; - Exiv2ImageLoader loader; - if (!loader.load(data)) { - qCritical() << "Could not load image with Exiv2, reported error:" << loader.errorMessage(); - } -- image = loader.popImage(); -+ image.reset(loader.popImage().release()); - - return loadFromData(data, image.get()); - } -@@ -603,7 +602,8 @@ bool JpegContent::save(QIODevice* device) - d->mPendingTransformation = false; - } - -- Exiv2::Image::AutoPtr image = Exiv2::ImageFactory::open((unsigned char*)d->mRawData.data(), d->mRawData.size()); -+ std::unique_ptr image; -+ image.reset(Exiv2::ImageFactory::open((unsigned char*)d->mRawData.data(), d->mRawData.size()).release()); - - // Store Exif info - image->setExifData(d->mExifData); -diff --git a/lib/timeutils.cpp b/lib/timeutils.cpp -index 9e8836a9..3c519098 100644 ---- lib/timeutils.cpp -+++ lib/timeutils.cpp -@@ -21,6 +21,9 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Cambridge, MA 02110-1301, USA - // Self - #include "timeutils.h" - -+// STL -+#include -+ - // Qt - #include - #include -@@ -30,8 +33,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Cambridge, MA 02110-1301, USA - #include - - // Exiv2 --#include --#include -+#include - - // Local - #include -@@ -92,7 +94,7 @@ struct CacheItem - if (!loader.load(path)) { - return false; - } -- Exiv2::Image::AutoPtr img = loader.popImage(); -+ std::unique_ptr img(loader.popImage().release()); - try { - Exiv2::ExifData exifData = img->exifData(); - if (exifData.empty()) { -diff --git a/tests/auto/cmsprofiletest.cpp b/tests/auto/cmsprofiletest.cpp -index 4efc441b..f4c7f9e5 100644 ---- tests/auto/cmsprofiletest.cpp -+++ tests/auto/cmsprofiletest.cpp -@@ -69,7 +69,7 @@ void CmsProfileTest::testLoadFromImageData_data() - void CmsProfileTest::testLoadFromExiv2Image() - { - QFETCH(QString, fileName); -- Exiv2::Image::AutoPtr image; -+ std::unique_ptr image; - { - QByteArray data; - QString path = pathForTestFile(fileName); -@@ -80,7 +80,7 @@ void CmsProfileTest::testLoadFromExiv2Image() - - Exiv2ImageLoader loader; - QVERIFY(loader.load(data)); -- image = loader.popImage(); -+ image.reset(loader.popImage().release()); - } - Cms::Profile::Ptr ptr = Cms::Profile::loadFromExiv2Image(image.get()); - QVERIFY(!ptr.isNull()); -diff --git a/tests/auto/imagemetainfomodeltest.cpp b/tests/auto/imagemetainfomodeltest.cpp -index e3ec8d30..5a286b00 100644 ---- tests/auto/imagemetainfomodeltest.cpp -+++ tests/auto/imagemetainfomodeltest.cpp -@@ -17,6 +17,10 @@ along with this program; if not, write to the Free Software - Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - - */ -+ -+// STL -+#include -+ - // Qt - - // KDE -@@ -28,7 +32,8 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - #include "../lib/imagemetainfomodel.h" - #include "testutils.h" - --#include -+// Exiv2 -+#include - - #include "imagemetainfomodeltest.h" - -@@ -46,7 +51,7 @@ void ImageMetaInfoModelTest::testCatchExiv2Errors() - data = file.readAll(); - } - -- Exiv2::Image::AutoPtr image; -+ std::unique_ptr image; - { - Exiv2ImageLoader loader; - QVERIFY(loader.load(data)); Property changes on: head/graphics/gwenview/files/patch-git_61543b ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/graphics/gwenview/files/patch-git_b81eed1dc =================================================================== --- head/graphics/gwenview/files/patch-git_b81eed1dc (revision 499276) +++ head/graphics/gwenview/files/patch-git_b81eed1dc (nonexistent) @@ -1,38 +0,0 @@ -commit b81eed1dc4d879f06d651ea0954bee1b46c7947e -Author: Stefan Brüns -Date: Sat Dec 29 23:39:30 2018 +0100 - - Compile more files with enabled exceptions, required for exiv2 0.27 - - Summary: - The (exception based) error handling is now pulled in by e.g. image.hpp, - so more files require enabled exception handling. - - Depends on D17872 - - Test Plan: build - - Reviewers: #gwenview, ngraham, cfeck, asturmlechner - - Reviewed By: #gwenview, ngraham - - Subscribers: wbauer, lbeltrame - - Tags: #gwenview - - Differential Revision: https://phabricator.kde.org/D17873 - ---- lib/CMakeLists.txt -+++ lib/CMakeLists.txt -@@ -224,6 +224,11 @@ kde_source_files_enable_exceptions( - exiv2imageloader.cpp - imagemetainfomodel.cpp - timeutils.cpp -+ cms/cmsprofile.cpp -+ document/abstractdocumentimpl.cpp -+ document/document.cpp -+ document/loadingdocumentimpl.cpp -+ jpegcontent.cpp - ) - - ki18n_wrap_ui(gwenviewlib_SRCS Property changes on: head/graphics/gwenview/files/patch-git_b81eed1dc ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/graphics/gwenview/files/patch-git_fe0dbadae =================================================================== --- head/graphics/gwenview/files/patch-git_fe0dbadae (revision 499276) +++ head/graphics/gwenview/files/patch-git_fe0dbadae (nonexistent) @@ -1,32 +0,0 @@ -commit fe0dbadaecc596eb05004e01334cbed0b5323f24 -Author: Timo Gurr -Date: Wed Feb 20 09:21:10 2019 -0700 - - Compile tests files with enabled exceptions, required for exiv2 0.27 - - Summary: This is a follow up of https://cgit.kde.org/gwenview.git/patch/?id=b81eed1dc4d879f06d651ea0954bee1b46c7947e to also make the tests build withour running into errors when building against exiv2 0.27. - - Reviewers: #gwenview, ngraham - - Reviewed By: #gwenview, ngraham - - Subscribers: ngraham, #gwenview - - Tags: #gwenview - - Differential Revision: https://phabricator.kde.org/D19169 - ---- tests/auto/CMakeLists.txt -+++ tests/auto/CMakeLists.txt -@@ -9,6 +9,11 @@ macro(gv_add_unit_test _test) - add_dependencies(buildtests ${_test}) - endmacro(gv_add_unit_test) - -+kde_source_files_enable_exceptions( -+ documenttest.cpp -+ imagemetainfomodeltest.cpp -+) -+ - include_directories( - ${gwenview_SOURCE_DIR} - ${importer_SOURCE_DIR} Property changes on: head/graphics/gwenview/files/patch-git_fe0dbadae ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/graphics/gwenview/Makefile =================================================================== --- head/graphics/gwenview/Makefile (revision 499276) +++ head/graphics/gwenview/Makefile (revision 499277) @@ -1,32 +1,31 @@ # $FreeBSD$ PORTNAME= gwenview DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 4 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 USES= compiler:c++11-lang cmake 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 499276) +++ head/graphics/gwenview/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551811030 -SHA256 (KDE/applications/18.12.3/gwenview-18.12.3.tar.xz) = 0b4ff869fc09140e258e894f5169fc6c96f1126891b8ed1a391d4624d6ab0c35 -SIZE (KDE/applications/18.12.3/gwenview-18.12.3.tar.xz) = 5714316 +TIMESTAMP = 1555094842 +SHA256 (KDE/applications/19.04.0/gwenview-19.04.0.tar.xz) = c7d422bddf031fa9d5a23459c65ea6dbb5919e964cc194178a864ee98912b46d +SIZE (KDE/applications/19.04.0/gwenview-19.04.0.tar.xz) = 5717548 Index: head/graphics/kamera/distinfo =================================================================== --- head/graphics/kamera/distinfo (revision 499276) +++ head/graphics/kamera/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551811029 -SHA256 (KDE/applications/18.12.3/kamera-18.12.3.tar.xz) = 5e0e5a710cffd95019279d68daa27fdd4fba1401450673efa757ffc8a7ca495f -SIZE (KDE/applications/18.12.3/kamera-18.12.3.tar.xz) = 98748 +TIMESTAMP = 1555094842 +SHA256 (KDE/applications/19.04.0/kamera-19.04.0.tar.xz) = b6b5891e886f543140d1ea6775ec1f1f4575e698d34af04fd65acbafa7e42392 +SIZE (KDE/applications/19.04.0/kamera-19.04.0.tar.xz) = 98912 Index: head/graphics/kamera/pkg-plist =================================================================== --- head/graphics/kamera/pkg-plist (revision 499276) +++ head/graphics/kamera/pkg-plist (revision 499277) @@ -1,76 +1,78 @@ %%QT_PLUGINDIR%%/kcm_kamera.so %%QT_PLUGINDIR%%/kio_kamera.so share/kservices5/camera.protocol share/kservices5/kamera.desktop share/locale/ar/LC_MESSAGES/kcmkamera.mo share/locale/bg/LC_MESSAGES/kcmkamera.mo share/locale/bs/LC_MESSAGES/kcmkamera.mo share/locale/ca/LC_MESSAGES/kcmkamera.mo share/locale/ca/LC_MESSAGES/kio5_kamera.mo share/locale/ca@valencia/LC_MESSAGES/kcmkamera.mo share/locale/ca@valencia/LC_MESSAGES/kio5_kamera.mo share/locale/cs/LC_MESSAGES/kcmkamera.mo share/locale/cs/LC_MESSAGES/kio5_kamera.mo share/locale/da/LC_MESSAGES/kcmkamera.mo share/locale/de/LC_MESSAGES/kcmkamera.mo share/locale/de/LC_MESSAGES/kio5_kamera.mo share/locale/el/LC_MESSAGES/kcmkamera.mo share/locale/en_GB/LC_MESSAGES/kcmkamera.mo share/locale/en_GB/LC_MESSAGES/kio5_kamera.mo share/locale/eo/LC_MESSAGES/kcmkamera.mo share/locale/es/LC_MESSAGES/kcmkamera.mo share/locale/es/LC_MESSAGES/kio5_kamera.mo share/locale/et/LC_MESSAGES/kcmkamera.mo share/locale/eu/LC_MESSAGES/kcmkamera.mo share/locale/fa/LC_MESSAGES/kcmkamera.mo share/locale/fi/LC_MESSAGES/kcmkamera.mo share/locale/fr/LC_MESSAGES/kcmkamera.mo share/locale/fr/LC_MESSAGES/kio5_kamera.mo share/locale/ga/LC_MESSAGES/kcmkamera.mo share/locale/gl/LC_MESSAGES/kcmkamera.mo share/locale/gl/LC_MESSAGES/kio5_kamera.mo share/locale/he/LC_MESSAGES/kcmkamera.mo share/locale/hi/LC_MESSAGES/kcmkamera.mo share/locale/hr/LC_MESSAGES/kcmkamera.mo share/locale/hu/LC_MESSAGES/kcmkamera.mo share/locale/ia/LC_MESSAGES/kcmkamera.mo share/locale/is/LC_MESSAGES/kcmkamera.mo share/locale/it/LC_MESSAGES/kcmkamera.mo share/locale/it/LC_MESSAGES/kio5_kamera.mo share/locale/ja/LC_MESSAGES/kcmkamera.mo +share/locale/ja/LC_MESSAGES/kio5_kamera.mo share/locale/kk/LC_MESSAGES/kcmkamera.mo share/locale/km/LC_MESSAGES/kcmkamera.mo share/locale/ko/LC_MESSAGES/kcmkamera.mo +share/locale/ko/LC_MESSAGES/kio5_kamera.mo share/locale/lt/LC_MESSAGES/kcmkamera.mo share/locale/lv/LC_MESSAGES/kcmkamera.mo share/locale/mr/LC_MESSAGES/kcmkamera.mo share/locale/nb/LC_MESSAGES/kcmkamera.mo share/locale/nds/LC_MESSAGES/kcmkamera.mo share/locale/nl/LC_MESSAGES/kcmkamera.mo share/locale/nl/LC_MESSAGES/kio5_kamera.mo share/locale/nn/LC_MESSAGES/kcmkamera.mo share/locale/nn/LC_MESSAGES/kio5_kamera.mo share/locale/pa/LC_MESSAGES/kcmkamera.mo share/locale/pl/LC_MESSAGES/kcmkamera.mo share/locale/pl/LC_MESSAGES/kio5_kamera.mo share/locale/pt/LC_MESSAGES/kcmkamera.mo share/locale/pt/LC_MESSAGES/kio5_kamera.mo share/locale/pt_BR/LC_MESSAGES/kcmkamera.mo share/locale/pt_BR/LC_MESSAGES/kio5_kamera.mo share/locale/ro/LC_MESSAGES/kcmkamera.mo share/locale/ru/LC_MESSAGES/kcmkamera.mo share/locale/ru/LC_MESSAGES/kio5_kamera.mo share/locale/sk/LC_MESSAGES/kcmkamera.mo share/locale/sk/LC_MESSAGES/kio5_kamera.mo share/locale/sl/LC_MESSAGES/kcmkamera.mo share/locale/sv/LC_MESSAGES/kcmkamera.mo share/locale/sv/LC_MESSAGES/kio5_kamera.mo share/locale/tr/LC_MESSAGES/kcmkamera.mo share/locale/ug/LC_MESSAGES/kcmkamera.mo share/locale/uk/LC_MESSAGES/kcmkamera.mo share/locale/uk/LC_MESSAGES/kio5_kamera.mo share/locale/zh_CN/LC_MESSAGES/kcmkamera.mo share/locale/zh_CN/LC_MESSAGES/kio5_kamera.mo share/locale/zh_TW/LC_MESSAGES/kcmkamera.mo share/locale/zh_TW/LC_MESSAGES/kio5_kamera.mo share/solid/actions/solid_camera.desktop Index: head/graphics/kcolorchooser/distinfo =================================================================== --- head/graphics/kcolorchooser/distinfo (revision 499276) +++ head/graphics/kcolorchooser/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551811028 -SHA256 (KDE/applications/18.12.3/kcolorchooser-18.12.3.tar.xz) = 8defdb9450922b675dc80561a0f4bb119e621a85dd73661fc4caacef8db91228 -SIZE (KDE/applications/18.12.3/kcolorchooser-18.12.3.tar.xz) = 16888 +TIMESTAMP = 1555094842 +SHA256 (KDE/applications/19.04.0/kcolorchooser-19.04.0.tar.xz) = 8f338ba51349cb056f25266d884ca318d3fd3933288ec96f9f17df6c842bc839 +SIZE (KDE/applications/19.04.0/kcolorchooser-19.04.0.tar.xz) = 18892 Index: head/graphics/kcolorchooser/pkg-plist =================================================================== --- head/graphics/kcolorchooser/pkg-plist (revision 499276) +++ head/graphics/kcolorchooser/pkg-plist (revision 499277) @@ -1,56 +1,57 @@ bin/kcolorchooser share/applications/org.kde.kcolorchooser.desktop share/icons/hicolor/16x16/apps/kcolorchooser.png share/icons/hicolor/22x22/apps/kcolorchooser.png share/locale/ar/LC_MESSAGES/kcolorchooser.mo share/locale/bg/LC_MESSAGES/kcolorchooser.mo share/locale/bs/LC_MESSAGES/kcolorchooser.mo share/locale/ca/LC_MESSAGES/kcolorchooser.mo share/locale/ca@valencia/LC_MESSAGES/kcolorchooser.mo share/locale/cs/LC_MESSAGES/kcolorchooser.mo share/locale/da/LC_MESSAGES/kcolorchooser.mo share/locale/de/LC_MESSAGES/kcolorchooser.mo share/locale/el/LC_MESSAGES/kcolorchooser.mo share/locale/en_GB/LC_MESSAGES/kcolorchooser.mo share/locale/eo/LC_MESSAGES/kcolorchooser.mo share/locale/es/LC_MESSAGES/kcolorchooser.mo share/locale/et/LC_MESSAGES/kcolorchooser.mo share/locale/eu/LC_MESSAGES/kcolorchooser.mo share/locale/fi/LC_MESSAGES/kcolorchooser.mo share/locale/fr/LC_MESSAGES/kcolorchooser.mo share/locale/ga/LC_MESSAGES/kcolorchooser.mo share/locale/gl/LC_MESSAGES/kcolorchooser.mo share/locale/he/LC_MESSAGES/kcolorchooser.mo share/locale/hi/LC_MESSAGES/kcolorchooser.mo share/locale/hr/LC_MESSAGES/kcolorchooser.mo share/locale/hu/LC_MESSAGES/kcolorchooser.mo share/locale/ia/LC_MESSAGES/kcolorchooser.mo share/locale/is/LC_MESSAGES/kcolorchooser.mo share/locale/it/LC_MESSAGES/kcolorchooser.mo share/locale/ja/LC_MESSAGES/kcolorchooser.mo share/locale/kk/LC_MESSAGES/kcolorchooser.mo share/locale/km/LC_MESSAGES/kcolorchooser.mo share/locale/ko/LC_MESSAGES/kcolorchooser.mo share/locale/lt/LC_MESSAGES/kcolorchooser.mo share/locale/lv/LC_MESSAGES/kcolorchooser.mo share/locale/mr/LC_MESSAGES/kcolorchooser.mo share/locale/nb/LC_MESSAGES/kcolorchooser.mo share/locale/nds/LC_MESSAGES/kcolorchooser.mo share/locale/nl/LC_MESSAGES/kcolorchooser.mo share/locale/nn/LC_MESSAGES/kcolorchooser.mo share/locale/pa/LC_MESSAGES/kcolorchooser.mo share/locale/pl/LC_MESSAGES/kcolorchooser.mo share/locale/pt/LC_MESSAGES/kcolorchooser.mo share/locale/pt_BR/LC_MESSAGES/kcolorchooser.mo share/locale/ro/LC_MESSAGES/kcolorchooser.mo share/locale/ru/LC_MESSAGES/kcolorchooser.mo share/locale/sk/LC_MESSAGES/kcolorchooser.mo share/locale/sl/LC_MESSAGES/kcolorchooser.mo share/locale/sr/LC_MESSAGES/kcolorchooser.mo share/locale/sv/LC_MESSAGES/kcolorchooser.mo share/locale/tr/LC_MESSAGES/kcolorchooser.mo share/locale/ug/LC_MESSAGES/kcolorchooser.mo share/locale/uk/LC_MESSAGES/kcolorchooser.mo share/locale/wa/LC_MESSAGES/kcolorchooser.mo share/locale/zh_CN/LC_MESSAGES/kcolorchooser.mo share/locale/zh_TW/LC_MESSAGES/kcolorchooser.mo +share/metainfo/org.kde.kcolorchooser.appdata.xml Index: head/graphics/kdegraphics-mobipocket/distinfo =================================================================== --- head/graphics/kdegraphics-mobipocket/distinfo (revision 499276) +++ head/graphics/kdegraphics-mobipocket/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551811027 -SHA256 (KDE/applications/18.12.3/kdegraphics-mobipocket-18.12.3.tar.xz) = 69ae8b6f45b8c9ec3a73e636f7a779257ebbd6f8016d24294bec844a51f2cc52 -SIZE (KDE/applications/18.12.3/kdegraphics-mobipocket-18.12.3.tar.xz) = 13456 +TIMESTAMP = 1555094843 +SHA256 (KDE/applications/19.04.0/kdegraphics-mobipocket-19.04.0.tar.xz) = 37db302ed0d70766cf75e052f27150553b875428b68c886fe4d16452edd18939 +SIZE (KDE/applications/19.04.0/kdegraphics-mobipocket-19.04.0.tar.xz) = 13452 Index: head/graphics/kdegraphics-svgpart/distinfo =================================================================== --- head/graphics/kdegraphics-svgpart/distinfo (revision 499276) +++ head/graphics/kdegraphics-svgpart/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551811028 -SHA256 (KDE/applications/18.12.3/svgpart-18.12.3.tar.xz) = 675ab3b652b0d2619abb305ce7c00beb8a80067416e4ea7e216cfa201a7ff8ef -SIZE (KDE/applications/18.12.3/svgpart-18.12.3.tar.xz) = 20828 +TIMESTAMP = 1555094843 +SHA256 (KDE/applications/19.04.0/svgpart-19.04.0.tar.xz) = 6dbec1dcb6853c06f7cb10677a2c99678b398b4a658eb4206a146f24b0fa158a +SIZE (KDE/applications/19.04.0/svgpart-19.04.0.tar.xz) = 20888 Index: head/graphics/kdegraphics-svgpart/pkg-plist =================================================================== --- head/graphics/kdegraphics-svgpart/pkg-plist (revision 499276) +++ head/graphics/kdegraphics-svgpart/pkg-plist (revision 499277) @@ -1,52 +1,51 @@ -%%QT_PLUGINDIR%%/svgpart.so +%%QT_PLUGINDIR%%/kf5/parts/svgpart.so share/kservices5/svgpart.desktop -share/kxmlgui5/svgpart/svgpart.rc share/locale/ar/LC_MESSAGES/svgpart.mo share/locale/bg/LC_MESSAGES/svgpart.mo share/locale/bs/LC_MESSAGES/svgpart.mo share/locale/ca/LC_MESSAGES/svgpart.mo share/locale/ca@valencia/LC_MESSAGES/svgpart.mo share/locale/cs/LC_MESSAGES/svgpart.mo share/locale/da/LC_MESSAGES/svgpart.mo share/locale/de/LC_MESSAGES/svgpart.mo share/locale/el/LC_MESSAGES/svgpart.mo share/locale/en_GB/LC_MESSAGES/svgpart.mo share/locale/eo/LC_MESSAGES/svgpart.mo share/locale/es/LC_MESSAGES/svgpart.mo share/locale/et/LC_MESSAGES/svgpart.mo share/locale/eu/LC_MESSAGES/svgpart.mo share/locale/fi/LC_MESSAGES/svgpart.mo share/locale/fr/LC_MESSAGES/svgpart.mo share/locale/ga/LC_MESSAGES/svgpart.mo share/locale/gl/LC_MESSAGES/svgpart.mo share/locale/hr/LC_MESSAGES/svgpart.mo share/locale/hu/LC_MESSAGES/svgpart.mo share/locale/ia/LC_MESSAGES/svgpart.mo share/locale/is/LC_MESSAGES/svgpart.mo share/locale/it/LC_MESSAGES/svgpart.mo share/locale/ja/LC_MESSAGES/svgpart.mo share/locale/kk/LC_MESSAGES/svgpart.mo share/locale/km/LC_MESSAGES/svgpart.mo share/locale/ko/LC_MESSAGES/svgpart.mo share/locale/lt/LC_MESSAGES/svgpart.mo share/locale/lv/LC_MESSAGES/svgpart.mo share/locale/mr/LC_MESSAGES/svgpart.mo share/locale/nb/LC_MESSAGES/svgpart.mo share/locale/nds/LC_MESSAGES/svgpart.mo share/locale/nl/LC_MESSAGES/svgpart.mo share/locale/nn/LC_MESSAGES/svgpart.mo share/locale/pa/LC_MESSAGES/svgpart.mo share/locale/pl/LC_MESSAGES/svgpart.mo share/locale/pt/LC_MESSAGES/svgpart.mo share/locale/pt_BR/LC_MESSAGES/svgpart.mo share/locale/ro/LC_MESSAGES/svgpart.mo share/locale/ru/LC_MESSAGES/svgpart.mo share/locale/sk/LC_MESSAGES/svgpart.mo share/locale/sl/LC_MESSAGES/svgpart.mo share/locale/sv/LC_MESSAGES/svgpart.mo share/locale/tr/LC_MESSAGES/svgpart.mo share/locale/ug/LC_MESSAGES/svgpart.mo share/locale/uk/LC_MESSAGES/svgpart.mo share/locale/wa/LC_MESSAGES/svgpart.mo share/locale/zh_CN/LC_MESSAGES/svgpart.mo share/locale/zh_TW/LC_MESSAGES/svgpart.mo Index: head/graphics/kdegraphics-thumbnailers/distinfo =================================================================== --- head/graphics/kdegraphics-thumbnailers/distinfo (revision 499276) +++ head/graphics/kdegraphics-thumbnailers/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551811026 -SHA256 (KDE/applications/18.12.3/kdegraphics-thumbnailers-18.12.3.tar.xz) = 9bc36ea2eb8a177899bf81b1cdc63a92b8e5dae12308f3e71046a63e58aafec0 -SIZE (KDE/applications/18.12.3/kdegraphics-thumbnailers-18.12.3.tar.xz) = 41288 +TIMESTAMP = 1555094843 +SHA256 (KDE/applications/19.04.0/kdegraphics-thumbnailers-19.04.0.tar.xz) = 7af5fb986c493649a1eec9ba881f8b9c06c5d7459f0acc59e7ee7d185bc7ee70 +SIZE (KDE/applications/19.04.0/kdegraphics-thumbnailers-19.04.0.tar.xz) = 43096 Index: head/graphics/kdegraphics-thumbnailers/pkg-plist =================================================================== --- head/graphics/kdegraphics-thumbnailers/pkg-plist (revision 499276) +++ head/graphics/kdegraphics-thumbnailers/pkg-plist (revision 499277) @@ -1,4 +1,6 @@ +%%QT_PLUGINDIR%%/blenderthumbnail.so %%QT_PLUGINDIR%%/gsthumbnail.so %%QT_PLUGINDIR%%/rawthumbnail.so +share/kservices5/blenderthumbnail.desktop share/kservices5/gsthumbnail.desktop share/kservices5/rawthumbnail.desktop Index: head/graphics/kimagemapeditor/distinfo =================================================================== --- head/graphics/kimagemapeditor/distinfo (revision 499276) +++ head/graphics/kimagemapeditor/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551811029 -SHA256 (KDE/applications/18.12.3/kimagemapeditor-18.12.3.tar.xz) = addaaf257c35e8169288a8e7a50a1628f3ceeb6a2a845c3d260dfe94662438c6 -SIZE (KDE/applications/18.12.3/kimagemapeditor-18.12.3.tar.xz) = 1070840 +TIMESTAMP = 1555094844 +SHA256 (KDE/applications/19.04.0/kimagemapeditor-19.04.0.tar.xz) = 8d3ff906926fe8f82b21cf19d784dbddfcda15de9513feaa9defa6e4ff3b1869 +SIZE (KDE/applications/19.04.0/kimagemapeditor-19.04.0.tar.xz) = 1071080 Index: head/graphics/kolourpaint/distinfo =================================================================== --- head/graphics/kolourpaint/distinfo (revision 499276) +++ head/graphics/kolourpaint/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551811026 -SHA256 (KDE/applications/18.12.3/kolourpaint-18.12.3.tar.xz) = 450b714f0d73b59d31c4ceda142a3496d14e51d84b8c8968548a15e05c138f98 -SIZE (KDE/applications/18.12.3/kolourpaint-18.12.3.tar.xz) = 5651092 +TIMESTAMP = 1555094844 +SHA256 (KDE/applications/19.04.0/kolourpaint-19.04.0.tar.xz) = d6cd087ba34a1a8fec9349dea06c1b71a70f6e8455adb41d4820a376eb2ed141 +SIZE (KDE/applications/19.04.0/kolourpaint-19.04.0.tar.xz) = 5656056 Index: head/graphics/krita/Makefile =================================================================== --- head/graphics/krita/Makefile (revision 499276) +++ head/graphics/krita/Makefile (revision 499277) @@ -1,60 +1,62 @@ # $FreeBSD$ PORTNAME= krita DISTVERSION= 4.1.8 PORTREVISION= 4 CATEGORIES= graphics kde MASTER_SITES= KDE/stable/${PORTNAME}/${DISTVERSION} DIST_SUBDIR= KDE/${PORTNAME} MAINTAINER= kde@FreeBSD.org COMMENT= Sketching and painting program LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libImath.so:graphics/ilmbase \ libOpenColorIO.so:graphics/opencolorio \ libX11.so:x11/libX11 \ libboost_system.so:devel/boost-libs \ libfftw3.so:math/fftw3 \ libexiv2.so:graphics/exiv2 \ libcurl.so:ftp/curl \ libgif.so:graphics/giflib \ libgsl.so:math/gsl \ liblcms2.so:graphics/lcms2 \ libpng.so:graphics/png \ libpoppler.so:graphics/poppler \ libpoppler-qt5.so:graphics/poppler-qt5 \ libraw.so:graphics/libraw \ libtiff.so:graphics/tiff \ libxcb.so:x11/libxcb \ libxcb-util.so:x11/xcb-util # Disable ninja generator for now (with gmake), until the duplicate test targets are resolved upstream. USES= cmake:noninja gmake compiler:c++11-lib desktop-file-utils \ eigen:3 gettext jpeg kde:5 pkgconfig python:3.4+ qt:5 \ shared-mime-info USE_KDE= archive completion config coreaddons crash guiaddons i18n \ itemmodels itemviews kio service widgetsaddons windowsystem USE_QT= concurrent core dbus declarative gui multimedia network printsupport \ svg testlib widgets x11extras xml \ buildtools_build qmake_build USE_XORG= ice sm xcb xext xi OPTIONS_DEFINE= GMIC OPENEXR OPTIONS_DEFAULT= OPENEXR OPTIONS_SUB= yes GMIC_DESC= Depend on the G'Mic plugin #' GMIC_RUN_DEPENDS= gmic_krita_qt:graphics/gmic-qt OPENEXR_LIB_DEPENDS= libIlmImf.so:graphics/openexr OPENEXR_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_OpenEXR CONFLICTS_INSTALL= calligra-2* PLIST_SUB= SHLIB_VER=18.0.0 \ SHLIB_SHVER=18 +LDFLAGS= -lpthread + .include Index: head/graphics/libkdcraw/Makefile =================================================================== --- head/graphics/libkdcraw/Makefile (revision 499276) +++ head/graphics/libkdcraw/Makefile (revision 499277) @@ -1,27 +1,26 @@ # $FreeBSD$ PORTNAME= libkdcraw DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= graphics kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= LibRaw interface for KDE LIB_DEPENDS= libjasper.so:graphics/jasper \ liblcms.so:graphics/lcms \ libxml2.so:textproc/libxml2 \ libraw.so:graphics/libraw CMAKE_ARGS+= -DWITH_OpenMP:BOOL=False \ -DENABLE_RAWSPEED=True USES= cmake compiler:c++11-lang jpeg kde:5 pkgconfig qt:5 tar:xz USE_KDE= ecm USE_QT= core gui \ buildtools_build qmake_build USE_LDCONFIG= yes OPTIONS_DEFINE= DOCS .include Index: head/graphics/libkdcraw/distinfo =================================================================== --- head/graphics/libkdcraw/distinfo (revision 499276) +++ head/graphics/libkdcraw/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551811029 -SHA256 (KDE/applications/18.12.3/libkdcraw-18.12.3.tar.xz) = c4b6541419b2ebee15d24744d10e67c9a137e616766e765c13e5056c2a37ef99 -SIZE (KDE/applications/18.12.3/libkdcraw-18.12.3.tar.xz) = 42104 +TIMESTAMP = 1555094845 +SHA256 (KDE/applications/19.04.0/libkdcraw-19.04.0.tar.xz) = 30df02047c0f1b97a7c90c8eb5f7a3c5d322f13e0158395d3f9798ff21ed529e +SIZE (KDE/applications/19.04.0/libkdcraw-19.04.0.tar.xz) = 42088 Index: head/graphics/libkexiv2/files/patch-git_d1be929 =================================================================== --- head/graphics/libkexiv2/files/patch-git_d1be929 (revision 499276) +++ head/graphics/libkexiv2/files/patch-git_d1be929 (nonexistent) @@ -1,459 +0,0 @@ -From d1be9298c7f2b9c717cda154d41732f230ea13a6 Mon Sep 17 00:00:00 2001 -From: Andreas Sturmlechner -Date: Sat, 29 Dec 2018 19:56:01 +0100 -Subject: [PATCH] Fix building against exiv2-0.27 - -Summary: -Copied FindLibExiv2.cmake from ECM 5.53.0 until we raise min version. - -Upstream advises to include single exiv2/exiv2.hpp over separate headers -that are in the process of being refactored. - -BUG: 402644 - -Test Plan: Tested build with exiv2-0.26 and 0.27 - -Reviewers: #kde_applications, cgilles, aacid, bruns - -Reviewed By: bruns - -Subscribers: ngraham, bruns, heikobecker - -Differential Revision: https://phabricator.kde.org/D17799 ---- - CMakeLists.txt | 32 +++---- - cmake/modules/FindExiv2.cmake | 80 ------------------ - cmake/modules/FindLibExiv2.cmake | 115 ++++++++++++++++++++++++++ - cmake/templates/libkexiv2.pc.cmake.in | 2 +- - src/CMakeLists.txt | 3 +- - src/kexiv2.cpp | 2 +- - src/kexiv2_p.cpp | 17 +--- - src/kexiv2_p.h | 23 +----- - src/kexiv2exif.cpp | 4 + - 9 files changed, 137 insertions(+), 141 deletions(-) - delete mode 100644 cmake/modules/FindExiv2.cmake - create mode 100644 cmake/modules/FindLibExiv2.cmake - -diff --git a/CMakeLists.txt b/CMakeLists.txt -index d13ef27..5747665 100644 ---- CMakeLists.txt -+++ CMakeLists.txt -@@ -7,11 +7,11 @@ - set(CMAKE_MIN_VERSION "3.0.0") - set(ECM_MIN_VERSION "1.1.0") - set(REQUIRED_QT_VERSION "5.2.0") --set(EXIV2_MIN_VERSION "0.24") -+set(EXIV2_MIN_VERSION "0.25") - - cmake_minimum_required(VERSION ${CMAKE_MIN_VERSION}) - --project(libkexiv2) -+project(libkexiv2 VERSION "5.0.0") - - message(STATUS "----------------------------------------------------------------------------------") - message(STATUS "Starting CMake configuration for: ${PROJECT_NAME}") -@@ -47,18 +47,12 @@ message(STATUS "Starting CMake configuration for: ${PROJECT_NAME}") - # 2.4.0 => 11.3.0 - Add new method to access on text edit widget from AltLangStrEdit - # 5.0.0 => 15.0.0 (Released with KDE 5.x) - --# Library API version --set(KEXIV2_LIB_MAJOR_VERSION "5") --set(KEXIV2_LIB_MINOR_VERSION "0") --set(KEXIV2_LIB_PATCH_VERSION "0") -- - # Library ABI version used by linker. - # For details : http://www.gnu.org/software/libtool/manual/libtool.html#Updating-version-info - set(KEXIV2_LIB_SO_CUR_VERSION "15") - set(KEXIV2_LIB_SO_REV_VERSION "0") - set(KEXIV2_LIB_SO_AGE_VERSION "0") - --set(LIBKEXIV2_LIB_VERSION "${KEXIV2_LIB_MAJOR_VERSION}.${KEXIV2_LIB_MINOR_VERSION}.${KEXIV2_LIB_PATCH_VERSION}") - set(LIBKEXIV2_SO_VERSION "${KEXIV2_LIB_SO_CUR_VERSION}.${KEXIV2_LIB_SO_REV_VERSION}.${KEXIV2_LIB_SO_AGE_VERSION}") - - ############## ECM setup ###################### -@@ -77,6 +71,13 @@ include(KDEFrameworkCompilerSettings NO_POLICY_SCOPE) - include(GenerateExportHeader) - include(FeatureSummary) - -+ecm_setup_version(${libkexiv2_VERSION} -+ VARIABLE_PREFIX KEXIV2 -+ VERSION_HEADER "src/libkexiv2_version.h" -+ PACKAGE_VERSION_FILE "KF5KExiv2ConfigVersion.cmake" -+ SOVERSION ${LIBKEXIV2_SO_VERSION} -+) -+ - ############## Find Packages ################### - - find_package(Qt5 ${REQUIRED_QT_VERSION} REQUIRED NO_MODULE COMPONENTS -@@ -84,20 +85,7 @@ find_package(Qt5 ${REQUIRED_QT_VERSION} REQUIRED NO_MODULE COMPONENTS - Gui - ) - --find_package(Exiv2 ${EXIV2_MIN_VERSION} REQUIRED) --set_package_properties("Exiv2" PROPERTIES -- DESCRIPTION "Required to build libkexiv2" -- URL "http://www.exiv2.org" -- TYPE RECOMMENDED -- PURPOSE "Library to manage image metadata" --) -- --ecm_setup_version(${LIBKEXIV2_LIB_VERSION} -- VARIABLE_PREFIX KEXIV2 -- VERSION_HEADER "src/libkexiv2_version.h" -- PACKAGE_VERSION_FILE "KF5KExiv2ConfigVersion.cmake" -- SOVERSION ${LIBKEXIV2_SO_VERSION} --) -+find_package(LibExiv2 ${EXIV2_MIN_VERSION} REQUIRED) - - ############## Targets ######################### - -diff --git a/cmake/modules/FindExiv2.cmake b/cmake/modules/FindExiv2.cmake -deleted file mode 100644 -index 82cc1c7..0000000 ---- cmake/modules/FindExiv2.cmake -+++ /dev/null -@@ -1,80 +0,0 @@ --# - Try to find the Exiv2 library --# --# EXIV2_MIN_VERSION - You can set this variable to the minimum version you need --# before doing FIND_PACKAGE(Exiv2). The default is 0.12. --# --# Once done this will define --# --# EXIV2_FOUND - system has libexiv2 --# EXIV2_INCLUDE_DIR - the libexiv2 include directory --# EXIV2_LIBRARIES - Link these to use libexiv2 --# EXIV2_DEFINITIONS - Compiler switches required for using libexiv2 --# --# The minimum required version of Exiv2 can be specified using the --# standard syntax, e.g. find_package(Exiv2 0.17) --# --# For compatibility, also the variable EXIV2_MIN_VERSION can be set to the minimum version --# you need before doing FIND_PACKAGE(Exiv2). The default is 0.12. -- --# Copyright (c) 2010, Alexander Neundorf, --# Copyright (c) 2008, Gilles Caulier, --# --# Redistribution and use is allowed according to the terms of the BSD license. --# For details see the accompanying COPYING-CMAKE-SCRIPTS file. -- --# Support EXIV2_MIN_VERSION for compatibility: --if(NOT Exiv2_FIND_VERSION) -- set(Exiv2_FIND_VERSION "${EXIV2_MIN_VERSION}") --endif(NOT Exiv2_FIND_VERSION) -- --# the minimum version of exiv2 we require --if(NOT Exiv2_FIND_VERSION) -- set(Exiv2_FIND_VERSION "0.12") --endif(NOT Exiv2_FIND_VERSION) -- -- --if (NOT WIN32) -- # use pkg-config to get the directories and then use these values -- # in the FIND_PATH() and FIND_LIBRARY() calls -- find_package(PkgConfig) -- pkg_check_modules(PC_EXIV2 QUIET exiv2) -- set(EXIV2_DEFINITIONS ${PC_EXIV2_CFLAGS_OTHER}) --endif (NOT WIN32) -- -- --find_path(EXIV2_INCLUDE_DIR NAMES exiv2/exif.hpp -- HINTS -- ${PC_EXIV2_INCLUDEDIR} -- ${PC_EXIV2_INCLUDE_DIRS} -- ) -- --find_library(EXIV2_LIBRARY NAMES exiv2 libexiv2 -- HINTS -- ${PC_EXIV2_LIBDIR} -- ${PC_EXIV2_LIBRARY_DIRS} -- ) -- -- --# Get the version number from exiv2/version.hpp and store it in the cache: --if(EXIV2_INCLUDE_DIR AND NOT EXIV2_VERSION) -- file(READ ${EXIV2_INCLUDE_DIR}/exiv2/version.hpp EXIV2_VERSION_CONTENT) -- string(REGEX MATCH "#define EXIV2_MAJOR_VERSION +\\( *([0-9]+) *\\)" _dummy "${EXIV2_VERSION_CONTENT}") -- set(EXIV2_VERSION_MAJOR "${CMAKE_MATCH_1}") -- -- string(REGEX MATCH "#define EXIV2_MINOR_VERSION +\\( *([0-9]+) *\\)" _dummy "${EXIV2_VERSION_CONTENT}") -- set(EXIV2_VERSION_MINOR "${CMAKE_MATCH_1}") -- -- string(REGEX MATCH "#define EXIV2_PATCH_VERSION +\\( *([0-9]+) *\\)" _dummy "${EXIV2_VERSION_CONTENT}") -- set(EXIV2_VERSION_PATCH "${CMAKE_MATCH_1}") -- -- set(EXIV2_VERSION "${EXIV2_VERSION_MAJOR}.${EXIV2_VERSION_MINOR}.${EXIV2_VERSION_PATCH}" CACHE STRING "Version number of Exiv2" FORCE) --endif(EXIV2_INCLUDE_DIR AND NOT EXIV2_VERSION) -- --set(EXIV2_LIBRARIES "${EXIV2_LIBRARY}") -- --include(FindPackageHandleStandardArgs) --find_package_handle_standard_args(Exiv2 REQUIRED_VARS EXIV2_LIBRARY EXIV2_INCLUDE_DIR -- VERSION_VAR EXIV2_VERSION) -- --mark_as_advanced(EXIV2_INCLUDE_DIR EXIV2_LIBRARY) -- -diff --git a/cmake/modules/FindLibExiv2.cmake b/cmake/modules/FindLibExiv2.cmake -new file mode 100644 -index 0000000..935cee2 ---- /dev/null -+++ cmake/modules/FindLibExiv2.cmake -@@ -0,0 +1,115 @@ -+#.rst: -+# FindLibExiv2 -+# ------------ -+# -+# Try to find the Exiv2 library. -+# -+# This will define the following variables: -+# -+# ``LibExiv2_FOUND`` -+# System has LibExiv2. -+# -+# ``LibExiv2_VERSION`` -+# The version of LibExiv2. -+# -+# ``LibExiv2_INCLUDE_DIRS`` -+# This should be passed to target_include_directories() if -+# the target is not used for linking. -+# -+# ``LibExiv2_LIBRARIES`` -+# The LibExiv2 library. -+# This can be passed to target_link_libraries() instead of -+# the ``LibExiv2::LibExiv2`` target -+# -+# If ``LibExiv2_FOUND`` is TRUE, the following imported target -+# will be available: -+# -+# ``LibExiv2::LibExiv2`` -+# The Exiv2 library -+# -+# Since 5.53.0. -+# -+#============================================================================= -+# Copyright (c) 2018, Christophe Giboudeaux, -+# Copyright (c) 2010, Alexander Neundorf, -+# Copyright (c) 2008, Gilles Caulier, -+# -+# -+# Redistribution and use in source and binary forms, with or without -+# modification, are permitted provided that the following conditions -+# are met: -+# -+# 1. Redistributions of source code must retain the copyright -+# notice, this list of conditions and the following disclaimer. -+# 2. Redistributions in binary form must reproduce the copyright -+# notice, this list of conditions and the following disclaimer in the -+# documentation and/or other materials provided with the distribution. -+# 3. The name of the author may not be used to endorse or promote products -+# derived from this software without specific prior written permission. -+# -+# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR -+# IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES -+# OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. -+# IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, -+# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -+# NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -+# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -+# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -+# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF -+# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -+#============================================================================= -+ -+find_package(PkgConfig QUIET) -+pkg_check_modules(PC_EXIV2 QUIET exiv2) -+ -+find_path(LibExiv2_INCLUDE_DIRS NAMES exiv2/exif.hpp -+ HINTS ${PC_EXIV2_INCLUDEDIR} -+) -+ -+find_library(LibExiv2_LIBRARIES NAMES exiv2 libexiv2 -+ HINTS ${PC_EXIV2_LIBRARY_DIRS} -+) -+ -+set(LibExiv2_VERSION ${PC_EXIV2_VERSION}) -+ -+if(NOT LibExiv2_VERSION AND DEFINED LibExiv2_INCLUDE_DIRS) -+ # With exiv >= 0.27, the version #defines are in exv_conf.h instead of version.hpp -+ foreach(_exiv2_version_file "version.hpp" "exv_conf.h") -+ if(EXISTS "${LibExiv2_INCLUDE_DIRS}/exiv2/${_exiv2_version_file}") -+ file(READ "${LibExiv2_INCLUDE_DIRS}/exiv2/${_exiv2_version_file}" _exiv_version_file_content) -+ string(REGEX MATCH "#define EXIV2_MAJOR_VERSION[ ]+\\([0-9]+\\)" EXIV2_MAJOR_VERSION_MATCH ${_exiv_version_file_content}) -+ string(REGEX MATCH "#define EXIV2_MINOR_VERSION[ ]+\\([0-9]+\\)" EXIV2_MINOR_VERSION_MATCH ${_exiv_version_file_content}) -+ string(REGEX MATCH "#define EXIV2_PATCH_VERSION[ ]+\\([0-9]+\\)" EXIV2_PATCH_VERSION_MATCH ${_exiv_version_file_content}) -+ if(EXIV2_MAJOR_VERSION_MATCH) -+ string(REGEX REPLACE ".*_MAJOR_VERSION[ ]+\\((.*)\\)" "\\1" EXIV2_MAJOR_VERSION ${EXIV2_MAJOR_VERSION_MATCH}) -+ string(REGEX REPLACE ".*_MINOR_VERSION[ ]+\\((.*)\\)" "\\1" EXIV2_MINOR_VERSION ${EXIV2_MINOR_VERSION_MATCH}) -+ string(REGEX REPLACE ".*_PATCH_VERSION[ ]+\\((.*)\\)" "\\1" EXIV2_PATCH_VERSION ${EXIV2_PATCH_VERSION_MATCH}) -+ endif() -+ endif() -+ endforeach() -+ -+ set(LibExiv2_VERSION "${EXIV2_MAJOR_VERSION}.${EXIV2_MINOR_VERSION}.${EXIV2_PATCH_VERSION}") -+endif() -+ -+include(FindPackageHandleStandardArgs) -+find_package_handle_standard_args(LibExiv2 -+ FOUND_VAR LibExiv2_FOUND -+ REQUIRED_VARS LibExiv2_LIBRARIES LibExiv2_INCLUDE_DIRS -+ VERSION_VAR LibExiv2_VERSION -+) -+ -+mark_as_advanced(LibExiv2_INCLUDE_DIRS LibExiv2_LIBRARIES) -+ -+if(LibExiv2_FOUND AND NOT TARGET LibExiv2::LibExiv2) -+ add_library(LibExiv2::LibExiv2 UNKNOWN IMPORTED) -+ set_target_properties(LibExiv2::LibExiv2 PROPERTIES -+ IMPORTED_LOCATION "${LibExiv2_LIBRARIES}" -+ INTERFACE_INCLUDE_DIRECTORIES "${LibExiv2_INCLUDE_DIRS}" -+ ) -+endif() -+ -+include(FeatureSummary) -+set_package_properties(LibExiv2 PROPERTIES -+ URL "http://www.exiv2.org" -+ DESCRIPTION "Image metadata support" -+) -diff --git a/cmake/templates/libkexiv2.pc.cmake.in b/cmake/templates/libkexiv2.pc.cmake.in -index 1df60df..e80e0ec 100644 ---- cmake/templates/libkexiv2.pc.cmake.in -+++ cmake/templates/libkexiv2.pc.cmake.in -@@ -7,6 +7,6 @@ Name: ${PROJECT_NAME} - Description: A C++ library to manipulate EXIF/IPTC/XMP metadata using Exiv2 library. - URL: https://cgit.kde.org/libkexiv2.git/ - Requires: --Version: ${KEXIV2_LIB_VERSION_STRING} -+Version: ${libkexiv2_VERSION} - Libs: -L${LIB_INSTALL_DIR} -lkexiv2 - Cflags: -I${INCLUDE_INSTALL_DIR} -diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt -index 2b2df03..8ac18f5 100644 ---- src/CMakeLists.txt -+++ src/CMakeLists.txt -@@ -6,7 +6,6 @@ - - kde_enable_exceptions() - --include_directories(${EXIV2_INCLUDE_DIR}) - include_directories(${CMAKE_CURRENT_BINARY_DIR}/..) - - add_definitions(${EXIV2_DEFINITIONS}) -@@ -55,7 +54,7 @@ target_include_directories(KF5KExiv2 INTERFACE - - target_link_libraries(KF5KExiv2 - PRIVATE -- ${EXIV2_LIBRARIES} -+ LibExiv2::LibExiv2 - PUBLIC - Qt5::Core - Qt5::Gui -diff --git a/src/kexiv2.cpp b/src/kexiv2.cpp -index 04c4aa4..b7bbc1a 100644 ---- src/kexiv2.cpp -+++ src/kexiv2.cpp -@@ -153,7 +153,7 @@ QString KExiv2::Exiv2Version() - // Since 0.14.0 release, we can extract run-time version of Exiv2. - // else we return make version. - -- return QString::fromLatin1(Exiv2::version()); -+ return QString::fromStdString(Exiv2::versionString()); - } - - QString KExiv2::version() -diff --git a/src/kexiv2_p.cpp b/src/kexiv2_p.cpp -index cb6b134..2a287ab 100644 ---- src/kexiv2_p.cpp -+++ src/kexiv2_p.cpp -@@ -124,19 +124,15 @@ bool KExiv2::Private::saveToFile(const QFileInfo& finfo) const - - QStringList rawTiffBasedSupported, rawTiffBasedNotSupported; - -- // Raw files supported by Exiv2 0.21 -+ // Raw files supported by Exiv2 0.23 - rawTiffBasedSupported << QString::fromLatin1("dng") - << QString::fromLatin1("nef") - << QString::fromLatin1("pef") - << QString::fromLatin1("orf") -- << QString::fromLatin1("srw"); -+ << QString::fromLatin1("srw") -+ << QString::fromLatin1("cr2"); - -- if (Exiv2::testVersion(0,23,0)) -- { -- rawTiffBasedSupported << QString::fromLatin1("cr2"); -- } -- -- // Raw files not supported by Exiv2 0.21 -+ // Raw files not supported by Exiv2 0.23 - rawTiffBasedNotSupported << QString::fromLatin1("3fr") - << QString::fromLatin1("arw") - << QString::fromLatin1("dcr") -@@ -149,11 +145,6 @@ bool KExiv2::Private::saveToFile(const QFileInfo& finfo) const - << QString::fromLatin1("srf") - << QString::fromLatin1("rw2"); - -- if (!Exiv2::testVersion(0,23,0)) -- { -- rawTiffBasedNotSupported << QString::fromLatin1("cr2"); -- } -- - QString ext = finfo.suffix().toLower(); - - if (!writeRawFiles && (rawTiffBasedSupported.contains(ext) || rawTiffBasedNotSupported.contains(ext)) ) -diff --git a/src/kexiv2_p.h b/src/kexiv2_p.h -index ddf8f6d..be90bf5 100644 ---- src/kexiv2_p.h -+++ src/kexiv2_p.h -@@ -61,17 +61,7 @@ - #pragma GCC visibility push(default) - #endif - --#include --#include --#include --#include --#include --#include --#include --#include --#include --#include --#include -+#include - - // Check if Exiv2 support XMP - -@@ -79,17 +69,6 @@ - # define _XMP_SUPPORT_ 1 - #endif - --// Make sure an EXIV2_TEST_VERSION macro exists: -- --#ifdef EXIV2_VERSION --# ifndef EXIV2_TEST_VERSION --# define EXIV2_TEST_VERSION(major,minor,patch) \ -- ( EXIV2_VERSION >= EXIV2_MAKE_VERSION(major,minor,patch) ) --# endif --#else --# define EXIV2_TEST_VERSION(major,minor,patch) (false) --#endif -- - // With exiv2 > 0.20.0, all makernote header files have been removed to increase binary compatibility. - // See Exiv2 bugzilla entry http://dev.exiv2.org/issues/719 - // and wiki topic http://dev.exiv2.org/boards/3/topics/583 -diff --git a/src/kexiv2exif.cpp b/src/kexiv2exif.cpp -index 11c8948..52cd1a4 100644 ---- src/kexiv2exif.cpp -+++ src/kexiv2exif.cpp -@@ -987,7 +987,11 @@ bool KExiv2::setTiffThumbnail(const QImage& thumbImage, bool setProgramName) con - - if (pos == d->exifMetadata().end() || pos->count() != 1 || pos->toLong() != 0) - { -+#if EXIV2_TEST_VERSION(0,27,0) -+ throw Exiv2::Error(Exiv2::kerErrorMessage, "Exif.Image.NewSubfileType missing or not set as main image"); -+#else - throw Exiv2::Error(1, "Exif.Image.NewSubfileType missing or not set as main image"); -+#endif - } - - // Remove sub-IFD tags Property changes on: head/graphics/libkexiv2/files/patch-git_d1be929 ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/graphics/libkexiv2/Makefile =================================================================== --- head/graphics/libkexiv2/Makefile (revision 499276) +++ head/graphics/libkexiv2/Makefile (revision 499277) @@ -1,21 +1,20 @@ # $FreeBSD$ PORTNAME= libkexiv2 DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 2 CATEGORIES= graphics kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Exiv2 library interface for KDE LIB_DEPENDS= libexiv2.so:graphics/exiv2 USES= cmake compiler:c++11-lang kde:5 pkgconfig qt:5 tar:xz USE_KDE= ecm USE_QT= core gui \ buildtools_build qmake_build USE_LDCONFIG= yes OPTIONS_DEFINE= DOCS .include Index: head/graphics/libkexiv2/distinfo =================================================================== --- head/graphics/libkexiv2/distinfo (revision 499276) +++ head/graphics/libkexiv2/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551811028 -SHA256 (KDE/applications/18.12.3/libkexiv2-18.12.3.tar.xz) = 1d14ff63af42ab7e19e2039648a95ea5dc946afbe3e3df52c17ce1618a02ebdc -SIZE (KDE/applications/18.12.3/libkexiv2-18.12.3.tar.xz) = 64524 +TIMESTAMP = 1555094845 +SHA256 (KDE/applications/19.04.0/libkexiv2-19.04.0.tar.xz) = 9fcafa932631429af1693642415d2f202ad29338b63949b5e8661135eb69dc19 +SIZE (KDE/applications/19.04.0/libkexiv2-19.04.0.tar.xz) = 64444 Index: head/graphics/libkipi/distinfo =================================================================== --- head/graphics/libkipi/distinfo (revision 499276) +++ head/graphics/libkipi/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551811030 -SHA256 (KDE/applications/18.12.3/libkipi-18.12.3.tar.xz) = 96abf4552d535cf101c76ff5b1cb0198eccfd4bdfb7dc192b66bf709af037a31 -SIZE (KDE/applications/18.12.3/libkipi-18.12.3.tar.xz) = 103504 +TIMESTAMP = 1555094845 +SHA256 (KDE/applications/19.04.0/libkipi-19.04.0.tar.xz) = 6fc176e72e829dafe19e17a1d97b032f464d837621989751efe38cdd03d7d285 +SIZE (KDE/applications/19.04.0/libkipi-19.04.0.tar.xz) = 103432 Index: head/graphics/libksane/distinfo =================================================================== --- head/graphics/libksane/distinfo (revision 499276) +++ head/graphics/libksane/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551811026 -SHA256 (KDE/applications/18.12.3/libksane-18.12.3.tar.xz) = 40bf814cebac7ef00dc18fbdeabb2f9fd786c9144d787d5dc36a58fe18c33034 -SIZE (KDE/applications/18.12.3/libksane-18.12.3.tar.xz) = 137764 +TIMESTAMP = 1555094846 +SHA256 (KDE/applications/19.04.0/libksane-19.04.0.tar.xz) = 15a4f14ddb26e7e0ed54926c54941b29eebba1fabb2e75ad9f5cd48b9b673f58 +SIZE (KDE/applications/19.04.0/libksane-19.04.0.tar.xz) = 137996 Index: head/graphics/libksane/pkg-plist =================================================================== --- head/graphics/libksane/pkg-plist (revision 499276) +++ head/graphics/libksane/pkg-plist (revision 499277) @@ -1,64 +1,64 @@ include/KF5/KSane/KSaneWidget include/KF5/KSane/ksane_export.h include/KF5/KSane/ksanewidget.h include/KF5/ksane_version.h lib/cmake/KF5Sane/KF5SaneConfig.cmake lib/cmake/KF5Sane/KF5SaneConfigVersion.cmake lib/cmake/KF5Sane/KF5SaneTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5Sane/KF5SaneTargets.cmake lib/libKF5Sane.so lib/libKF5Sane.so.5 -lib/libKF5Sane.so.5.37.0 +lib/libKF5Sane.so.5.55.0 share/icons/hicolor/16x16/actions/black-white.png share/icons/hicolor/16x16/actions/color.png share/icons/hicolor/16x16/actions/gray-scale.png share/locale/ar/LC_MESSAGES/libksane.mo share/locale/bg/LC_MESSAGES/libksane.mo share/locale/bs/LC_MESSAGES/libksane.mo share/locale/ca/LC_MESSAGES/libksane.mo share/locale/ca@valencia/LC_MESSAGES/libksane.mo share/locale/cs/LC_MESSAGES/libksane.mo share/locale/da/LC_MESSAGES/libksane.mo share/locale/de/LC_MESSAGES/libksane.mo share/locale/el/LC_MESSAGES/libksane.mo share/locale/en_GB/LC_MESSAGES/libksane.mo share/locale/eo/LC_MESSAGES/libksane.mo share/locale/es/LC_MESSAGES/libksane.mo share/locale/et/LC_MESSAGES/libksane.mo share/locale/eu/LC_MESSAGES/libksane.mo share/locale/fi/LC_MESSAGES/libksane.mo share/locale/fr/LC_MESSAGES/libksane.mo share/locale/ga/LC_MESSAGES/libksane.mo share/locale/gl/LC_MESSAGES/libksane.mo share/locale/hi/LC_MESSAGES/libksane.mo share/locale/hr/LC_MESSAGES/libksane.mo share/locale/hu/LC_MESSAGES/libksane.mo share/locale/ia/LC_MESSAGES/libksane.mo share/locale/is/LC_MESSAGES/libksane.mo share/locale/it/LC_MESSAGES/libksane.mo share/locale/ja/LC_MESSAGES/libksane.mo share/locale/kk/LC_MESSAGES/libksane.mo share/locale/km/LC_MESSAGES/libksane.mo share/locale/ko/LC_MESSAGES/libksane.mo share/locale/lt/LC_MESSAGES/libksane.mo share/locale/lv/LC_MESSAGES/libksane.mo share/locale/mr/LC_MESSAGES/libksane.mo share/locale/nb/LC_MESSAGES/libksane.mo share/locale/nds/LC_MESSAGES/libksane.mo share/locale/nl/LC_MESSAGES/libksane.mo share/locale/nn/LC_MESSAGES/libksane.mo share/locale/pa/LC_MESSAGES/libksane.mo share/locale/pl/LC_MESSAGES/libksane.mo share/locale/pt/LC_MESSAGES/libksane.mo share/locale/pt_BR/LC_MESSAGES/libksane.mo share/locale/ro/LC_MESSAGES/libksane.mo share/locale/ru/LC_MESSAGES/libksane.mo share/locale/sk/LC_MESSAGES/libksane.mo share/locale/sl/LC_MESSAGES/libksane.mo share/locale/sv/LC_MESSAGES/libksane.mo share/locale/tr/LC_MESSAGES/libksane.mo share/locale/ug/LC_MESSAGES/libksane.mo share/locale/uk/LC_MESSAGES/libksane.mo share/locale/wa/LC_MESSAGES/libksane.mo share/locale/zh_CN/LC_MESSAGES/libksane.mo share/locale/zh_TW/LC_MESSAGES/libksane.mo Index: head/graphics/okular/Makefile =================================================================== --- head/graphics/okular/Makefile (revision 499276) +++ head/graphics/okular/Makefile (revision 499277) @@ -1,47 +1,46 @@ # $FreeBSD$ PORTNAME= okular DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 3 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 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= 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 499276) +++ head/graphics/okular/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551811027 -SHA256 (KDE/applications/18.12.3/okular-18.12.3.tar.xz) = d7ef9b59acb5746ebc64399f4c1a99faf0c1530bf6a818b3bfd34b73476d90ab -SIZE (KDE/applications/18.12.3/okular-18.12.3.tar.xz) = 6555676 +TIMESTAMP = 1555094846 +SHA256 (KDE/applications/19.04.0/okular-19.04.0.tar.xz) = 1947b394dfd8da9c7cc4234e308e2476ffa44dc58542d246eafc8397d8991b6e +SIZE (KDE/applications/19.04.0/okular-19.04.0.tar.xz) = 6694808 Index: head/graphics/okular/pkg-plist =================================================================== --- head/graphics/okular/pkg-plist (revision 499276) +++ head/graphics/okular/pkg-plist (revision 499277) @@ -1,1080 +1,1081 @@ bin/okular bin/okularkirigami etc/xdg/okular.categories include/okular/core/action.h include/okular/core/annotations.h include/okular/core/area.h include/okular/core/document.h include/okular/core/fileprinter.h include/okular/core/fontinfo.h include/okular/core/form.h include/okular/core/generator.h include/okular/core/global.h include/okular/core/observer.h include/okular/core/okularcore_export.h include/okular/core/page.h include/okular/core/pagesize.h include/okular/core/pagetransition.h include/okular/core/settings_core.h +include/okular/core/signatureutils.h include/okular/core/sound.h include/okular/core/sourcereference.h include/okular/core/textdocumentgenerator.h include/okular/core/textdocumentsettings.h include/okular/core/textpage.h include/okular/core/tile.h include/okular/core/utils.h include/okular/core/version.h include/okular/interfaces/configinterface.h include/okular/interfaces/guiinterface.h include/okular/interfaces/printinterface.h include/okular/interfaces/saveinterface.h include/okular/interfaces/viewerinterface.h lib/cmake/Okular5/Okular5Config.cmake lib/cmake/Okular5/Okular5ConfigVersion.cmake lib/cmake/Okular5/Okular5Targets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/Okular5/Okular5Targets.cmake lib/libOkular5Core.so lib/libOkular5Core.so.9 lib/libOkular5Core.so.9.0.0 %%QT_PLUGINDIR%%/kio_msits.so %%QT_PLUGINDIR%%/okular/generators/okularGenerator_chmlib.so %%QT_PLUGINDIR%%/okular/generators/okularGenerator_comicbook.so %%QT_PLUGINDIR%%/okular/generators/okularGenerator_djvu.so %%QT_PLUGINDIR%%/okular/generators/okularGenerator_dvi.so %%QT_PLUGINDIR%%/okular/generators/okularGenerator_epub.so %%QT_PLUGINDIR%%/okular/generators/okularGenerator_fax.so %%QT_PLUGINDIR%%/okular/generators/okularGenerator_fb.so %%QT_PLUGINDIR%%/okular/generators/okularGenerator_ghostview.so %%QT_PLUGINDIR%%/okular/generators/okularGenerator_kimgio.so %%QT_PLUGINDIR%%/okular/generators/okularGenerator_md.so %%QT_PLUGINDIR%%/okular/generators/okularGenerator_mobi.so %%QT_PLUGINDIR%%/okular/generators/okularGenerator_ooo.so %%QT_PLUGINDIR%%/okular/generators/okularGenerator_plucker.so %%QT_PLUGINDIR%%/okular/generators/okularGenerator_poppler.so %%QT_PLUGINDIR%%/okular/generators/okularGenerator_tiff.so %%QT_PLUGINDIR%%/okular/generators/okularGenerator_txt.so %%QT_PLUGINDIR%%/okular/generators/okularGenerator_xps.so %%QT_PLUGINDIR%%/okularpart.so %%QT_QMLDIR%%/org/kde/okular/DocumentView.qml %%QT_QMLDIR%%/org/kde/okular/libokularplugin.so %%QT_QMLDIR%%/org/kde/okular/private/PageView.qml %%QT_QMLDIR%%/org/kde/okular/qmldir man/ca/man1/okular.1.gz man/de/man1/okular.1.gz man/es/man1/okular.1.gz man/et/man1/okular.1.gz man/fr/man1/okular.1.gz man/it/man1/okular.1.gz man/man1/okular.1.gz man/nl/man1/okular.1.gz man/pt/man1/okular.1.gz man/pt_BR/man1/okular.1.gz man/ru/man1/okular.1.gz man/sv/man1/okular.1.gz man/uk/man1/okular.1.gz share/applications/okularApplication_chm.desktop share/applications/okularApplication_comicbook.desktop share/applications/okularApplication_djvu.desktop share/applications/okularApplication_dvi.desktop share/applications/okularApplication_epub.desktop share/applications/okularApplication_fax.desktop share/applications/okularApplication_fb.desktop share/applications/okularApplication_ghostview.desktop share/applications/okularApplication_kimgio.desktop share/applications/okularApplication_md.desktop share/applications/okularApplication_mobi.desktop share/applications/okularApplication_ooo.desktop share/applications/okularApplication_pdf.desktop share/applications/okularApplication_plucker.desktop share/applications/okularApplication_tiff.desktop share/applications/okularApplication_txt.desktop share/applications/okularApplication_xps.desktop share/applications/org.kde.mobile.okular_chm.desktop share/applications/org.kde.mobile.okular_comicbook.desktop share/applications/org.kde.mobile.okular_djvu.desktop share/applications/org.kde.mobile.okular_dvi.desktop share/applications/org.kde.mobile.okular_epub.desktop share/applications/org.kde.mobile.okular_fax.desktop share/applications/org.kde.mobile.okular_fb.desktop share/applications/org.kde.mobile.okular_ghostview.desktop share/applications/org.kde.mobile.okular_kimgio.desktop share/applications/org.kde.mobile.okular_md.desktop share/applications/org.kde.mobile.okular_mobi.desktop share/applications/org.kde.mobile.okular_ooo.desktop share/applications/org.kde.mobile.okular_pdf.desktop share/applications/org.kde.mobile.okular_plucker.desktop share/applications/org.kde.mobile.okular_tiff.desktop share/applications/org.kde.mobile.okular_txt.desktop share/applications/org.kde.mobile.okular_xps.desktop share/applications/org.kde.okular.desktop share/applications/org.kde.okular.kirigami.desktop share/config.kcfg/gssettings.kcfg share/config.kcfg/okular.kcfg share/config.kcfg/okular_core.kcfg share/config.kcfg/pdfsettings.kcfg share/icons/hicolor/128x128/apps/okular.png share/icons/hicolor/16x16/apps/okular.png share/icons/hicolor/22x22/apps/okular.png share/icons/hicolor/32x32/apps/okular.png share/icons/hicolor/48x48/apps/okular.png share/icons/hicolor/64x64/apps/okular.png share/kconf_update/okular.upd share/kservices5/ms-its.protocol share/kservices5/okularChm.desktop share/kservices5/okularComicbook.desktop share/kservices5/okularDjvu.desktop share/kservices5/okularDvi.desktop share/kservices5/okularEPub.desktop share/kservices5/okularFax.desktop share/kservices5/okularFb.desktop share/kservices5/okularGhostview.desktop share/kservices5/okularKimgio.desktop share/kservices5/okularMd.desktop share/kservices5/okularMobi.desktop share/kservices5/okularOoo.desktop share/kservices5/okularPlucker.desktop share/kservices5/okularPoppler.desktop share/kservices5/okularTiff.desktop share/kservices5/okularTxt.desktop share/kservices5/okularXps.desktop share/kservices5/okular_part.desktop share/kservicetypes5/okularGenerator.desktop share/kxmlgui5/okular/part-viewermode.rc share/kxmlgui5/okular/part.rc share/kxmlgui5/okular/shell.rc share/locale/ar/LC_MESSAGES/okular.mo share/locale/ar/LC_MESSAGES/okular_chm.mo share/locale/ar/LC_MESSAGES/okular_comicbook.mo share/locale/ar/LC_MESSAGES/okular_djvu.mo share/locale/ar/LC_MESSAGES/okular_dvi.mo share/locale/ar/LC_MESSAGES/okular_epub.mo share/locale/ar/LC_MESSAGES/okular_fax.mo share/locale/ar/LC_MESSAGES/okular_fictionbook.mo share/locale/ar/LC_MESSAGES/okular_ghostview.mo share/locale/ar/LC_MESSAGES/okular_kimgio.mo share/locale/ar/LC_MESSAGES/okular_mobi.mo share/locale/ar/LC_MESSAGES/okular_ooo.mo share/locale/ar/LC_MESSAGES/okular_plucker.mo share/locale/ar/LC_MESSAGES/okular_poppler.mo share/locale/ar/LC_MESSAGES/okular_txt.mo share/locale/ar/LC_MESSAGES/okular_xps.mo share/locale/bg/LC_MESSAGES/okular.mo share/locale/bg/LC_MESSAGES/okular_chm.mo share/locale/bg/LC_MESSAGES/okular_comicbook.mo share/locale/bg/LC_MESSAGES/okular_djvu.mo share/locale/bg/LC_MESSAGES/okular_dvi.mo share/locale/bg/LC_MESSAGES/okular_epub.mo share/locale/bg/LC_MESSAGES/okular_fax.mo share/locale/bg/LC_MESSAGES/okular_fictionbook.mo share/locale/bg/LC_MESSAGES/okular_ghostview.mo share/locale/bg/LC_MESSAGES/okular_kimgio.mo share/locale/bg/LC_MESSAGES/okular_mobi.mo share/locale/bg/LC_MESSAGES/okular_ooo.mo share/locale/bg/LC_MESSAGES/okular_plucker.mo share/locale/bg/LC_MESSAGES/okular_poppler.mo share/locale/bg/LC_MESSAGES/okular_txt.mo share/locale/bg/LC_MESSAGES/okular_xps.mo share/locale/bg/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/bs/LC_MESSAGES/okular.mo share/locale/bs/LC_MESSAGES/okular_chm.mo share/locale/bs/LC_MESSAGES/okular_comicbook.mo share/locale/bs/LC_MESSAGES/okular_djvu.mo share/locale/bs/LC_MESSAGES/okular_dvi.mo share/locale/bs/LC_MESSAGES/okular_epub.mo share/locale/bs/LC_MESSAGES/okular_fax.mo share/locale/bs/LC_MESSAGES/okular_fictionbook.mo share/locale/bs/LC_MESSAGES/okular_ghostview.mo share/locale/bs/LC_MESSAGES/okular_kimgio.mo share/locale/bs/LC_MESSAGES/okular_mobi.mo share/locale/bs/LC_MESSAGES/okular_ooo.mo share/locale/bs/LC_MESSAGES/okular_plucker.mo share/locale/bs/LC_MESSAGES/okular_poppler.mo share/locale/bs/LC_MESSAGES/okular_txt.mo share/locale/bs/LC_MESSAGES/okular_xps.mo share/locale/bs/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/ca/LC_MESSAGES/okular.mo share/locale/ca/LC_MESSAGES/okular_chm.mo share/locale/ca/LC_MESSAGES/okular_comicbook.mo share/locale/ca/LC_MESSAGES/okular_djvu.mo share/locale/ca/LC_MESSAGES/okular_dvi.mo share/locale/ca/LC_MESSAGES/okular_epub.mo share/locale/ca/LC_MESSAGES/okular_fax.mo share/locale/ca/LC_MESSAGES/okular_fictionbook.mo share/locale/ca/LC_MESSAGES/okular_ghostview.mo share/locale/ca/LC_MESSAGES/okular_kimgio.mo share/locale/ca/LC_MESSAGES/okular_markdown.mo share/locale/ca/LC_MESSAGES/okular_mobi.mo share/locale/ca/LC_MESSAGES/okular_ooo.mo share/locale/ca/LC_MESSAGES/okular_plucker.mo share/locale/ca/LC_MESSAGES/okular_poppler.mo share/locale/ca/LC_MESSAGES/okular_txt.mo share/locale/ca/LC_MESSAGES/okular_xps.mo share/locale/ca/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/ca@valencia/LC_MESSAGES/okular.mo share/locale/ca@valencia/LC_MESSAGES/okular_chm.mo share/locale/ca@valencia/LC_MESSAGES/okular_comicbook.mo share/locale/ca@valencia/LC_MESSAGES/okular_djvu.mo share/locale/ca@valencia/LC_MESSAGES/okular_dvi.mo share/locale/ca@valencia/LC_MESSAGES/okular_epub.mo share/locale/ca@valencia/LC_MESSAGES/okular_fax.mo share/locale/ca@valencia/LC_MESSAGES/okular_fictionbook.mo share/locale/ca@valencia/LC_MESSAGES/okular_ghostview.mo share/locale/ca@valencia/LC_MESSAGES/okular_kimgio.mo share/locale/ca@valencia/LC_MESSAGES/okular_markdown.mo share/locale/ca@valencia/LC_MESSAGES/okular_mobi.mo share/locale/ca@valencia/LC_MESSAGES/okular_ooo.mo share/locale/ca@valencia/LC_MESSAGES/okular_plucker.mo share/locale/ca@valencia/LC_MESSAGES/okular_poppler.mo share/locale/ca@valencia/LC_MESSAGES/okular_txt.mo share/locale/ca@valencia/LC_MESSAGES/okular_xps.mo share/locale/ca@valencia/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/cs/LC_MESSAGES/okular.mo share/locale/cs/LC_MESSAGES/okular_chm.mo share/locale/cs/LC_MESSAGES/okular_comicbook.mo share/locale/cs/LC_MESSAGES/okular_djvu.mo share/locale/cs/LC_MESSAGES/okular_dvi.mo share/locale/cs/LC_MESSAGES/okular_epub.mo share/locale/cs/LC_MESSAGES/okular_fax.mo share/locale/cs/LC_MESSAGES/okular_fictionbook.mo share/locale/cs/LC_MESSAGES/okular_ghostview.mo share/locale/cs/LC_MESSAGES/okular_kimgio.mo share/locale/cs/LC_MESSAGES/okular_markdown.mo share/locale/cs/LC_MESSAGES/okular_mobi.mo share/locale/cs/LC_MESSAGES/okular_ooo.mo share/locale/cs/LC_MESSAGES/okular_plucker.mo share/locale/cs/LC_MESSAGES/okular_poppler.mo share/locale/cs/LC_MESSAGES/okular_txt.mo share/locale/cs/LC_MESSAGES/okular_xps.mo share/locale/cs/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/da/LC_MESSAGES/okular.mo share/locale/da/LC_MESSAGES/okular_chm.mo share/locale/da/LC_MESSAGES/okular_comicbook.mo share/locale/da/LC_MESSAGES/okular_djvu.mo share/locale/da/LC_MESSAGES/okular_dvi.mo share/locale/da/LC_MESSAGES/okular_epub.mo share/locale/da/LC_MESSAGES/okular_fax.mo share/locale/da/LC_MESSAGES/okular_fictionbook.mo share/locale/da/LC_MESSAGES/okular_ghostview.mo share/locale/da/LC_MESSAGES/okular_kimgio.mo share/locale/da/LC_MESSAGES/okular_mobi.mo share/locale/da/LC_MESSAGES/okular_ooo.mo share/locale/da/LC_MESSAGES/okular_plucker.mo share/locale/da/LC_MESSAGES/okular_poppler.mo share/locale/da/LC_MESSAGES/okular_txt.mo share/locale/da/LC_MESSAGES/okular_xps.mo share/locale/da/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/de/LC_MESSAGES/okular.mo share/locale/de/LC_MESSAGES/okular_chm.mo share/locale/de/LC_MESSAGES/okular_comicbook.mo share/locale/de/LC_MESSAGES/okular_djvu.mo share/locale/de/LC_MESSAGES/okular_dvi.mo share/locale/de/LC_MESSAGES/okular_epub.mo share/locale/de/LC_MESSAGES/okular_fax.mo share/locale/de/LC_MESSAGES/okular_fictionbook.mo share/locale/de/LC_MESSAGES/okular_ghostview.mo share/locale/de/LC_MESSAGES/okular_kimgio.mo share/locale/de/LC_MESSAGES/okular_markdown.mo share/locale/de/LC_MESSAGES/okular_mobi.mo share/locale/de/LC_MESSAGES/okular_ooo.mo share/locale/de/LC_MESSAGES/okular_plucker.mo share/locale/de/LC_MESSAGES/okular_poppler.mo share/locale/de/LC_MESSAGES/okular_txt.mo share/locale/de/LC_MESSAGES/okular_xps.mo share/locale/de/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/el/LC_MESSAGES/okular.mo share/locale/el/LC_MESSAGES/okular_chm.mo share/locale/el/LC_MESSAGES/okular_comicbook.mo share/locale/el/LC_MESSAGES/okular_djvu.mo share/locale/el/LC_MESSAGES/okular_dvi.mo share/locale/el/LC_MESSAGES/okular_epub.mo share/locale/el/LC_MESSAGES/okular_fax.mo share/locale/el/LC_MESSAGES/okular_fictionbook.mo share/locale/el/LC_MESSAGES/okular_ghostview.mo share/locale/el/LC_MESSAGES/okular_kimgio.mo share/locale/el/LC_MESSAGES/okular_markdown.mo share/locale/el/LC_MESSAGES/okular_mobi.mo share/locale/el/LC_MESSAGES/okular_ooo.mo share/locale/el/LC_MESSAGES/okular_plucker.mo share/locale/el/LC_MESSAGES/okular_poppler.mo share/locale/el/LC_MESSAGES/okular_txt.mo share/locale/el/LC_MESSAGES/okular_xps.mo share/locale/el/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/en_GB/LC_MESSAGES/okular.mo share/locale/en_GB/LC_MESSAGES/okular_chm.mo share/locale/en_GB/LC_MESSAGES/okular_comicbook.mo share/locale/en_GB/LC_MESSAGES/okular_djvu.mo share/locale/en_GB/LC_MESSAGES/okular_dvi.mo share/locale/en_GB/LC_MESSAGES/okular_epub.mo share/locale/en_GB/LC_MESSAGES/okular_fax.mo share/locale/en_GB/LC_MESSAGES/okular_fictionbook.mo share/locale/en_GB/LC_MESSAGES/okular_ghostview.mo share/locale/en_GB/LC_MESSAGES/okular_kimgio.mo share/locale/en_GB/LC_MESSAGES/okular_markdown.mo share/locale/en_GB/LC_MESSAGES/okular_mobi.mo share/locale/en_GB/LC_MESSAGES/okular_ooo.mo share/locale/en_GB/LC_MESSAGES/okular_plucker.mo share/locale/en_GB/LC_MESSAGES/okular_poppler.mo share/locale/en_GB/LC_MESSAGES/okular_txt.mo share/locale/en_GB/LC_MESSAGES/okular_xps.mo share/locale/en_GB/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/eo/LC_MESSAGES/okular.mo share/locale/eo/LC_MESSAGES/okular_chm.mo share/locale/eo/LC_MESSAGES/okular_comicbook.mo share/locale/eo/LC_MESSAGES/okular_djvu.mo share/locale/eo/LC_MESSAGES/okular_dvi.mo share/locale/eo/LC_MESSAGES/okular_epub.mo share/locale/eo/LC_MESSAGES/okular_fax.mo share/locale/eo/LC_MESSAGES/okular_fictionbook.mo share/locale/eo/LC_MESSAGES/okular_ghostview.mo share/locale/eo/LC_MESSAGES/okular_kimgio.mo share/locale/eo/LC_MESSAGES/okular_mobi.mo share/locale/eo/LC_MESSAGES/okular_ooo.mo share/locale/eo/LC_MESSAGES/okular_plucker.mo share/locale/eo/LC_MESSAGES/okular_poppler.mo share/locale/eo/LC_MESSAGES/okular_xps.mo share/locale/es/LC_MESSAGES/okular.mo share/locale/es/LC_MESSAGES/okular_chm.mo share/locale/es/LC_MESSAGES/okular_comicbook.mo share/locale/es/LC_MESSAGES/okular_djvu.mo share/locale/es/LC_MESSAGES/okular_dvi.mo share/locale/es/LC_MESSAGES/okular_epub.mo share/locale/es/LC_MESSAGES/okular_fax.mo share/locale/es/LC_MESSAGES/okular_fictionbook.mo share/locale/es/LC_MESSAGES/okular_ghostview.mo share/locale/es/LC_MESSAGES/okular_kimgio.mo share/locale/es/LC_MESSAGES/okular_markdown.mo share/locale/es/LC_MESSAGES/okular_mobi.mo share/locale/es/LC_MESSAGES/okular_ooo.mo share/locale/es/LC_MESSAGES/okular_plucker.mo share/locale/es/LC_MESSAGES/okular_poppler.mo share/locale/es/LC_MESSAGES/okular_txt.mo share/locale/es/LC_MESSAGES/okular_xps.mo share/locale/es/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/et/LC_MESSAGES/okular.mo share/locale/et/LC_MESSAGES/okular_chm.mo share/locale/et/LC_MESSAGES/okular_comicbook.mo share/locale/et/LC_MESSAGES/okular_djvu.mo share/locale/et/LC_MESSAGES/okular_dvi.mo share/locale/et/LC_MESSAGES/okular_epub.mo share/locale/et/LC_MESSAGES/okular_fax.mo share/locale/et/LC_MESSAGES/okular_fictionbook.mo share/locale/et/LC_MESSAGES/okular_ghostview.mo share/locale/et/LC_MESSAGES/okular_kimgio.mo share/locale/et/LC_MESSAGES/okular_mobi.mo share/locale/et/LC_MESSAGES/okular_ooo.mo share/locale/et/LC_MESSAGES/okular_plucker.mo share/locale/et/LC_MESSAGES/okular_poppler.mo share/locale/et/LC_MESSAGES/okular_txt.mo share/locale/et/LC_MESSAGES/okular_xps.mo share/locale/et/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/eu/LC_MESSAGES/okular.mo share/locale/eu/LC_MESSAGES/okular_chm.mo share/locale/eu/LC_MESSAGES/okular_comicbook.mo share/locale/eu/LC_MESSAGES/okular_djvu.mo share/locale/eu/LC_MESSAGES/okular_dvi.mo share/locale/eu/LC_MESSAGES/okular_epub.mo share/locale/eu/LC_MESSAGES/okular_fax.mo share/locale/eu/LC_MESSAGES/okular_fictionbook.mo share/locale/eu/LC_MESSAGES/okular_ghostview.mo share/locale/eu/LC_MESSAGES/okular_kimgio.mo share/locale/eu/LC_MESSAGES/okular_markdown.mo share/locale/eu/LC_MESSAGES/okular_mobi.mo share/locale/eu/LC_MESSAGES/okular_ooo.mo share/locale/eu/LC_MESSAGES/okular_plucker.mo share/locale/eu/LC_MESSAGES/okular_poppler.mo share/locale/eu/LC_MESSAGES/okular_txt.mo share/locale/eu/LC_MESSAGES/okular_xps.mo share/locale/eu/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/fa/LC_MESSAGES/okular.mo share/locale/fi/LC_MESSAGES/okular.mo share/locale/fi/LC_MESSAGES/okular_chm.mo share/locale/fi/LC_MESSAGES/okular_comicbook.mo share/locale/fi/LC_MESSAGES/okular_djvu.mo share/locale/fi/LC_MESSAGES/okular_dvi.mo share/locale/fi/LC_MESSAGES/okular_epub.mo share/locale/fi/LC_MESSAGES/okular_fax.mo share/locale/fi/LC_MESSAGES/okular_fictionbook.mo share/locale/fi/LC_MESSAGES/okular_ghostview.mo share/locale/fi/LC_MESSAGES/okular_kimgio.mo share/locale/fi/LC_MESSAGES/okular_markdown.mo share/locale/fi/LC_MESSAGES/okular_mobi.mo share/locale/fi/LC_MESSAGES/okular_ooo.mo share/locale/fi/LC_MESSAGES/okular_plucker.mo share/locale/fi/LC_MESSAGES/okular_poppler.mo share/locale/fi/LC_MESSAGES/okular_txt.mo share/locale/fi/LC_MESSAGES/okular_xps.mo share/locale/fi/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/fr/LC_MESSAGES/okular.mo share/locale/fr/LC_MESSAGES/okular_chm.mo share/locale/fr/LC_MESSAGES/okular_comicbook.mo share/locale/fr/LC_MESSAGES/okular_djvu.mo share/locale/fr/LC_MESSAGES/okular_dvi.mo share/locale/fr/LC_MESSAGES/okular_epub.mo share/locale/fr/LC_MESSAGES/okular_fax.mo share/locale/fr/LC_MESSAGES/okular_fictionbook.mo share/locale/fr/LC_MESSAGES/okular_ghostview.mo share/locale/fr/LC_MESSAGES/okular_kimgio.mo share/locale/fr/LC_MESSAGES/okular_markdown.mo share/locale/fr/LC_MESSAGES/okular_mobi.mo share/locale/fr/LC_MESSAGES/okular_ooo.mo share/locale/fr/LC_MESSAGES/okular_plucker.mo share/locale/fr/LC_MESSAGES/okular_poppler.mo share/locale/fr/LC_MESSAGES/okular_txt.mo share/locale/fr/LC_MESSAGES/okular_xps.mo share/locale/fr/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/ga/LC_MESSAGES/okular.mo share/locale/ga/LC_MESSAGES/okular_chm.mo share/locale/ga/LC_MESSAGES/okular_comicbook.mo share/locale/ga/LC_MESSAGES/okular_djvu.mo share/locale/ga/LC_MESSAGES/okular_dvi.mo share/locale/ga/LC_MESSAGES/okular_epub.mo share/locale/ga/LC_MESSAGES/okular_fax.mo share/locale/ga/LC_MESSAGES/okular_fictionbook.mo share/locale/ga/LC_MESSAGES/okular_ghostview.mo share/locale/ga/LC_MESSAGES/okular_kimgio.mo share/locale/ga/LC_MESSAGES/okular_mobi.mo share/locale/ga/LC_MESSAGES/okular_ooo.mo share/locale/ga/LC_MESSAGES/okular_plucker.mo share/locale/ga/LC_MESSAGES/okular_poppler.mo share/locale/ga/LC_MESSAGES/okular_xps.mo share/locale/ga/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/gl/LC_MESSAGES/okular.mo share/locale/gl/LC_MESSAGES/okular_chm.mo share/locale/gl/LC_MESSAGES/okular_comicbook.mo share/locale/gl/LC_MESSAGES/okular_djvu.mo share/locale/gl/LC_MESSAGES/okular_dvi.mo share/locale/gl/LC_MESSAGES/okular_epub.mo share/locale/gl/LC_MESSAGES/okular_fax.mo share/locale/gl/LC_MESSAGES/okular_fictionbook.mo share/locale/gl/LC_MESSAGES/okular_ghostview.mo share/locale/gl/LC_MESSAGES/okular_kimgio.mo share/locale/gl/LC_MESSAGES/okular_markdown.mo share/locale/gl/LC_MESSAGES/okular_mobi.mo share/locale/gl/LC_MESSAGES/okular_ooo.mo share/locale/gl/LC_MESSAGES/okular_plucker.mo share/locale/gl/LC_MESSAGES/okular_poppler.mo share/locale/gl/LC_MESSAGES/okular_txt.mo share/locale/gl/LC_MESSAGES/okular_xps.mo share/locale/gl/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/he/LC_MESSAGES/okular.mo share/locale/hi/LC_MESSAGES/okular.mo share/locale/hi/LC_MESSAGES/okular_chm.mo share/locale/hi/LC_MESSAGES/okular_djvu.mo share/locale/hi/LC_MESSAGES/okular_dvi.mo share/locale/hi/LC_MESSAGES/okular_fictionbook.mo share/locale/hi/LC_MESSAGES/okular_ghostview.mo share/locale/hi/LC_MESSAGES/okular_kimgio.mo share/locale/hi/LC_MESSAGES/okular_ooo.mo share/locale/hi/LC_MESSAGES/okular_plucker.mo share/locale/hi/LC_MESSAGES/okular_poppler.mo share/locale/hi/LC_MESSAGES/okular_xps.mo share/locale/hr/LC_MESSAGES/okular.mo share/locale/hr/LC_MESSAGES/okular_chm.mo share/locale/hr/LC_MESSAGES/okular_comicbook.mo share/locale/hr/LC_MESSAGES/okular_djvu.mo share/locale/hr/LC_MESSAGES/okular_dvi.mo share/locale/hr/LC_MESSAGES/okular_epub.mo share/locale/hr/LC_MESSAGES/okular_fax.mo share/locale/hr/LC_MESSAGES/okular_fictionbook.mo share/locale/hr/LC_MESSAGES/okular_ghostview.mo share/locale/hr/LC_MESSAGES/okular_kimgio.mo share/locale/hr/LC_MESSAGES/okular_mobi.mo share/locale/hr/LC_MESSAGES/okular_ooo.mo share/locale/hr/LC_MESSAGES/okular_plucker.mo share/locale/hr/LC_MESSAGES/okular_poppler.mo share/locale/hr/LC_MESSAGES/okular_xps.mo share/locale/hu/LC_MESSAGES/okular.mo share/locale/hu/LC_MESSAGES/okular_chm.mo share/locale/hu/LC_MESSAGES/okular_comicbook.mo share/locale/hu/LC_MESSAGES/okular_djvu.mo share/locale/hu/LC_MESSAGES/okular_dvi.mo share/locale/hu/LC_MESSAGES/okular_epub.mo share/locale/hu/LC_MESSAGES/okular_fax.mo share/locale/hu/LC_MESSAGES/okular_fictionbook.mo share/locale/hu/LC_MESSAGES/okular_ghostview.mo share/locale/hu/LC_MESSAGES/okular_kimgio.mo share/locale/hu/LC_MESSAGES/okular_mobi.mo share/locale/hu/LC_MESSAGES/okular_ooo.mo share/locale/hu/LC_MESSAGES/okular_plucker.mo share/locale/hu/LC_MESSAGES/okular_poppler.mo share/locale/hu/LC_MESSAGES/okular_txt.mo share/locale/hu/LC_MESSAGES/okular_xps.mo share/locale/hu/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/ia/LC_MESSAGES/okular.mo share/locale/ia/LC_MESSAGES/okular_chm.mo share/locale/ia/LC_MESSAGES/okular_comicbook.mo share/locale/ia/LC_MESSAGES/okular_djvu.mo share/locale/ia/LC_MESSAGES/okular_dvi.mo share/locale/ia/LC_MESSAGES/okular_epub.mo share/locale/ia/LC_MESSAGES/okular_fax.mo share/locale/ia/LC_MESSAGES/okular_fictionbook.mo share/locale/ia/LC_MESSAGES/okular_ghostview.mo share/locale/ia/LC_MESSAGES/okular_kimgio.mo share/locale/ia/LC_MESSAGES/okular_markdown.mo share/locale/ia/LC_MESSAGES/okular_mobi.mo share/locale/ia/LC_MESSAGES/okular_ooo.mo share/locale/ia/LC_MESSAGES/okular_plucker.mo share/locale/ia/LC_MESSAGES/okular_poppler.mo share/locale/ia/LC_MESSAGES/okular_txt.mo share/locale/ia/LC_MESSAGES/okular_xps.mo share/locale/ia/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/id/LC_MESSAGES/okular.mo share/locale/is/LC_MESSAGES/okular.mo share/locale/is/LC_MESSAGES/okular_chm.mo share/locale/is/LC_MESSAGES/okular_comicbook.mo share/locale/is/LC_MESSAGES/okular_djvu.mo share/locale/is/LC_MESSAGES/okular_dvi.mo share/locale/is/LC_MESSAGES/okular_epub.mo share/locale/is/LC_MESSAGES/okular_fax.mo share/locale/is/LC_MESSAGES/okular_fictionbook.mo share/locale/is/LC_MESSAGES/okular_ghostview.mo share/locale/is/LC_MESSAGES/okular_kimgio.mo share/locale/is/LC_MESSAGES/okular_mobi.mo share/locale/is/LC_MESSAGES/okular_ooo.mo share/locale/is/LC_MESSAGES/okular_plucker.mo share/locale/is/LC_MESSAGES/okular_poppler.mo share/locale/is/LC_MESSAGES/okular_xps.mo share/locale/is/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/it/LC_MESSAGES/okular.mo share/locale/it/LC_MESSAGES/okular_chm.mo share/locale/it/LC_MESSAGES/okular_comicbook.mo share/locale/it/LC_MESSAGES/okular_djvu.mo share/locale/it/LC_MESSAGES/okular_dvi.mo share/locale/it/LC_MESSAGES/okular_epub.mo share/locale/it/LC_MESSAGES/okular_fax.mo share/locale/it/LC_MESSAGES/okular_fictionbook.mo share/locale/it/LC_MESSAGES/okular_ghostview.mo share/locale/it/LC_MESSAGES/okular_kimgio.mo share/locale/it/LC_MESSAGES/okular_markdown.mo share/locale/it/LC_MESSAGES/okular_mobi.mo share/locale/it/LC_MESSAGES/okular_ooo.mo share/locale/it/LC_MESSAGES/okular_plucker.mo share/locale/it/LC_MESSAGES/okular_poppler.mo share/locale/it/LC_MESSAGES/okular_txt.mo share/locale/it/LC_MESSAGES/okular_xps.mo share/locale/it/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/ja/LC_MESSAGES/okular.mo share/locale/ja/LC_MESSAGES/okular_chm.mo share/locale/ja/LC_MESSAGES/okular_comicbook.mo share/locale/ja/LC_MESSAGES/okular_djvu.mo share/locale/ja/LC_MESSAGES/okular_dvi.mo share/locale/ja/LC_MESSAGES/okular_epub.mo share/locale/ja/LC_MESSAGES/okular_fax.mo share/locale/ja/LC_MESSAGES/okular_fictionbook.mo share/locale/ja/LC_MESSAGES/okular_ghostview.mo share/locale/ja/LC_MESSAGES/okular_kimgio.mo share/locale/ja/LC_MESSAGES/okular_markdown.mo share/locale/ja/LC_MESSAGES/okular_mobi.mo share/locale/ja/LC_MESSAGES/okular_ooo.mo share/locale/ja/LC_MESSAGES/okular_plucker.mo share/locale/ja/LC_MESSAGES/okular_poppler.mo share/locale/ja/LC_MESSAGES/okular_txt.mo share/locale/ja/LC_MESSAGES/okular_xps.mo share/locale/ja/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/kk/LC_MESSAGES/okular.mo share/locale/kk/LC_MESSAGES/okular_chm.mo share/locale/kk/LC_MESSAGES/okular_comicbook.mo share/locale/kk/LC_MESSAGES/okular_djvu.mo share/locale/kk/LC_MESSAGES/okular_dvi.mo share/locale/kk/LC_MESSAGES/okular_epub.mo share/locale/kk/LC_MESSAGES/okular_fax.mo share/locale/kk/LC_MESSAGES/okular_fictionbook.mo share/locale/kk/LC_MESSAGES/okular_ghostview.mo share/locale/kk/LC_MESSAGES/okular_kimgio.mo share/locale/kk/LC_MESSAGES/okular_mobi.mo share/locale/kk/LC_MESSAGES/okular_ooo.mo share/locale/kk/LC_MESSAGES/okular_plucker.mo share/locale/kk/LC_MESSAGES/okular_poppler.mo share/locale/kk/LC_MESSAGES/okular_txt.mo share/locale/kk/LC_MESSAGES/okular_xps.mo share/locale/kk/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/km/LC_MESSAGES/okular.mo share/locale/km/LC_MESSAGES/okular_chm.mo share/locale/km/LC_MESSAGES/okular_comicbook.mo share/locale/km/LC_MESSAGES/okular_djvu.mo share/locale/km/LC_MESSAGES/okular_dvi.mo share/locale/km/LC_MESSAGES/okular_epub.mo share/locale/km/LC_MESSAGES/okular_fax.mo share/locale/km/LC_MESSAGES/okular_fictionbook.mo share/locale/km/LC_MESSAGES/okular_ghostview.mo share/locale/km/LC_MESSAGES/okular_kimgio.mo share/locale/km/LC_MESSAGES/okular_mobi.mo share/locale/km/LC_MESSAGES/okular_ooo.mo share/locale/km/LC_MESSAGES/okular_plucker.mo share/locale/km/LC_MESSAGES/okular_poppler.mo share/locale/km/LC_MESSAGES/okular_xps.mo share/locale/ko/LC_MESSAGES/okular.mo share/locale/ko/LC_MESSAGES/okular_chm.mo share/locale/ko/LC_MESSAGES/okular_comicbook.mo share/locale/ko/LC_MESSAGES/okular_djvu.mo share/locale/ko/LC_MESSAGES/okular_dvi.mo share/locale/ko/LC_MESSAGES/okular_epub.mo share/locale/ko/LC_MESSAGES/okular_fax.mo share/locale/ko/LC_MESSAGES/okular_fictionbook.mo share/locale/ko/LC_MESSAGES/okular_ghostview.mo share/locale/ko/LC_MESSAGES/okular_kimgio.mo share/locale/ko/LC_MESSAGES/okular_markdown.mo share/locale/ko/LC_MESSAGES/okular_mobi.mo share/locale/ko/LC_MESSAGES/okular_ooo.mo share/locale/ko/LC_MESSAGES/okular_plucker.mo share/locale/ko/LC_MESSAGES/okular_poppler.mo share/locale/ko/LC_MESSAGES/okular_txt.mo share/locale/ko/LC_MESSAGES/okular_xps.mo share/locale/ko/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/lt/LC_MESSAGES/okular.mo share/locale/lt/LC_MESSAGES/okular_chm.mo share/locale/lt/LC_MESSAGES/okular_comicbook.mo share/locale/lt/LC_MESSAGES/okular_djvu.mo share/locale/lt/LC_MESSAGES/okular_dvi.mo share/locale/lt/LC_MESSAGES/okular_epub.mo share/locale/lt/LC_MESSAGES/okular_fax.mo share/locale/lt/LC_MESSAGES/okular_fictionbook.mo share/locale/lt/LC_MESSAGES/okular_ghostview.mo share/locale/lt/LC_MESSAGES/okular_kimgio.mo share/locale/lt/LC_MESSAGES/okular_mobi.mo share/locale/lt/LC_MESSAGES/okular_ooo.mo share/locale/lt/LC_MESSAGES/okular_plucker.mo share/locale/lt/LC_MESSAGES/okular_poppler.mo share/locale/lt/LC_MESSAGES/okular_txt.mo share/locale/lt/LC_MESSAGES/okular_xps.mo share/locale/lt/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/lv/LC_MESSAGES/okular.mo share/locale/lv/LC_MESSAGES/okular_chm.mo share/locale/lv/LC_MESSAGES/okular_comicbook.mo share/locale/lv/LC_MESSAGES/okular_djvu.mo share/locale/lv/LC_MESSAGES/okular_dvi.mo share/locale/lv/LC_MESSAGES/okular_epub.mo share/locale/lv/LC_MESSAGES/okular_fax.mo share/locale/lv/LC_MESSAGES/okular_fictionbook.mo share/locale/lv/LC_MESSAGES/okular_ghostview.mo share/locale/lv/LC_MESSAGES/okular_kimgio.mo share/locale/lv/LC_MESSAGES/okular_mobi.mo share/locale/lv/LC_MESSAGES/okular_ooo.mo share/locale/lv/LC_MESSAGES/okular_plucker.mo share/locale/lv/LC_MESSAGES/okular_poppler.mo share/locale/lv/LC_MESSAGES/okular_xps.mo share/locale/mr/LC_MESSAGES/okular.mo share/locale/mr/LC_MESSAGES/okular_chm.mo share/locale/mr/LC_MESSAGES/okular_comicbook.mo share/locale/mr/LC_MESSAGES/okular_djvu.mo share/locale/mr/LC_MESSAGES/okular_dvi.mo share/locale/mr/LC_MESSAGES/okular_epub.mo share/locale/mr/LC_MESSAGES/okular_fax.mo share/locale/mr/LC_MESSAGES/okular_fictionbook.mo share/locale/mr/LC_MESSAGES/okular_ghostview.mo share/locale/mr/LC_MESSAGES/okular_kimgio.mo share/locale/mr/LC_MESSAGES/okular_mobi.mo share/locale/mr/LC_MESSAGES/okular_ooo.mo share/locale/mr/LC_MESSAGES/okular_plucker.mo share/locale/mr/LC_MESSAGES/okular_poppler.mo share/locale/mr/LC_MESSAGES/okular_xps.mo share/locale/mr/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/nb/LC_MESSAGES/okular.mo share/locale/nb/LC_MESSAGES/okular_chm.mo share/locale/nb/LC_MESSAGES/okular_comicbook.mo share/locale/nb/LC_MESSAGES/okular_djvu.mo share/locale/nb/LC_MESSAGES/okular_dvi.mo share/locale/nb/LC_MESSAGES/okular_epub.mo share/locale/nb/LC_MESSAGES/okular_fax.mo share/locale/nb/LC_MESSAGES/okular_fictionbook.mo share/locale/nb/LC_MESSAGES/okular_ghostview.mo share/locale/nb/LC_MESSAGES/okular_kimgio.mo share/locale/nb/LC_MESSAGES/okular_mobi.mo share/locale/nb/LC_MESSAGES/okular_ooo.mo share/locale/nb/LC_MESSAGES/okular_plucker.mo share/locale/nb/LC_MESSAGES/okular_poppler.mo share/locale/nb/LC_MESSAGES/okular_txt.mo share/locale/nb/LC_MESSAGES/okular_xps.mo share/locale/nb/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/nds/LC_MESSAGES/okular.mo share/locale/nds/LC_MESSAGES/okular_chm.mo share/locale/nds/LC_MESSAGES/okular_comicbook.mo share/locale/nds/LC_MESSAGES/okular_djvu.mo share/locale/nds/LC_MESSAGES/okular_dvi.mo share/locale/nds/LC_MESSAGES/okular_epub.mo share/locale/nds/LC_MESSAGES/okular_fax.mo share/locale/nds/LC_MESSAGES/okular_fictionbook.mo share/locale/nds/LC_MESSAGES/okular_ghostview.mo share/locale/nds/LC_MESSAGES/okular_kimgio.mo share/locale/nds/LC_MESSAGES/okular_mobi.mo share/locale/nds/LC_MESSAGES/okular_ooo.mo share/locale/nds/LC_MESSAGES/okular_plucker.mo share/locale/nds/LC_MESSAGES/okular_poppler.mo share/locale/nds/LC_MESSAGES/okular_txt.mo share/locale/nds/LC_MESSAGES/okular_xps.mo share/locale/nds/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/nl/LC_MESSAGES/okular.mo share/locale/nl/LC_MESSAGES/okular_chm.mo share/locale/nl/LC_MESSAGES/okular_comicbook.mo share/locale/nl/LC_MESSAGES/okular_djvu.mo share/locale/nl/LC_MESSAGES/okular_dvi.mo share/locale/nl/LC_MESSAGES/okular_epub.mo share/locale/nl/LC_MESSAGES/okular_fax.mo share/locale/nl/LC_MESSAGES/okular_fictionbook.mo share/locale/nl/LC_MESSAGES/okular_ghostview.mo share/locale/nl/LC_MESSAGES/okular_kimgio.mo share/locale/nl/LC_MESSAGES/okular_markdown.mo share/locale/nl/LC_MESSAGES/okular_mobi.mo share/locale/nl/LC_MESSAGES/okular_ooo.mo share/locale/nl/LC_MESSAGES/okular_plucker.mo share/locale/nl/LC_MESSAGES/okular_poppler.mo share/locale/nl/LC_MESSAGES/okular_txt.mo share/locale/nl/LC_MESSAGES/okular_xps.mo share/locale/nl/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/nn/LC_MESSAGES/okular.mo share/locale/nn/LC_MESSAGES/okular_chm.mo share/locale/nn/LC_MESSAGES/okular_comicbook.mo share/locale/nn/LC_MESSAGES/okular_djvu.mo share/locale/nn/LC_MESSAGES/okular_dvi.mo share/locale/nn/LC_MESSAGES/okular_epub.mo share/locale/nn/LC_MESSAGES/okular_fax.mo share/locale/nn/LC_MESSAGES/okular_fictionbook.mo share/locale/nn/LC_MESSAGES/okular_ghostview.mo share/locale/nn/LC_MESSAGES/okular_kimgio.mo share/locale/nn/LC_MESSAGES/okular_markdown.mo share/locale/nn/LC_MESSAGES/okular_mobi.mo share/locale/nn/LC_MESSAGES/okular_ooo.mo share/locale/nn/LC_MESSAGES/okular_plucker.mo share/locale/nn/LC_MESSAGES/okular_poppler.mo share/locale/nn/LC_MESSAGES/okular_txt.mo share/locale/nn/LC_MESSAGES/okular_xps.mo share/locale/nn/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/pa/LC_MESSAGES/okular.mo share/locale/pa/LC_MESSAGES/okular_chm.mo share/locale/pa/LC_MESSAGES/okular_comicbook.mo share/locale/pa/LC_MESSAGES/okular_djvu.mo share/locale/pa/LC_MESSAGES/okular_dvi.mo share/locale/pa/LC_MESSAGES/okular_epub.mo share/locale/pa/LC_MESSAGES/okular_fax.mo share/locale/pa/LC_MESSAGES/okular_fictionbook.mo share/locale/pa/LC_MESSAGES/okular_ghostview.mo share/locale/pa/LC_MESSAGES/okular_kimgio.mo share/locale/pa/LC_MESSAGES/okular_mobi.mo share/locale/pa/LC_MESSAGES/okular_ooo.mo share/locale/pa/LC_MESSAGES/okular_plucker.mo share/locale/pa/LC_MESSAGES/okular_poppler.mo share/locale/pa/LC_MESSAGES/okular_txt.mo share/locale/pa/LC_MESSAGES/okular_xps.mo share/locale/pa/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/pl/LC_MESSAGES/okular.mo share/locale/pl/LC_MESSAGES/okular_chm.mo share/locale/pl/LC_MESSAGES/okular_comicbook.mo share/locale/pl/LC_MESSAGES/okular_djvu.mo share/locale/pl/LC_MESSAGES/okular_dvi.mo share/locale/pl/LC_MESSAGES/okular_epub.mo share/locale/pl/LC_MESSAGES/okular_fax.mo share/locale/pl/LC_MESSAGES/okular_fictionbook.mo share/locale/pl/LC_MESSAGES/okular_ghostview.mo share/locale/pl/LC_MESSAGES/okular_kimgio.mo share/locale/pl/LC_MESSAGES/okular_markdown.mo share/locale/pl/LC_MESSAGES/okular_mobi.mo share/locale/pl/LC_MESSAGES/okular_ooo.mo share/locale/pl/LC_MESSAGES/okular_plucker.mo share/locale/pl/LC_MESSAGES/okular_poppler.mo share/locale/pl/LC_MESSAGES/okular_txt.mo share/locale/pl/LC_MESSAGES/okular_xps.mo share/locale/pl/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/pt/LC_MESSAGES/okular.mo share/locale/pt/LC_MESSAGES/okular_chm.mo share/locale/pt/LC_MESSAGES/okular_comicbook.mo share/locale/pt/LC_MESSAGES/okular_djvu.mo share/locale/pt/LC_MESSAGES/okular_dvi.mo share/locale/pt/LC_MESSAGES/okular_epub.mo share/locale/pt/LC_MESSAGES/okular_fax.mo share/locale/pt/LC_MESSAGES/okular_fictionbook.mo share/locale/pt/LC_MESSAGES/okular_ghostview.mo share/locale/pt/LC_MESSAGES/okular_kimgio.mo share/locale/pt/LC_MESSAGES/okular_markdown.mo share/locale/pt/LC_MESSAGES/okular_mobi.mo share/locale/pt/LC_MESSAGES/okular_ooo.mo share/locale/pt/LC_MESSAGES/okular_plucker.mo share/locale/pt/LC_MESSAGES/okular_poppler.mo share/locale/pt/LC_MESSAGES/okular_txt.mo share/locale/pt/LC_MESSAGES/okular_xps.mo share/locale/pt/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/pt_BR/LC_MESSAGES/okular.mo share/locale/pt_BR/LC_MESSAGES/okular_chm.mo share/locale/pt_BR/LC_MESSAGES/okular_comicbook.mo share/locale/pt_BR/LC_MESSAGES/okular_djvu.mo share/locale/pt_BR/LC_MESSAGES/okular_dvi.mo share/locale/pt_BR/LC_MESSAGES/okular_epub.mo share/locale/pt_BR/LC_MESSAGES/okular_fax.mo share/locale/pt_BR/LC_MESSAGES/okular_fictionbook.mo share/locale/pt_BR/LC_MESSAGES/okular_ghostview.mo share/locale/pt_BR/LC_MESSAGES/okular_kimgio.mo share/locale/pt_BR/LC_MESSAGES/okular_markdown.mo share/locale/pt_BR/LC_MESSAGES/okular_mobi.mo share/locale/pt_BR/LC_MESSAGES/okular_ooo.mo share/locale/pt_BR/LC_MESSAGES/okular_plucker.mo share/locale/pt_BR/LC_MESSAGES/okular_poppler.mo share/locale/pt_BR/LC_MESSAGES/okular_txt.mo share/locale/pt_BR/LC_MESSAGES/okular_xps.mo share/locale/pt_BR/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/ro/LC_MESSAGES/okular.mo share/locale/ro/LC_MESSAGES/okular_chm.mo share/locale/ro/LC_MESSAGES/okular_comicbook.mo share/locale/ro/LC_MESSAGES/okular_djvu.mo share/locale/ro/LC_MESSAGES/okular_dvi.mo share/locale/ro/LC_MESSAGES/okular_epub.mo share/locale/ro/LC_MESSAGES/okular_fax.mo share/locale/ro/LC_MESSAGES/okular_fictionbook.mo share/locale/ro/LC_MESSAGES/okular_ghostview.mo share/locale/ro/LC_MESSAGES/okular_kimgio.mo share/locale/ro/LC_MESSAGES/okular_mobi.mo share/locale/ro/LC_MESSAGES/okular_ooo.mo share/locale/ro/LC_MESSAGES/okular_plucker.mo share/locale/ro/LC_MESSAGES/okular_poppler.mo share/locale/ro/LC_MESSAGES/okular_txt.mo share/locale/ro/LC_MESSAGES/okular_xps.mo share/locale/ro/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/ru/LC_MESSAGES/okular.mo share/locale/ru/LC_MESSAGES/okular_chm.mo share/locale/ru/LC_MESSAGES/okular_comicbook.mo share/locale/ru/LC_MESSAGES/okular_djvu.mo share/locale/ru/LC_MESSAGES/okular_dvi.mo share/locale/ru/LC_MESSAGES/okular_epub.mo share/locale/ru/LC_MESSAGES/okular_fax.mo share/locale/ru/LC_MESSAGES/okular_fictionbook.mo share/locale/ru/LC_MESSAGES/okular_ghostview.mo share/locale/ru/LC_MESSAGES/okular_kimgio.mo share/locale/ru/LC_MESSAGES/okular_markdown.mo share/locale/ru/LC_MESSAGES/okular_mobi.mo share/locale/ru/LC_MESSAGES/okular_ooo.mo share/locale/ru/LC_MESSAGES/okular_plucker.mo share/locale/ru/LC_MESSAGES/okular_poppler.mo share/locale/ru/LC_MESSAGES/okular_txt.mo share/locale/ru/LC_MESSAGES/okular_xps.mo share/locale/ru/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/sk/LC_MESSAGES/okular.mo share/locale/sk/LC_MESSAGES/okular_chm.mo share/locale/sk/LC_MESSAGES/okular_comicbook.mo share/locale/sk/LC_MESSAGES/okular_djvu.mo share/locale/sk/LC_MESSAGES/okular_dvi.mo share/locale/sk/LC_MESSAGES/okular_epub.mo share/locale/sk/LC_MESSAGES/okular_fax.mo share/locale/sk/LC_MESSAGES/okular_fictionbook.mo share/locale/sk/LC_MESSAGES/okular_ghostview.mo share/locale/sk/LC_MESSAGES/okular_kimgio.mo share/locale/sk/LC_MESSAGES/okular_markdown.mo share/locale/sk/LC_MESSAGES/okular_mobi.mo share/locale/sk/LC_MESSAGES/okular_ooo.mo share/locale/sk/LC_MESSAGES/okular_plucker.mo share/locale/sk/LC_MESSAGES/okular_poppler.mo share/locale/sk/LC_MESSAGES/okular_txt.mo share/locale/sk/LC_MESSAGES/okular_xps.mo share/locale/sk/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/sl/LC_MESSAGES/okular.mo share/locale/sl/LC_MESSAGES/okular_chm.mo share/locale/sl/LC_MESSAGES/okular_comicbook.mo share/locale/sl/LC_MESSAGES/okular_djvu.mo share/locale/sl/LC_MESSAGES/okular_dvi.mo share/locale/sl/LC_MESSAGES/okular_epub.mo share/locale/sl/LC_MESSAGES/okular_fax.mo share/locale/sl/LC_MESSAGES/okular_fictionbook.mo share/locale/sl/LC_MESSAGES/okular_ghostview.mo share/locale/sl/LC_MESSAGES/okular_kimgio.mo share/locale/sl/LC_MESSAGES/okular_markdown.mo share/locale/sl/LC_MESSAGES/okular_mobi.mo share/locale/sl/LC_MESSAGES/okular_ooo.mo share/locale/sl/LC_MESSAGES/okular_plucker.mo share/locale/sl/LC_MESSAGES/okular_poppler.mo share/locale/sl/LC_MESSAGES/okular_txt.mo share/locale/sl/LC_MESSAGES/okular_xps.mo share/locale/sl/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/sr/LC_MESSAGES/okular.mo share/locale/sr/LC_MESSAGES/okular_chm.mo share/locale/sr/LC_MESSAGES/okular_comicbook.mo share/locale/sr/LC_MESSAGES/okular_djvu.mo share/locale/sr/LC_MESSAGES/okular_dvi.mo share/locale/sr/LC_MESSAGES/okular_epub.mo share/locale/sr/LC_MESSAGES/okular_fax.mo share/locale/sr/LC_MESSAGES/okular_fictionbook.mo share/locale/sr/LC_MESSAGES/okular_ghostview.mo share/locale/sr/LC_MESSAGES/okular_kimgio.mo share/locale/sr/LC_MESSAGES/okular_markdown.mo share/locale/sr/LC_MESSAGES/okular_mobi.mo share/locale/sr/LC_MESSAGES/okular_ooo.mo share/locale/sr/LC_MESSAGES/okular_plucker.mo share/locale/sr/LC_MESSAGES/okular_poppler.mo share/locale/sr/LC_MESSAGES/okular_txt.mo share/locale/sr/LC_MESSAGES/okular_xps.mo share/locale/sv/LC_MESSAGES/okular.mo share/locale/sv/LC_MESSAGES/okular_chm.mo share/locale/sv/LC_MESSAGES/okular_comicbook.mo share/locale/sv/LC_MESSAGES/okular_djvu.mo share/locale/sv/LC_MESSAGES/okular_dvi.mo share/locale/sv/LC_MESSAGES/okular_epub.mo share/locale/sv/LC_MESSAGES/okular_fax.mo share/locale/sv/LC_MESSAGES/okular_fictionbook.mo share/locale/sv/LC_MESSAGES/okular_ghostview.mo share/locale/sv/LC_MESSAGES/okular_kimgio.mo share/locale/sv/LC_MESSAGES/okular_markdown.mo share/locale/sv/LC_MESSAGES/okular_mobi.mo share/locale/sv/LC_MESSAGES/okular_ooo.mo share/locale/sv/LC_MESSAGES/okular_plucker.mo share/locale/sv/LC_MESSAGES/okular_poppler.mo share/locale/sv/LC_MESSAGES/okular_txt.mo share/locale/sv/LC_MESSAGES/okular_xps.mo share/locale/sv/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/tr/LC_MESSAGES/okular.mo share/locale/tr/LC_MESSAGES/okular_chm.mo share/locale/tr/LC_MESSAGES/okular_comicbook.mo share/locale/tr/LC_MESSAGES/okular_djvu.mo share/locale/tr/LC_MESSAGES/okular_dvi.mo share/locale/tr/LC_MESSAGES/okular_epub.mo share/locale/tr/LC_MESSAGES/okular_fax.mo share/locale/tr/LC_MESSAGES/okular_fictionbook.mo share/locale/tr/LC_MESSAGES/okular_ghostview.mo share/locale/tr/LC_MESSAGES/okular_kimgio.mo share/locale/tr/LC_MESSAGES/okular_mobi.mo share/locale/tr/LC_MESSAGES/okular_ooo.mo share/locale/tr/LC_MESSAGES/okular_plucker.mo share/locale/tr/LC_MESSAGES/okular_poppler.mo share/locale/tr/LC_MESSAGES/okular_txt.mo share/locale/tr/LC_MESSAGES/okular_xps.mo share/locale/tr/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/ug/LC_MESSAGES/okular.mo share/locale/ug/LC_MESSAGES/okular_chm.mo share/locale/ug/LC_MESSAGES/okular_comicbook.mo share/locale/ug/LC_MESSAGES/okular_djvu.mo share/locale/ug/LC_MESSAGES/okular_dvi.mo share/locale/ug/LC_MESSAGES/okular_epub.mo share/locale/ug/LC_MESSAGES/okular_fax.mo share/locale/ug/LC_MESSAGES/okular_fictionbook.mo share/locale/ug/LC_MESSAGES/okular_ghostview.mo share/locale/ug/LC_MESSAGES/okular_kimgio.mo share/locale/ug/LC_MESSAGES/okular_mobi.mo share/locale/ug/LC_MESSAGES/okular_ooo.mo share/locale/ug/LC_MESSAGES/okular_plucker.mo share/locale/ug/LC_MESSAGES/okular_poppler.mo share/locale/ug/LC_MESSAGES/okular_txt.mo share/locale/ug/LC_MESSAGES/okular_xps.mo share/locale/ug/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/uk/LC_MESSAGES/okular.mo share/locale/uk/LC_MESSAGES/okular_chm.mo share/locale/uk/LC_MESSAGES/okular_comicbook.mo share/locale/uk/LC_MESSAGES/okular_djvu.mo share/locale/uk/LC_MESSAGES/okular_dvi.mo share/locale/uk/LC_MESSAGES/okular_epub.mo share/locale/uk/LC_MESSAGES/okular_fax.mo share/locale/uk/LC_MESSAGES/okular_fictionbook.mo share/locale/uk/LC_MESSAGES/okular_ghostview.mo share/locale/uk/LC_MESSAGES/okular_kimgio.mo share/locale/uk/LC_MESSAGES/okular_markdown.mo share/locale/uk/LC_MESSAGES/okular_mobi.mo share/locale/uk/LC_MESSAGES/okular_ooo.mo share/locale/uk/LC_MESSAGES/okular_plucker.mo share/locale/uk/LC_MESSAGES/okular_poppler.mo share/locale/uk/LC_MESSAGES/okular_txt.mo share/locale/uk/LC_MESSAGES/okular_xps.mo share/locale/uk/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/wa/LC_MESSAGES/okular.mo share/locale/wa/LC_MESSAGES/okular_chm.mo share/locale/wa/LC_MESSAGES/okular_comicbook.mo share/locale/wa/LC_MESSAGES/okular_djvu.mo share/locale/wa/LC_MESSAGES/okular_epub.mo share/locale/wa/LC_MESSAGES/okular_fax.mo share/locale/wa/LC_MESSAGES/okular_fictionbook.mo share/locale/wa/LC_MESSAGES/okular_ghostview.mo share/locale/wa/LC_MESSAGES/okular_kimgio.mo share/locale/wa/LC_MESSAGES/okular_mobi.mo share/locale/wa/LC_MESSAGES/okular_ooo.mo share/locale/wa/LC_MESSAGES/okular_plucker.mo share/locale/wa/LC_MESSAGES/okular_poppler.mo share/locale/wa/LC_MESSAGES/okular_xps.mo share/locale/zh_CN/LC_MESSAGES/okular.mo share/locale/zh_CN/LC_MESSAGES/okular_chm.mo share/locale/zh_CN/LC_MESSAGES/okular_comicbook.mo share/locale/zh_CN/LC_MESSAGES/okular_djvu.mo share/locale/zh_CN/LC_MESSAGES/okular_dvi.mo share/locale/zh_CN/LC_MESSAGES/okular_epub.mo share/locale/zh_CN/LC_MESSAGES/okular_fax.mo share/locale/zh_CN/LC_MESSAGES/okular_fictionbook.mo share/locale/zh_CN/LC_MESSAGES/okular_ghostview.mo share/locale/zh_CN/LC_MESSAGES/okular_kimgio.mo share/locale/zh_CN/LC_MESSAGES/okular_markdown.mo share/locale/zh_CN/LC_MESSAGES/okular_mobi.mo share/locale/zh_CN/LC_MESSAGES/okular_ooo.mo share/locale/zh_CN/LC_MESSAGES/okular_plucker.mo share/locale/zh_CN/LC_MESSAGES/okular_poppler.mo share/locale/zh_CN/LC_MESSAGES/okular_txt.mo share/locale/zh_CN/LC_MESSAGES/okular_xps.mo share/locale/zh_CN/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/zh_TW/LC_MESSAGES/okular.mo share/locale/zh_TW/LC_MESSAGES/okular_chm.mo share/locale/zh_TW/LC_MESSAGES/okular_comicbook.mo share/locale/zh_TW/LC_MESSAGES/okular_djvu.mo share/locale/zh_TW/LC_MESSAGES/okular_dvi.mo share/locale/zh_TW/LC_MESSAGES/okular_epub.mo share/locale/zh_TW/LC_MESSAGES/okular_fax.mo share/locale/zh_TW/LC_MESSAGES/okular_fictionbook.mo share/locale/zh_TW/LC_MESSAGES/okular_ghostview.mo share/locale/zh_TW/LC_MESSAGES/okular_kimgio.mo share/locale/zh_TW/LC_MESSAGES/okular_markdown.mo share/locale/zh_TW/LC_MESSAGES/okular_mobi.mo share/locale/zh_TW/LC_MESSAGES/okular_ooo.mo share/locale/zh_TW/LC_MESSAGES/okular_plucker.mo share/locale/zh_TW/LC_MESSAGES/okular_poppler.mo share/locale/zh_TW/LC_MESSAGES/okular_txt.mo share/locale/zh_TW/LC_MESSAGES/okular_xps.mo share/locale/zh_TW/LC_MESSAGES/org.kde.active.documentviewer.mo share/metainfo/org.kde.okular-chm.metainfo.xml share/metainfo/org.kde.okular-comicbook.metainfo.xml share/metainfo/org.kde.okular-djvu.metainfo.xml share/metainfo/org.kde.okular-dvi.metainfo.xml share/metainfo/org.kde.okular-epub.metainfo.xml share/metainfo/org.kde.okular-fax.metainfo.xml share/metainfo/org.kde.okular-fb.metainfo.xml share/metainfo/org.kde.okular-kimgio.metainfo.xml share/metainfo/org.kde.okular-md.metainfo.xml share/metainfo/org.kde.okular-mobipocket.metainfo.xml share/metainfo/org.kde.okular-ooo.metainfo.xml share/metainfo/org.kde.okular-plucker.metainfo.xml share/metainfo/org.kde.okular-poppler.metainfo.xml share/metainfo/org.kde.okular-spectre.metainfo.xml share/metainfo/org.kde.okular-tiff.metainfo.xml share/metainfo/org.kde.okular-txt.metainfo.xml share/metainfo/org.kde.okular-xps.metainfo.xml share/metainfo/org.kde.okular.appdata.xml share/metainfo/org.kde.okular.kirigami.appdata.xml %%DATADIR%%/drawingtools.xml %%DATADIR%%/icons/hicolor/16x16/apps/okular-fb2.png %%DATADIR%%/icons/hicolor/16x16/apps/okular-gv.png %%DATADIR%%/icons/hicolor/32x32/apps/okular-fb2.png %%DATADIR%%/icons/hicolor/32x32/apps/okular-gv.png %%DATADIR%%/icons/hicolor/48x48/apps/okular-fb2.png %%DATADIR%%/pics/checkmark.png %%DATADIR%%/pics/circle.png %%DATADIR%%/pics/comment.png %%DATADIR%%/pics/cross.png %%DATADIR%%/pics/help.png %%DATADIR%%/pics/insert.png %%DATADIR%%/pics/key.png %%DATADIR%%/pics/newparagraph.png %%DATADIR%%/pics/note.png %%DATADIR%%/pics/okular-epub-movie.png %%DATADIR%%/pics/okular-epub-sound-icon.png %%DATADIR%%/pics/paperclip.png %%DATADIR%%/pics/paragraph.png %%DATADIR%%/pics/pushpin.png %%DATADIR%%/pics/rightarrow.png %%DATADIR%%/pics/rightpointer.png %%DATADIR%%/pics/stamps.svg %%DATADIR%%/pics/star.png %%DATADIR%%/pics/tool-base-okular.png %%DATADIR%%/pics/tool-base-okular@2x.png %%DATADIR%%/pics/tool-highlighter-okular-colorizable.png %%DATADIR%%/pics/tool-highlighter-okular-colorizable@2x.png %%DATADIR%%/pics/tool-ink-okular-colorizable.png %%DATADIR%%/pics/tool-ink-okular-colorizable@2x.png %%DATADIR%%/pics/tool-note-inline-okular-colorizable.png %%DATADIR%%/pics/tool-note-inline-okular-colorizable@2x.png %%DATADIR%%/pics/tool-note-inline.png %%DATADIR%%/pics/tool-note-okular-colorizable.png %%DATADIR%%/pics/tool-note-okular-colorizable@2x.png %%DATADIR%%/pics/tool-note.png %%DATADIR%%/pics/tool-typewriter-okular-colorizable.png %%DATADIR%%/pics/tool-typewriter-okular-colorizable@2x.png %%DATADIR%%/pics/uparrow.png %%DATADIR%%/pics/upleftarrow.png %%DATADIR%%/tools.xml Index: head/graphics/spectacle/distinfo =================================================================== --- head/graphics/spectacle/distinfo (revision 499276) +++ head/graphics/spectacle/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551811027 -SHA256 (KDE/applications/18.12.3/spectacle-18.12.3.tar.xz) = 8abf85b85de7844c503ef84182303c47cf425f5c14d71e723e3c887ee87ce06e -SIZE (KDE/applications/18.12.3/spectacle-18.12.3.tar.xz) = 1130216 +TIMESTAMP = 1555094846 +SHA256 (KDE/applications/19.04.0/spectacle-19.04.0.tar.xz) = 2c4d891d5850e13d912ad0885086170f45178ed5fb4d0ccfef7b22a9a76c35a8 +SIZE (KDE/applications/19.04.0/spectacle-19.04.0.tar.xz) = 836680 Index: head/japanese/kiten/distinfo =================================================================== --- head/japanese/kiten/distinfo (revision 499276) +++ head/japanese/kiten/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551811122 -SHA256 (KDE/applications/18.12.3/kiten-18.12.3.tar.xz) = 0e0bc0b0b2609a7872b45647976c87ec92ccb068d05113b8dc58e43c6eb1facf -SIZE (KDE/applications/18.12.3/kiten-18.12.3.tar.xz) = 11281432 +TIMESTAMP = 1555094847 +SHA256 (KDE/applications/19.04.0/kiten-19.04.0.tar.xz) = 53f5e4ef48b18989084858ab5c96b7dedf357cecf4dba3b2d2a967b4b4b8a742 +SIZE (KDE/applications/19.04.0/kiten-19.04.0.tar.xz) = 11282960 Index: head/lang/kross-interpreters/distinfo =================================================================== --- head/lang/kross-interpreters/distinfo (revision 499276) +++ head/lang/kross-interpreters/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551811122 -SHA256 (KDE/applications/18.12.3/kross-interpreters-18.12.3.tar.xz) = ce2231b2faa9accc6342a37024651b988eefbcb9b3968025ffa4752d0cbdc70c -SIZE (KDE/applications/18.12.3/kross-interpreters-18.12.3.tar.xz) = 144804 +TIMESTAMP = 1555094847 +SHA256 (KDE/applications/19.04.0/kross-interpreters-19.04.0.tar.xz) = e910e76e58603077177b7835bed2b9562b266e2fc0ab78c8b2642edc752ccd27 +SIZE (KDE/applications/19.04.0/kross-interpreters-19.04.0.tar.xz) = 150440 Index: head/lang/kturtle/distinfo =================================================================== --- head/lang/kturtle/distinfo (revision 499276) +++ head/lang/kturtle/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551811122 -SHA256 (KDE/applications/18.12.3/kturtle-18.12.3.tar.xz) = 4677335b4f8a3e363425652815d19ae13e9f8942b01051553b485100c4996253 -SIZE (KDE/applications/18.12.3/kturtle-18.12.3.tar.xz) = 1560696 +TIMESTAMP = 1555094848 +SHA256 (KDE/applications/19.04.0/kturtle-19.04.0.tar.xz) = 89e836a2737c98caf1ceb16b7ac648262d6a6770ac5bb5b0d9fbfed4abeeda7d +SIZE (KDE/applications/19.04.0/kturtle-19.04.0.tar.xz) = 1828332 Index: head/math/analitza/distinfo =================================================================== --- head/math/analitza/distinfo (revision 499276) +++ head/math/analitza/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551810993 -SHA256 (KDE/applications/18.12.3/analitza-18.12.3.tar.xz) = c241b6a3d849534ccd50601c0aebd5cd785220bb7957ed7f6b1d3db35ba0f925 -SIZE (KDE/applications/18.12.3/analitza-18.12.3.tar.xz) = 331936 +TIMESTAMP = 1555094848 +SHA256 (KDE/applications/19.04.0/analitza-19.04.0.tar.xz) = ac8bf7d66f8a2fc7198238f23d82efd1021943ffe8bd5915808e31b800a802f6 +SIZE (KDE/applications/19.04.0/analitza-19.04.0.tar.xz) = 332380 Index: head/math/cantor/Makefile =================================================================== --- head/math/cantor/Makefile (revision 499276) +++ head/math/cantor/Makefile (revision 499277) @@ -1,64 +1,63 @@ # $FreeBSD$ PORTNAME= cantor DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= math kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE 5 frontend to mathematical software LIB_DEPENDS= libAnalitza.so:math/analitza \ libcln.so:math/cln \ libqalculate.so:math/libqalculate \ libspectre.so:print/libspectre BUILD_DEPENDS= ${LOCALBASE}/share/xsl/docbook/html/docbook.xsl:textproc/docbook-xsl \ docbook-xml>0:textproc/docbook-xml USES= cmake compiler:c++11-lang gettext kde:5 pkgconfig \ python:3.4+ qt:5 tar:xz USE_KDE= attica auth archive bookmarks codecs completion config \ configwidgets coreaddons crash ecm emoticons i18n iconthemes \ itemmodels itemviews init jobwidgets kdelibs4support kio \ newstuff parts pty service solid sonnet texteditor textwidgets \ widgetsaddons xmlgui USE_QT= core dbus gui network printsupport widgets xml xmlpatterns \ buildtools_build qmake_build USE_LDCONFIG= yes OPTIONS_DEFINE= LUAJIT MAXIMA OCTAVE R SAGE SCILAB DOCS OPTIONS_SUB= yes # R LUAJIT LUAJIT_DESC= Build LuaJIT backend and install LuaJIT LUAJIT_LIB_DEPENDS= libluajit-5.1.so:lang/luajit LUAJIT_CMAKE_OFF= -DWITH_LuaJIT:BOOL=FALSE MAXIMA_DESC= Install Maxima MAXIMA_RUN_DEPENDS= maxima:math/maxima OCTAVE_DESC= Install Octave OCTAVE_RUN_DEPENDS= octave:math/octave R_DESC= Build R backend and install R R_LIB_DEPENDS= libR.so:math/R # Required to set CFLAGS for -lgfortran. R_USES= fortran R_CMAKE_OFF= -DWITH_R:BOOL=FALSE SAGE_DESC= Install Sage SAGE_RUN_DEPENDS= sage:math/sage SCILAB_DESC= Install Scilab SCILAB_RUN_DEPENDS= scilab:math/scilab # Disable python2 binding (should probably be an option PYTHON2, PYTHON3) CMAKE_ON= CMAKE_DISABLE_FIND_PACKAGE_PythonLibs post-patch: ${REINPLACE_CMD} -e '/FIND_PROGRAM(_GFORTRAN_EXECUTABLE/s,gfortran,${FC},' \ ${WRKSRC}/cmake/FindR.cmake ${REINPLACE_CMD} -e '/find_library(PYTHONLIBS3_LIBRARY/s,python3.5m,python3.5m python3.6m,' \ -e '/pkg_check_modules/s,python3,python-${PYTHON_VER},' \ ${WRKSRC}/cmake/FindPythonLibs3.cmake .include Index: head/math/cantor/distinfo =================================================================== --- head/math/cantor/distinfo (revision 499276) +++ head/math/cantor/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551898120 -SHA256 (KDE/applications/18.12.3/cantor-18.12.3.tar.xz) = 2537b8e8a9e5b72a2b3bf2b08d24c4978f52ef18ced61cdcfd2a09069f670398 -SIZE (KDE/applications/18.12.3/cantor-18.12.3.tar.xz) = 2515580 +TIMESTAMP = 1555094848 +SHA256 (KDE/applications/19.04.0/cantor-19.04.0.tar.xz) = ef0381a65cd2f3a3bb68a7211140077fc1a9bf31ed5302fa368fd874c8441bf4 +SIZE (KDE/applications/19.04.0/cantor-19.04.0.tar.xz) = 2523240 Index: head/math/cantor/pkg-plist =================================================================== --- head/math/cantor/pkg-plist (revision 499276) +++ head/math/cantor/pkg-plist (revision 499277) @@ -1,158 +1,163 @@ bin/cantor bin/cantor_python3server %%R%%bin/cantor_rserver bin/cantor_scripteditor etc/xdg/cantor.knsrc etc/xdg/cantor_kalgebra.knsrc %%LUAJIT%%etc/xdg/cantor_lua.knsrc etc/xdg/cantor_maxima.knsrc etc/xdg/cantor_octave.knsrc etc/xdg/cantor_python3.knsrc etc/xdg/cantor_qalculate.knsrc %%R%%etc/xdg/cantor_r.knsrc etc/xdg/cantor_sage.knsrc etc/xdg/cantor_scilab.knsrc include/cantor/animationresult.h include/cantor/backend.h include/cantor/cantor_export.h include/cantor/cantor_macros.h +include/cantor/cantorlibs_version.h include/cantor/completionobject.h include/cantor/defaulthighlighter.h include/cantor/defaultvariablemodel.h include/cantor/epsresult.h include/cantor/expression.h include/cantor/extension.h include/cantor/helpresult.h include/cantor/imageresult.h include/cantor/latexresult.h include/cantor/result.h include/cantor/session.h include/cantor/syntaxhelpobject.h include/cantor/textresult.h include/cantor/worksheetaccess.h +lib/cmake/Cantor/CantorConfig.cmake +lib/cmake/Cantor/CantorConfigVersion.cmake +lib/cmake/Cantor/CantorTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Cantor/CantorTargets.cmake lib/libcantor_config.so lib/libcantor_pythonbackend.so lib/libcantorlibs.so lib/libcantorlibs.so.20 lib/libcantorlibs.so.%%KDE_APPLICATIONS_VERSION%% %%QT_PLUGINDIR%%/cantor/assistants/cantor_advancedplotassistant.so %%QT_PLUGINDIR%%/cantor/assistants/cantor_creatematrixassistant.so %%QT_PLUGINDIR%%/cantor/assistants/cantor_differentiateassistant.so %%QT_PLUGINDIR%%/cantor/assistants/cantor_eigenvaluesassistant.so %%QT_PLUGINDIR%%/cantor/assistants/cantor_eigenvectorsassistant.so %%QT_PLUGINDIR%%/cantor/assistants/cantor_importpackageassistant.so %%QT_PLUGINDIR%%/cantor/assistants/cantor_integrateassistant.so %%QT_PLUGINDIR%%/cantor/assistants/cantor_invertmatrixassistant.so %%QT_PLUGINDIR%%/cantor/assistants/cantor_plot2dassistant.so %%QT_PLUGINDIR%%/cantor/assistants/cantor_plot3dassistant.so %%QT_PLUGINDIR%%/cantor/assistants/cantor_qalculateplotassistant.so %%QT_PLUGINDIR%%/cantor/assistants/cantor_runscriptassistant.so %%QT_PLUGINDIR%%/cantor/assistants/cantor_solveassistant.so %%QT_PLUGINDIR%%/cantor/backends/cantor_kalgebrabackend.so %%LUAJIT%%%%QT_PLUGINDIR%%/cantor/backends/cantor_luabackend.so %%QT_PLUGINDIR%%/cantor/backends/cantor_maximabackend.so %%QT_PLUGINDIR%%/cantor/backends/cantor_nullbackend.so %%QT_PLUGINDIR%%/cantor/backends/cantor_octavebackend.so %%QT_PLUGINDIR%%/cantor/backends/cantor_python3backend.so %%QT_PLUGINDIR%%/cantor/backends/cantor_qalculatebackend.so %%R%%%%QT_PLUGINDIR%%/cantor/backends/cantor_rbackend.so %%QT_PLUGINDIR%%/cantor/backends/cantor_sagebackend.so %%QT_PLUGINDIR%%/cantor/backends/cantor_scilabbackend.so %%QT_PLUGINDIR%%/cantor/panels/cantor_helppanelplugin.so %%QT_PLUGINDIR%%/cantor/panels/cantor_variablemanagerplugin.so %%QT_PLUGINDIR%%/libcantorpart.so share/applications/org.kde.cantor.desktop %%DATADIR%%/maximabackend/cantor-initmaxima.lisp %%DATADIR%%/octavebackend/cantor_eigenvectors.m %%DATADIR%%/octavebackend/cantor_plot2d.m %%DATADIR%%/octavebackend/cantor_plot3d.m %%DATADIR%%/octavebackend/cantor_print.m %%DATADIR%%/sagebackend/cantor-execsage %%DATADIR%%/xslt/latex.xsl share/config.kcfg/cantor.kcfg share/config.kcfg/cantor_libs.kcfg %%LUAJIT%%share/config.kcfg/luabackend.kcfg share/config.kcfg/kalgebrabackend.kcfg share/config.kcfg/maximabackend.kcfg share/config.kcfg/octavebackend.kcfg share/config.kcfg/python3backend.kcfg share/config.kcfg/qalculatebackend.kcfg %%R%%share/config.kcfg/rserver.kcfg share/config.kcfg/sagebackend.kcfg share/config.kcfg/scilabbackend.kcfg share/icons/hicolor/128x128/apps/cantor.png share/icons/hicolor/16x16/apps/cantor.png share/icons/hicolor/22x22/apps/cantor.png share/icons/hicolor/32x32/apps/cantor.png share/icons/hicolor/48x48/apps/cantor.png share/icons/hicolor/48x48/apps/juliabackend.png share/icons/hicolor/48x48/apps/kalgebrabackend.png share/icons/hicolor/48x48/apps/luabackend.png share/icons/hicolor/48x48/apps/maximabackend.png share/icons/hicolor/48x48/apps/octavebackend.png share/icons/hicolor/48x48/apps/pythonbackend.png share/icons/hicolor/48x48/apps/qalculatebackend.png share/icons/hicolor/48x48/apps/rbackend.png share/icons/hicolor/48x48/apps/sagebackend.png share/icons/hicolor/48x48/apps/scilabbackend.png share/icons/hicolor/64x64/apps/cantor.png share/kxmlgui5/cantor/cantor_advancedplot_assistant.rc share/kxmlgui5/cantor/cantor_create_matrix_assistant.rc share/kxmlgui5/cantor/cantor_differentiate_assistant.rc share/kxmlgui5/cantor/cantor_eigenvalues_assistant.rc share/kxmlgui5/cantor/cantor_eigenvectors_assistant.rc share/kxmlgui5/cantor/cantor_import_package_assistant.rc share/kxmlgui5/cantor/cantor_integrate_assistant.rc share/kxmlgui5/cantor/cantor_invert_matrix_assistant.rc share/kxmlgui5/cantor/cantor_part.rc share/kxmlgui5/cantor/cantor_plot2d_assistant.rc share/kxmlgui5/cantor/cantor_plot3d_assistant.rc share/kxmlgui5/cantor/cantor_qalculateplotassistant.rc share/kxmlgui5/cantor/cantor_runscript_assistant.rc share/kxmlgui5/cantor/cantor_scripteditor.rc share/kxmlgui5/cantor/cantor_shell.rc share/kxmlgui5/cantor/cantor_solve_assistant.rc share/locale/bs/LC_MESSAGES/cantor.mo share/locale/ca/LC_MESSAGES/cantor.mo share/locale/ca@valencia/LC_MESSAGES/cantor.mo share/locale/cs/LC_MESSAGES/cantor.mo share/locale/da/LC_MESSAGES/cantor.mo share/locale/de/LC_MESSAGES/cantor.mo share/locale/el/LC_MESSAGES/cantor.mo share/locale/en_GB/LC_MESSAGES/cantor.mo share/locale/eo/LC_MESSAGES/cantor.mo share/locale/es/LC_MESSAGES/cantor.mo share/locale/et/LC_MESSAGES/cantor.mo share/locale/eu/LC_MESSAGES/cantor.mo share/locale/fi/LC_MESSAGES/cantor.mo share/locale/fr/LC_MESSAGES/cantor.mo share/locale/ga/LC_MESSAGES/cantor.mo share/locale/gl/LC_MESSAGES/cantor.mo share/locale/hr/LC_MESSAGES/cantor.mo share/locale/hu/LC_MESSAGES/cantor.mo share/locale/it/LC_MESSAGES/cantor.mo share/locale/ja/LC_MESSAGES/cantor.mo share/locale/kk/LC_MESSAGES/cantor.mo share/locale/ko/LC_MESSAGES/cantor.mo share/locale/lt/LC_MESSAGES/cantor.mo share/locale/lv/LC_MESSAGES/cantor.mo share/locale/mr/LC_MESSAGES/cantor.mo share/locale/nb/LC_MESSAGES/cantor.mo share/locale/nds/LC_MESSAGES/cantor.mo share/locale/nl/LC_MESSAGES/cantor.mo share/locale/nn/LC_MESSAGES/cantor.mo share/locale/pa/LC_MESSAGES/cantor.mo share/locale/pl/LC_MESSAGES/cantor.mo share/locale/pt/LC_MESSAGES/cantor.mo share/locale/pt_BR/LC_MESSAGES/cantor.mo share/locale/ro/LC_MESSAGES/cantor.mo share/locale/ru/LC_MESSAGES/cantor.mo share/locale/sk/LC_MESSAGES/cantor.mo share/locale/sl/LC_MESSAGES/cantor.mo share/locale/sv/LC_MESSAGES/cantor.mo share/locale/tr/LC_MESSAGES/cantor.mo share/locale/ug/LC_MESSAGES/cantor.mo share/locale/uk/LC_MESSAGES/cantor.mo share/locale/zh_CN/LC_MESSAGES/cantor.mo share/locale/zh_TW/LC_MESSAGES/cantor.mo share/metainfo/org.kde.cantor.appdata.xml Index: head/math/kalgebra/distinfo =================================================================== --- head/math/kalgebra/distinfo (revision 499276) +++ head/math/kalgebra/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551811006 -SHA256 (KDE/applications/18.12.3/kalgebra-18.12.3.tar.xz) = a93b319c6a3fab3d3a12923f8153a6f38281887e176fffaa37ca6cc677a280b5 -SIZE (KDE/applications/18.12.3/kalgebra-18.12.3.tar.xz) = 1153520 +TIMESTAMP = 1555094859 +SHA256 (KDE/applications/19.04.0/kalgebra-19.04.0.tar.xz) = a46c4fc2b0891183d0a3b859182eef8d49206b81cbf6d2c6ed6d5448f2663a4a +SIZE (KDE/applications/19.04.0/kalgebra-19.04.0.tar.xz) = 1155132 Index: head/math/kalgebra/pkg-plist =================================================================== --- head/math/kalgebra/pkg-plist (revision 499276) +++ head/math/kalgebra/pkg-plist (revision 499277) @@ -1,149 +1,144 @@ bin/calgebra %%WEBENGINE%%bin/kalgebra bin/kalgebramobile %%WEBENGINE%%share/applications/org.kde.kalgebra.desktop share/applications/org.kde.kalgebramobile.desktop share/icons/hicolor/64x64/apps/kalgebra.png share/icons/hicolor/scalable/apps/kalgebra.svgz share/kalgebramobile/plugins/About.qml share/kalgebramobile/plugins/Console.qml share/kalgebramobile/plugins/Dictionary.qml share/kalgebramobile/plugins/Plot2D.qml share/kalgebramobile/plugins/Plot3D.qml share/kalgebramobile/plugins/Tables.qml share/kalgebramobile/plugins/VariablesView.qml share/kalgebramobile/plugins/kalgebraabout.json share/kalgebramobile/plugins/kalgebraconsole.json share/kalgebramobile/plugins/kalgebradictionary.json share/kalgebramobile/plugins/kalgebraplot2d.json share/kalgebramobile/plugins/kalgebraplot3d.json share/kalgebramobile/plugins/kalgebratables.json share/kalgebramobile/plugins/kalgebravariables.json -share/kalgebramobile/plugins/widgets/Action.qml share/kalgebramobile/plugins/widgets/AddButton.qml -share/kalgebramobile/plugins/widgets/Button.qml -share/kalgebramobile/plugins/widgets/CalcButton.qml -share/kalgebramobile/plugins/widgets/ComboBox.qml -share/kalgebramobile/plugins/widgets/Dialog.qml share/kalgebramobile/plugins/widgets/ExpressionInput.qml share/kalgebramobile/plugins/widgets/KAlgebraMobile.qml share/kalgebramobile/plugins/widgets/KAlgebraPage.qml -share/kalgebramobile/plugins/widgets/Label.qml share/kalgebramobile/plugins/widgets/RealInput.qml -share/kalgebramobile/plugins/widgets/SimpleListView.qml share/kalgebramobile/plugins/widgets/qmldir %%WEBENGINE%%share/katepart5/syntax/kalgebra.xml %%WEBENGINE%%share/kservices5/graphsplasmoid.desktop share/locale/ar/LC_MESSAGES/kalgebra.mo share/locale/bg/LC_MESSAGES/kalgebra.mo share/locale/bg/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/bs/LC_MESSAGES/kalgebra.mo share/locale/bs/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/ca/LC_MESSAGES/kalgebra.mo share/locale/ca/LC_MESSAGES/kalgebramobile.mo share/locale/ca/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/ca@valencia/LC_MESSAGES/kalgebra.mo share/locale/ca@valencia/LC_MESSAGES/kalgebramobile.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/cs/LC_MESSAGES/kalgebra.mo share/locale/cs/LC_MESSAGES/kalgebramobile.mo share/locale/cs/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/da/LC_MESSAGES/kalgebra.mo share/locale/da/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/de/LC_MESSAGES/kalgebra.mo share/locale/de/LC_MESSAGES/kalgebramobile.mo share/locale/de/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/el/LC_MESSAGES/kalgebra.mo share/locale/el/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/en_GB/LC_MESSAGES/kalgebra.mo share/locale/en_GB/LC_MESSAGES/kalgebramobile.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/eo/LC_MESSAGES/kalgebra.mo share/locale/eo/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/es/LC_MESSAGES/kalgebra.mo share/locale/es/LC_MESSAGES/kalgebramobile.mo share/locale/es/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/et/LC_MESSAGES/kalgebra.mo share/locale/et/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/eu/LC_MESSAGES/kalgebra.mo share/locale/fi/LC_MESSAGES/kalgebra.mo share/locale/fi/LC_MESSAGES/kalgebramobile.mo share/locale/fi/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/fr/LC_MESSAGES/kalgebra.mo share/locale/fr/LC_MESSAGES/kalgebramobile.mo share/locale/fr/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/ga/LC_MESSAGES/kalgebra.mo share/locale/ga/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/gl/LC_MESSAGES/kalgebra.mo share/locale/gl/LC_MESSAGES/kalgebramobile.mo share/locale/gl/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/hi/LC_MESSAGES/kalgebra.mo share/locale/hr/LC_MESSAGES/kalgebra.mo share/locale/hu/LC_MESSAGES/kalgebra.mo share/locale/hu/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/it/LC_MESSAGES/kalgebra.mo share/locale/it/LC_MESSAGES/kalgebramobile.mo share/locale/it/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/ja/LC_MESSAGES/kalgebra.mo +share/locale/ja/LC_MESSAGES/kalgebramobile.mo share/locale/ja/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/kk/LC_MESSAGES/kalgebra.mo share/locale/kk/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/km/LC_MESSAGES/kalgebra.mo share/locale/ko/LC_MESSAGES/kalgebra.mo share/locale/ko/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/lt/LC_MESSAGES/kalgebra.mo share/locale/lt/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/lv/LC_MESSAGES/kalgebra.mo share/locale/lv/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/mr/LC_MESSAGES/kalgebra.mo share/locale/mr/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/nb/LC_MESSAGES/kalgebra.mo share/locale/nb/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/nds/LC_MESSAGES/kalgebra.mo share/locale/nds/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/nl/LC_MESSAGES/kalgebra.mo share/locale/nl/LC_MESSAGES/kalgebramobile.mo share/locale/nl/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/nn/LC_MESSAGES/kalgebra.mo +share/locale/nn/LC_MESSAGES/kalgebramobile.mo share/locale/nn/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/pa/LC_MESSAGES/kalgebra.mo share/locale/pa/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/pl/LC_MESSAGES/kalgebra.mo share/locale/pl/LC_MESSAGES/kalgebramobile.mo share/locale/pl/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/pt/LC_MESSAGES/kalgebra.mo share/locale/pt/LC_MESSAGES/kalgebramobile.mo share/locale/pt/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/pt_BR/LC_MESSAGES/kalgebra.mo share/locale/pt_BR/LC_MESSAGES/kalgebramobile.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/ro/LC_MESSAGES/kalgebra.mo share/locale/ru/LC_MESSAGES/kalgebra.mo share/locale/ru/LC_MESSAGES/kalgebramobile.mo share/locale/ru/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/sk/LC_MESSAGES/kalgebra.mo share/locale/sk/LC_MESSAGES/kalgebramobile.mo share/locale/sk/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/sl/LC_MESSAGES/kalgebra.mo share/locale/sl/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/sv/LC_MESSAGES/kalgebra.mo share/locale/sv/LC_MESSAGES/kalgebramobile.mo share/locale/sv/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/tr/LC_MESSAGES/kalgebra.mo share/locale/tr/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/ug/LC_MESSAGES/kalgebra.mo share/locale/ug/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/uk/LC_MESSAGES/kalgebra.mo share/locale/uk/LC_MESSAGES/kalgebramobile.mo share/locale/uk/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/zh_CN/LC_MESSAGES/kalgebra.mo share/locale/zh_CN/LC_MESSAGES/kalgebramobile.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/zh_TW/LC_MESSAGES/kalgebra.mo share/locale/zh_TW/LC_MESSAGES/kalgebramobile.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo %%WEBENGINE%%share/metainfo/org.kde.kalgebra.appdata.xml share/metainfo/org.kde.kalgebramobile.appdata.xml %%WEBENGINE%%share/plasma/plasmoids/org.kde.graphsplasmoid/contents/ui/config.ui %%WEBENGINE%%share/plasma/plasmoids/org.kde.graphsplasmoid/contents/ui/main.qml %%WEBENGINE%%share/plasma/plasmoids/org.kde.graphsplasmoid/metadata.desktop Index: head/math/kbruch/distinfo =================================================================== --- head/math/kbruch/distinfo (revision 499276) +++ head/math/kbruch/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551810995 -SHA256 (KDE/applications/18.12.3/kbruch-18.12.3.tar.xz) = e98f79865c4d095d7682ab97b0e4e7d23715e402be676d66f184cfbe3eff598d -SIZE (KDE/applications/18.12.3/kbruch-18.12.3.tar.xz) = 5603852 +TIMESTAMP = 1555094859 +SHA256 (KDE/applications/19.04.0/kbruch-19.04.0.tar.xz) = 7762c233529b75859ab264bcfd9847acc06889b0ff96183a1af63effd40f3f38 +SIZE (KDE/applications/19.04.0/kbruch-19.04.0.tar.xz) = 5603648 Index: head/math/kcalc/distinfo =================================================================== --- head/math/kcalc/distinfo (revision 499276) +++ head/math/kcalc/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551810993 -SHA256 (KDE/applications/18.12.3/kcalc-18.12.3.tar.xz) = 10b3ebb5efab3731e9f12a8632546685281179881b03aae98f96a2cdbd21f02f -SIZE (KDE/applications/18.12.3/kcalc-18.12.3.tar.xz) = 362728 +TIMESTAMP = 1555094859 +SHA256 (KDE/applications/19.04.0/kcalc-19.04.0.tar.xz) = 0384ebf83c62e74a2412f71f648bad112f91ef3ec6aa64fe55e63fd88a156593 +SIZE (KDE/applications/19.04.0/kcalc-19.04.0.tar.xz) = 366360 Index: head/math/kig/Makefile =================================================================== --- head/math/kig/Makefile (revision 499276) +++ head/math/kig/Makefile (revision 499277) @@ -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 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= 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 499276) +++ head/math/kig/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551810995 -SHA256 (KDE/applications/18.12.3/kig-18.12.3.tar.xz) = abba87c3569e571e6d1761dc2e6c0e32969ea09eba6d9c0462cb4dc7bd62d7a2 -SIZE (KDE/applications/18.12.3/kig-18.12.3.tar.xz) = 3498736 +TIMESTAMP = 1555094860 +SHA256 (KDE/applications/19.04.0/kig-19.04.0.tar.xz) = 781243a23a94d7a9882bd69ddfcd74a5b9df0ce28cd45488e62dcf54e3633234 +SIZE (KDE/applications/19.04.0/kig-19.04.0.tar.xz) = 3499596 Index: head/math/kmplot/distinfo =================================================================== --- head/math/kmplot/distinfo (revision 499276) +++ head/math/kmplot/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551810994 -SHA256 (KDE/applications/18.12.3/kmplot-18.12.3.tar.xz) = 2dd6eec34088b5d3b591091cce41616ee310a66aa2d16e5800db56044d60dd7b -SIZE (KDE/applications/18.12.3/kmplot-18.12.3.tar.xz) = 3061352 +TIMESTAMP = 1555094860 +SHA256 (KDE/applications/19.04.0/kmplot-19.04.0.tar.xz) = fb981354dd6fea18e83003df957f65a9580d458b377adde88a838d4db9a97ee6 +SIZE (KDE/applications/19.04.0/kmplot-19.04.0.tar.xz) = 3064708 Index: head/math/rocs/Makefile =================================================================== --- head/math/rocs/Makefile (revision 499276) +++ head/math/rocs/Makefile (revision 499277) @@ -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 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= 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 499276) +++ head/math/rocs/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551810995 -SHA256 (KDE/applications/18.12.3/rocs-18.12.3.tar.xz) = 6b007b0b11a8128787c316f055a99dde83619dd35287e04867949e84661c2b11 -SIZE (KDE/applications/18.12.3/rocs-18.12.3.tar.xz) = 1515860 +TIMESTAMP = 1555094861 +SHA256 (KDE/applications/19.04.0/rocs-19.04.0.tar.xz) = 65557205a86ddc682c9f9378731b1cf0dacd170742a5bdf110eeeef8ae4b26c8 +SIZE (KDE/applications/19.04.0/rocs-19.04.0.tar.xz) = 1516968 Index: head/misc/artikulate/Makefile =================================================================== --- head/misc/artikulate/Makefile (revision 499276) +++ head/misc/artikulate/Makefile (revision 499277) @@ -1,24 +1,23 @@ # $FreeBSD$ PORTNAME= artikulate DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 2 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 499276) +++ head/misc/artikulate/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551810990 -SHA256 (KDE/applications/18.12.3/artikulate-18.12.3.tar.xz) = f40cc532dd1093d53ab4f825716ea4f4f4d7f954ac6c58ef412b63323a76c278 -SIZE (KDE/applications/18.12.3/artikulate-18.12.3.tar.xz) = 3985708 +TIMESTAMP = 1555094861 +SHA256 (KDE/applications/19.04.0/artikulate-19.04.0.tar.xz) = 527ebdb2db6eab3e05810c5e56d53611d80bd23508563457b459e4e32a68ef08 +SIZE (KDE/applications/19.04.0/artikulate-19.04.0.tar.xz) = 3986252 Index: head/misc/kdeedu-data/distinfo =================================================================== --- head/misc/kdeedu-data/distinfo (revision 499276) +++ head/misc/kdeedu-data/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551810989 -SHA256 (KDE/applications/18.12.3/kdeedu-data-18.12.3.tar.xz) = cebaa135b21cba27015b1679e02a6625b9b444828ec7595e1a46f53dd7ae3999 -SIZE (KDE/applications/18.12.3/kdeedu-data-18.12.3.tar.xz) = 327680 +TIMESTAMP = 1555094861 +SHA256 (KDE/applications/19.04.0/kdeedu-data-19.04.0.tar.xz) = ddba1b8f78b1614ac8b43b605a9021d611765dea6152e0997c84d4f9b17d9be6 +SIZE (KDE/applications/19.04.0/kdeedu-data-19.04.0.tar.xz) = 327692 Index: head/misc/kdeedu-data/pkg-plist =================================================================== --- head/misc/kdeedu-data/pkg-plist (revision 499276) +++ head/misc/kdeedu-data/pkg-plist (revision 499277) @@ -1,422 +1,419 @@ share/apps/kvtml/bg/animals.kvtml share/apps/kvtml/bg/easy.kvtml share/apps/kvtml/bg/hard.kvtml share/apps/kvtml/bg/medium.kvtml -share/apps/kvtml/ca/animals.kvtml share/apps/kvtml/ca/animals_pri.kvtml share/apps/kvtml/ca/biografies_sec.kvtml -share/apps/kvtml/ca/capitals_del_mon_sec.kvtml +share/apps/kvtml/ca/capitalsdelmón_sec.kvtml share/apps/kvtml/ca/comarques_sec.kvtml share/apps/kvtml/ca/divises_sec.kvtml -share/apps/kvtml/ca/easy.kvtml share/apps/kvtml/ca/espai_pri.kvtml share/apps/kvtml/ca/esports_sec.kvtml share/apps/kvtml/ca/fruites_pri.kvtml -share/apps/kvtml/ca/hard.kvtml -share/apps/kvtml/ca/informatica_pri.kvtml share/apps/kvtml/ca/invents_sec.kvtml -share/apps/kvtml/ca/medium.kvtml share/apps/kvtml/ca/objectes_pri.kvtml +share/apps/kvtml/ca/ordinadors_pri.kvtml share/apps/kvtml/ca/professions_pri.kvtml -share/apps/kvtml/ca/provincies_sec.kvtml +share/apps/kvtml/ca/províncies_sec.kvtml +share/apps/kvtml/ca/roba_pri.kvtml share/apps/kvtml/ca/transports_pri.kvtml share/apps/kvtml/ca/verdures_pri.kvtml share/apps/kvtml/ca/vestit_pri.kvtml share/apps/kvtml/cs/animals.kvtml share/apps/kvtml/cs/easy.kvtml share/apps/kvtml/cs/hard.kvtml share/apps/kvtml/cs/medium.kvtml share/apps/kvtml/da/beklaedning.kvtml share/apps/kvtml/da/computere.kvtml share/apps/kvtml/da/da_sports.kvtml share/apps/kvtml/da/dyr.kvtml share/apps/kvtml/da/easy.kvtml share/apps/kvtml/da/frugter.kvtml share/apps/kvtml/da/grontsager.kvtml share/apps/kvtml/da/hard.kvtml share/apps/kvtml/da/medium.kvtml share/apps/kvtml/da/numre.kvtml share/apps/kvtml/da/objekter.kvtml share/apps/kvtml/da/opfindelser.kvtml share/apps/kvtml/da/personer.kvtml share/apps/kvtml/da/professioner.kvtml share/apps/kvtml/da/rummet.kvtml share/apps/kvtml/da/transport.kvtml share/apps/kvtml/da/valutaer.kvtml share/apps/kvtml/da/verdenshovedstaeder.kvtml share/apps/kvtml/de/animals.kvtml share/apps/kvtml/de/clothing.kvtml share/apps/kvtml/de/computers.kvtml share/apps/kvtml/de/currencies.kvtml share/apps/kvtml/de/easy.kvtml share/apps/kvtml/de/fruits.kvtml share/apps/kvtml/de/hard.kvtml share/apps/kvtml/de/inventions.kvtml share/apps/kvtml/de/medium.kvtml share/apps/kvtml/de/numbers.kvtml share/apps/kvtml/de/objects.kvtml share/apps/kvtml/de/people.kvtml share/apps/kvtml/de/professions.kvtml share/apps/kvtml/de/space.kvtml share/apps/kvtml/de/sports.kvtml share/apps/kvtml/de/transportation.kvtml share/apps/kvtml/de/vegetables.kvtml share/apps/kvtml/de/worldcapitals.kvtml share/apps/kvtml/el/animals.kvtml share/apps/kvtml/el/clothing.kvtml share/apps/kvtml/el/computers.kvtml share/apps/kvtml/el/currencies.kvtml share/apps/kvtml/el/easy.kvtml share/apps/kvtml/el/fruits.kvtml share/apps/kvtml/el/hard.kvtml share/apps/kvtml/el/inventions.kvtml share/apps/kvtml/el/medium.kvtml share/apps/kvtml/el/numbers.kvtml share/apps/kvtml/el/objects.kvtml share/apps/kvtml/el/people.kvtml share/apps/kvtml/el/professions.kvtml share/apps/kvtml/el/space.kvtml share/apps/kvtml/el/sport.kvtml share/apps/kvtml/el/transportation.kvtml share/apps/kvtml/el/vegetables.kvtml share/apps/kvtml/el/worldcapitals.kvtml share/apps/kvtml/en/animals.kvtml share/apps/kvtml/en/clothing.kvtml share/apps/kvtml/en/computers.kvtml share/apps/kvtml/en/currencies.kvtml share/apps/kvtml/en/easy.kvtml share/apps/kvtml/en/fruits.kvtml share/apps/kvtml/en/hard.kvtml share/apps/kvtml/en/inventions.kvtml share/apps/kvtml/en/medium.kvtml share/apps/kvtml/en/numbers.kvtml share/apps/kvtml/en/objects.kvtml share/apps/kvtml/en/people.kvtml share/apps/kvtml/en/professions.kvtml share/apps/kvtml/en/space.kvtml share/apps/kvtml/en/sports.kvtml share/apps/kvtml/en/transportation.kvtml share/apps/kvtml/en/vegetables.kvtml share/apps/kvtml/en/worldcapitals.kvtml share/apps/kvtml/en_GB/animals.kvtml share/apps/kvtml/en_GB/animals_en_gb.kvtml share/apps/kvtml/en_GB/clothing.kvtml share/apps/kvtml/en_GB/computers.kvtml share/apps/kvtml/en_GB/currencies.kvtml share/apps/kvtml/en_GB/easy.kvtml share/apps/kvtml/en_GB/fruits.kvtml share/apps/kvtml/en_GB/hard.kvtml share/apps/kvtml/en_GB/inventions.kvtml share/apps/kvtml/en_GB/medium.kvtml share/apps/kvtml/en_GB/numbers.kvtml share/apps/kvtml/en_GB/objects.kvtml share/apps/kvtml/en_GB/people.kvtml share/apps/kvtml/en_GB/professions.kvtml share/apps/kvtml/en_GB/space.kvtml share/apps/kvtml/en_GB/sport.kvtml share/apps/kvtml/en_GB/transportation.kvtml share/apps/kvtml/en_GB/vegetables.kvtml share/apps/kvtml/en_GB/worldcapitals.kvtml share/apps/kvtml/es/animals.kvtml share/apps/kvtml/es/computadoras.kvtml share/apps/kvtml/es/deportes.kvtml share/apps/kvtml/es/easy.kvtml share/apps/kvtml/es/espacio.kvtml share/apps/kvtml/es/frutas.kvtml share/apps/kvtml/es/gente.kvtml share/apps/kvtml/es/hard.kvtml share/apps/kvtml/es/inventos.kvtml share/apps/kvtml/es/medium.kvtml share/apps/kvtml/es/monedas.kvtml share/apps/kvtml/es/numeros.kvtml share/apps/kvtml/es/objetos.kvtml share/apps/kvtml/es/prendas.kvtml share/apps/kvtml/es/professiones.kvtml share/apps/kvtml/es/transportes.kvtml share/apps/kvtml/es/vegetales.kvtml share/apps/kvtml/es/worldcapitals.kvtml share/apps/kvtml/et/animals.kvtml share/apps/kvtml/et/easy.kvtml share/apps/kvtml/et/hard.kvtml share/apps/kvtml/et/medium.kvtml share/apps/kvtml/fi/animals.kvtml share/apps/kvtml/fi/easy.kvtml share/apps/kvtml/fi/hard.kvtml share/apps/kvtml/fi/medium.kvtml share/apps/kvtml/fr/animals.kvtml share/apps/kvtml/fr/easy.kvtml share/apps/kvtml/fr/hard.kvtml share/apps/kvtml/fr/maison.kvtml share/apps/kvtml/fr/medium.kvtml share/apps/kvtml/ga/animals.kvtml share/apps/kvtml/ga/clothing.kvtml share/apps/kvtml/ga/computers.kvtml share/apps/kvtml/ga/currencies.kvtml share/apps/kvtml/ga/easy.kvtml share/apps/kvtml/ga/fruits.kvtml share/apps/kvtml/ga/hard.kvtml share/apps/kvtml/ga/inventions.kvtml share/apps/kvtml/ga/medium.kvtml share/apps/kvtml/ga/numbers.kvtml share/apps/kvtml/ga/objects.kvtml share/apps/kvtml/ga/people.kvtml share/apps/kvtml/ga/professions.kvtml share/apps/kvtml/ga/space.kvtml share/apps/kvtml/ga/sports.kvtml share/apps/kvtml/ga/transportation.kvtml share/apps/kvtml/ga/vegetables.kvtml share/apps/kvtml/ga/worldcapitals.kvtml share/apps/kvtml/gl/animals.kvtml share/apps/kvtml/gl/capitaisdomundo.kvtml share/apps/kvtml/gl/deportes.kvtml share/apps/kvtml/gl/easy.kvtml share/apps/kvtml/gl/espazo.kvtml share/apps/kvtml/gl/froita.kvtml share/apps/kvtml/gl/hard.kvtml share/apps/kvtml/gl/informatica.kvtml share/apps/kvtml/gl/invencions.kvtml share/apps/kvtml/gl/medium.kvtml share/apps/kvtml/gl/moedas.kvtml share/apps/kvtml/gl/obxectos.kvtml share/apps/kvtml/gl/profesions.kvtml share/apps/kvtml/gl/roupa.kvtml share/apps/kvtml/gl/transporte.kvtml share/apps/kvtml/gl/verduras.kvtml share/apps/kvtml/gl/xente.kvtml share/apps/kvtml/hu/animals.kvtml share/apps/kvtml/hu/clothing.kvtml share/apps/kvtml/hu/computers.kvtml share/apps/kvtml/hu/currencies.kvtml share/apps/kvtml/hu/fruits.kvtml share/apps/kvtml/hu/numbers.kvtml share/apps/kvtml/hu/transportation.kvtml share/apps/kvtml/hu/worldcapitals.kvtml share/apps/kvtml/it/animali.kvtml share/apps/kvtml/it/animals.kvtml share/apps/kvtml/it/capitalidelmondo.kvtml share/apps/kvtml/it/computer.kvtml share/apps/kvtml/it/easy.kvtml share/apps/kvtml/it/hard.kvtml share/apps/kvtml/it/invenzioni.kvtml share/apps/kvtml/it/medium.kvtml share/apps/kvtml/it/numeri.kvtml share/apps/kvtml/it/oggetti.kvtml share/apps/kvtml/it/persone.kvtml share/apps/kvtml/it/spazio.kvtml share/apps/kvtml/it/trasporti.kvtml share/apps/kvtml/it/valute.kvtml share/apps/kvtml/nb/animals.kvtml share/apps/kvtml/nb/easy.kvtml share/apps/kvtml/nb/hard.kvtml share/apps/kvtml/nb/medium.kvtml share/apps/kvtml/nds/animals.kvtml share/apps/kvtml/nds/clothing.kvtml share/apps/kvtml/nds/computers.kvtml share/apps/kvtml/nds/currencies.kvtml share/apps/kvtml/nds/easy.kvtml share/apps/kvtml/nds/fruits.kvtml share/apps/kvtml/nds/hard.kvtml share/apps/kvtml/nds/inventions.kvtml share/apps/kvtml/nds/medium.kvtml share/apps/kvtml/nds/numbers.kvtml share/apps/kvtml/nds/objects.kvtml share/apps/kvtml/nds/people.kvtml share/apps/kvtml/nds/professions.kvtml share/apps/kvtml/nds/space.kvtml share/apps/kvtml/nds/sports.kvtml share/apps/kvtml/nds/transportation.kvtml share/apps/kvtml/nds/vegetables.kvtml share/apps/kvtml/nds/worldcapitals.kvtml share/apps/kvtml/nl/Europese_landen.kvtml share/apps/kvtml/nl/Nederlandse_eilanden.kvtml share/apps/kvtml/nl/Nederlandse_provincies.kvtml share/apps/kvtml/nl/animals.kvtml share/apps/kvtml/nl/easy.kvtml share/apps/kvtml/nl/hard.kvtml share/apps/kvtml/nl/medium.kvtml share/apps/kvtml/nn/animals.kvtml share/apps/kvtml/nn/easy.kvtml share/apps/kvtml/nn/hard.kvtml share/apps/kvtml/nn/medium.kvtml share/apps/kvtml/pa/animals.kvtml share/apps/kvtml/pa/clothing.kvtml share/apps/kvtml/pa/computers.kvtml share/apps/kvtml/pa/currencies.kvtml share/apps/kvtml/pa/easy.kvtml share/apps/kvtml/pa/fruits.kvtml share/apps/kvtml/pa/hard.kvtml share/apps/kvtml/pa/inventions.kvtml share/apps/kvtml/pa/medium.kvtml share/apps/kvtml/pa/numbers.kvtml share/apps/kvtml/pa/objects.kvtml share/apps/kvtml/pa/people.kvtml share/apps/kvtml/pa/professions.kvtml share/apps/kvtml/pa/space.kvtml share/apps/kvtml/pa/sports.kvtml share/apps/kvtml/pa/transportation.kvtml share/apps/kvtml/pa/vegetables.kvtml share/apps/kvtml/pa/worldcapitals.kvtml share/apps/kvtml/pl/animals.kvtml share/apps/kvtml/pl/easy.kvtml share/apps/kvtml/pl/hard.kvtml share/apps/kvtml/pl/medium.kvtml share/apps/kvtml/pt/animals.kvtml share/apps/kvtml/pt/easy.kvtml share/apps/kvtml/pt/hard.kvtml share/apps/kvtml/pt/medium.kvtml share/apps/kvtml/pt_BR/animals.kvtml share/apps/kvtml/pt_BR/easy.kvtml share/apps/kvtml/pt_BR/hard.kvtml share/apps/kvtml/pt_BR/medium.kvtml share/apps/kvtml/ro/animals.kvtml share/apps/kvtml/ro/easy.kvtml share/apps/kvtml/ro/hard.kvtml share/apps/kvtml/ro/medium.kvtml share/apps/kvtml/ru/animals.kvtml share/apps/kvtml/ru/astronomy.kvtml share/apps/kvtml/ru/computers.kvtml share/apps/kvtml/ru/currencies.kvtml share/apps/kvtml/ru/easy.kvtml share/apps/kvtml/ru/hard.kvtml share/apps/kvtml/ru/medium.kvtml share/apps/kvtml/ru/numbers.kvtml share/apps/kvtml/ru/objects.kvtml share/apps/kvtml/ru/people.kvtml share/apps/kvtml/ru/space.kvtml share/apps/kvtml/ru/transportation.kvtml share/apps/kvtml/ru/worldcapitals.kvtml share/apps/kvtml/sl/animals.kvtml share/apps/kvtml/sl/clothing.kvtml share/apps/kvtml/sl/computers.kvtml share/apps/kvtml/sl/currencies.kvtml share/apps/kvtml/sl/easy.kvtml share/apps/kvtml/sl/fruits.kvtml share/apps/kvtml/sl/hard.kvtml share/apps/kvtml/sl/inventions.kvtml share/apps/kvtml/sl/medium.kvtml share/apps/kvtml/sl/numbers.kvtml share/apps/kvtml/sl/objects.kvtml share/apps/kvtml/sl/people.kvtml share/apps/kvtml/sl/professions.kvtml share/apps/kvtml/sl/space.kvtml share/apps/kvtml/sl/sports.kvtml share/apps/kvtml/sl/transportation.kvtml share/apps/kvtml/sl/vegetables.kvtml share/apps/kvtml/sl/worldcapitals.kvtml share/apps/kvtml/sr/animals.kvtml share/apps/kvtml/sr/easy.kvtml share/apps/kvtml/sr/hard.kvtml share/apps/kvtml/sr/medium.kvtml share/apps/kvtml/sr@ijekavian/animals.kvtml share/apps/kvtml/sr@ijekavian/easy.kvtml share/apps/kvtml/sr@ijekavian/hard.kvtml share/apps/kvtml/sr@ijekavian/medium.kvtml share/apps/kvtml/sr@ijekavianlatin/animals.kvtml share/apps/kvtml/sr@ijekavianlatin/easy.kvtml share/apps/kvtml/sr@ijekavianlatin/hard.kvtml share/apps/kvtml/sr@ijekavianlatin/medium.kvtml share/apps/kvtml/sr@latin/animals.kvtml share/apps/kvtml/sr@latin/easy.kvtml share/apps/kvtml/sr@latin/hard.kvtml share/apps/kvtml/sr@latin/medium.kvtml share/apps/kvtml/sv/animals.kvtml share/apps/kvtml/sv/clothing.kvtml share/apps/kvtml/sv/computers.kvtml share/apps/kvtml/sv/currencies.kvtml share/apps/kvtml/sv/easy.kvtml share/apps/kvtml/sv/fruits.kvtml share/apps/kvtml/sv/hard.kvtml share/apps/kvtml/sv/inventions.kvtml share/apps/kvtml/sv/medium.kvtml share/apps/kvtml/sv/numbers.kvtml share/apps/kvtml/sv/objects.kvtml share/apps/kvtml/sv/people.kvtml share/apps/kvtml/sv/professions.kvtml share/apps/kvtml/sv/space.kvtml share/apps/kvtml/sv/sports.kvtml share/apps/kvtml/sv/transportation.kvtml share/apps/kvtml/sv/vegetables.kvtml share/apps/kvtml/sv/worldcapitals.kvtml share/apps/kvtml/tr/animals.kvtml share/apps/kvtml/tr/easy.kvtml share/apps/kvtml/tr/hard.kvtml share/apps/kvtml/tr/medium.kvtml share/apps/kvtml/uk/animals.kvtml share/apps/kvtml/uk/clothing.kvtml share/apps/kvtml/uk/computers.kvtml share/apps/kvtml/uk/currencies.kvtml share/apps/kvtml/uk/easy.kvtml share/apps/kvtml/uk/fruits.kvtml share/apps/kvtml/uk/hard.kvtml share/apps/kvtml/uk/inventions.kvtml share/apps/kvtml/uk/medium.kvtml share/apps/kvtml/uk/numbers.kvtml share/apps/kvtml/uk/objects.kvtml share/apps/kvtml/uk/people.kvtml share/apps/kvtml/uk/professions.kvtml share/apps/kvtml/uk/space.kvtml share/apps/kvtml/uk/sports.kvtml share/apps/kvtml/uk/transportation.kvtml share/apps/kvtml/uk/vegetables.kvtml share/apps/kvtml/uk/worldcapitals.kvtml share/icons/hicolor/16x16/actions/editplots.png share/icons/hicolor/16x16/actions/functionhelp.png share/icons/hicolor/16x16/actions/integral_func.png share/icons/hicolor/16x16/actions/maximum.png share/icons/hicolor/16x16/actions/minimum.png share/icons/hicolor/16x16/actions/newdifferential.png share/icons/hicolor/16x16/actions/newfunction.png share/icons/hicolor/16x16/actions/newimplicit.png share/icons/hicolor/16x16/actions/newparametric.png share/icons/hicolor/16x16/actions/newpolar.png share/icons/hicolor/16x16/actions/resetview.png share/icons/hicolor/22x22/actions/editplots.png share/icons/hicolor/22x22/actions/functionhelp.png share/icons/hicolor/22x22/actions/maximum.png share/icons/hicolor/22x22/actions/minimum.png share/icons/hicolor/22x22/actions/newdifferential.png share/icons/hicolor/22x22/actions/newfunction.png share/icons/hicolor/22x22/actions/newimplicit.png share/icons/hicolor/22x22/actions/newparametric.png share/icons/hicolor/22x22/actions/newpolar.png share/icons/hicolor/22x22/actions/resetview.png share/icons/hicolor/32x32/actions/coords.png share/icons/hicolor/32x32/actions/deriv_func.png share/icons/hicolor/32x32/actions/editconstants.png share/icons/hicolor/32x32/actions/editplots.png share/icons/hicolor/32x32/actions/func.png share/icons/hicolor/32x32/actions/functionhelp.png share/icons/hicolor/32x32/actions/integral_func.png share/icons/hicolor/32x32/actions/lessen.png share/icons/hicolor/32x32/actions/magnify.png share/icons/hicolor/32x32/actions/maximum.png share/icons/hicolor/32x32/actions/minimum.png share/icons/hicolor/32x32/actions/newdifferential.png share/icons/hicolor/32x32/actions/newfunction.png share/icons/hicolor/32x32/actions/newimplicit.png share/icons/hicolor/32x32/actions/newparametric.png share/icons/hicolor/32x32/actions/newpolar.png share/icons/hicolor/32x32/actions/resetview.png share/icons/hicolor/48x48/actions/editplots.png share/icons/hicolor/48x48/actions/functionhelp.png share/icons/hicolor/48x48/actions/maximum.png share/icons/hicolor/48x48/actions/minimum.png share/icons/hicolor/48x48/actions/newdifferential.png share/icons/hicolor/48x48/actions/newfunction.png share/icons/hicolor/48x48/actions/newimplicit.png share/icons/hicolor/48x48/actions/newparametric.png share/icons/hicolor/48x48/actions/newpolar.png share/icons/hicolor/48x48/actions/resetview.png share/icons/hicolor/64x64/actions/maximum.png share/icons/hicolor/64x64/actions/minimum.png share/icons/hicolor/scalable/actions/deriv_func.svgz share/icons/hicolor/scalable/actions/editconstants.svgz share/icons/hicolor/scalable/actions/editplots.svgz share/icons/hicolor/scalable/actions/functionhelp.svgz share/icons/hicolor/scalable/actions/integral_func.svgz share/icons/hicolor/scalable/actions/maximum.svgz share/icons/hicolor/scalable/actions/minimum.svgz share/icons/hicolor/scalable/actions/newfunction.svgz share/icons/hicolor/scalable/actions/newparametric.svgz share/icons/hicolor/scalable/actions/newpolar.svgz share/icons/hicolor/scalable/actions/resetview.svgz Index: head/misc/kgeography/distinfo =================================================================== --- head/misc/kgeography/distinfo (revision 499276) +++ head/misc/kgeography/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551810990 -SHA256 (KDE/applications/18.12.3/kgeography-18.12.3.tar.xz) = ae019c4fc6c2b52344466266a19c6047e5dc414a92461a21d0e9c003dd4433c9 -SIZE (KDE/applications/18.12.3/kgeography-18.12.3.tar.xz) = 10827984 +TIMESTAMP = 1555094862 +SHA256 (KDE/applications/19.04.0/kgeography-19.04.0.tar.xz) = ee126fc91ba164e0c095e7cef231a1389a4e1423256773c4e7d4b7306077eb41 +SIZE (KDE/applications/19.04.0/kgeography-19.04.0.tar.xz) = 10830808 Index: head/misc/klettres/Makefile =================================================================== --- head/misc/klettres/Makefile (revision 499276) +++ head/misc/klettres/Makefile (revision 499277) @@ -1,20 +1,19 @@ # $FreeBSD$ PORTNAME= klettres DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= misc kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Alphabet learning tool for KDE USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= attica auth codecs completion config configwidgets coreaddons \ crash doctools ecm emoticons i18n init itemmodels \ kdelibs4support newstuff service widgetsaddons xmlgui USE_QT= core dbus gui network phonon4 svg widgets xml \ buildtools_build qmake_build OPTIONS_DEFINE= DOCS .include Index: head/misc/klettres/distinfo =================================================================== --- head/misc/klettres/distinfo (revision 499276) +++ head/misc/klettres/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551810989 -SHA256 (KDE/applications/18.12.3/klettres-18.12.3.tar.xz) = 4ca89a54858d1f8ac43e8cb485b80a3bb5ead501d39e7e30d8c9b6b8d2d7fd93 -SIZE (KDE/applications/18.12.3/klettres-18.12.3.tar.xz) = 21487324 +TIMESTAMP = 1555094862 +SHA256 (KDE/applications/19.04.0/klettres-19.04.0.tar.xz) = c8a5596638ea7bbe7e26c246c5904840bf544e632e5649430bb32159aedefd60 +SIZE (KDE/applications/19.04.0/klettres-19.04.0.tar.xz) = 21492840 Index: head/misc/ktouch/distinfo =================================================================== --- head/misc/ktouch/distinfo (revision 499276) +++ head/misc/ktouch/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551810988 -SHA256 (KDE/applications/18.12.3/ktouch-18.12.3.tar.xz) = 194f308a114c89873ee88eb069ecda88d5d1e1ad97c150e2d61cf248719b4bb6 -SIZE (KDE/applications/18.12.3/ktouch-18.12.3.tar.xz) = 5123496 +TIMESTAMP = 1555094863 +SHA256 (KDE/applications/19.04.0/ktouch-19.04.0.tar.xz) = 707fca9ee9d0d217683e2bb562f5f8f984ddbd0ed7274b022a43bdc176898390 +SIZE (KDE/applications/19.04.0/ktouch-19.04.0.tar.xz) = 5139320 Index: head/misc/ktouch/pkg-plist =================================================================== --- head/misc/ktouch/pkg-plist (revision 499276) +++ head/misc/ktouch/pkg-plist (revision 499277) @@ -1,184 +1,185 @@ bin/ktouch man/ca/man1/ktouch.1.gz man/de/man1/ktouch.1.gz man/es/man1/ktouch.1.gz man/et/man1/ktouch.1.gz man/fr/man1/ktouch.1.gz man/gl/man1/ktouch.1.gz man/it/man1/ktouch.1.gz man/man1/ktouch.1.gz man/nl/man1/ktouch.1.gz man/pl/man1/ktouch.1.gz man/pt/man1/ktouch.1.gz man/pt_BR/man1/ktouch.1.gz man/sv/man1/ktouch.1.gz man/uk/man1/ktouch.1.gz share/applications/org.kde.ktouch.desktop share/config.kcfg/ktouch.kcfg share/icons/hicolor/128x128/apps/ktouch.png share/icons/hicolor/16x16/apps/ktouch.png share/icons/hicolor/22x22/apps/ktouch.png share/icons/hicolor/32x32/apps/ktouch.png share/icons/hicolor/48x48/apps/ktouch.png share/icons/hicolor/scalable/apps/ktouch.svgz %%DATADIR%%/courses/ara.xml %%DATADIR%%/courses/bg1.xml %%DATADIR%%/courses/bg2.xml %%DATADIR%%/courses/br.xml %%DATADIR%%/courses/cat.xml %%DATADIR%%/courses/ch1.xml %%DATADIR%%/courses/ch2.xml %%DATADIR%%/courses/cz.xml %%DATADIR%%/courses/de.dvorak.xml %%DATADIR%%/courses/de.neo.xml %%DATADIR%%/courses/de1.xml %%DATADIR%%/courses/de2.xml %%DATADIR%%/courses/dk1.xml %%DATADIR%%/courses/es.dvorak.xml %%DATADIR%%/courses/es1.xml %%DATADIR%%/courses/es2.xml %%DATADIR%%/courses/es3.xml %%DATADIR%%/courses/es4.xml %%DATADIR%%/courses/fi.xml %%DATADIR%%/courses/fr.bepo.xml %%DATADIR%%/courses/fr.dvarok.xml %%DATADIR%%/courses/fr.xml %%DATADIR%%/courses/gb.xml %%DATADIR%%/courses/gr.xml %%DATADIR%%/courses/ir.xml %%DATADIR%%/courses/it.xml +%%DATADIR%%/courses/it2.xml %%DATADIR%%/courses/lt.std.xml %%DATADIR%%/courses/nl1.xml %%DATADIR%%/courses/nl2.xml %%DATADIR%%/courses/no.xml %%DATADIR%%/courses/pl.xml %%DATADIR%%/courses/ru.legacy.xml %%DATADIR%%/courses/ru1.xml %%DATADIR%%/courses/ru2.xml %%DATADIR%%/courses/si.xml %%DATADIR%%/courses/sk.xml %%DATADIR%%/courses/tr.xml %%DATADIR%%/courses/ua.xml %%DATADIR%%/courses/us.colemak.xml %%DATADIR%%/courses/us.dvorak1.xml %%DATADIR%%/courses/us.dvorak2.xml %%DATADIR%%/courses/us.workman.xml %%DATADIR%%/courses/us.xml %%DATADIR%%/data.xml %%DATADIR%%/images/accuracymeter-background.png %%DATADIR%%/images/accuracymeter-hand.png %%DATADIR%%/images/accuracymeter-scale.png %%DATADIR%%/images/balloontip.svgz %%DATADIR%%/images/charactersperminutemeter-background.png %%DATADIR%%/images/charactersperminutemeter-hand.png %%DATADIR%%/images/charactersperminutemeter-scale.png %%DATADIR%%/images/elapsedtimemeter-background.png %%DATADIR%%/images/elapsedtimemeter-minute-hand.png %%DATADIR%%/images/elapsedtimemeter-second-hand.png %%DATADIR%%/images/meterbox-left.png %%DATADIR%%/images/meterbox-right.png %%DATADIR%%/images/trainingscreen-footer.png %%DATADIR%%/images/trainingscreen-header.png %%DATADIR%%/images/trainingscreen-toolbar.png %%DATADIR%%/images/trainingscreen-viewport-shadow.png %%DATADIR%%/images/trainingscreen-viewport.png %%DATADIR%%/keyboardlayouts/ara.xml %%DATADIR%%/keyboardlayouts/be.xml %%DATADIR%%/keyboardlayouts/bg.xml %%DATADIR%%/keyboardlayouts/br.xml %%DATADIR%%/keyboardlayouts/ch.fr.xml %%DATADIR%%/keyboardlayouts/ch.xml %%DATADIR%%/keyboardlayouts/cz.qwerty.xml %%DATADIR%%/keyboardlayouts/cz.xml %%DATADIR%%/keyboardlayouts/de.dvorak.xml %%DATADIR%%/keyboardlayouts/de.neo2.xml %%DATADIR%%/keyboardlayouts/de.xml %%DATADIR%%/keyboardlayouts/dk.xml %%DATADIR%%/keyboardlayouts/ee.xml %%DATADIR%%/keyboardlayouts/es.dvorak.xml %%DATADIR%%/keyboardlayouts/es.xml %%DATADIR%%/keyboardlayouts/fi.xml %%DATADIR%%/keyboardlayouts/fr.bepo.xml %%DATADIR%%/keyboardlayouts/fr.dvorak.xml %%DATADIR%%/keyboardlayouts/fr.xml %%DATADIR%%/keyboardlayouts/gb.dvorak.xml %%DATADIR%%/keyboardlayouts/gb.xml %%DATADIR%%/keyboardlayouts/hu.xml %%DATADIR%%/keyboardlayouts/il.xml %%DATADIR%%/keyboardlayouts/in.kan.xml %%DATADIR%%/keyboardlayouts/in.tam_unicode.xml %%DATADIR%%/keyboardlayouts/ir.xml %%DATADIR%%/keyboardlayouts/it.xml %%DATADIR%%/keyboardlayouts/jp.xml %%DATADIR%%/keyboardlayouts/latam.xml %%DATADIR%%/keyboardlayouts/lt.std.xml %%DATADIR%%/keyboardlayouts/mn.xml %%DATADIR%%/keyboardlayouts/nl.xml %%DATADIR%%/keyboardlayouts/no.xml %%DATADIR%%/keyboardlayouts/pt.xml %%DATADIR%%/keyboardlayouts/ru.legacy.xml %%DATADIR%%/keyboardlayouts/ru.xml %%DATADIR%%/keyboardlayouts/se.xml %%DATADIR%%/keyboardlayouts/si.xml %%DATADIR%%/keyboardlayouts/sk.qwerty.xml %%DATADIR%%/keyboardlayouts/sk.xml %%DATADIR%%/keyboardlayouts/tr.f.xml %%DATADIR%%/keyboardlayouts/tr.xml %%DATADIR%%/keyboardlayouts/ua.xml %%DATADIR%%/keyboardlayouts/us.colemak.xml %%DATADIR%%/keyboardlayouts/us.dvorak.xml %%DATADIR%%/keyboardlayouts/us.workman.xml %%DATADIR%%/keyboardlayouts/us.xml %%DATADIR%%/schemata/course.xsd %%DATADIR%%/schemata/data.xsd %%DATADIR%%/schemata/keyboardlayout.xsd share/locale/ar/LC_MESSAGES/ktouch.mo share/locale/bg/LC_MESSAGES/ktouch.mo share/locale/bs/LC_MESSAGES/ktouch.mo share/locale/ca/LC_MESSAGES/ktouch.mo share/locale/ca@valencia/LC_MESSAGES/ktouch.mo share/locale/cs/LC_MESSAGES/ktouch.mo share/locale/da/LC_MESSAGES/ktouch.mo share/locale/de/LC_MESSAGES/ktouch.mo share/locale/el/LC_MESSAGES/ktouch.mo share/locale/en_GB/LC_MESSAGES/ktouch.mo share/locale/eo/LC_MESSAGES/ktouch.mo share/locale/es/LC_MESSAGES/ktouch.mo share/locale/et/LC_MESSAGES/ktouch.mo share/locale/eu/LC_MESSAGES/ktouch.mo share/locale/fa/LC_MESSAGES/ktouch.mo share/locale/fi/LC_MESSAGES/ktouch.mo share/locale/fr/LC_MESSAGES/ktouch.mo share/locale/ga/LC_MESSAGES/ktouch.mo share/locale/gl/LC_MESSAGES/ktouch.mo share/locale/he/LC_MESSAGES/ktouch.mo share/locale/hi/LC_MESSAGES/ktouch.mo share/locale/hr/LC_MESSAGES/ktouch.mo share/locale/hu/LC_MESSAGES/ktouch.mo share/locale/is/LC_MESSAGES/ktouch.mo share/locale/it/LC_MESSAGES/ktouch.mo share/locale/ja/LC_MESSAGES/ktouch.mo share/locale/kk/LC_MESSAGES/ktouch.mo share/locale/km/LC_MESSAGES/ktouch.mo share/locale/lt/LC_MESSAGES/ktouch.mo share/locale/lv/LC_MESSAGES/ktouch.mo share/locale/mr/LC_MESSAGES/ktouch.mo share/locale/nb/LC_MESSAGES/ktouch.mo share/locale/nds/LC_MESSAGES/ktouch.mo share/locale/nl/LC_MESSAGES/ktouch.mo share/locale/nn/LC_MESSAGES/ktouch.mo share/locale/pa/LC_MESSAGES/ktouch.mo share/locale/pl/LC_MESSAGES/ktouch.mo share/locale/pt/LC_MESSAGES/ktouch.mo share/locale/pt_BR/LC_MESSAGES/ktouch.mo share/locale/ro/LC_MESSAGES/ktouch.mo share/locale/ru/LC_MESSAGES/ktouch.mo share/locale/sk/LC_MESSAGES/ktouch.mo share/locale/sl/LC_MESSAGES/ktouch.mo share/locale/sv/LC_MESSAGES/ktouch.mo share/locale/tr/LC_MESSAGES/ktouch.mo share/locale/ug/LC_MESSAGES/ktouch.mo share/locale/uk/LC_MESSAGES/ktouch.mo share/locale/zh_CN/LC_MESSAGES/ktouch.mo share/locale/zh_TW/LC_MESSAGES/ktouch.mo share/metainfo/org.kde.ktouch.appdata.xml Index: head/misc/kwordquiz/Makefile =================================================================== --- head/misc/kwordquiz/Makefile (revision 499276) +++ head/misc/kwordquiz/Makefile (revision 499277) @@ -1,23 +1,22 @@ # $FreeBSD$ PORTNAME= kwordquiz DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= misc kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Flash card trainer for KDE Applications USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= attica auth bookmarks codecs completion config configwidgets \ coreaddons crash doctools ecm emoticons guiaddons i18n \ iconthemes init itemmodels itemviews jobwidgets kdeclarative \ kdelibs4support kio libkeduvocdocument newstuff notifications \ notifyconfig parts service solid sonnet textwidgets \ unitconversion widgetsaddons windowsystem xmlgui USE_QT= core dbus gui network phonon4 printsupport widgets xml \ buildtools_build qmake_build OPTIONS_DEFINE= DOCS .include Index: head/misc/kwordquiz/distinfo =================================================================== --- head/misc/kwordquiz/distinfo (revision 499276) +++ head/misc/kwordquiz/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551810989 -SHA256 (KDE/applications/18.12.3/kwordquiz-18.12.3.tar.xz) = e609d6b7f93abe0ca7ba844c51dff8d89d435daa9d0a6be68e789b70370459cc -SIZE (KDE/applications/18.12.3/kwordquiz-18.12.3.tar.xz) = 4168980 +TIMESTAMP = 1555094863 +SHA256 (KDE/applications/19.04.0/kwordquiz-19.04.0.tar.xz) = a6433b5a2497398ed790965ef5469b53e406882f93b5a05e574d05cb193ef866 +SIZE (KDE/applications/19.04.0/kwordquiz-19.04.0.tar.xz) = 4169036 Index: head/misc/libkeduvocdocument/distinfo =================================================================== --- head/misc/libkeduvocdocument/distinfo (revision 499276) +++ head/misc/libkeduvocdocument/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551810988 -SHA256 (KDE/applications/18.12.3/libkeduvocdocument-18.12.3.tar.xz) = 907076104f445f22fa31c2fa5ecfdabbb8b18faab52fc10c879a53d6245aaad4 -SIZE (KDE/applications/18.12.3/libkeduvocdocument-18.12.3.tar.xz) = 207096 +TIMESTAMP = 1555094863 +SHA256 (KDE/applications/19.04.0/libkeduvocdocument-19.04.0.tar.xz) = bb0300ca6a89c7174714b005032380b81e6e7bfdf3a3bab82b6f42fc0693045e +SIZE (KDE/applications/19.04.0/libkeduvocdocument-19.04.0.tar.xz) = 207160 Index: head/misc/parley/distinfo =================================================================== --- head/misc/parley/distinfo (revision 499276) +++ head/misc/parley/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551810988 -SHA256 (KDE/applications/18.12.3/parley-18.12.3.tar.xz) = 289bc5aa88d7a33fdf0d668b45412f163d74e86d3deb9492db53a11f7c6a7f75 -SIZE (KDE/applications/18.12.3/parley-18.12.3.tar.xz) = 8823828 +TIMESTAMP = 1555094873 +SHA256 (KDE/applications/19.04.0/parley-19.04.0.tar.xz) = 243f7f1a89bb603c059b0610a9bb7f51627540d439b4026d736062b693879ed2 +SIZE (KDE/applications/19.04.0/parley-19.04.0.tar.xz) = 8823984 Index: head/multimedia/dragon/Makefile =================================================================== --- head/multimedia/dragon/Makefile (revision 499276) +++ head/multimedia/dragon/Makefile (revision 499277) @@ -1,24 +1,23 @@ # $FreeBSD$ PORTNAME= dragon DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= multimedia kde kde-applications PKGNAMESUFFIX= -player MAINTAINER= kde@FreeBSD.org COMMENT= KDE multimedia player with a focus on simplicity LICENSE= GPLv2 USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs completion config configwidgets coreaddons crash \ dbusaddons doctools ecm kio service sonnet textwidgets i18n \ iconthemes jobwidgets notifications parts solid widgetsaddons \ windowsystem xmlgui USE_QT= core dbus gui network phonon4 widgets xml \ buildtools_build qmake_build OPTIONS_DEFINE= DOCS .include Index: head/multimedia/dragon/distinfo =================================================================== --- head/multimedia/dragon/distinfo (revision 499276) +++ head/multimedia/dragon/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551810967 -SHA256 (KDE/applications/18.12.3/dragon-18.12.3.tar.xz) = 115d60bfdef498ea75bc077a7091fb738615b399b03ec2a76a4bf34f19b407f3 -SIZE (KDE/applications/18.12.3/dragon-18.12.3.tar.xz) = 1664076 +TIMESTAMP = 1555094874 +SHA256 (KDE/applications/19.04.0/dragon-19.04.0.tar.xz) = 42bde9f6a4f3dfe7a6b2bfa35502474c2866e2649695302d602a97f00842fcf2 +SIZE (KDE/applications/19.04.0/dragon-19.04.0.tar.xz) = 1352052 Index: head/multimedia/dragon/pkg-plist =================================================================== --- head/multimedia/dragon/pkg-plist (revision 499276) +++ head/multimedia/dragon/pkg-plist (revision 499277) @@ -1,90 +1,87 @@ bin/dragon etc/xdg/dragonplayerrc -%%QT_PLUGINDIR%%/dragonpart.so +%%QT_PLUGINDIR%%/kf5/parts/dragonpart.so man/ca/man1/dragon.1.gz man/de/man1/dragon.1.gz man/es/man1/dragon.1.gz man/et/man1/dragon.1.gz man/fr/man1/dragon.1.gz -man/id/man1/dragon.1.gz man/it/man1/dragon.1.gz man/man1/dragon.1.gz man/nl/man1/dragon.1.gz man/pt/man1/dragon.1.gz man/pt_BR/man1/dragon.1.gz man/sr/man1/dragon.1.gz man/sv/man1/dragon.1.gz man/tr/man1/dragon.1.gz man/uk/man1/dragon.1.gz share/applications/org.kde.dragonplayer.desktop share/icons/hicolor/128x128/apps/dragonplayer.png share/icons/hicolor/16x16/apps/dragonplayer.png share/icons/hicolor/22x22/apps/dragonplayer.png share/icons/hicolor/32x32/apps/dragonplayer.png share/icons/hicolor/48x48/apps/dragonplayer.png share/icons/hicolor/64x64/apps/dragonplayer.png share/icons/hicolor/scalable/apps/dragonplayer.svgz share/icons/oxygen/16x16/actions/player-volume-muted.png share/icons/oxygen/22x22/actions/player-volume-muted.png share/icons/oxygen/32x32/actions/player-volume-muted.png share/icons/oxygen/48x48/actions/player-volume-muted.png share/icons/oxygen/scalable/actions/player-volume-muted.svgz share/kservices5/ServiceMenus/dragonplayer_play_dvd.desktop share/kservices5/dragonplayer_part.desktop -share/kxmlgui5/dragonplayer/dragonlogo.png -share/kxmlgui5/dragonplayer/dragonplayerui.rc share/locale/ar/LC_MESSAGES/dragonplayer.mo share/locale/bg/LC_MESSAGES/dragonplayer.mo share/locale/bs/LC_MESSAGES/dragonplayer.mo share/locale/ca/LC_MESSAGES/dragonplayer.mo share/locale/ca@valencia/LC_MESSAGES/dragonplayer.mo share/locale/cs/LC_MESSAGES/dragonplayer.mo share/locale/da/LC_MESSAGES/dragonplayer.mo share/locale/de/LC_MESSAGES/dragonplayer.mo share/locale/el/LC_MESSAGES/dragonplayer.mo share/locale/en_GB/LC_MESSAGES/dragonplayer.mo share/locale/eo/LC_MESSAGES/dragonplayer.mo share/locale/es/LC_MESSAGES/dragonplayer.mo share/locale/et/LC_MESSAGES/dragonplayer.mo share/locale/eu/LC_MESSAGES/dragonplayer.mo share/locale/fi/LC_MESSAGES/dragonplayer.mo share/locale/fr/LC_MESSAGES/dragonplayer.mo share/locale/ga/LC_MESSAGES/dragonplayer.mo share/locale/gl/LC_MESSAGES/dragonplayer.mo share/locale/he/LC_MESSAGES/dragonplayer.mo share/locale/hr/LC_MESSAGES/dragonplayer.mo share/locale/hu/LC_MESSAGES/dragonplayer.mo share/locale/ia/LC_MESSAGES/dragonplayer.mo share/locale/id/LC_MESSAGES/dragonplayer.mo share/locale/is/LC_MESSAGES/dragonplayer.mo share/locale/it/LC_MESSAGES/dragonplayer.mo share/locale/ja/LC_MESSAGES/dragonplayer.mo share/locale/kk/LC_MESSAGES/dragonplayer.mo share/locale/km/LC_MESSAGES/dragonplayer.mo share/locale/ko/LC_MESSAGES/dragonplayer.mo share/locale/lt/LC_MESSAGES/dragonplayer.mo share/locale/lv/LC_MESSAGES/dragonplayer.mo share/locale/mr/LC_MESSAGES/dragonplayer.mo share/locale/nb/LC_MESSAGES/dragonplayer.mo share/locale/nds/LC_MESSAGES/dragonplayer.mo share/locale/nl/LC_MESSAGES/dragonplayer.mo share/locale/nn/LC_MESSAGES/dragonplayer.mo share/locale/pa/LC_MESSAGES/dragonplayer.mo share/locale/pl/LC_MESSAGES/dragonplayer.mo share/locale/pt/LC_MESSAGES/dragonplayer.mo share/locale/pt_BR/LC_MESSAGES/dragonplayer.mo share/locale/ro/LC_MESSAGES/dragonplayer.mo share/locale/ru/LC_MESSAGES/dragonplayer.mo share/locale/sk/LC_MESSAGES/dragonplayer.mo share/locale/sl/LC_MESSAGES/dragonplayer.mo share/locale/sr/LC_MESSAGES/dragonplayer.mo share/locale/sv/LC_MESSAGES/dragonplayer.mo share/locale/tr/LC_MESSAGES/dragonplayer.mo share/locale/ug/LC_MESSAGES/dragonplayer.mo share/locale/uk/LC_MESSAGES/dragonplayer.mo share/locale/wa/LC_MESSAGES/dragonplayer.mo share/locale/zh_CN/LC_MESSAGES/dragonplayer.mo share/locale/zh_TW/LC_MESSAGES/dragonplayer.mo share/metainfo/org.kde.dragonplayer.appdata.xml share/solid/actions/dragonplayer-openaudiocd.desktop share/solid/actions/dragonplayer-opendvd.desktop Index: head/multimedia/kamoso/distinfo =================================================================== --- head/multimedia/kamoso/distinfo (revision 499276) +++ head/multimedia/kamoso/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551810967 -SHA256 (KDE/applications/18.12.3/kamoso-18.12.3.tar.xz) = ed62bbdf8eeefb85605113c3a916b01eec16846825cffe9b0b0c1f5a4580feb3 -SIZE (KDE/applications/18.12.3/kamoso-18.12.3.tar.xz) = 166332 +TIMESTAMP = 1555094884 +SHA256 (KDE/applications/19.04.0/kamoso-19.04.0.tar.xz) = 200c805ba80a89026edcd02d4cd6d058eff1d537eb3da28807cb2162cc014765 +SIZE (KDE/applications/19.04.0/kamoso-19.04.0.tar.xz) = 199728 Index: head/multimedia/kamoso/pkg-plist =================================================================== --- head/multimedia/kamoso/pkg-plist (revision 499276) +++ head/multimedia/kamoso/pkg-plist (revision 499277) @@ -1,59 +1,59 @@ bin/kamoso lib/gstreamer-1.0/gstkamosoqt5videosink.so share/applications/org.kde.kamoso.desktop share/icons/hicolor/16x16/apps/kamoso.png share/icons/hicolor/22x22/apps/kamoso.png share/icons/hicolor/32x32/apps/kamoso.png share/icons/hicolor/48x48/apps/kamoso.png share/icons/hicolor/64x64/apps/kamoso.png share/icons/hicolor/scalable/actions/burst.svgz -share/icons/hicolor/scalable/actions/record.svgz -share/icons/hicolor/scalable/actions/shoot.svgz share/icons/hicolor/scalable/apps/kamoso.svgz +share/knotifications5/kamoso.notifyrc share/locale/ar/LC_MESSAGES/kamoso.mo share/locale/bs/LC_MESSAGES/kamoso.mo share/locale/ca/LC_MESSAGES/kamoso.mo share/locale/ca@valencia/LC_MESSAGES/kamoso.mo share/locale/cs/LC_MESSAGES/kamoso.mo share/locale/da/LC_MESSAGES/kamoso.mo share/locale/de/LC_MESSAGES/kamoso.mo share/locale/el/LC_MESSAGES/kamoso.mo share/locale/en_GB/LC_MESSAGES/kamoso.mo share/locale/eo/LC_MESSAGES/kamoso.mo share/locale/es/LC_MESSAGES/kamoso.mo share/locale/et/LC_MESSAGES/kamoso.mo share/locale/eu/LC_MESSAGES/kamoso.mo share/locale/fi/LC_MESSAGES/kamoso.mo share/locale/fr/LC_MESSAGES/kamoso.mo share/locale/ga/LC_MESSAGES/kamoso.mo share/locale/gl/LC_MESSAGES/kamoso.mo share/locale/hu/LC_MESSAGES/kamoso.mo share/locale/ia/LC_MESSAGES/kamoso.mo share/locale/id/LC_MESSAGES/kamoso.mo share/locale/is/LC_MESSAGES/kamoso.mo share/locale/it/LC_MESSAGES/kamoso.mo share/locale/ja/LC_MESSAGES/kamoso.mo share/locale/kk/LC_MESSAGES/kamoso.mo share/locale/ko/LC_MESSAGES/kamoso.mo share/locale/lt/LC_MESSAGES/kamoso.mo share/locale/lv/LC_MESSAGES/kamoso.mo share/locale/mr/LC_MESSAGES/kamoso.mo share/locale/nb/LC_MESSAGES/kamoso.mo share/locale/nds/LC_MESSAGES/kamoso.mo share/locale/nl/LC_MESSAGES/kamoso.mo share/locale/nn/LC_MESSAGES/kamoso.mo share/locale/pa/LC_MESSAGES/kamoso.mo share/locale/pl/LC_MESSAGES/kamoso.mo share/locale/pt/LC_MESSAGES/kamoso.mo share/locale/pt_BR/LC_MESSAGES/kamoso.mo share/locale/ro/LC_MESSAGES/kamoso.mo share/locale/ru/LC_MESSAGES/kamoso.mo share/locale/sk/LC_MESSAGES/kamoso.mo share/locale/sl/LC_MESSAGES/kamoso.mo share/locale/sv/LC_MESSAGES/kamoso.mo share/locale/tr/LC_MESSAGES/kamoso.mo share/locale/ug/LC_MESSAGES/kamoso.mo share/locale/uk/LC_MESSAGES/kamoso.mo share/locale/zh_CN/LC_MESSAGES/kamoso.mo share/locale/zh_TW/LC_MESSAGES/kamoso.mo share/metainfo/org.kde.kamoso.appdata.xml +share/sounds/kamoso-shutter.wav Index: head/multimedia/kdemultimedia/Makefile =================================================================== --- head/multimedia/kdemultimedia/Makefile (revision 499276) +++ head/multimedia/kdemultimedia/Makefile (revision 499277) @@ -1,28 +1,31 @@ # $FreeBSD$ PORTNAME= kdemultimedia DISTVERSION= ${KDE_APPLICATIONS_VERSION} CATEGORIES= multimedia kde MAINTAINER= kde@FreeBSD.org COMMENT= KDE Multimedia applications (meta port) USES= kde:5 metaport qt:5 USE_QT= # -OPTIONS_DEFINE= DRAGON FFMPEG AUDIOCD_KIO KMIX +OPTIONS_DEFINE= DRAGON FFMPEG AUDIOCD_KIO KDENLIVE KMIX OPTIONS_DEFAULT= ${OPTIONS_DEFINE} DRAGON_DESC= Simple video player DRAGON_RUN_DEPENDS= dragon-player>=${KDE_APPLICATIONS_VERSION}:multimedia/dragon FFMPEG_DESC= FFMPEG-based video thumbnailer FFMPEG_RUN_DEPENDS= kdemultimedia-ffmpegthumbs>=${KDE_APPLICATIONS_VERSION}:multimedia/kdemultimedia-ffmpegthumbs AUDIOCD_KIO_DESC= Audio CD IOSlave AUDIOCD_KIO_RUN_DEPENDS= audiocd-kio>=${KDE_APPLICATIONS_VERSION}:audio/audiocd-kio KMIX_DESC= Audio mixer KMIX_RUN_DEPENDS= kmix>=${KDE_APPLICATIONS_VERSION}:audio/kmix + +KDENLIVE_DESC= KDE Non-Linear Video Editor +KDENLIVE_RUN_DEPENDS= kdenlive>=18.12.3:multimedia/kdenlive .include Index: head/multimedia/kdemultimedia-ffmpegthumbs/distinfo =================================================================== --- head/multimedia/kdemultimedia-ffmpegthumbs/distinfo (revision 499276) +++ head/multimedia/kdemultimedia-ffmpegthumbs/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551810967 -SHA256 (KDE/applications/18.12.3/ffmpegthumbs-18.12.3.tar.xz) = 4db8ab905d80863f898b6a3ea8cd0cc7baad91ad953d6b65df230079be04b338 -SIZE (KDE/applications/18.12.3/ffmpegthumbs-18.12.3.tar.xz) = 24332 +TIMESTAMP = 1555094885 +SHA256 (KDE/applications/19.04.0/ffmpegthumbs-19.04.0.tar.xz) = 6b96cea0c142651cb586eb40d88792329f8da9a777d9a457ba76d0e94ddf4995 +SIZE (KDE/applications/19.04.0/ffmpegthumbs-19.04.0.tar.xz) = 24676 Index: head/multimedia/kdemultimedia-ffmpegthumbs/pkg-plist =================================================================== --- head/multimedia/kdemultimedia-ffmpegthumbs/pkg-plist (revision 499276) +++ head/multimedia/kdemultimedia-ffmpegthumbs/pkg-plist (revision 499277) @@ -1,19 +1,23 @@ %%QT_PLUGINDIR%%/ffmpegthumbs.so share/config.kcfg/ffmpegthumbnailersettings5.kcfg share/locale/ca/LC_MESSAGES/ffmpegthumbs.mo share/locale/ca@valencia/LC_MESSAGES/ffmpegthumbs.mo share/locale/cs/LC_MESSAGES/ffmpegthumbs.mo +share/locale/en_GB/LC_MESSAGES/ffmpegthumbs.mo share/locale/es/LC_MESSAGES/ffmpegthumbs.mo +share/locale/fi/LC_MESSAGES/ffmpegthumbs.mo share/locale/fr/LC_MESSAGES/ffmpegthumbs.mo share/locale/gl/LC_MESSAGES/ffmpegthumbs.mo share/locale/it/LC_MESSAGES/ffmpegthumbs.mo +share/locale/ja/LC_MESSAGES/ffmpegthumbs.mo share/locale/nl/LC_MESSAGES/ffmpegthumbs.mo share/locale/pl/LC_MESSAGES/ffmpegthumbs.mo share/locale/pt/LC_MESSAGES/ffmpegthumbs.mo share/locale/pt_BR/LC_MESSAGES/ffmpegthumbs.mo share/locale/sk/LC_MESSAGES/ffmpegthumbs.mo share/locale/sv/LC_MESSAGES/ffmpegthumbs.mo share/locale/uk/LC_MESSAGES/ffmpegthumbs.mo +share/locale/ru/LC_MESSAGES/ffmpegthumbs.mo share/locale/zh_CN/LC_MESSAGES/ffmpegthumbs.mo share/locale/zh_TW/LC_MESSAGES/ffmpegthumbs.mo share/kservices5/ffmpegthumbs.desktop Index: head/multimedia/kdenlive/Makefile =================================================================== --- head/multimedia/kdenlive/Makefile (revision 499276) +++ head/multimedia/kdenlive/Makefile (revision 499277) @@ -1,66 +1,69 @@ # $FreeBSD$ PORTNAME= kdenlive DISTVERSION= ${KDE_APPLICATIONS_VERSION} PORTREVISION= 1 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 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 FREI0R LADSPA SCREENCAST V4L XINE DOCS OPTIONS_DEFAULT=DVDWIZARD FREI0R LADSPA SCREENCAST V4L XINE OPTIONS_SUB= yes DVDWIZARD_DESC= DVD authoring via DVDAuthor and cdrtools 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 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 499276) +++ head/net/akonadi-calendar/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551810934 -SHA256 (KDE/applications/18.12.3/akonadi-calendar-18.12.3.tar.xz) = 19f92642ba4d62dfccca19ac3ced94495e9137d60a77a672c5443585f30cdaee -SIZE (KDE/applications/18.12.3/akonadi-calendar-18.12.3.tar.xz) = 333656 +TIMESTAMP = 1555094921 +SHA256 (KDE/applications/19.04.0/akonadi-calendar-19.04.0.tar.xz) = 5a2897a1e96897159a3e2980f407c4c225434efd45167ad699a14aaa2ec445fd +SIZE (KDE/applications/19.04.0/akonadi-calendar-19.04.0.tar.xz) = 333400 Index: head/net/akonadi-contacts/Makefile =================================================================== --- head/net/akonadi-contacts/Makefile (revision 499276) +++ head/net/akonadi-contacts/Makefile (revision 499277) @@ -1,26 +1,26 @@ # $FreeBSD$ PORTNAME= akonadi-contacts DISTVERSION= ${KDE_APPLICATIONS_VERSION} CATEGORIES= net kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Libraries and daemons to implement Contact Management in Akonadi LICENSE= LGPL21 USES= cmake compiler:c++11-lib gettext grantlee:5 kde:5 \ qt:5 tar:xz USE_KDE= auth codecs completion config configwidgets coreaddons \ dbusaddons ecm i18n iconthemes itemmodels jobwidgets kio \ prison service sonnet textwidgets widgetsaddons xmlgui # pim components USE_KDE+= akonadi akonadimime calendarcore contacts mime -USE_QT= dbus core gui network testlib widgets xml \ +USE_QT= concurrent core dbus gui network testlib widgets xml \ buildtools_build qmake_build USE_LDCONFIG= yes DESCR= ${.CURDIR:H:H}/deskutils/kdepim/pkg-descr OPTIONS_DEFINE= DOCS .include Index: head/net/akonadi-contacts/distinfo =================================================================== --- head/net/akonadi-contacts/distinfo (revision 499276) +++ head/net/akonadi-contacts/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551810933 -SHA256 (KDE/applications/18.12.3/akonadi-contacts-18.12.3.tar.xz) = 6ad8e352744c258b66a0c6155322681fa4ec50422c81fe4248414b0834e645cc -SIZE (KDE/applications/18.12.3/akonadi-contacts-18.12.3.tar.xz) = 390340 +TIMESTAMP = 1555094921 +SHA256 (KDE/applications/19.04.0/akonadi-contacts-19.04.0.tar.xz) = 65dd20c467daf8d6107a1856c7f112eb937438b5884fe62a09a1763214a7442a +SIZE (KDE/applications/19.04.0/akonadi-contacts-19.04.0.tar.xz) = 391824 Index: head/net/akonadi-contacts/pkg-plist =================================================================== --- head/net/akonadi-contacts/pkg-plist (revision 499276) +++ head/net/akonadi-contacts/pkg-plist (revision 499277) @@ -1,239 +1,240 @@ etc/xdg/akonadi-contacts.categories etc/xdg/akonadi-contacts.renamecategories include/KF5/Akonadi/Contact/AbstractContactFormatter include/KF5/Akonadi/Contact/AbstractContactGroupFormatter include/KF5/Akonadi/Contact/ContactDefaultActions include/KF5/Akonadi/Contact/ContactEditor include/KF5/Akonadi/Contact/ContactEditorDialog include/KF5/Akonadi/Contact/ContactGroupEditor include/KF5/Akonadi/Contact/ContactGroupEditorDialog include/KF5/Akonadi/Contact/ContactGroupExpandJob include/KF5/Akonadi/Contact/ContactGroupSearchJob include/KF5/Akonadi/Contact/ContactGroupViewer include/KF5/Akonadi/Contact/ContactGroupViewerDialog include/KF5/Akonadi/Contact/ContactParts include/KF5/Akonadi/Contact/ContactSearchJob include/KF5/Akonadi/Contact/ContactViewer include/KF5/Akonadi/Contact/ContactViewerDialog include/KF5/Akonadi/Contact/ContactsFilterProxyModel include/KF5/Akonadi/Contact/ContactsTreeModel include/KF5/Akonadi/Contact/EmailAddressRequester include/KF5/Akonadi/Contact/EmailAddressSelection include/KF5/Akonadi/Contact/EmailAddressSelectionDialog include/KF5/Akonadi/Contact/EmailAddressSelectionModel include/KF5/Akonadi/Contact/EmailAddressSelectionWidget include/KF5/Akonadi/Contact/SelectAddressBookDialog include/KF5/Akonadi/Contact/StandardContactActionManager include/KF5/Akonadi/Contact/StandardContactFormatter include/KF5/Akonadi/Contact/StandardContactGroupFormatter include/KF5/ContactEditor/AbstractAddressLocationWidget include/KF5/ContactEditor/CategoriesEditAbstractWidget include/KF5/ContactEditor/ContactEditorPagePlugin include/KF5/akonadi/contact/abstractcontactformatter.h include/KF5/akonadi/contact/abstractcontactgroupformatter.h include/KF5/akonadi/contact/akonadi-contact_export.h include/KF5/akonadi/contact/contactdefaultactions.h include/KF5/akonadi/contact/contacteditor.h include/KF5/akonadi/contact/contacteditordialog.h include/KF5/akonadi/contact/contactgroupeditor.h include/KF5/akonadi/contact/contactgroupeditordialog.h include/KF5/akonadi/contact/contactgroupexpandjob.h include/KF5/akonadi/contact/contactgroupsearchjob.h include/KF5/akonadi/contact/contactgroupviewer.h include/KF5/akonadi/contact/contactgroupviewerdialog.h include/KF5/akonadi/contact/contactparts.h include/KF5/akonadi/contact/contactsearchjob.h include/KF5/akonadi/contact/contactsfilterproxymodel.h include/KF5/akonadi/contact/contactstreemodel.h include/KF5/akonadi/contact/contactviewer.h include/KF5/akonadi/contact/contactviewerdialog.h include/KF5/akonadi/contact/emailaddressrequester.h include/KF5/akonadi/contact/emailaddressselection.h include/KF5/akonadi/contact/emailaddressselectiondialog.h include/KF5/akonadi/contact/emailaddressselectionmodel.h include/KF5/akonadi/contact/emailaddressselectionwidget.h include/KF5/akonadi/contact/selectaddressbookdialog.h include/KF5/akonadi/contact/standardcontactactionmanager.h include/KF5/akonadi/contact/standardcontactformatter.h include/KF5/akonadi/contact/standardcontactgroupformatter.h include/KF5/contacteditor/abstractaddresslocationwidget.h include/KF5/contacteditor/categorieseditabstractwidget.h include/KF5/contacteditor/contacteditor_export.h include/KF5/contacteditor/contacteditorpageplugin.h include/KF5/contacteditor/improtocols.h lib/cmake/KF5AkonadiContact/KF5AkonadiContactConfig.cmake lib/cmake/KF5AkonadiContact/KF5AkonadiContactConfigVersion.cmake lib/cmake/KF5AkonadiContact/KF5AkonadiContactTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5AkonadiContact/KF5AkonadiContactTargets.cmake lib/cmake/KF5ContactEditor/KF5ContactEditorConfig.cmake lib/cmake/KF5ContactEditor/KF5ContactEditorConfigVersion.cmake lib/cmake/KF5ContactEditor/KF5ContactEditorTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5ContactEditor/KF5ContactEditorTargets.cmake lib/libKF5AkonadiContact.so lib/libKF5AkonadiContact.so.5 lib/libKF5AkonadiContact.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKF5ContactEditor.so lib/libKF5ContactEditor.so.5 lib/libKF5ContactEditor.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_AkonadiContact.pri %%QT_MKSPECDIR%%/modules/qt_ContactEditor.pri %%QT_PLUGINDIR%%/akonadi/contacts/plugins/categorieseditwidgetplugin.so %%QT_PLUGINDIR%%/akonadi_serializer_addressee.so %%QT_PLUGINDIR%%/akonadi_serializer_contactgroup.so %%QT_PLUGINDIR%%/kcm_akonadicontact_actions.so share/akonadi/plugins/serializer/akonadi_serializer_addressee.desktop share/akonadi/plugins/serializer/akonadi_serializer_contactgroup.desktop share/kf5/akonadi/contact/data/zone.tab share/kf5/akonadi/contact/pics/world.jpg share/kservices5/akonadi/contact/aimprotocol.desktop share/kservices5/akonadi/contact/facebookprotocol.desktop share/kservices5/akonadi/contact/gaduprotocol.desktop share/kservices5/akonadi/contact/googletalkprotocol.desktop share/kservices5/akonadi/contact/groupwiseprotocol.desktop share/kservices5/akonadi/contact/icqprotocol.desktop share/kservices5/akonadi/contact/ircprotocol.desktop share/kservices5/akonadi/contact/jabberprotocol.desktop share/kservices5/akonadi/contact/meanwhileprotocol.desktop share/kservices5/akonadi/contact/msnprotocol.desktop +share/kservices5/akonadi/contact/qqprotocol.desktop share/kservices5/akonadi/contact/skypeprotocol.desktop share/kservices5/akonadi/contact/smsprotocol.desktop share/kservices5/akonadi/contact/twitterprotocol.desktop share/kservices5/akonadi/contact/yahooprotocol.desktop share/kservices5/akonadicontact_actions.desktop share/kservicetypes5/kaddressbookimprotocol.desktop share/locale/ar/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/ar/LC_MESSAGES/akonadicontact5.mo share/locale/ar/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/bs/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/bs/LC_MESSAGES/akonadicontact5.mo share/locale/bs/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/ca/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/ca/LC_MESSAGES/akonadicontact5.mo share/locale/ca/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/ca@valencia/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/ca@valencia/LC_MESSAGES/akonadicontact5.mo share/locale/ca@valencia/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/cs/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/cs/LC_MESSAGES/akonadicontact5.mo share/locale/cs/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/da/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/da/LC_MESSAGES/akonadicontact5.mo share/locale/da/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/de/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/de/LC_MESSAGES/akonadicontact5.mo share/locale/de/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/el/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/el/LC_MESSAGES/akonadicontact5.mo share/locale/el/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/en_GB/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/en_GB/LC_MESSAGES/akonadicontact5.mo share/locale/en_GB/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/eo/LC_MESSAGES/akonadicontact5.mo share/locale/eo/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/es/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/es/LC_MESSAGES/akonadicontact5.mo share/locale/es/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/et/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/et/LC_MESSAGES/akonadicontact5.mo share/locale/et/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/fi/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/fi/LC_MESSAGES/akonadicontact5.mo share/locale/fi/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/fr/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/fr/LC_MESSAGES/akonadicontact5.mo share/locale/fr/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/ga/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/ga/LC_MESSAGES/akonadicontact5.mo share/locale/ga/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/gl/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/gl/LC_MESSAGES/akonadicontact5.mo share/locale/gl/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/he/LC_MESSAGES/akonadicontact5.mo share/locale/he/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/hr/LC_MESSAGES/akonadicontact5.mo share/locale/hu/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/hu/LC_MESSAGES/akonadicontact5.mo share/locale/hu/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/ia/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/ia/LC_MESSAGES/akonadicontact5.mo share/locale/ia/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/it/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/it/LC_MESSAGES/akonadicontact5.mo share/locale/it/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/ja/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/ja/LC_MESSAGES/akonadicontact5.mo share/locale/ja/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/kk/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/kk/LC_MESSAGES/akonadicontact5.mo share/locale/kk/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/km/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/km/LC_MESSAGES/akonadicontact5.mo share/locale/km/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/ko/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/ko/LC_MESSAGES/akonadicontact5.mo share/locale/ko/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/lt/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/lt/LC_MESSAGES/akonadicontact5.mo share/locale/lt/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/lv/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/lv/LC_MESSAGES/akonadicontact5.mo share/locale/lv/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/mr/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/mr/LC_MESSAGES/akonadicontact5.mo share/locale/mr/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/nb/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/nb/LC_MESSAGES/akonadicontact5.mo share/locale/nb/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/nds/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/nds/LC_MESSAGES/akonadicontact5.mo share/locale/nds/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/nl/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/nl/LC_MESSAGES/akonadicontact5.mo share/locale/nl/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/nn/LC_MESSAGES/akonadicontact5.mo share/locale/nn/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/pa/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/pa/LC_MESSAGES/akonadicontact5.mo share/locale/pa/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/pl/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/pl/LC_MESSAGES/akonadicontact5.mo share/locale/pl/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/pt/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/pt/LC_MESSAGES/akonadicontact5.mo share/locale/pt/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/pt_BR/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/pt_BR/LC_MESSAGES/akonadicontact5.mo share/locale/pt_BR/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/ro/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/ro/LC_MESSAGES/akonadicontact5.mo share/locale/ro/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/ru/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/ru/LC_MESSAGES/akonadicontact5.mo share/locale/ru/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/sk/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/sk/LC_MESSAGES/akonadicontact5.mo share/locale/sk/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/sl/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/sl/LC_MESSAGES/akonadicontact5.mo share/locale/sl/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/sr/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/sr/LC_MESSAGES/akonadicontact5.mo share/locale/sr/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/sv/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/sv/LC_MESSAGES/akonadicontact5.mo share/locale/sv/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/tr/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/tr/LC_MESSAGES/akonadicontact5.mo share/locale/tr/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/ug/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/ug/LC_MESSAGES/akonadicontact5.mo share/locale/ug/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/uk/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/uk/LC_MESSAGES/akonadicontact5.mo share/locale/uk/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/zh_CN/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/zh_CN/LC_MESSAGES/akonadicontact5.mo share/locale/zh_CN/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/zh_TW/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/zh_TW/LC_MESSAGES/akonadicontact5.mo share/locale/zh_TW/LC_MESSAGES/kcm_akonadicontact_actions.mo Index: head/net/akonadi-mime/distinfo =================================================================== --- head/net/akonadi-mime/distinfo (revision 499276) +++ head/net/akonadi-mime/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551810932 -SHA256 (KDE/applications/18.12.3/akonadi-mime-18.12.3.tar.xz) = ff7d91c77b629bba6b93ee6b15c0ebee08aa37368aa8bcae48ecbbacf64bc1b4 -SIZE (KDE/applications/18.12.3/akonadi-mime-18.12.3.tar.xz) = 136596 +TIMESTAMP = 1555094922 +SHA256 (KDE/applications/19.04.0/akonadi-mime-19.04.0.tar.xz) = b06ca4140b10548b9aecd188bd9b72405af2f4097c80e9b4e9aa3e863750b6da +SIZE (KDE/applications/19.04.0/akonadi-mime-19.04.0.tar.xz) = 136640 Index: head/net/akonadi-notes/distinfo =================================================================== --- head/net/akonadi-notes/distinfo (revision 499276) +++ head/net/akonadi-notes/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551810936 -SHA256 (KDE/applications/18.12.3/akonadi-notes-18.12.3.tar.xz) = ac2f5ef0a3f4621d6af6fef028d641334212d940a1fc3ffc1e3cc6534ca6be60 -SIZE (KDE/applications/18.12.3/akonadi-notes-18.12.3.tar.xz) = 24500 +TIMESTAMP = 1555094922 +SHA256 (KDE/applications/19.04.0/akonadi-notes-19.04.0.tar.xz) = a9aa05ca2b5f846fed51e4c32907eedc6893a40ab3b9d4832e11bab118664e5f +SIZE (KDE/applications/19.04.0/akonadi-notes-19.04.0.tar.xz) = 24600 Index: head/net/akonadi-search/distinfo =================================================================== --- head/net/akonadi-search/distinfo (revision 499276) +++ head/net/akonadi-search/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551810929 -SHA256 (KDE/applications/18.12.3/akonadi-search-18.12.3.tar.xz) = 6436a0f71229cf7917cb4f269f34a2046c24860ecfc03e7018b9d2a7f9e66346 -SIZE (KDE/applications/18.12.3/akonadi-search-18.12.3.tar.xz) = 82804 +TIMESTAMP = 1555094922 +SHA256 (KDE/applications/19.04.0/akonadi-search-19.04.0.tar.xz) = 6046a540ace526cbb8c0909762ad333426266afbf58a59ecc71cb923298e84bb +SIZE (KDE/applications/19.04.0/akonadi-search-19.04.0.tar.xz) = 82752 Index: head/net/calendarsupport/Makefile =================================================================== --- head/net/calendarsupport/Makefile (revision 499276) +++ head/net/calendarsupport/Makefile (revision 499277) @@ -1,28 +1,27 @@ # $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= core 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 499276) +++ head/net/calendarsupport/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551810936 -SHA256 (KDE/applications/18.12.3/calendarsupport-18.12.3.tar.xz) = e3c23c152a3e339628e79b168e56c22c5c2610600013f3aa8706168569cacfa5 -SIZE (KDE/applications/18.12.3/calendarsupport-18.12.3.tar.xz) = 646736 +TIMESTAMP = 1555094923 +SHA256 (KDE/applications/19.04.0/calendarsupport-19.04.0.tar.xz) = d767f077a9d41a9c6d266c4b5fe7bedd6f4eb7b71824e7544cf3a1df11ce362f +SIZE (KDE/applications/19.04.0/calendarsupport-19.04.0.tar.xz) = 646888 Index: head/net/eventviews/Makefile =================================================================== --- head/net/eventviews/Makefile (revision 499276) +++ head/net/eventviews/Makefile (revision 499277) @@ -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 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 499276) +++ head/net/eventviews/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551810935 -SHA256 (KDE/applications/18.12.3/eventviews-18.12.3.tar.xz) = 994ddea6894fd73eeb851b04083bc886288e4531aa770c0b2e5d8e1740bbe4d0 -SIZE (KDE/applications/18.12.3/eventviews-18.12.3.tar.xz) = 443296 +TIMESTAMP = 1555094923 +SHA256 (KDE/applications/19.04.0/eventviews-19.04.0.tar.xz) = ed34f228012ad2d45b0f07da469633118f35c28b1ddc7157149f4a5ab999500c +SIZE (KDE/applications/19.04.0/eventviews-19.04.0.tar.xz) = 443360 Index: head/net/incidenceeditor/Makefile =================================================================== --- head/net/incidenceeditor/Makefile (revision 499276) +++ head/net/incidenceeditor/Makefile (revision 499277) @@ -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= 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 499276) +++ head/net/incidenceeditor/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551810928 -SHA256 (KDE/applications/18.12.3/incidenceeditor-18.12.3.tar.xz) = b0fa13390b31a24a8bca99f20b132841849d95dba9de3b8a4c9ae979d226ec02 -SIZE (KDE/applications/18.12.3/incidenceeditor-18.12.3.tar.xz) = 541884 +TIMESTAMP = 1555094923 +SHA256 (KDE/applications/19.04.0/incidenceeditor-19.04.0.tar.xz) = c34fd55acd2f92705e43628fd0c9c4a550c73d45f30beba71dc75698143cbd5f +SIZE (KDE/applications/19.04.0/incidenceeditor-19.04.0.tar.xz) = 550168 Index: head/net/incidenceeditor/pkg-plist =================================================================== --- head/net/incidenceeditor/pkg-plist (revision 499276) +++ head/net/incidenceeditor/pkg-plist (revision 499277) @@ -1,76 +1,70 @@ etc/xdg/incidenceeditor.categories etc/xdg/incidenceeditor.renamecategories -include/KF5/IncidenceEditor/CategoryEditDialog include/KF5/IncidenceEditor/EditorItemManager include/KF5/IncidenceEditor/GroupwareUiDelegate -include/KF5/IncidenceEditor/IncidenceAttendee include/KF5/IncidenceEditor/IncidenceDefaults include/KF5/IncidenceEditor/IncidenceDialog include/KF5/IncidenceEditor/IncidenceDialogFactory include/KF5/IncidenceEditor/IncidenceEditor-Ng include/KF5/IncidenceEditor/IncidenceEditorSettings include/KF5/IncidenceEditor/IndividualMailComponentFactory -include/KF5/IncidenceEditor/OpenComposerJob -include/KF5/incidenceeditor/categoryeditdialog.h include/KF5/incidenceeditor/editoritemmanager.h include/KF5/incidenceeditor/globalsettings_incidenceeditor.h include/KF5/incidenceeditor/groupwareuidelegate.h -include/KF5/incidenceeditor/incidenceattendee.h include/KF5/incidenceeditor/incidencedefaults.h include/KF5/incidenceeditor/incidencedialog.h include/KF5/incidenceeditor/incidencedialogfactory.h include/KF5/incidenceeditor/incidenceeditor-ng.h include/KF5/incidenceeditor/incidenceeditor_export.h include/KF5/incidenceeditor/incidenceeditorsettings.h include/KF5/incidenceeditor/individualmailcomponentfactory.h -include/KF5/incidenceeditor/opencomposerjob.h include/KF5/incidenceeditor_version.h lib/cmake/KF5IncidenceEditor/KF5IncidenceEditorConfig.cmake lib/cmake/KF5IncidenceEditor/KF5IncidenceEditorConfigVersion.cmake lib/cmake/KF5IncidenceEditor/KF5IncidenceEditorTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5IncidenceEditor/KF5IncidenceEditorTargets.cmake lib/libKF5IncidenceEditor.so lib/libKF5IncidenceEditor.so.5 lib/libKF5IncidenceEditor.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_IncidenceEditor.pri share/locale/ar/LC_MESSAGES/libincidenceeditors.mo share/locale/bs/LC_MESSAGES/libincidenceeditors.mo share/locale/ca/LC_MESSAGES/libincidenceeditors.mo share/locale/ca@valencia/LC_MESSAGES/libincidenceeditors.mo share/locale/cs/LC_MESSAGES/libincidenceeditors.mo share/locale/da/LC_MESSAGES/libincidenceeditors.mo share/locale/de/LC_MESSAGES/libincidenceeditors.mo share/locale/el/LC_MESSAGES/libincidenceeditors.mo share/locale/en_GB/LC_MESSAGES/libincidenceeditors.mo share/locale/eo/LC_MESSAGES/libincidenceeditors.mo share/locale/es/LC_MESSAGES/libincidenceeditors.mo share/locale/et/LC_MESSAGES/libincidenceeditors.mo share/locale/fi/LC_MESSAGES/libincidenceeditors.mo share/locale/fr/LC_MESSAGES/libincidenceeditors.mo share/locale/ga/LC_MESSAGES/libincidenceeditors.mo share/locale/gl/LC_MESSAGES/libincidenceeditors.mo share/locale/hu/LC_MESSAGES/libincidenceeditors.mo share/locale/ia/LC_MESSAGES/libincidenceeditors.mo share/locale/it/LC_MESSAGES/libincidenceeditors.mo share/locale/ja/LC_MESSAGES/libincidenceeditors.mo share/locale/kk/LC_MESSAGES/libincidenceeditors.mo share/locale/ko/LC_MESSAGES/libincidenceeditors.mo share/locale/lt/LC_MESSAGES/libincidenceeditors.mo share/locale/mr/LC_MESSAGES/libincidenceeditors.mo share/locale/nb/LC_MESSAGES/libincidenceeditors.mo share/locale/nds/LC_MESSAGES/libincidenceeditors.mo share/locale/nl/LC_MESSAGES/libincidenceeditors.mo share/locale/pa/LC_MESSAGES/libincidenceeditors.mo share/locale/pl/LC_MESSAGES/libincidenceeditors.mo share/locale/pt/LC_MESSAGES/libincidenceeditors.mo share/locale/pt_BR/LC_MESSAGES/libincidenceeditors.mo share/locale/ro/LC_MESSAGES/libincidenceeditors.mo share/locale/ru/LC_MESSAGES/libincidenceeditors.mo share/locale/sk/LC_MESSAGES/libincidenceeditors.mo share/locale/sl/LC_MESSAGES/libincidenceeditors.mo share/locale/sv/LC_MESSAGES/libincidenceeditors.mo share/locale/tr/LC_MESSAGES/libincidenceeditors.mo share/locale/ug/LC_MESSAGES/libincidenceeditors.mo share/locale/uk/LC_MESSAGES/libincidenceeditors.mo share/locale/zh_CN/LC_MESSAGES/libincidenceeditors.mo share/locale/zh_TW/LC_MESSAGES/libincidenceeditors.mo Index: head/net/kalarmcal/distinfo =================================================================== --- head/net/kalarmcal/distinfo (revision 499276) +++ head/net/kalarmcal/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551810931 -SHA256 (KDE/applications/18.12.3/kalarmcal-18.12.3.tar.xz) = 2658b2d8055558878cf84d50daf333a5f694a586800b9ccfd3eded3304af8ef8 -SIZE (KDE/applications/18.12.3/kalarmcal-18.12.3.tar.xz) = 572796 +TIMESTAMP = 1555094924 +SHA256 (KDE/applications/19.04.0/kalarmcal-19.04.0.tar.xz) = ec0790d2b04bcd3a37a221bdbf4a10f94ff7dd8ac0228e773ce9fac14bbebf6e +SIZE (KDE/applications/19.04.0/kalarmcal-19.04.0.tar.xz) = 572976 Index: head/net/kblog/distinfo =================================================================== --- head/net/kblog/distinfo (revision 499276) +++ head/net/kblog/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551810928 -SHA256 (KDE/applications/18.12.3/kblog-18.12.3.tar.xz) = cd84b34312f6c5a9cf56322614caafcf434a800aeff66173a2c6f7cccc0fd2cc -SIZE (KDE/applications/18.12.3/kblog-18.12.3.tar.xz) = 72776 +TIMESTAMP = 1555094924 +SHA256 (KDE/applications/19.04.0/kblog-19.04.0.tar.xz) = 719c6ce92c006231869dcad84b14e3db7c8b71eff60e234a94353e2ef580d577 +SIZE (KDE/applications/19.04.0/kblog-19.04.0.tar.xz) = 72716 Index: head/net/kcalcore/distinfo =================================================================== --- head/net/kcalcore/distinfo (revision 499276) +++ head/net/kcalcore/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551810926 -SHA256 (KDE/applications/18.12.3/kcalcore-18.12.3.tar.xz) = d6d6ce1bbdea4eac352b74bcc4bee77da107fdbafab47440b6be5fc3f9d90452 -SIZE (KDE/applications/18.12.3/kcalcore-18.12.3.tar.xz) = 252372 +TIMESTAMP = 1555094925 +SHA256 (KDE/applications/19.04.0/kcalcore-19.04.0.tar.xz) = 0cdcfebabb9af96650b71ba6361a4557df35144f0b1041f004bff7510c6334b2 +SIZE (KDE/applications/19.04.0/kcalcore-19.04.0.tar.xz) = 252960 Index: head/net/kcalutils/distinfo =================================================================== --- head/net/kcalutils/distinfo (revision 499276) +++ head/net/kcalutils/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551810928 -SHA256 (KDE/applications/18.12.3/kcalutils-18.12.3.tar.xz) = 715c48c46cd62f773da4e804e66cdb97eae7c4832a7fe058db2fca61dc4111f9 -SIZE (KDE/applications/18.12.3/kcalutils-18.12.3.tar.xz) = 329032 +TIMESTAMP = 1555094925 +SHA256 (KDE/applications/19.04.0/kcalutils-19.04.0.tar.xz) = 2841291555bf5ab85390e56b1c6c231bb6f1f5c9cbd12a634491781c3cfd83c8 +SIZE (KDE/applications/19.04.0/kcalutils-19.04.0.tar.xz) = 329204 Index: head/net/kcontacts/distinfo =================================================================== --- head/net/kcontacts/distinfo (revision 499276) +++ head/net/kcontacts/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551810931 -SHA256 (KDE/applications/18.12.3/kcontacts-18.12.3.tar.xz) = ba244937e36456065ec4c40fd1b44d011df487a940756ddc0ddd761f58454dd3 -SIZE (KDE/applications/18.12.3/kcontacts-18.12.3.tar.xz) = 603496 +TIMESTAMP = 1555094926 +SHA256 (KDE/applications/19.04.0/kcontacts-19.04.0.tar.xz) = 81ad5b3eada7c91b4b7ed09a0a17a146e87b3075925caa3d23b82c2a6f67f5b4 +SIZE (KDE/applications/19.04.0/kcontacts-19.04.0.tar.xz) = 603552 Index: head/net/kdav/distinfo =================================================================== --- head/net/kdav/distinfo (revision 499276) +++ head/net/kdav/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551810925 -SHA256 (KDE/applications/18.12.3/kdav-18.12.3.tar.xz) = 3ce99c65573d6374e91abff50b3a738515da07371f07c1b6e4b1800069a77c23 -SIZE (KDE/applications/18.12.3/kdav-18.12.3.tar.xz) = 49716 +TIMESTAMP = 1555094926 +SHA256 (KDE/applications/19.04.0/kdav-19.04.0.tar.xz) = dce315916a993dbff7f7748538da91944b20df3cb6fc042e0d145d53904ff5d9 +SIZE (KDE/applications/19.04.0/kdav-19.04.0.tar.xz) = 49840 Index: head/net/kdav/pkg-plist =================================================================== --- head/net/kdav/pkg-plist (revision 499276) +++ head/net/kdav/pkg-plist (revision 499277) @@ -1,81 +1,80 @@ etc/xdg/kdav.categories include/KPim/KDAV/DavCollection include/KPim/KDAV/DavCollectionDeleteJob include/KPim/KDAV/DavCollectionModifyJob include/KPim/KDAV/DavCollectionsFetchJob include/KPim/KDAV/DavCollectionsMultiFetchJob include/KPim/KDAV/DavError include/KPim/KDAV/DavItem include/KPim/KDAV/DavItemCreateJob include/KPim/KDAV/DavItemDeleteJob include/KPim/KDAV/DavItemFetchJob include/KPim/KDAV/DavItemModifyJob include/KPim/KDAV/DavItemsFetchJob include/KPim/KDAV/DavItemsListJob include/KPim/KDAV/DavJobBase include/KPim/KDAV/DavManager include/KPim/KDAV/DavPrincipalHomesetsFetchJob include/KPim/KDAV/DavPrincipalSearchJob include/KPim/KDAV/DavProtocolBase include/KPim/KDAV/DavUrl include/KPim/KDAV/Enums include/KPim/KDAV/EtagCache include/KPim/KDAV/Utils include/KPim/kdav/davcollection.h include/KPim/kdav/davcollectiondeletejob.h include/KPim/kdav/davcollectionmodifyjob.h include/KPim/kdav/davcollectionsfetchjob.h include/KPim/kdav/davcollectionsmultifetchjob.h include/KPim/kdav/daverror.h include/KPim/kdav/davitem.h include/KPim/kdav/davitemcreatejob.h include/KPim/kdav/davitemdeletejob.h include/KPim/kdav/davitemfetchjob.h include/KPim/kdav/davitemmodifyjob.h include/KPim/kdav/davitemsfetchjob.h include/KPim/kdav/davitemslistjob.h include/KPim/kdav/davjobbase.h include/KPim/kdav/davmanager.h include/KPim/kdav/davprincipalhomesetsfetchjob.h include/KPim/kdav/davprincipalsearchjob.h include/KPim/kdav/davprotocolbase.h include/KPim/kdav/davurl.h include/KPim/kdav/enums.h include/KPim/kdav/etagcache.h include/KPim/kdav/kpimkdav_export.h -include/KPim/kdav/libkdav_debug.h include/KPim/kdav/utils.h include/KPim/kpimkdav_version.h lib/cmake/KPimKDAV/KPimKDAVConfig.cmake lib/cmake/KPimKDAV/KPimKDAVConfigVersion.cmake lib/cmake/KPimKDAV/KPimKDAVTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KPimKDAV/KPimKDAVTargets.cmake lib/libKPimKDAV.so lib/libKPimKDAV.so.5 lib/libKPimKDAV.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_kdav.pri share/locale/ar/LC_MESSAGES/libkdav.mo share/locale/ca/LC_MESSAGES/libkdav.mo share/locale/ca@valencia/LC_MESSAGES/libkdav.mo share/locale/cs/LC_MESSAGES/libkdav.mo share/locale/de/LC_MESSAGES/libkdav.mo share/locale/en_GB/LC_MESSAGES/libkdav.mo share/locale/es/LC_MESSAGES/libkdav.mo share/locale/fi/LC_MESSAGES/libkdav.mo share/locale/fr/LC_MESSAGES/libkdav.mo share/locale/gl/LC_MESSAGES/libkdav.mo share/locale/it/LC_MESSAGES/libkdav.mo share/locale/ja/LC_MESSAGES/libkdav.mo share/locale/ko/LC_MESSAGES/libkdav.mo share/locale/nb/LC_MESSAGES/libkdav.mo share/locale/nl/LC_MESSAGES/libkdav.mo share/locale/pl/LC_MESSAGES/libkdav.mo share/locale/pt/LC_MESSAGES/libkdav.mo share/locale/pt_BR/LC_MESSAGES/libkdav.mo share/locale/ru/LC_MESSAGES/libkdav.mo share/locale/sk/LC_MESSAGES/libkdav.mo share/locale/sr/LC_MESSAGES/libkdav.mo share/locale/sv/LC_MESSAGES/libkdav.mo share/locale/uk/LC_MESSAGES/libkdav.mo share/locale/zh_CN/LC_MESSAGES/libkdav.mo share/locale/zh_TW/LC_MESSAGES/libkdav.mo Index: head/net/kdenetwork-filesharing/distinfo =================================================================== --- head/net/kdenetwork-filesharing/distinfo (revision 499276) +++ head/net/kdenetwork-filesharing/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551810936 -SHA256 (KDE/applications/18.12.3/kdenetwork-filesharing-18.12.3.tar.xz) = 296c71526de0e51b4385962c76c2870cfe344b9dafdd2f5f2fba81801350d503 -SIZE (KDE/applications/18.12.3/kdenetwork-filesharing-18.12.3.tar.xz) = 312892 +TIMESTAMP = 1555094927 +SHA256 (KDE/applications/19.04.0/kdenetwork-filesharing-19.04.0.tar.xz) = a88277659bc1dd5ddfea9dd63c3764a1f31d06235aa07c528c12a63a7605c943 +SIZE (KDE/applications/19.04.0/kdenetwork-filesharing-19.04.0.tar.xz) = 312716 Index: head/net/kget/Makefile =================================================================== --- head/net/kget/Makefile (revision 499276) +++ head/net/kget/Makefile (revision 499277) @@ -1,41 +1,40 @@ # $FreeBSD$ PORTNAME= kget DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= net kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE download manager LIB_DEPENDS= libKF5Torrent.so:net-p2p/libktorrent \ libassuan.so:security/libassuan \ libgcrypt.so:security/libgcrypt \ libgmp.so:math/gmp \ libgpg-error.so:security/libgpg-error \ libgpgme.so:security/gpgme \ libgpgmepp.so:security/gpgme-cpp \ libqca-qt5.so:devel/qca \ libqgpgme.so:security/gpgme-qt5 USES= cmake compiler:c++11-lang kde:5 qt:5 shebangfix sqlite tar:xz USE_KDE= archive auth bookmarks codecs completion config configwidgets \ coreaddons crash dbusaddons emoticons guiaddons i18n \ iconthemes itemmodels itemviews jobwidgets kcmutils \ kdelibs4support kio notifications notifyconfig parts service \ solid sonnet textwidgets unitconversion wallet widgetsaddons \ windowsystem xmlgui USE_QT= core dbus gui network printsupport sql widgets xml \ buildtools_build qmake_build USE_LDCONFIG= yes SHEBANG_FILES= conf/*.pl MAKE_ENV= XDG_CONFIG_HOME=/dev/null CONFIGURE_ENV= XDG_CONFIG_HOME=/dev/null OPTIONS_DEFINE= DOCS .include Index: head/net/kget/distinfo =================================================================== --- head/net/kget/distinfo (revision 499276) +++ head/net/kget/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551810929 -SHA256 (KDE/applications/18.12.3/kget-18.12.3.tar.xz) = 3386c07c61f072df4259f83895be43c64559c059c24df1b31ca66c4f2b599f86 -SIZE (KDE/applications/18.12.3/kget-18.12.3.tar.xz) = 5077112 +TIMESTAMP = 1555094927 +SHA256 (KDE/applications/19.04.0/kget-19.04.0.tar.xz) = e1ec10f36f8b451c2cfc02108e00c6ab3e1115719342b9fa1f1f5829746fbeb9 +SIZE (KDE/applications/19.04.0/kget-19.04.0.tar.xz) = 5237756 Index: head/net/kidentitymanagement/distinfo =================================================================== --- head/net/kidentitymanagement/distinfo (revision 499276) +++ head/net/kidentitymanagement/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551810927 -SHA256 (KDE/applications/18.12.3/kidentitymanagement-18.12.3.tar.xz) = 4e8cac86c2ecfe6325bbf8fb7e50a026f6af978be3809f327eddfed7b3aed662 -SIZE (KDE/applications/18.12.3/kidentitymanagement-18.12.3.tar.xz) = 148788 +TIMESTAMP = 1555094927 +SHA256 (KDE/applications/19.04.0/kidentitymanagement-19.04.0.tar.xz) = 1ddce9330947fdfd970f07b60d6e9ff012e21a673262796ccb29e56e277b55a3 +SIZE (KDE/applications/19.04.0/kidentitymanagement-19.04.0.tar.xz) = 149368 Index: head/net/kimap/Makefile =================================================================== --- head/net/kimap/Makefile (revision 499276) +++ head/net/kimap/Makefile (revision 499277) @@ -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= core \ 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 499276) +++ head/net/kimap/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551810931 -SHA256 (KDE/applications/18.12.3/kimap-18.12.3.tar.xz) = 00aed701a3bdcc218902998e63e7c587549f77a1aa0d1bd7dad4a1837adc9992 -SIZE (KDE/applications/18.12.3/kimap-18.12.3.tar.xz) = 119704 +TIMESTAMP = 1555094928 +SHA256 (KDE/applications/19.04.0/kimap-19.04.0.tar.xz) = cda62c81c47011ad2adbf78222eab4528a62116487531ce1aa98f6100706d2fd +SIZE (KDE/applications/19.04.0/kimap-19.04.0.tar.xz) = 119576 Index: head/net/kimap/pkg-plist =================================================================== --- head/net/kimap/pkg-plist (revision 499276) +++ head/net/kimap/pkg-plist (revision 499277) @@ -1,175 +1,179 @@ etc/xdg/kimap.categories etc/xdg/kimap.renamecategories include/KF5/KIMAP/KIMAP/Acl include/KF5/KIMAP/KIMAP/AclJobBase include/KF5/KIMAP/KIMAP/AppendJob include/KF5/KIMAP/KIMAP/CapabilitiesJob include/KF5/KIMAP/KIMAP/CloseJob include/KF5/KIMAP/KIMAP/CopyJob include/KF5/KIMAP/KIMAP/CreateJob include/KF5/KIMAP/KIMAP/DeleteAclJob include/KF5/KIMAP/KIMAP/DeleteJob include/KF5/KIMAP/KIMAP/ExpungeJob include/KF5/KIMAP/KIMAP/FetchJob include/KF5/KIMAP/KIMAP/GetAclJob include/KF5/KIMAP/KIMAP/GetMetaDataJob include/KF5/KIMAP/KIMAP/GetQuotaJob include/KF5/KIMAP/KIMAP/GetQuotaRootJob include/KF5/KIMAP/KIMAP/IdJob include/KF5/KIMAP/KIMAP/IdleJob include/KF5/KIMAP/KIMAP/ImapSet include/KF5/KIMAP/KIMAP/Job include/KF5/KIMAP/KIMAP/ListJob include/KF5/KIMAP/KIMAP/ListRightsJob include/KF5/KIMAP/KIMAP/LoginJob include/KF5/KIMAP/KIMAP/LogoutJob include/KF5/KIMAP/KIMAP/MetaDataJobBase include/KF5/KIMAP/KIMAP/MoveJob include/KF5/KIMAP/KIMAP/MyRightsJob +include/KF5/KIMAP/KIMAP/NamespaceJob include/KF5/KIMAP/KIMAP/QuotaJobBase include/KF5/KIMAP/KIMAP/RenameJob +include/KF5/KIMAP/KIMAP/RFCCodecs include/KF5/KIMAP/KIMAP/SearchJob include/KF5/KIMAP/KIMAP/SelectJob include/KF5/KIMAP/KIMAP/Session include/KF5/KIMAP/KIMAP/SessionUiProxy include/KF5/KIMAP/KIMAP/SetAclJob include/KF5/KIMAP/KIMAP/SetMetaDataJob include/KF5/KIMAP/KIMAP/SetQuotaJob include/KF5/KIMAP/KIMAP/StatusJob include/KF5/KIMAP/KIMAP/StoreJob include/KF5/KIMAP/KIMAP/SubscribeJob include/KF5/KIMAP/KIMAP/UnsubscribeJob include/KF5/KIMAP/kimap/Acl include/KF5/KIMAP/kimap/AclJobBase include/KF5/KIMAP/kimap/AppendJob include/KF5/KIMAP/kimap/CapabilitiesJob include/KF5/KIMAP/kimap/CloseJob include/KF5/KIMAP/kimap/CopyJob include/KF5/KIMAP/kimap/CreateJob include/KF5/KIMAP/kimap/DeleteAclJob include/KF5/KIMAP/kimap/DeleteJob include/KF5/KIMAP/kimap/ExpungeJob include/KF5/KIMAP/kimap/FetchJob include/KF5/KIMAP/kimap/GetAclJob include/KF5/KIMAP/kimap/GetMetaDataJob include/KF5/KIMAP/kimap/GetQuotaJob include/KF5/KIMAP/kimap/GetQuotaRootJob include/KF5/KIMAP/kimap/IdJob include/KF5/KIMAP/kimap/IdleJob include/KF5/KIMAP/kimap/ImapSet include/KF5/KIMAP/kimap/Job include/KF5/KIMAP/kimap/ListJob include/KF5/KIMAP/kimap/ListRightsJob include/KF5/KIMAP/kimap/LoginJob include/KF5/KIMAP/kimap/LogoutJob include/KF5/KIMAP/kimap/MetaDataJobBase include/KF5/KIMAP/kimap/MoveJob include/KF5/KIMAP/kimap/MyRightsJob +include/KF5/KIMAP/kimap/NamespaceJob include/KF5/KIMAP/kimap/QuotaJobBase include/KF5/KIMAP/kimap/RenameJob +include/KF5/KIMAP/kimap/RFCCodecs include/KF5/KIMAP/kimap/SearchJob include/KF5/KIMAP/kimap/SelectJob include/KF5/KIMAP/kimap/Session include/KF5/KIMAP/kimap/SessionUiProxy include/KF5/KIMAP/kimap/SetAclJob include/KF5/KIMAP/kimap/SetMetaDataJob include/KF5/KIMAP/kimap/SetQuotaJob include/KF5/KIMAP/kimap/StatusJob include/KF5/KIMAP/kimap/StoreJob include/KF5/KIMAP/kimap/SubscribeJob include/KF5/KIMAP/kimap/UnsubscribeJob include/KF5/KIMAP/kimap/acl.h include/KF5/KIMAP/kimap/acljobbase.h include/KF5/KIMAP/kimap/appendjob.h include/KF5/KIMAP/kimap/capabilitiesjob.h include/KF5/KIMAP/kimap/closejob.h include/KF5/KIMAP/kimap/copyjob.h include/KF5/KIMAP/kimap/createjob.h include/KF5/KIMAP/kimap/deleteacljob.h include/KF5/KIMAP/kimap/deletejob.h include/KF5/KIMAP/kimap/expungejob.h include/KF5/KIMAP/kimap/fetchjob.h include/KF5/KIMAP/kimap/getacljob.h include/KF5/KIMAP/kimap/getmetadatajob.h include/KF5/KIMAP/kimap/getquotajob.h include/KF5/KIMAP/kimap/getquotarootjob.h include/KF5/KIMAP/kimap/idjob.h include/KF5/KIMAP/kimap/idlejob.h include/KF5/KIMAP/kimap/imapset.h include/KF5/KIMAP/kimap/job.h include/KF5/KIMAP/kimap/kimap_export.h include/KF5/KIMAP/kimap/listjob.h include/KF5/KIMAP/kimap/listrightsjob.h include/KF5/KIMAP/kimap/loginjob.h include/KF5/KIMAP/kimap/logoutjob.h include/KF5/KIMAP/kimap/metadatajobbase.h include/KF5/KIMAP/kimap/movejob.h include/KF5/KIMAP/kimap/myrightsjob.h include/KF5/KIMAP/kimap/namespacejob.h include/KF5/KIMAP/kimap/quotajobbase.h include/KF5/KIMAP/kimap/renamejob.h include/KF5/KIMAP/kimap/rfccodecs.h include/KF5/KIMAP/kimap/searchjob.h include/KF5/KIMAP/kimap/selectjob.h include/KF5/KIMAP/kimap/session.h include/KF5/KIMAP/kimap/sessionuiproxy.h include/KF5/KIMAP/kimap/setacljob.h include/KF5/KIMAP/kimap/setmetadatajob.h include/KF5/KIMAP/kimap/setquotajob.h include/KF5/KIMAP/kimap/statusjob.h include/KF5/KIMAP/kimap/storejob.h include/KF5/KIMAP/kimap/subscribejob.h include/KF5/KIMAP/kimap/unsubscribejob.h include/KF5/kimap_version.h lib/cmake/KF5IMAP/KF5IMAPConfig.cmake lib/cmake/KF5IMAP/KF5IMAPConfigVersion.cmake lib/cmake/KF5IMAP/KF5IMAPTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5IMAP/KF5IMAPTargets.cmake lib/libKF5IMAP.so lib/libKF5IMAP.so.5 lib/libKF5IMAP.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_KIMAP.pri share/locale/bs/LC_MESSAGES/libkimap5.mo share/locale/ca/LC_MESSAGES/libkimap5.mo share/locale/ca@valencia/LC_MESSAGES/libkimap5.mo share/locale/cs/LC_MESSAGES/libkimap5.mo share/locale/da/LC_MESSAGES/libkimap5.mo share/locale/de/LC_MESSAGES/libkimap5.mo share/locale/el/LC_MESSAGES/libkimap5.mo share/locale/en_GB/LC_MESSAGES/libkimap5.mo share/locale/eo/LC_MESSAGES/libkimap5.mo share/locale/es/LC_MESSAGES/libkimap5.mo share/locale/et/LC_MESSAGES/libkimap5.mo share/locale/fi/LC_MESSAGES/libkimap5.mo share/locale/fr/LC_MESSAGES/libkimap5.mo share/locale/ga/LC_MESSAGES/libkimap5.mo share/locale/gl/LC_MESSAGES/libkimap5.mo share/locale/hu/LC_MESSAGES/libkimap5.mo share/locale/ia/LC_MESSAGES/libkimap5.mo share/locale/it/LC_MESSAGES/libkimap5.mo share/locale/ja/LC_MESSAGES/libkimap5.mo share/locale/kk/LC_MESSAGES/libkimap5.mo share/locale/km/LC_MESSAGES/libkimap5.mo share/locale/ko/LC_MESSAGES/libkimap5.mo share/locale/lt/LC_MESSAGES/libkimap5.mo share/locale/lv/LC_MESSAGES/libkimap5.mo share/locale/mr/LC_MESSAGES/libkimap5.mo share/locale/nb/LC_MESSAGES/libkimap5.mo share/locale/nds/LC_MESSAGES/libkimap5.mo share/locale/nl/LC_MESSAGES/libkimap5.mo share/locale/nn/LC_MESSAGES/libkimap5.mo share/locale/pa/LC_MESSAGES/libkimap5.mo share/locale/pl/LC_MESSAGES/libkimap5.mo share/locale/pt/LC_MESSAGES/libkimap5.mo share/locale/pt_BR/LC_MESSAGES/libkimap5.mo share/locale/ro/LC_MESSAGES/libkimap5.mo share/locale/ru/LC_MESSAGES/libkimap5.mo share/locale/sk/LC_MESSAGES/libkimap5.mo share/locale/sl/LC_MESSAGES/libkimap5.mo share/locale/sr/LC_MESSAGES/libkimap5.mo share/locale/sv/LC_MESSAGES/libkimap5.mo share/locale/tr/LC_MESSAGES/libkimap5.mo share/locale/ug/LC_MESSAGES/libkimap5.mo share/locale/uk/LC_MESSAGES/libkimap5.mo share/locale/zh_CN/LC_MESSAGES/libkimap5.mo share/locale/zh_TW/LC_MESSAGES/libkimap5.mo Index: head/net/kitinerary/Makefile =================================================================== --- head/net/kitinerary/Makefile (revision 499276) +++ head/net/kitinerary/Makefile (revision 499277) @@ -1,28 +1,27 @@ # $FreeBSD$ PORTNAME= kitinerary DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 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 kde:5 pkgconfig qt:5 tar:xz USE_KDE= ecm i18n # Pim components USE_KDE+= calendarcore contacts kpkpass mime USE_QT= core declarative \ 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 499276) +++ head/net/kitinerary/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551810924 -SHA256 (KDE/applications/18.12.3/kitinerary-18.12.3.tar.xz) = f45ef90cb3fb53d83a30837c304b9f7cfa5dbf2953421233d97c101d66a81f35 -SIZE (KDE/applications/18.12.3/kitinerary-18.12.3.tar.xz) = 652220 +TIMESTAMP = 1555094928 +SHA256 (KDE/applications/19.04.0/kitinerary-19.04.0.tar.xz) = b56c93b7114cad54313471e6ab4cebde461a2b39859b47e9b8f7f146d3471889 +SIZE (KDE/applications/19.04.0/kitinerary-19.04.0.tar.xz) = 687944 Index: head/net/kitinerary/pkg-plist =================================================================== --- head/net/kitinerary/pkg-plist (revision 499276) +++ head/net/kitinerary/pkg-plist (revision 499277) @@ -1,95 +1,95 @@ etc/xdg/org_kde_kitinerary.categories include/KPim/KItinerary/Action -include/KPim/KItinerary/AirportDb include/KPim/KItinerary/BarcodeDecoder include/KPim/KItinerary/Brand include/KPim/KItinerary/BusTrip include/KPim/KItinerary/CalendarHandler include/KPim/KItinerary/CountryDb include/KPim/KItinerary/Datatypes include/KPim/KItinerary/Event include/KPim/KItinerary/Extractor include/KPim/KItinerary/ExtractorEngine include/KPim/KItinerary/ExtractorPostprocessor include/KPim/KItinerary/Flight include/KPim/KItinerary/HtmlDocument include/KPim/KItinerary/IataBcbpParser include/KPim/KItinerary/JsonLdDocument include/KPim/KItinerary/KnowledgeDb include/KPim/KItinerary/LocationUtil include/KPim/KItinerary/MergeUtil include/KPim/KItinerary/Organization include/KPim/KItinerary/PdfDocument include/KPim/KItinerary/Person include/KPim/KItinerary/Place +include/KPim/KItinerary/Rct2Ticket include/KPim/KItinerary/RentalCar include/KPim/KItinerary/Reservation include/KPim/KItinerary/SortUtil include/KPim/KItinerary/Taxi include/KPim/KItinerary/Ticket -include/KPim/KItinerary/TrainStationDb include/KPim/KItinerary/TrainTrip -include/KPim/KItinerary/Uic9%%KDE_APPLICATIONS_VERSION_SHORT%%3Parser +include/KPim/KItinerary/Uic9183Parser include/KPim/KItinerary/Visit include/KPim/kitinerary/action.h -include/KPim/kitinerary/airportdb.h include/KPim/kitinerary/barcodedecoder.h include/KPim/kitinerary/brand.h include/KPim/kitinerary/bustrip.h include/KPim/kitinerary/calendarhandler.h include/KPim/kitinerary/countrydb.h include/KPim/kitinerary/datatypes.h include/KPim/kitinerary/event.h include/KPim/kitinerary/extractor.h include/KPim/kitinerary/extractorengine.h include/KPim/kitinerary/extractorpostprocessor.h include/KPim/kitinerary/flight.h include/KPim/kitinerary/htmldocument.h include/KPim/kitinerary/iatabcbpparser.h include/KPim/kitinerary/jsonlddocument.h include/KPim/kitinerary/kitinerary_export.h include/KPim/kitinerary/knowledgedb.h include/KPim/kitinerary/locationutil.h include/KPim/kitinerary/mergeutil.h include/KPim/kitinerary/organization.h include/KPim/kitinerary/pdfdocument.h include/KPim/kitinerary/person.h include/KPim/kitinerary/place.h +include/KPim/kitinerary/rct2ticket.h include/KPim/kitinerary/rentalcar.h include/KPim/kitinerary/reservation.h include/KPim/kitinerary/sortutil.h include/KPim/kitinerary/taxi.h include/KPim/kitinerary/ticket.h -include/KPim/kitinerary/trainstationdb.h include/KPim/kitinerary/traintrip.h -include/KPim/kitinerary/uic9%%KDE_APPLICATIONS_VERSION_SHORT%%3parser.h +include/KPim/kitinerary/uic9183parser.h include/KPim/kitinerary/visit.h lib/cmake/KPimItinerary/KPimItineraryConfig.cmake lib/cmake/KPimItinerary/KPimItineraryConfigVersion.cmake lib/cmake/KPimItinerary/KPimItineraryTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KPimItinerary/KPimItineraryTargets.cmake +lib/libexec/kf5/kitinerary-extractor lib/libKPimItinerary.so lib/libKPimItinerary.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKPimItinerary.so.5 share/locale/ar/LC_MESSAGES/kitinerary.mo share/locale/ca/LC_MESSAGES/kitinerary.mo share/locale/ca@valencia/LC_MESSAGES/kitinerary.mo share/locale/cs/LC_MESSAGES/kitinerary.mo share/locale/de/LC_MESSAGES/kitinerary.mo share/locale/en_GB/LC_MESSAGES/kitinerary.mo share/locale/es/LC_MESSAGES/kitinerary.mo share/locale/fi/LC_MESSAGES/kitinerary.mo share/locale/fr/LC_MESSAGES/kitinerary.mo share/locale/gl/LC_MESSAGES/kitinerary.mo share/locale/it/LC_MESSAGES/kitinerary.mo +share/locale/ja/LC_MESSAGES/kitinerary.mo share/locale/ko/LC_MESSAGES/kitinerary.mo share/locale/nl/LC_MESSAGES/kitinerary.mo share/locale/pl/LC_MESSAGES/kitinerary.mo share/locale/pt/LC_MESSAGES/kitinerary.mo share/locale/pt_BR/LC_MESSAGES/kitinerary.mo share/locale/ru/LC_MESSAGES/kitinerary.mo share/locale/sk/LC_MESSAGES/kitinerary.mo share/locale/sv/LC_MESSAGES/kitinerary.mo share/locale/uk/LC_MESSAGES/kitinerary.mo share/locale/zh_CN/LC_MESSAGES/kitinerary.mo share/locale/zh_TW/LC_MESSAGES/kitinerary.mo Index: head/net/kldap/distinfo =================================================================== --- head/net/kldap/distinfo (revision 499276) +++ head/net/kldap/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551810932 -SHA256 (KDE/applications/18.12.3/kldap-18.12.3.tar.xz) = dc5c8f33aad9e82f0cee65c6fc530f6bd9b82ec9cc21d1ce904f0fe9bdf5140e -SIZE (KDE/applications/18.12.3/kldap-18.12.3.tar.xz) = 155580 +TIMESTAMP = 1555094929 +SHA256 (KDE/applications/19.04.0/kldap-19.04.0.tar.xz) = 2cddadf995a10b854b28e34c18db14c32ad985c18af466edde6a1b2a9a2d8a23 +SIZE (KDE/applications/19.04.0/kldap-19.04.0.tar.xz) = 155512 Index: head/net/kmailtransport/distinfo =================================================================== --- head/net/kmailtransport/distinfo (revision 499276) +++ head/net/kmailtransport/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551810934 -SHA256 (KDE/applications/18.12.3/kmailtransport-18.12.3.tar.xz) = 8aaa6045f29195074c61fd58112ca7dfbe594df66cac91bac7b246ab2ab9fad1 -SIZE (KDE/applications/18.12.3/kmailtransport-18.12.3.tar.xz) = 165872 +TIMESTAMP = 1555094929 +SHA256 (KDE/applications/19.04.0/kmailtransport-19.04.0.tar.xz) = 35104e661fd501bd5848006dfd907f8cd1dfe88609ed4f9fbc4ce599a2f20c8f +SIZE (KDE/applications/19.04.0/kmailtransport-19.04.0.tar.xz) = 166152 Index: head/net/kmbox/distinfo =================================================================== --- head/net/kmbox/distinfo (revision 499276) +++ head/net/kmbox/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551810933 -SHA256 (KDE/applications/18.12.3/kmbox-18.12.3.tar.xz) = 13a88db1ab0d628a3053a0d6ab5d89cd2f6cbadb3082b52e5dc7048516a10841 -SIZE (KDE/applications/18.12.3/kmbox-18.12.3.tar.xz) = 24652 +TIMESTAMP = 1555094929 +SHA256 (KDE/applications/19.04.0/kmbox-19.04.0.tar.xz) = cd37b698e4ad12317a6d1f7df786345f5df7112ea3d21c2c23545e48a67e8544 +SIZE (KDE/applications/19.04.0/kmbox-19.04.0.tar.xz) = 24836 Index: head/net/kmime/Makefile =================================================================== --- head/net/kmime/Makefile (revision 499276) +++ head/net/kmime/Makefile (revision 499277) @@ -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 499276) +++ head/net/kmime/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551810930 -SHA256 (KDE/applications/18.12.3/kmime-18.12.3.tar.xz) = a09b0757e6ba663bf52d9bb8f7f104f3f19f734a858f6d532a6a20888ebcd274 -SIZE (KDE/applications/18.12.3/kmime-18.12.3.tar.xz) = 147292 +TIMESTAMP = 1555094930 +SHA256 (KDE/applications/19.04.0/kmime-19.04.0.tar.xz) = 2081adec0e6972e513206bee69c0e165904670b7bcf34c52e7da07323537d513 +SIZE (KDE/applications/19.04.0/kmime-19.04.0.tar.xz) = 147188 Index: head/net/kmime/pkg-plist =================================================================== --- head/net/kmime/pkg-plist (revision 499276) +++ head/net/kmime/pkg-plist (revision 499277) @@ -1,82 +1,81 @@ -include/KF5/KMime/KMime/Codecs include/KF5/KMime/KMime/Content include/KF5/KMime/KMime/ContentIndex include/KF5/KMime/KMime/DateFormatter include/KF5/KMime/KMime/HeaderParsing include/KF5/KMime/KMime/Headers include/KF5/KMime/KMime/KMimeMessage include/KF5/KMime/KMime/MDN include/KF5/KMime/KMime/Message include/KF5/KMime/KMime/NewsArticle include/KF5/KMime/KMime/Types include/KF5/KMime/KMime/Util include/KF5/KMime/kmime/kmime_content.h include/KF5/KMime/kmime/kmime_contentindex.h include/KF5/KMime/kmime/kmime_dateformatter.h include/KF5/KMime/kmime/kmime_export.h include/KF5/KMime/kmime/kmime_header_parsing.h include/KF5/KMime/kmime/kmime_headers.h include/KF5/KMime/kmime/kmime_mdn.h include/KF5/KMime/kmime/kmime_message.h include/KF5/KMime/kmime/kmime_newsarticle.h include/KF5/KMime/kmime/kmime_types.h include/KF5/KMime/kmime/kmime_util.h include/KF5/kmime_version.h lib/cmake/KF5Mime/KF5MimeConfig.cmake lib/cmake/KF5Mime/KF5MimeConfigVersion.cmake lib/cmake/KF5Mime/KF5MimeTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5Mime/KF5MimeTargets.cmake lib/libKF5Mime.so lib/libKF5Mime.so.5 lib/libKF5Mime.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_KMime.pri share/locale/ar/LC_MESSAGES/libkmime5.mo share/locale/bg/LC_MESSAGES/libkmime5.mo share/locale/bs/LC_MESSAGES/libkmime5.mo share/locale/ca/LC_MESSAGES/libkmime5.mo share/locale/ca@valencia/LC_MESSAGES/libkmime5.mo share/locale/cs/LC_MESSAGES/libkmime5.mo share/locale/da/LC_MESSAGES/libkmime5.mo share/locale/de/LC_MESSAGES/libkmime5.mo share/locale/el/LC_MESSAGES/libkmime5.mo share/locale/en_GB/LC_MESSAGES/libkmime5.mo share/locale/eo/LC_MESSAGES/libkmime5.mo share/locale/es/LC_MESSAGES/libkmime5.mo share/locale/et/LC_MESSAGES/libkmime5.mo share/locale/eu/LC_MESSAGES/libkmime5.mo share/locale/fa/LC_MESSAGES/libkmime5.mo share/locale/fi/LC_MESSAGES/libkmime5.mo share/locale/fr/LC_MESSAGES/libkmime5.mo share/locale/ga/LC_MESSAGES/libkmime5.mo share/locale/gl/LC_MESSAGES/libkmime5.mo share/locale/hi/LC_MESSAGES/libkmime5.mo share/locale/hu/LC_MESSAGES/libkmime5.mo share/locale/ia/LC_MESSAGES/libkmime5.mo share/locale/it/LC_MESSAGES/libkmime5.mo share/locale/ja/LC_MESSAGES/libkmime5.mo share/locale/kk/LC_MESSAGES/libkmime5.mo share/locale/km/LC_MESSAGES/libkmime5.mo share/locale/ko/LC_MESSAGES/libkmime5.mo share/locale/lt/LC_MESSAGES/libkmime5.mo share/locale/lv/LC_MESSAGES/libkmime5.mo share/locale/mr/LC_MESSAGES/libkmime5.mo share/locale/nb/LC_MESSAGES/libkmime5.mo share/locale/nds/LC_MESSAGES/libkmime5.mo share/locale/nl/LC_MESSAGES/libkmime5.mo share/locale/nn/LC_MESSAGES/libkmime5.mo share/locale/pa/LC_MESSAGES/libkmime5.mo share/locale/pl/LC_MESSAGES/libkmime5.mo share/locale/pt/LC_MESSAGES/libkmime5.mo share/locale/pt_BR/LC_MESSAGES/libkmime5.mo share/locale/ro/LC_MESSAGES/libkmime5.mo share/locale/ru/LC_MESSAGES/libkmime5.mo share/locale/sk/LC_MESSAGES/libkmime5.mo share/locale/sl/LC_MESSAGES/libkmime5.mo share/locale/sr/LC_MESSAGES/libkmime5.mo share/locale/sv/LC_MESSAGES/libkmime5.mo share/locale/tr/LC_MESSAGES/libkmime5.mo share/locale/ug/LC_MESSAGES/libkmime5.mo share/locale/uk/LC_MESSAGES/libkmime5.mo share/locale/wa/LC_MESSAGES/libkmime5.mo share/locale/zh_CN/LC_MESSAGES/libkmime5.mo share/locale/zh_TW/LC_MESSAGES/libkmime5.mo Index: head/net/kontactinterface/distinfo =================================================================== --- head/net/kontactinterface/distinfo (revision 499276) +++ head/net/kontactinterface/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551810925 -SHA256 (KDE/applications/18.12.3/kontactinterface-18.12.3.tar.xz) = 4895e884c93ebff36a721f5161386105e729925dbbbf6fafb94c75ba4b291e41 -SIZE (KDE/applications/18.12.3/kontactinterface-18.12.3.tar.xz) = 32868 +TIMESTAMP = 1555094930 +SHA256 (KDE/applications/19.04.0/kontactinterface-19.04.0.tar.xz) = 268005d61e97dab34f200b0e7a461afddb32a88ccc7c553b6c967865a6915392 +SIZE (KDE/applications/19.04.0/kontactinterface-19.04.0.tar.xz) = 32992 Index: head/net/kpimtextedit/distinfo =================================================================== --- head/net/kpimtextedit/distinfo (revision 499276) +++ head/net/kpimtextedit/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551810931 -SHA256 (KDE/applications/18.12.3/kpimtextedit-18.12.3.tar.xz) = 54586fc97eb863eaa57e589d4461dd9cfbc4d12e58425afadcd22d64ba8a570d -SIZE (KDE/applications/18.12.3/kpimtextedit-18.12.3.tar.xz) = 142972 +TIMESTAMP = 1555094930 +SHA256 (KDE/applications/19.04.0/kpimtextedit-19.04.0.tar.xz) = b4c640ee8ae5c4356bc26819763721580ca87477eb39258c1eaacdffbfc5311a +SIZE (KDE/applications/19.04.0/kpimtextedit-19.04.0.tar.xz) = 151888 Index: head/net/kpimtextedit/pkg-plist =================================================================== --- head/net/kpimtextedit/pkg-plist (revision 499276) +++ head/net/kpimtextedit/pkg-plist (revision 499277) @@ -1,121 +1,109 @@ etc/xdg/kpimtextedit.categories include/KF5/KPIMTextEdit/KPIMTextEdit/AbstractTextToSpeechInterface include/KF5/KPIMTextEdit/KPIMTextEdit/EditorUtil -include/KF5/KPIMTextEdit/KPIMTextEdit/EmoticonTextEditAction -include/KF5/KPIMTextEdit/KPIMTextEdit/InsertImageWidget -include/KF5/KPIMTextEdit/KPIMTextEdit/InsertTableDialog -include/KF5/KPIMTextEdit/KPIMTextEdit/InsertTableWidget +include/KF5/KPIMTextEdit/KPIMTextEdit/EmoticonUnicodeTab include/KF5/KPIMTextEdit/KPIMTextEdit/PlainTextEditFindBar include/KF5/KPIMTextEdit/KPIMTextEdit/PlainTextEditor include/KF5/KPIMTextEdit/KPIMTextEdit/PlainTextEditorWidget include/KF5/KPIMTextEdit/KPIMTextEdit/PlainTextSyntaxSpellCheckingHighlighter include/KF5/KPIMTextEdit/KPIMTextEdit/RichTextComposer include/KF5/KPIMTextEdit/KPIMTextEdit/RichTextComposerActions include/KF5/KPIMTextEdit/KPIMTextEdit/RichTextComposerControler include/KF5/KPIMTextEdit/KPIMTextEdit/RichTextComposerEmailQuoteHighlighter include/KF5/KPIMTextEdit/KPIMTextEdit/RichTextComposerImages include/KF5/KPIMTextEdit/KPIMTextEdit/RichTextComposerWidget include/KF5/KPIMTextEdit/KPIMTextEdit/RichTextEditor include/KF5/KPIMTextEdit/KPIMTextEdit/RichTextEditorWidget include/KF5/KPIMTextEdit/KPIMTextEdit/RichTextExternalComposer include/KF5/KPIMTextEdit/KPIMTextEdit/SelectSpecialCharDialog include/KF5/KPIMTextEdit/KPIMTextEdit/SlideContainer -include/KF5/KPIMTextEdit/KPIMTextEdit/TableActionMenu -include/KF5/KPIMTextEdit/KPIMTextEdit/TableCellFormatDialog -include/KF5/KPIMTextEdit/KPIMTextEdit/TableFormatDialog include/KF5/KPIMTextEdit/KPIMTextEdit/TextEditFindBarBase include/KF5/KPIMTextEdit/KPIMTextEdit/TextEditorCompleter include/KF5/KPIMTextEdit/KPIMTextEdit/TextGotoLineWidget include/KF5/KPIMTextEdit/KPIMTextEdit/TextToSpeech include/KF5/KPIMTextEdit/KPIMTextEdit/TextToSpeechActions include/KF5/KPIMTextEdit/KPIMTextEdit/TextToSpeechInterface include/KF5/KPIMTextEdit/KPIMTextEdit/TextToSpeechWidget include/KF5/KPIMTextEdit/KPIMTextEdit/TextUtils include/KF5/KPIMTextEdit/kpimtextedit/abstracttexttospeechinterface.h include/KF5/KPIMTextEdit/kpimtextedit/editorutil.h -include/KF5/KPIMTextEdit/kpimtextedit/emoticontexteditaction.h -include/KF5/KPIMTextEdit/kpimtextedit/insertimagewidget.h -include/KF5/KPIMTextEdit/kpimtextedit/inserttabledialog.h -include/KF5/KPIMTextEdit/kpimtextedit/inserttablewidget.h +include/KF5/KPIMTextEdit/kpimtextedit/emoticonunicodetab.h include/KF5/KPIMTextEdit/kpimtextedit/kpimtextedit_export.h include/KF5/KPIMTextEdit/kpimtextedit/plaintexteditfindbar.h include/KF5/KPIMTextEdit/kpimtextedit/plaintexteditor.h include/KF5/KPIMTextEdit/kpimtextedit/plaintexteditorwidget.h include/KF5/KPIMTextEdit/kpimtextedit/plaintextsyntaxspellcheckinghighlighter.h include/KF5/KPIMTextEdit/kpimtextedit/richtextcomposer.h include/KF5/KPIMTextEdit/kpimtextedit/richtextcomposeractions.h include/KF5/KPIMTextEdit/kpimtextedit/richtextcomposercontroler.h include/KF5/KPIMTextEdit/kpimtextedit/richtextcomposeremailquotehighlighter.h include/KF5/KPIMTextEdit/kpimtextedit/richtextcomposerimages.h include/KF5/KPIMTextEdit/kpimtextedit/richtextcomposerwidget.h include/KF5/KPIMTextEdit/kpimtextedit/richtexteditor.h include/KF5/KPIMTextEdit/kpimtextedit/richtexteditorwidget.h include/KF5/KPIMTextEdit/kpimtextedit/richtextexternalcomposer.h include/KF5/KPIMTextEdit/kpimtextedit/selectspecialchardialog.h include/KF5/KPIMTextEdit/kpimtextedit/slidecontainer.h -include/KF5/KPIMTextEdit/kpimtextedit/tableactionmenu.h -include/KF5/KPIMTextEdit/kpimtextedit/tablecellformatdialog.h -include/KF5/KPIMTextEdit/kpimtextedit/tableformatdialog.h include/KF5/KPIMTextEdit/kpimtextedit/texteditfindbarbase.h include/KF5/KPIMTextEdit/kpimtextedit/texteditorcompleter.h include/KF5/KPIMTextEdit/kpimtextedit/textgotolinewidget.h include/KF5/KPIMTextEdit/kpimtextedit/texttospeech.h include/KF5/KPIMTextEdit/kpimtextedit/texttospeechactions.h include/KF5/KPIMTextEdit/kpimtextedit/texttospeechinterface.h include/KF5/KPIMTextEdit/kpimtextedit/texttospeechwidget.h include/KF5/KPIMTextEdit/kpimtextedit/textutils.h include/KF5/kpimtextedit_version.h lib/cmake/KF5PimTextEdit/KF5PimTextEditConfig.cmake lib/cmake/KF5PimTextEdit/KF5PimTextEditConfigVersion.cmake lib/cmake/KF5PimTextEdit/KF5PimTextEditTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5PimTextEdit/KF5PimTextEditTargets.cmake lib/libKF5PimTextEdit.so lib/libKF5PimTextEdit.so.5 lib/libKF5PimTextEdit.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_KPIMTextEdit.pri %%QT_PLUGINDIR%%/designer/kpimtexteditwidgets.so share/locale/ar/LC_MESSAGES/libkpimtextedit.mo share/locale/bs/LC_MESSAGES/libkpimtextedit.mo share/locale/ca/LC_MESSAGES/libkpimtextedit.mo share/locale/ca@valencia/LC_MESSAGES/libkpimtextedit.mo share/locale/cs/LC_MESSAGES/libkpimtextedit.mo share/locale/da/LC_MESSAGES/libkpimtextedit.mo share/locale/de/LC_MESSAGES/libkpimtextedit.mo share/locale/el/LC_MESSAGES/libkpimtextedit.mo share/locale/en_GB/LC_MESSAGES/libkpimtextedit.mo share/locale/eo/LC_MESSAGES/libkpimtextedit.mo share/locale/es/LC_MESSAGES/libkpimtextedit.mo share/locale/et/LC_MESSAGES/libkpimtextedit.mo share/locale/fi/LC_MESSAGES/libkpimtextedit.mo share/locale/fr/LC_MESSAGES/libkpimtextedit.mo share/locale/ga/LC_MESSAGES/libkpimtextedit.mo share/locale/gl/LC_MESSAGES/libkpimtextedit.mo share/locale/hu/LC_MESSAGES/libkpimtextedit.mo share/locale/ia/LC_MESSAGES/libkpimtextedit.mo share/locale/it/LC_MESSAGES/libkpimtextedit.mo share/locale/ja/LC_MESSAGES/libkpimtextedit.mo share/locale/kk/LC_MESSAGES/libkpimtextedit.mo share/locale/km/LC_MESSAGES/libkpimtextedit.mo share/locale/ko/LC_MESSAGES/libkpimtextedit.mo share/locale/lt/LC_MESSAGES/libkpimtextedit.mo share/locale/lv/LC_MESSAGES/libkpimtextedit.mo share/locale/mr/LC_MESSAGES/libkpimtextedit.mo share/locale/nb/LC_MESSAGES/libkpimtextedit.mo share/locale/nds/LC_MESSAGES/libkpimtextedit.mo share/locale/nl/LC_MESSAGES/libkpimtextedit.mo share/locale/nn/LC_MESSAGES/libkpimtextedit.mo share/locale/pa/LC_MESSAGES/libkpimtextedit.mo share/locale/pl/LC_MESSAGES/libkpimtextedit.mo share/locale/pt/LC_MESSAGES/libkpimtextedit.mo share/locale/pt_BR/LC_MESSAGES/libkpimtextedit.mo share/locale/ro/LC_MESSAGES/libkpimtextedit.mo share/locale/ru/LC_MESSAGES/libkpimtextedit.mo share/locale/sk/LC_MESSAGES/libkpimtextedit.mo share/locale/sl/LC_MESSAGES/libkpimtextedit.mo share/locale/sr/LC_MESSAGES/libkpimtextedit.mo share/locale/sv/LC_MESSAGES/libkpimtextedit.mo share/locale/tr/LC_MESSAGES/libkpimtextedit.mo share/locale/ug/LC_MESSAGES/libkpimtextedit.mo share/locale/uk/LC_MESSAGES/libkpimtextedit.mo share/locale/zh_CN/LC_MESSAGES/libkpimtextedit.mo share/locale/zh_TW/LC_MESSAGES/libkpimtextedit.mo Index: head/net/krdc/distinfo =================================================================== --- head/net/krdc/distinfo (revision 499276) +++ head/net/krdc/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551810929 -SHA256 (KDE/applications/18.12.3/krdc-18.12.3.tar.xz) = c01896b73ab058a20f4c3d8997c28cbb81a7000f5aec346592a9315412c10666 -SIZE (KDE/applications/18.12.3/krdc-18.12.3.tar.xz) = 1420104 +TIMESTAMP = 1555094931 +SHA256 (KDE/applications/19.04.0/krdc-19.04.0.tar.xz) = 2a1ac548992eaaff82cafe386eef0a611b96f06ce3887a363b25d6ca17c6eacc +SIZE (KDE/applications/19.04.0/krdc-19.04.0.tar.xz) = 1423676 Index: head/net/krdc/files/patch-CMakeLists.txt =================================================================== --- head/net/krdc/files/patch-CMakeLists.txt (revision 499276) +++ head/net/krdc/files/patch-CMakeLists.txt (revision 499277) @@ -1,46 +1,46 @@ ---- CMakeLists.txt.orig 2019-02-05 00:43:19 UTC +--- CMakeLists.txt.orig 2019-03-22 00:18:06 UTC +++ CMakeLists.txt @@ -80,24 +80,27 @@ set_package_properties("libssh" PROPERTIES PURPOSE "Needed to build VNC+SSH tunnel support " ) -# Needs porting -find_program(FREERDP_EXECUTABLE xfreerdp) -if(FREERDP_EXECUTABLE) - set(FREERDP_FOUND true) # mark the package found - set(FREERDP_EXECUTABLE_FOUND true) -endif(FREERDP_EXECUTABLE) +option(WITH_FREERDP OFF) +if (WITH_FREERDP) + # Needs porting + find_program(FREERDP_EXECUTABLE xfreerdp) + if(FREERDP_EXECUTABLE) + set(FREERDP_FOUND true) # mark the package found + set(FREERDP_EXECUTABLE_FOUND true) + endif(FREERDP_EXECUTABLE) -# dud to allow the dep showing up in feature summary. -# note that this must be after _FOUND is set so it doesn't incorrectly -# set the metadata to not-found. -find_package(freerdp QUIET) + # dud to allow the dep showing up in feature summary. + # note that this must be after _FOUND is set so it doesn't incorrectly + # set the metadata to not-found. + find_package(freerdp QUIET) -set_package_properties(freerdp PROPERTIES - DESCRIPTION "A free Remote Desktop Protocol (RDP) Implementation" -- URL "http://www.freerdp.com" +- URL "https://www.freerdp.com/" - PURPOSE "The xfreerdp binary is needed for RDP support in KRDC (at runtime)" - TYPE RUNTIME -) + set_package_properties(freerdp PROPERTIES + DESCRIPTION "A free Remote Desktop Protocol (RDP) Implementation" -+ URL "http://www.freerdp.com" ++ URL "https://www.freerdp.com/" + PURPOSE "The xfreerdp binary is needed for RDP support in KRDC (at runtime)" + TYPE RUNTIME + ) +endif() # NX support is not ready for KDE 4.2; disabled (uwolfer) # macro_optional_find_package(LibNXCL) Index: head/net/krfb/Makefile =================================================================== --- head/net/krfb/Makefile (revision 499276) +++ head/net/krfb/Makefile (revision 499277) @@ -1,28 +1,27 @@ # $FreeBSD$ PORTNAME= krfb DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= net kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= VNC server for KDE LIB_DEPENDS= libvncserver.so:net/libvncserver \ libxcb-image.so:x11/xcb-util-image USES= alias cmake compiler:c++11-lib gettext jpeg \ kde:5 pkgconfig qt:5 tar:xz USE_KDE= auth codecs completion config configwidgets coreaddons \ crash dbusaddons dnssd doctools ecm i18n notifications \ wallet widgetsaddons xmlgui USE_QT= core dbus gui network widgets x11extras xml \ buildtools_build qmake_build USE_XORG= x11 xcb xdamage xext xtst OPTIONS_DEFINE= TELEPATHY DOCS OPTIONS_SUB= yes TELEPATHY_DESC= Support for Telepathy Tubes TELEPATHY_LIB_DEPENDS= libtelepathy-qt5.so:net-im/telepathy-qt .include Index: head/net/krfb/distinfo =================================================================== --- head/net/krfb/distinfo (revision 499276) +++ head/net/krfb/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551810930 -SHA256 (KDE/applications/18.12.3/krfb-18.12.3.tar.xz) = 9596adfe7135930c6c9c8ecd05035e401d80a5e2cd532ba343b7d4c0f57a799b -SIZE (KDE/applications/18.12.3/krfb-18.12.3.tar.xz) = 931896 +TIMESTAMP = 1555094931 +SHA256 (KDE/applications/19.04.0/krfb-19.04.0.tar.xz) = 321b1b296dfbd69e64048fbf991aec1a9d8c251e9f0084a396081f62287c6b40 +SIZE (KDE/applications/19.04.0/krfb-19.04.0.tar.xz) = 1257592 Index: head/net/ksmtp/distinfo =================================================================== --- head/net/ksmtp/distinfo (revision 499276) +++ head/net/ksmtp/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551810933 -SHA256 (KDE/applications/18.12.3/ksmtp-18.12.3.tar.xz) = 90578b1b3ac1ce14bf4f34799b1b400b06734c72f3fecd41f5f07aed37ed3b74 -SIZE (KDE/applications/18.12.3/ksmtp-18.12.3.tar.xz) = 40240 +TIMESTAMP = 1555094932 +SHA256 (KDE/applications/19.04.0/ksmtp-19.04.0.tar.xz) = c92b8b6b9de60bca7b9bb7befdd519041625188a955e55b63860d9de4b3e0bab +SIZE (KDE/applications/19.04.0/ksmtp-19.04.0.tar.xz) = 40328 Index: head/net/ktnef/distinfo =================================================================== --- head/net/ktnef/distinfo (revision 499276) +++ head/net/ktnef/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551810926 -SHA256 (KDE/applications/18.12.3/ktnef-18.12.3.tar.xz) = 7633f86514d01a1e3709f6854b3b9c859fa1905043bb53240c1ae53f3b76a6ec -SIZE (KDE/applications/18.12.3/ktnef-18.12.3.tar.xz) = 299560 +TIMESTAMP = 1555094932 +SHA256 (KDE/applications/19.04.0/ktnef-19.04.0.tar.xz) = bc3e826bc831ffac5b3b92cef14fca3f4b077d30652ce2ebdcffa07dafd58c56 +SIZE (KDE/applications/19.04.0/ktnef-19.04.0.tar.xz) = 299788 Index: head/net/libgravatar/distinfo =================================================================== --- head/net/libgravatar/distinfo (revision 499276) +++ head/net/libgravatar/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551810934 -SHA256 (KDE/applications/18.12.3/libgravatar-18.12.3.tar.xz) = c44c139fbaffda352f0fe461065622cff65b6f1cc13cee8a0137acb27de143ee -SIZE (KDE/applications/18.12.3/libgravatar-18.12.3.tar.xz) = 30140 +TIMESTAMP = 1555094932 +SHA256 (KDE/applications/19.04.0/libgravatar-19.04.0.tar.xz) = ee62597fffa534b45f89056028d1d9ff871c7da7093d11a128a6decfb5312d12 +SIZE (KDE/applications/19.04.0/libgravatar-19.04.0.tar.xz) = 30952 Index: head/net/libgravatar/pkg-plist =================================================================== --- head/net/libgravatar/pkg-plist (revision 499276) +++ head/net/libgravatar/pkg-plist (revision 499277) @@ -1,51 +1,53 @@ etc/xdg/libgravatar.categories etc/xdg/libgravatar.renamecategories include/KF5/Gravatar/GravatarCache include/KF5/Gravatar/GravatarConfigWidget include/KF5/Gravatar/GravatarConfigureSettingsDialog +include/KF5/Gravatar/GravatarConfigureSettingsWidget include/KF5/Gravatar/GravatarDownloadPixmapWidget include/KF5/Gravatar/GravatarResolvUrlJob include/KF5/gravatar/gravatar_export.h include/KF5/gravatar/gravatarcache.h include/KF5/gravatar/gravatarconfiguresettingsdialog.h +include/KF5/gravatar/gravatarconfiguresettingswidget.h include/KF5/gravatar/gravatarconfigwidget.h include/KF5/gravatar/gravatardownloadpixmapwidget.h include/KF5/gravatar/gravatarresolvurljob.h include/KF5/gravatar/gravatarsettings.h include/KF5/gravatar_version.h lib/cmake/KF5Gravatar/KF5GravatarConfig.cmake lib/cmake/KF5Gravatar/KF5GravatarConfigVersion.cmake lib/cmake/KF5Gravatar/KF5GravatarTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5Gravatar/KF5GravatarTargets.cmake lib/libKF5Gravatar.so lib/libKF5Gravatar.so.5 lib/libKF5Gravatar.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_Gravatar.pri share/locale/ar/LC_MESSAGES/libgravatar.mo share/locale/ca/LC_MESSAGES/libgravatar.mo share/locale/ca@valencia/LC_MESSAGES/libgravatar.mo share/locale/cs/LC_MESSAGES/libgravatar.mo share/locale/da/LC_MESSAGES/libgravatar.mo share/locale/de/LC_MESSAGES/libgravatar.mo share/locale/en_GB/LC_MESSAGES/libgravatar.mo share/locale/es/LC_MESSAGES/libgravatar.mo share/locale/et/LC_MESSAGES/libgravatar.mo share/locale/fi/LC_MESSAGES/libgravatar.mo share/locale/fr/LC_MESSAGES/libgravatar.mo share/locale/gl/LC_MESSAGES/libgravatar.mo share/locale/it/LC_MESSAGES/libgravatar.mo share/locale/ja/LC_MESSAGES/libgravatar.mo share/locale/ko/LC_MESSAGES/libgravatar.mo share/locale/nl/LC_MESSAGES/libgravatar.mo share/locale/pl/LC_MESSAGES/libgravatar.mo share/locale/pt/LC_MESSAGES/libgravatar.mo share/locale/pt_BR/LC_MESSAGES/libgravatar.mo share/locale/ru/LC_MESSAGES/libgravatar.mo share/locale/sk/LC_MESSAGES/libgravatar.mo share/locale/sl/LC_MESSAGES/libgravatar.mo share/locale/sr/LC_MESSAGES/libgravatar.mo share/locale/sv/LC_MESSAGES/libgravatar.mo share/locale/tr/LC_MESSAGES/libgravatar.mo share/locale/uk/LC_MESSAGES/libgravatar.mo share/locale/zh_CN/LC_MESSAGES/libgravatar.mo share/locale/zh_TW/LC_MESSAGES/libgravatar.mo Index: head/net/libkgapi/distinfo =================================================================== --- head/net/libkgapi/distinfo (revision 499276) +++ head/net/libkgapi/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551810927 -SHA256 (KDE/applications/18.12.3/libkgapi-18.12.3.tar.xz) = de0314fd83d8fa8f88e6a355c4725047d2e507e0d40f1950c8ae083c2bc21924 -SIZE (KDE/applications/18.12.3/libkgapi-18.12.3.tar.xz) = 215180 +TIMESTAMP = 1555094933 +SHA256 (KDE/applications/19.04.0/libkgapi-19.04.0.tar.xz) = 014084b04ee76939a318f711259bbb540037b45fe57a25b200ed4095b74970dc +SIZE (KDE/applications/19.04.0/libkgapi-19.04.0.tar.xz) = 225060 Index: head/net/libkgapi/pkg-plist =================================================================== --- head/net/libkgapi/pkg-plist (revision 499276) +++ head/net/libkgapi/pkg-plist (revision 499277) @@ -1,322 +1,338 @@ etc/xdg/libkgapi.categories include/KPim/KGAPI/KGAPI/Account include/KPim/KGAPI/KGAPI/AccountInfo include/KPim/KGAPI/KGAPI/AccountInfoFetchJob include/KPim/KGAPI/KGAPI/AccountManager include/KPim/KGAPI/KGAPI/AuthJob include/KPim/KGAPI/KGAPI/AuthWidget include/KPim/KGAPI/KGAPI/Blogger/Blog include/KPim/KGAPI/KGAPI/Blogger/BlogFetchJob include/KPim/KGAPI/KGAPI/Blogger/Comment include/KPim/KGAPI/KGAPI/Blogger/CommentApproveJob include/KPim/KGAPI/KGAPI/Blogger/CommentDeleteContentJob include/KPim/KGAPI/KGAPI/Blogger/CommentDeleteJob include/KPim/KGAPI/KGAPI/Blogger/CommentFetchJob include/KPim/KGAPI/KGAPI/Blogger/Page include/KPim/KGAPI/KGAPI/Blogger/PageCreateJob include/KPim/KGAPI/KGAPI/Blogger/PageDeleteJob include/KPim/KGAPI/KGAPI/Blogger/PageFetchJob include/KPim/KGAPI/KGAPI/Blogger/PageModifyJob include/KPim/KGAPI/KGAPI/Blogger/Post include/KPim/KGAPI/KGAPI/Blogger/PostCreateJob include/KPim/KGAPI/KGAPI/Blogger/PostDeleteJob include/KPim/KGAPI/KGAPI/Blogger/PostFetchJob include/KPim/KGAPI/KGAPI/Blogger/PostModifyJob include/KPim/KGAPI/KGAPI/Blogger/PostPublishJob include/KPim/KGAPI/KGAPI/Blogger/PostSearchJob include/KPim/KGAPI/KGAPI/Calendar/Calendar include/KPim/KGAPI/KGAPI/Calendar/CalendarCreateJob include/KPim/KGAPI/KGAPI/Calendar/CalendarDeleteJob include/KPim/KGAPI/KGAPI/Calendar/CalendarFetchJob include/KPim/KGAPI/KGAPI/Calendar/CalendarModifyJob +include/KPim/KGAPI/KGAPI/Calendar/Enums include/KPim/KGAPI/KGAPI/Calendar/Event include/KPim/KGAPI/KGAPI/Calendar/EventCreateJob include/KPim/KGAPI/KGAPI/Calendar/EventDeleteJob include/KPim/KGAPI/KGAPI/Calendar/EventFetchJob include/KPim/KGAPI/KGAPI/Calendar/EventModifyJob include/KPim/KGAPI/KGAPI/Calendar/EventMoveJob include/KPim/KGAPI/KGAPI/Calendar/FreeBusyQueryJob include/KPim/KGAPI/KGAPI/Calendar/Reminder include/KPim/KGAPI/KGAPI/Contacts/Contact include/KPim/KGAPI/KGAPI/Contacts/ContactCreateJob include/KPim/KGAPI/KGAPI/Contacts/ContactDeleteJob include/KPim/KGAPI/KGAPI/Contacts/ContactFetchJob include/KPim/KGAPI/KGAPI/Contacts/ContactFetchPhotoJob include/KPim/KGAPI/KGAPI/Contacts/ContactModifyJob include/KPim/KGAPI/KGAPI/Contacts/ContactsGroup include/KPim/KGAPI/KGAPI/Contacts/ContactsGroupCreateJob include/KPim/KGAPI/KGAPI/Contacts/ContactsGroupDeleteJob include/KPim/KGAPI/KGAPI/Contacts/ContactsGroupFetchJob include/KPim/KGAPI/KGAPI/Contacts/ContactsGroupModifyJob include/KPim/KGAPI/KGAPI/CreateJob include/KPim/KGAPI/KGAPI/DeleteJob include/KPim/KGAPI/KGAPI/Drive/About include/KPim/KGAPI/KGAPI/Drive/AboutFetchJob include/KPim/KGAPI/KGAPI/Drive/App include/KPim/KGAPI/KGAPI/Drive/AppFetchJob include/KPim/KGAPI/KGAPI/Drive/Change include/KPim/KGAPI/KGAPI/Drive/ChangeFetchJob include/KPim/KGAPI/KGAPI/Drive/ChildReference include/KPim/KGAPI/KGAPI/Drive/ChildReferenceCreateJob include/KPim/KGAPI/KGAPI/Drive/ChildReferenceDeleteJob include/KPim/KGAPI/KGAPI/Drive/ChildReferenceFetchJob include/KPim/KGAPI/KGAPI/Drive/File include/KPim/KGAPI/KGAPI/Drive/FileAbstractDataJob include/KPim/KGAPI/KGAPI/Drive/FileAbstractModifyJob include/KPim/KGAPI/KGAPI/Drive/FileAbstractUploadJob include/KPim/KGAPI/KGAPI/Drive/FileCopyJob include/KPim/KGAPI/KGAPI/Drive/FileCreateJob include/KPim/KGAPI/KGAPI/Drive/FileDeleteJob include/KPim/KGAPI/KGAPI/Drive/FileFetchContentJob include/KPim/KGAPI/KGAPI/Drive/FileFetchJob include/KPim/KGAPI/KGAPI/Drive/FileModifyJob include/KPim/KGAPI/KGAPI/Drive/FileSearchQuery include/KPim/KGAPI/KGAPI/Drive/FileTouchJob include/KPim/KGAPI/KGAPI/Drive/FileTrashJob include/KPim/KGAPI/KGAPI/Drive/FileUntrashJob include/KPim/KGAPI/KGAPI/Drive/ParentReference include/KPim/KGAPI/KGAPI/Drive/ParentReferenceCreateJob include/KPim/KGAPI/KGAPI/Drive/ParentReferenceDeleteJob include/KPim/KGAPI/KGAPI/Drive/ParentReferenceFetchJob include/KPim/KGAPI/KGAPI/Drive/Permission include/KPim/KGAPI/KGAPI/Drive/PermissionCreateJob include/KPim/KGAPI/KGAPI/Drive/PermissionDeleteJob include/KPim/KGAPI/KGAPI/Drive/PermissionFetchJob include/KPim/KGAPI/KGAPI/Drive/PermissionModifyJob include/KPim/KGAPI/KGAPI/Drive/Revision include/KPim/KGAPI/KGAPI/Drive/RevisionDeleteJob include/KPim/KGAPI/KGAPI/Drive/RevisionFetchJob include/KPim/KGAPI/KGAPI/Drive/RevisionModifyJob +include/KPim/KGAPI/KGAPI/Drive/SearchQuery +include/KPim/KGAPI/KGAPI/Drive/Teamdrive +include/KPim/KGAPI/KGAPI/Drive/TeamdriveCreateJob +include/KPim/KGAPI/KGAPI/Drive/TeamdriveDeleteJob +include/KPim/KGAPI/KGAPI/Drive/TeamdriveFetchJob +include/KPim/KGAPI/KGAPI/Drive/TeamdriveModifyJob +include/KPim/KGAPI/KGAPI/Drive/TeamdriveSearchQuery include/KPim/KGAPI/KGAPI/Drive/User include/KPim/KGAPI/KGAPI/FetchJob include/KPim/KGAPI/KGAPI/Job include/KPim/KGAPI/KGAPI/Latitude/Latitude include/KPim/KGAPI/KGAPI/Latitude/Location include/KPim/KGAPI/KGAPI/Latitude/LocationCreateJob include/KPim/KGAPI/KGAPI/Latitude/LocationDeleteJob include/KPim/KGAPI/KGAPI/Latitude/LocationFetchHistoryJob include/KPim/KGAPI/KGAPI/Latitude/LocationFetchJob include/KPim/KGAPI/KGAPI/Maps/StaticMapMarker include/KPim/KGAPI/KGAPI/Maps/StaticMapPath include/KPim/KGAPI/KGAPI/Maps/StaticMapTileFetchJob include/KPim/KGAPI/KGAPI/Maps/StaticMapUrl include/KPim/KGAPI/KGAPI/ModifyJob include/KPim/KGAPI/KGAPI/Object include/KPim/KGAPI/KGAPI/Tasks/Task include/KPim/KGAPI/KGAPI/Tasks/TaskCreateJob include/KPim/KGAPI/KGAPI/Tasks/TaskDeleteJob include/KPim/KGAPI/KGAPI/Tasks/TaskFetchJob include/KPim/KGAPI/KGAPI/Tasks/TaskList include/KPim/KGAPI/KGAPI/Tasks/TaskListCreateJob include/KPim/KGAPI/KGAPI/Tasks/TaskListDeleteJob include/KPim/KGAPI/KGAPI/Tasks/TaskListFetchJob include/KPim/KGAPI/KGAPI/Tasks/TaskListModifyJob include/KPim/KGAPI/KGAPI/Tasks/TaskModifyJob include/KPim/KGAPI/KGAPI/Tasks/TaskMoveJob include/KPim/KGAPI/KGAPI/Types include/KPim/KGAPI/KGAPI/Utils include/KPim/KGAPI/kgapi/account.h include/KPim/KGAPI/kgapi/accountinfo.h include/KPim/KGAPI/kgapi/accountinfofetchjob.h include/KPim/KGAPI/kgapi/accountmanager.h include/KPim/KGAPI/kgapi/authjob.h include/KPim/KGAPI/kgapi/authwidget.h include/KPim/KGAPI/kgapi/blogger/blog.h include/KPim/KGAPI/kgapi/blogger/blogfetchjob.h include/KPim/KGAPI/kgapi/blogger/comment.h include/KPim/KGAPI/kgapi/blogger/commentapprovejob.h include/KPim/KGAPI/kgapi/blogger/commentdeletecontentjob.h include/KPim/KGAPI/kgapi/blogger/commentdeletejob.h include/KPim/KGAPI/kgapi/blogger/commentfetchjob.h include/KPim/KGAPI/kgapi/blogger/kgapiblogger_export.h include/KPim/KGAPI/kgapi/blogger/page.h include/KPim/KGAPI/kgapi/blogger/pagecreatejob.h include/KPim/KGAPI/kgapi/blogger/pagedeletejob.h include/KPim/KGAPI/kgapi/blogger/pagefetchjob.h include/KPim/KGAPI/kgapi/blogger/pagemodifyjob.h include/KPim/KGAPI/kgapi/blogger/post.h include/KPim/KGAPI/kgapi/blogger/postcreatejob.h include/KPim/KGAPI/kgapi/blogger/postdeletejob.h include/KPim/KGAPI/kgapi/blogger/postfetchjob.h include/KPim/KGAPI/kgapi/blogger/postmodifyjob.h include/KPim/KGAPI/kgapi/blogger/postpublishjob.h include/KPim/KGAPI/kgapi/blogger/postsearchjob.h include/KPim/KGAPI/kgapi/calendar/calendar.h include/KPim/KGAPI/kgapi/calendar/calendarcreatejob.h include/KPim/KGAPI/kgapi/calendar/calendardeletejob.h include/KPim/KGAPI/kgapi/calendar/calendarfetchjob.h include/KPim/KGAPI/kgapi/calendar/calendarmodifyjob.h +include/KPim/KGAPI/kgapi/calendar/enums.h include/KPim/KGAPI/kgapi/calendar/event.h include/KPim/KGAPI/kgapi/calendar/eventcreatejob.h include/KPim/KGAPI/kgapi/calendar/eventdeletejob.h include/KPim/KGAPI/kgapi/calendar/eventfetchjob.h include/KPim/KGAPI/kgapi/calendar/eventmodifyjob.h include/KPim/KGAPI/kgapi/calendar/eventmovejob.h include/KPim/KGAPI/kgapi/calendar/freebusyqueryjob.h include/KPim/KGAPI/kgapi/calendar/kgapicalendar_export.h include/KPim/KGAPI/kgapi/calendar/reminder.h include/KPim/KGAPI/kgapi/contacts/contact.h include/KPim/KGAPI/kgapi/contacts/contactcreatejob.h include/KPim/KGAPI/kgapi/contacts/contactdeletejob.h include/KPim/KGAPI/kgapi/contacts/contactfetchjob.h include/KPim/KGAPI/kgapi/contacts/contactfetchphotojob.h include/KPim/KGAPI/kgapi/contacts/contactmodifyjob.h include/KPim/KGAPI/kgapi/contacts/contactsgroup.h include/KPim/KGAPI/kgapi/contacts/contactsgroupcreatejob.h include/KPim/KGAPI/kgapi/contacts/contactsgroupdeletejob.h include/KPim/KGAPI/kgapi/contacts/contactsgroupfetchjob.h include/KPim/KGAPI/kgapi/contacts/contactsgroupmodifyjob.h include/KPim/KGAPI/kgapi/contacts/kgapicontacts_export.h include/KPim/KGAPI/kgapi/createjob.h include/KPim/KGAPI/kgapi/deletejob.h include/KPim/KGAPI/kgapi/drive/about.h include/KPim/KGAPI/kgapi/drive/aboutfetchjob.h include/KPim/KGAPI/kgapi/drive/app.h include/KPim/KGAPI/kgapi/drive/appfetchjob.h include/KPim/KGAPI/kgapi/drive/change.h include/KPim/KGAPI/kgapi/drive/changefetchjob.h include/KPim/KGAPI/kgapi/drive/childreference.h include/KPim/KGAPI/kgapi/drive/childreferencecreatejob.h include/KPim/KGAPI/kgapi/drive/childreferencedeletejob.h include/KPim/KGAPI/kgapi/drive/childreferencefetchjob.h include/KPim/KGAPI/kgapi/drive/file.h include/KPim/KGAPI/kgapi/drive/fileabstractdatajob.h include/KPim/KGAPI/kgapi/drive/fileabstractmodifyjob.h include/KPim/KGAPI/kgapi/drive/fileabstractuploadjob.h include/KPim/KGAPI/kgapi/drive/filecopyjob.h include/KPim/KGAPI/kgapi/drive/filecreatejob.h include/KPim/KGAPI/kgapi/drive/filedeletejob.h include/KPim/KGAPI/kgapi/drive/filefetchcontentjob.h include/KPim/KGAPI/kgapi/drive/filefetchjob.h include/KPim/KGAPI/kgapi/drive/filemodifyjob.h include/KPim/KGAPI/kgapi/drive/filesearchquery.h include/KPim/KGAPI/kgapi/drive/filetouchjob.h include/KPim/KGAPI/kgapi/drive/filetrashjob.h include/KPim/KGAPI/kgapi/drive/fileuntrashjob.h include/KPim/KGAPI/kgapi/drive/kgapidrive_export.h include/KPim/KGAPI/kgapi/drive/parentreference.h include/KPim/KGAPI/kgapi/drive/parentreferencecreatejob.h include/KPim/KGAPI/kgapi/drive/parentreferencedeletejob.h include/KPim/KGAPI/kgapi/drive/parentreferencefetchjob.h include/KPim/KGAPI/kgapi/drive/permission.h include/KPim/KGAPI/kgapi/drive/permissioncreatejob.h include/KPim/KGAPI/kgapi/drive/permissiondeletejob.h include/KPim/KGAPI/kgapi/drive/permissionfetchjob.h include/KPim/KGAPI/kgapi/drive/permissionmodifyjob.h include/KPim/KGAPI/kgapi/drive/revision.h include/KPim/KGAPI/kgapi/drive/revisiondeletejob.h include/KPim/KGAPI/kgapi/drive/revisionfetchjob.h include/KPim/KGAPI/kgapi/drive/revisionmodifyjob.h +include/KPim/KGAPI/kgapi/drive/searchquery.h +include/KPim/KGAPI/kgapi/drive/teamdrive.h +include/KPim/KGAPI/kgapi/drive/teamdrivecreatejob.h +include/KPim/KGAPI/kgapi/drive/teamdrivedeletejob.h +include/KPim/KGAPI/kgapi/drive/teamdrivefetchjob.h +include/KPim/KGAPI/kgapi/drive/teamdrivemodifyjob.h +include/KPim/KGAPI/kgapi/drive/teamdrivesearchquery.h include/KPim/KGAPI/kgapi/drive/user.h include/KPim/KGAPI/kgapi/fetchjob.h include/KPim/KGAPI/kgapi/job.h include/KPim/KGAPI/kgapi/kgapicore_export.h include/KPim/KGAPI/kgapi/latitude/kgapilatitude_export.h include/KPim/KGAPI/kgapi/latitude/latitude.h include/KPim/KGAPI/kgapi/latitude/location.h include/KPim/KGAPI/kgapi/latitude/locationcreatejob.h include/KPim/KGAPI/kgapi/latitude/locationdeletejob.h include/KPim/KGAPI/kgapi/latitude/locationfetchhistoryjob.h include/KPim/KGAPI/kgapi/latitude/locationfetchjob.h include/KPim/KGAPI/kgapi/maps/kgapimaps_export.h include/KPim/KGAPI/kgapi/maps/staticmapmarker.h include/KPim/KGAPI/kgapi/maps/staticmappath.h include/KPim/KGAPI/kgapi/maps/staticmaptilefetchjob.h include/KPim/KGAPI/kgapi/maps/staticmapurl.h include/KPim/KGAPI/kgapi/modifyjob.h include/KPim/KGAPI/kgapi/object.h include/KPim/KGAPI/kgapi/tasks/kgapitasks_export.h include/KPim/KGAPI/kgapi/tasks/task.h include/KPim/KGAPI/kgapi/tasks/taskcreatejob.h include/KPim/KGAPI/kgapi/tasks/taskdeletejob.h include/KPim/KGAPI/kgapi/tasks/taskfetchjob.h include/KPim/KGAPI/kgapi/tasks/tasklist.h include/KPim/KGAPI/kgapi/tasks/tasklistcreatejob.h include/KPim/KGAPI/kgapi/tasks/tasklistdeletejob.h include/KPim/KGAPI/kgapi/tasks/tasklistfetchjob.h include/KPim/KGAPI/kgapi/tasks/tasklistmodifyjob.h include/KPim/KGAPI/kgapi/tasks/taskmodifyjob.h include/KPim/KGAPI/kgapi/tasks/taskmovejob.h include/KPim/KGAPI/kgapi/types.h include/KPim/KGAPI/kgapi/utils.h include/KPim/kgapi_version.h lib/cmake/KPimGAPI/KPimGAPIConfig.cmake lib/cmake/KPimGAPI/KPimGAPIConfigVersion.cmake lib/cmake/KPimGAPI/KPimGAPITargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KPimGAPI/KPimGAPITargets.cmake lib/libKPimGAPIBlogger.so lib/libKPimGAPIBlogger.so.5 lib/libKPimGAPIBlogger.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKPimGAPICalendar.so lib/libKPimGAPICalendar.so.5 lib/libKPimGAPICalendar.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKPimGAPIContacts.so lib/libKPimGAPIContacts.so.5 lib/libKPimGAPIContacts.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKPimGAPICore.so lib/libKPimGAPICore.so.5 lib/libKPimGAPICore.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKPimGAPIDrive.so lib/libKPimGAPIDrive.so.5 lib/libKPimGAPIDrive.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKPimGAPILatitude.so lib/libKPimGAPILatitude.so.5 lib/libKPimGAPILatitude.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKPimGAPIMaps.so lib/libKPimGAPIMaps.so.5 lib/libKPimGAPIMaps.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKPimGAPITasks.so lib/libKPimGAPITasks.so.5 lib/libKPimGAPITasks.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_KGAPIBlogger.pri %%QT_MKSPECDIR%%/modules/qt_KGAPICalendar.pri %%QT_MKSPECDIR%%/modules/qt_KGAPIContacts.pri %%QT_MKSPECDIR%%/modules/qt_KGAPICore.pri %%QT_MKSPECDIR%%/modules/qt_KGAPIDrive.pri %%QT_MKSPECDIR%%/modules/qt_KGAPILatitude.pri %%QT_MKSPECDIR%%/modules/qt_KGAPIMaps.pri %%QT_MKSPECDIR%%/modules/qt_KGAPITasks.pri lib/sasl2/libkdexoauth2.so lib/sasl2/libkdexoauth2.so.3 lib/sasl2/libkdexoauth2.so.3.0.0 share/locale/ar/LC_MESSAGES/libkgapi_qt.qm share/locale/bs/LC_MESSAGES/libkgapi_qt.qm share/locale/ca/LC_MESSAGES/libkgapi_qt.qm share/locale/ca@valencia/LC_MESSAGES/libkgapi_qt.qm share/locale/cs/LC_MESSAGES/libkgapi_qt.qm share/locale/da/LC_MESSAGES/libkgapi_qt.qm share/locale/de/LC_MESSAGES/libkgapi_qt.qm share/locale/el/LC_MESSAGES/libkgapi_qt.qm share/locale/en_GB/LC_MESSAGES/libkgapi_qt.qm share/locale/es/LC_MESSAGES/libkgapi_qt.qm share/locale/et/LC_MESSAGES/libkgapi_qt.qm share/locale/fi/LC_MESSAGES/libkgapi_qt.qm share/locale/fr/LC_MESSAGES/libkgapi_qt.qm share/locale/ga/LC_MESSAGES/libkgapi_qt.qm share/locale/gl/LC_MESSAGES/libkgapi_qt.qm share/locale/hu/LC_MESSAGES/libkgapi_qt.qm share/locale/it/LC_MESSAGES/libkgapi_qt.qm share/locale/ja/LC_MESSAGES/libkgapi_qt.qm share/locale/kk/LC_MESSAGES/libkgapi_qt.qm share/locale/km/LC_MESSAGES/libkgapi_qt.qm share/locale/ko/LC_MESSAGES/libkgapi_qt.qm share/locale/lt/LC_MESSAGES/libkgapi_qt.qm share/locale/mr/LC_MESSAGES/libkgapi_qt.qm share/locale/nb/LC_MESSAGES/libkgapi_qt.qm share/locale/nds/LC_MESSAGES/libkgapi_qt.qm share/locale/nl/LC_MESSAGES/libkgapi_qt.qm share/locale/nn/LC_MESSAGES/libkgapi_qt.qm share/locale/pl/LC_MESSAGES/libkgapi_qt.qm share/locale/pt/LC_MESSAGES/libkgapi_qt.qm share/locale/pt_BR/LC_MESSAGES/libkgapi_qt.qm share/locale/ro/LC_MESSAGES/libkgapi_qt.qm share/locale/ru/LC_MESSAGES/libkgapi_qt.qm share/locale/sk/LC_MESSAGES/libkgapi_qt.qm share/locale/sl/LC_MESSAGES/libkgapi_qt.qm share/locale/sr/LC_MESSAGES/libkgapi_qt.qm share/locale/sv/LC_MESSAGES/libkgapi_qt.qm share/locale/tr/LC_MESSAGES/libkgapi_qt.qm share/locale/ug/LC_MESSAGES/libkgapi_qt.qm share/locale/uk/LC_MESSAGES/libkgapi_qt.qm share/locale/zh_CN/LC_MESSAGES/libkgapi_qt.qm share/locale/zh_TW/LC_MESSAGES/libkgapi_qt.qm Index: head/net/libksieve/Makefile =================================================================== --- head/net/libksieve/Makefile (revision 499276) +++ head/net/libksieve/Makefile (revision 499277) @@ -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= 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 499276) +++ head/net/libksieve/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551810935 -SHA256 (KDE/applications/18.12.3/libksieve-18.12.3.tar.xz) = ce18756940d86dff8eafd77883d202ab90e3d8273f5248ffd97627b974211754 -SIZE (KDE/applications/18.12.3/libksieve-18.12.3.tar.xz) = 550428 +TIMESTAMP = 1555094933 +SHA256 (KDE/applications/19.04.0/libksieve-19.04.0.tar.xz) = 451d71d6c6e8cdfe0ef540cbcca94dae57260563e1e435b41f7070ecb86f6312 +SIZE (KDE/applications/19.04.0/libksieve-19.04.0.tar.xz) = 550664 Index: head/net/mailcommon/Makefile =================================================================== --- head/net/mailcommon/Makefile (revision 499276) +++ head/net/mailcommon/Makefile (revision 499277) @@ -1,35 +1,34 @@ # $FreeBSD$ PORTNAME= mailcommon DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 2 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 ldap libkdepim libkleo mailimporter \ mailtransport messagelib mime pimcommon pimtextedit -USE_QT= core dbus network xml designer gui phonon4 testlib uiplugin \ +USE_QT= 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 499276) +++ head/net/mailcommon/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551810935 -SHA256 (KDE/applications/18.12.3/mailcommon-18.12.3.tar.xz) = 789d89fad58af80202dfcc41f7c7435871a60309d1d46f93cabcb37dd6ae97e1 -SIZE (KDE/applications/18.12.3/mailcommon-18.12.3.tar.xz) = 692268 +TIMESTAMP = 1555094933 +SHA256 (KDE/applications/19.04.0/mailcommon-19.04.0.tar.xz) = cd599079d290f540c83919182eab7e2d236a939a3405d1f882385822fc5d3682 +SIZE (KDE/applications/19.04.0/mailcommon-19.04.0.tar.xz) = 693264 Index: head/net/mailimporter/Makefile =================================================================== --- head/net/mailimporter/Makefile (revision 499276) +++ head/net/mailimporter/Makefile (revision 499277) @@ -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 499276) +++ head/net/mailimporter/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551810926 -SHA256 (KDE/applications/18.12.3/mailimporter-18.12.3.tar.xz) = 1c0e583fa36fc1b87154367cbe02cf1ec68d9f36d8a37bd6b220e9d9aadfcfa3 -SIZE (KDE/applications/18.12.3/mailimporter-18.12.3.tar.xz) = 540540 +TIMESTAMP = 1555094934 +SHA256 (KDE/applications/19.04.0/mailimporter-19.04.0.tar.xz) = d5649d24aca659fbb00284a70aef868e31a56a9c688a0457945ec0d31c7a22ed +SIZE (KDE/applications/19.04.0/mailimporter-19.04.0.tar.xz) = 540576 Index: head/net/messagelib/Makefile =================================================================== --- head/net/messagelib/Makefile (revision 499276) +++ head/net/messagelib/Makefile (revision 499277) @@ -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 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= 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 499276) +++ head/net/messagelib/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551810932 -SHA256 (KDE/applications/18.12.3/messagelib-18.12.3.tar.xz) = 0064a8df62a08d0dfb06af28d4aff8a645a0e8bb01d91ab23647b3d26d3af7d8 -SIZE (KDE/applications/18.12.3/messagelib-18.12.3.tar.xz) = 10428172 +TIMESTAMP = 1555094934 +SHA256 (KDE/applications/19.04.0/messagelib-19.04.0.tar.xz) = 1fb76bcd7aa9792095519c585dbb93552726e3cfe514446eb52edf5ed1517a1a +SIZE (KDE/applications/19.04.0/messagelib-19.04.0.tar.xz) = 10439780 Index: head/net/messagelib/pkg-plist =================================================================== --- head/net/messagelib/pkg-plist (revision 499276) +++ head/net/messagelib/pkg-plist (revision 499277) @@ -1,817 +1,818 @@ etc/xdg/messagelib.categories etc/xdg/messagelib.renamecategories etc/xdg/messageviewer_header_themes.knsrc include/KF5/MessageComposer/AbstractEncryptJob include/KF5/MessageComposer/AkonadiSender include/KF5/MessageComposer/AliasesExpandJob include/KF5/MessageComposer/AttachmentClipBoardJob include/KF5/MessageComposer/AttachmentControllerBase include/KF5/MessageComposer/AttachmentFromPublicKeyJob include/KF5/MessageComposer/AttachmentJob include/KF5/MessageComposer/AttachmentModel include/KF5/MessageComposer/AttachmentVcardFromAddressBookJob include/KF5/MessageComposer/Composer include/KF5/MessageComposer/ComposerLineEdit include/KF5/MessageComposer/ComposerViewBase include/KF5/MessageComposer/ContentJobBase -include/KF5/MessageComposer/DistributionListDialog include/KF5/MessageComposer/EncryptJob include/KF5/MessageComposer/FollowUpReminderSelectDateDialog include/KF5/MessageComposer/FollowupReminderCreateJob include/KF5/MessageComposer/GlobalPart include/KF5/MessageComposer/ImageScalingWidget include/KF5/MessageComposer/InfoPart include/KF5/MessageComposer/InsertTextFileJob include/KF5/MessageComposer/JobBase include/KF5/MessageComposer/Kleo_Util include/KF5/MessageComposer/MainTextJob include/KF5/MessageComposer/MessageComposerSettings include/KF5/MessageComposer/MessageFactoryNG include/KF5/MessageComposer/MessageHelper include/KF5/MessageComposer/MessagePart include/KF5/MessageComposer/MessageSender include/KF5/MessageComposer/MultipartJob include/KF5/MessageComposer/PluginActionType include/KF5/MessageComposer/PluginEditor include/KF5/MessageComposer/PluginEditorCheckBeforeSend include/KF5/MessageComposer/PluginEditorCheckBeforeSendConfigureWidget include/KF5/MessageComposer/PluginEditorCheckBeforeSendInterface include/KF5/MessageComposer/PluginEditorCheckBeforeSendManager include/KF5/MessageComposer/PluginEditorCheckBeforeSendParams include/KF5/MessageComposer/PluginEditorConvertText include/KF5/MessageComposer/PluginEditorConvertTextConfigureWidget include/KF5/MessageComposer/PluginEditorConvertTextInterface include/KF5/MessageComposer/PluginEditorConvertTextManager include/KF5/MessageComposer/PluginEditorConverterBeforeConvertingData include/KF5/MessageComposer/PluginEditorConverterInitialData +include/KF5/MessageComposer/PluginEditorGrammarCustomToolsViewInterface +include/KF5/MessageComposer/PluginEditorGrammarManager include/KF5/MessageComposer/PluginEditorInit include/KF5/MessageComposer/PluginEditorInitConfigureWidget include/KF5/MessageComposer/PluginEditorInitInterface include/KF5/MessageComposer/PluginEditorInitManager include/KF5/MessageComposer/PluginEditorInterface include/KF5/MessageComposer/PluginEditorManager include/KF5/MessageComposer/Recipient include/KF5/MessageComposer/RecipientLine include/KF5/MessageComposer/RecipientsEditor include/KF5/MessageComposer/RichTextComposerNg include/KF5/MessageComposer/RichTextComposerSignatures include/KF5/MessageComposer/SignJob include/KF5/MessageComposer/SignatureController include/KF5/MessageComposer/SinglepartJob include/KF5/MessageComposer/SkeletonMessageJob include/KF5/MessageComposer/TextPart include/KF5/MessageComposer/TransparentJob include/KF5/MessageComposer/Util include/KF5/MessageCore/AttachmentCompressJob -include/KF5/MessageCore/AttachmentFromFolderJob -include/KF5/MessageCore/AttachmentFromMimeContentJob include/KF5/MessageCore/AttachmentFromUrlBaseJob -include/KF5/MessageCore/AttachmentFromUrlJob include/KF5/MessageCore/AttachmentFromUrlUtils include/KF5/MessageCore/AttachmentLoadJob include/KF5/MessageCore/AttachmentPart include/KF5/MessageCore/AttachmentPropertiesDialog include/KF5/MessageCore/AttachmentUpdateJob include/KF5/MessageCore/ImageCollector include/KF5/MessageCore/MailingList include/KF5/MessageCore/MessageCoreSettings include/KF5/MessageCore/MessageCoreUtil include/KF5/MessageCore/NodeHelper include/KF5/MessageCore/StringUtil include/KF5/MessageList/AggregationComboBox include/KF5/MessageList/AggregationConfigButton include/KF5/MessageList/Enums include/KF5/MessageList/MessageListUtil include/KF5/MessageList/Pane include/KF5/MessageList/QuickSearchLine include/KF5/MessageList/StorageModel include/KF5/MessageList/StorageModelBase include/KF5/MessageList/ThemeComboBox include/KF5/MessageList/ThemeConfigButton include/KF5/MessageList/View include/KF5/MessageList/WidgetBase include/KF5/MessageViewer/AttachmentStrategy include/KF5/MessageViewer/BlockMailTrackingUrlInterceptor include/KF5/MessageViewer/BodyPartURLHandler include/KF5/MessageViewer/BufferedHtmlWriter include/KF5/MessageViewer/CSSHelper include/KF5/MessageViewer/CSSHelperBase include/KF5/MessageViewer/ConfigureWidget include/KF5/MessageViewer/EditorWatcher include/KF5/MessageViewer/FileHtmlWriter include/KF5/MessageViewer/GrantleeHeaderStyle include/KF5/MessageViewer/GrantleeHeaderTestStyle include/KF5/MessageViewer/HeaderStrategy include/KF5/MessageViewer/HeaderStyle include/KF5/MessageViewer/HeaderStyleInterface include/KF5/MessageViewer/HeaderStyleMenuManager include/KF5/MessageViewer/HeaderStylePlugin include/KF5/MessageViewer/HeaderStylePluginManager include/KF5/MessageViewer/HeaderStyle_Util include/KF5/MessageViewer/HtmlBlock include/KF5/MessageViewer/HtmlWriter include/KF5/MessageViewer/IconNameCache include/KF5/MessageViewer/InvitationSettings include/KF5/MessageViewer/KXFace include/KF5/MessageViewer/MailWebEnginePage include/KF5/MessageViewer/MailWebEngineView include/KF5/MessageViewer/MarkMessageReadHandler include/KF5/MessageViewer/MessagePartRenderPlugin include/KF5/MessageViewer/MessagePartRendererBase include/KF5/MessageViewer/MessagePartRendererManager +include/KF5/MessageViewer/MessageViewerConfigureSettingsPlugin +include/KF5/MessageViewer/MessageViewerConfigureSettingsPluginManager +include/KF5/MessageViewer/MessageViewerConfigureSettingsPluginWidget include/KF5/MessageViewer/MessageViewerSettings include/KF5/MessageViewer/MessageViewerUtil include/KF5/MessageViewer/MimeType include/KF5/MessageViewer/ObjectTreeEmptySource include/KF5/MessageViewer/PlainHeaderStyle include/KF5/MessageViewer/PrintingSettings include/KF5/MessageViewer/RichHeaderStrategy include/KF5/MessageViewer/ScamCheckShortUrl include/KF5/MessageViewer/ScamCheckShortUrlManager include/KF5/MessageViewer/ScamExpandUrlJob include/KF5/MessageViewer/SpamHeaderAnalyzer include/KF5/MessageViewer/Stl_Util include/KF5/MessageViewer/URLHandler include/KF5/MessageViewer/Viewer include/KF5/MessageViewer/ViewerPlugin include/KF5/MessageViewer/ViewerPluginInterface include/KF5/MessageViewer/ViewerPluginManager include/KF5/MessageViewer/ViewerPluginToolManager include/KF5/MimeTreeParser/AttachmentTemporaryFilesDirs include/KF5/MimeTreeParser/BodyPart include/KF5/MimeTreeParser/BodyPartFormatter include/KF5/MimeTreeParser/BodyPartFormatterFactory include/KF5/MimeTreeParser/Enums include/KF5/MimeTreeParser/MessagePart include/KF5/MimeTreeParser/NodeHelper include/KF5/MimeTreeParser/ObjectTreeParser include/KF5/MimeTreeParser/ObjectTreeSource include/KF5/MimeTreeParser/PartMetaData include/KF5/MimeTreeParser/PartNodeBodyPart include/KF5/MimeTreeParser/SimpleObjectTreeSource include/KF5/MimeTreeParser/Util include/KF5/TemplateParser/CustomTemplates include/KF5/TemplateParser/CustomTemplatesMenu include/KF5/TemplateParser/DefaultTemplates include/KF5/TemplateParser/TemplateConvertCommandJob include/KF5/TemplateParser/TemplateParserEmailAddressRequesterBase include/KF5/TemplateParser/TemplateParserExtractHtmlInfoResult include/KF5/TemplateParser/TemplateParserJob include/KF5/TemplateParser/TemplatesCommandMenu include/KF5/TemplateParser/TemplatesConfiguration include/KF5/TemplateParser/TemplatesInsertCommandAction include/KF5/TemplateParser/TemplatesInsertCommandPushButton include/KF5/TemplateParser/TemplatesTextEdit include/KF5/TemplateParser/TemplatesUtil include/KF5/WebEngineViewer/CheckPhishingUrlCache include/KF5/WebEngineViewer/CheckPhishingUrlJob include/KF5/WebEngineViewer/CheckPhishingUrlUtil include/KF5/WebEngineViewer/CreatePhishingUrlDataBaseJob include/KF5/WebEngineViewer/FindBarBase include/KF5/WebEngineViewer/FindBarWebEngineView include/KF5/WebEngineViewer/HashCacheManager include/KF5/WebEngineViewer/InterceptorManager include/KF5/WebEngineViewer/LocalDataBaseManager include/KF5/WebEngineViewer/NetworkPluginUrlInterceptor include/KF5/WebEngineViewer/NetworkPluginUrlInterceptorConfigureWidget include/KF5/WebEngineViewer/NetworkPluginUrlInterceptorInterface include/KF5/WebEngineViewer/NetworkUrlInterceptor include/KF5/WebEngineViewer/NetworkUrlInterceptorPluginManager include/KF5/WebEngineViewer/SearchFullHashJob include/KF5/WebEngineViewer/UpdateDataBaseInfo include/KF5/WebEngineViewer/WebEngineAccessKey include/KF5/WebEngineViewer/WebEngineExportHtmlPageJob include/KF5/WebEngineViewer/WebEngineManageScript include/KF5/WebEngineViewer/WebEnginePage include/KF5/WebEngineViewer/WebEngineScript include/KF5/WebEngineViewer/WebEngineView include/KF5/WebEngineViewer/WebHitTest include/KF5/WebEngineViewer/WebHitTestResult include/KF5/WebEngineViewer/ZoomActionMenu include/KF5/messagecomposer/abstractencryptjob.h include/KF5/messagecomposer/akonadisender.h include/KF5/messagecomposer/aliasesexpandjob.h +include/KF5/messagecomposer/attachmentclipboardjob.h include/KF5/messagecomposer/attachmentcontrollerbase.h include/KF5/messagecomposer/attachmentfrompublickeyjob.h -include/KF5/messagecomposer/attachmentclipboardjob.h include/KF5/messagecomposer/attachmentjob.h include/KF5/messagecomposer/attachmentmodel.h include/KF5/messagecomposer/attachmentvcardfromaddressbookjob.h include/KF5/messagecomposer/composer.h include/KF5/messagecomposer/composerlineedit.h include/KF5/messagecomposer/composerviewbase.h include/KF5/messagecomposer/contentjobbase.h -include/KF5/messagecomposer/distributionlistdialog.h include/KF5/messagecomposer/encryptjob.h include/KF5/messagecomposer/followupremindercreatejob.h include/KF5/messagecomposer/followupreminderselectdatedialog.h include/KF5/messagecomposer/globalpart.h include/KF5/messagecomposer/imagescalingwidget.h include/KF5/messagecomposer/infopart.h include/KF5/messagecomposer/inserttextfilejob.h include/KF5/messagecomposer/jobbase.h include/KF5/messagecomposer/kleo_util.h include/KF5/messagecomposer/maintextjob.h include/KF5/messagecomposer/messagecomposer_debug.h include/KF5/messagecomposer/messagecomposer_export.h include/KF5/messagecomposer/messagecomposersettings.h include/KF5/messagecomposer/messagecomposersettings_base.h include/KF5/messagecomposer/messagefactoryng.h include/KF5/messagecomposer/messagehelper.h include/KF5/messagecomposer/messagepart.h include/KF5/messagecomposer/messagesender.h include/KF5/messagecomposer/multipartjob.h include/KF5/messagecomposer/pluginactiontype.h include/KF5/messagecomposer/plugineditor.h include/KF5/messagecomposer/plugineditorcheckbeforesend.h include/KF5/messagecomposer/plugineditorcheckbeforesendconfigurewidget.h include/KF5/messagecomposer/plugineditorcheckbeforesendinterface.h include/KF5/messagecomposer/plugineditorcheckbeforesendmanager.h include/KF5/messagecomposer/plugineditorcheckbeforesendparams.h include/KF5/messagecomposer/plugineditorconverterbeforeconvertingdata.h include/KF5/messagecomposer/plugineditorconverterinitialdata.h include/KF5/messagecomposer/plugineditorconverttext.h include/KF5/messagecomposer/plugineditorconverttextconfigurewidget.h include/KF5/messagecomposer/plugineditorconverttextinterface.h include/KF5/messagecomposer/plugineditorconverttextmanager.h +include/KF5/messagecomposer/plugineditorgrammarcustomtoolsviewinterface.h +include/KF5/messagecomposer/plugineditorgrammarmanager.h include/KF5/messagecomposer/plugineditorinit.h include/KF5/messagecomposer/plugineditorinitconfigurewidget.h include/KF5/messagecomposer/plugineditorinitinterface.h include/KF5/messagecomposer/plugineditorinitmanager.h include/KF5/messagecomposer/plugineditorinterface.h include/KF5/messagecomposer/plugineditormanager.h include/KF5/messagecomposer/recipient.h include/KF5/messagecomposer/recipientline.h include/KF5/messagecomposer/recipientseditor.h include/KF5/messagecomposer/richtextcomposerng.h include/KF5/messagecomposer/richtextcomposersignatures.h include/KF5/messagecomposer/signaturecontroller.h include/KF5/messagecomposer/signjob.h include/KF5/messagecomposer/singlepartjob.h include/KF5/messagecomposer/skeletonmessagejob.h include/KF5/messagecomposer/textpart.h include/KF5/messagecomposer/transparentjob.h include/KF5/messagecomposer/util.h include/KF5/messagecomposer_version.h include/KF5/messagecore/attachmentcompressjob.h -include/KF5/messagecore/attachmentfromfolderjob.h -include/KF5/messagecore/attachmentfrommimecontentjob.h include/KF5/messagecore/attachmentfromurlbasejob.h -include/KF5/messagecore/attachmentfromurljob.h include/KF5/messagecore/attachmentfromurlutils.h include/KF5/messagecore/attachmentloadjob.h include/KF5/messagecore/attachmentpart.h include/KF5/messagecore/attachmentpropertiesdialog.h include/KF5/messagecore/attachmentupdatejob.h include/KF5/messagecore/globalsettings_messagecore.h include/KF5/messagecore/imagecollector.h include/KF5/messagecore/mailinglist.h include/KF5/messagecore/messagecore_export.h include/KF5/messagecore/messagecoresettings.h include/KF5/messagecore/messagecoreutil.h include/KF5/messagecore/nodehelper.h include/KF5/messagecore/stringutil.h include/KF5/messagecore_version.h include/KF5/messagelist/aggregationcombobox.h include/KF5/messagelist/aggregationconfigbutton.h include/KF5/messagelist/enums.h include/KF5/messagelist/messagelist_export.h include/KF5/messagelist/messagelistsettings.h include/KF5/messagelist/messagelistutil.h include/KF5/messagelist/pane.h include/KF5/messagelist/quicksearchline.h include/KF5/messagelist/storagemodel.h include/KF5/messagelist/storagemodelbase.h include/KF5/messagelist/themecombobox.h include/KF5/messagelist/themeconfigbutton.h include/KF5/messagelist/view.h include/KF5/messagelist/widgetbase.h include/KF5/messagelist_version.h include/KF5/messageviewer/attachmentstrategy.h include/KF5/messageviewer/blockmailtrackingurlinterceptor.h include/KF5/messageviewer/bodyparturlhandler.h include/KF5/messageviewer/bufferedhtmlwriter.h include/KF5/messageviewer/config-messageviewer.h include/KF5/messageviewer/configurewidget.h include/KF5/messageviewer/csshelper.h include/KF5/messageviewer/csshelperbase.h include/KF5/messageviewer/editorwatcher.h include/KF5/messageviewer/filehtmlwriter.h include/KF5/messageviewer/globalsettings_messageviewer.h include/KF5/messageviewer/grantleeheaderstyle.h include/KF5/messageviewer/grantleeheaderteststyle.h include/KF5/messageviewer/headerstrategy.h include/KF5/messageviewer/headerstyle.h include/KF5/messageviewer/headerstyle_util.h include/KF5/messageviewer/headerstyleinterface.h include/KF5/messageviewer/headerstylemenumanager.h include/KF5/messageviewer/headerstyleplugin.h include/KF5/messageviewer/headerstylepluginmanager.h include/KF5/messageviewer/htmlblock.h include/KF5/messageviewer/htmlwriter.h include/KF5/messageviewer/iconnamecache.h include/KF5/messageviewer/invitationsettings.h include/KF5/messageviewer/kxface.h include/KF5/messageviewer/mailwebenginepage.h include/KF5/messageviewer/mailwebengineview.h include/KF5/messageviewer/markmessagereadhandler.h include/KF5/messageviewer/messagepartrendererbase.h include/KF5/messageviewer/messagepartrenderermanager.h include/KF5/messageviewer/messagepartrenderplugin.h include/KF5/messageviewer/messageviewer_debug.h include/KF5/messageviewer/messageviewer_export.h +include/KF5/messageviewer/messageviewerconfiguresettingsplugin.h +include/KF5/messageviewer/messageviewerconfiguresettingspluginmanager.h +include/KF5/messageviewer/messageviewerconfiguresettingspluginwidget.h include/KF5/messageviewer/messageviewersettings.h include/KF5/messageviewer/messageviewerutil.h include/KF5/messageviewer/mimetype.h include/KF5/messageviewer/objecttreeemptysource.h include/KF5/messageviewer/plainheaderstyle.h include/KF5/messageviewer/printingsettings.h include/KF5/messageviewer/richheaderstrategy.h include/KF5/messageviewer/scamcheckshorturl.h include/KF5/messageviewer/scamcheckshorturlmanager.h include/KF5/messageviewer/scamexpandurljob.h include/KF5/messageviewer/spamheaderanalyzer.h include/KF5/messageviewer/stl_util.h include/KF5/messageviewer/urlhandler.h include/KF5/messageviewer/viewer.h include/KF5/messageviewer/viewerplugin.h include/KF5/messageviewer/viewerplugininterface.h include/KF5/messageviewer/viewerpluginmanager.h include/KF5/messageviewer/viewerplugintoolmanager.h include/KF5/messageviewer_version.h include/KF5/mimetreeparser/attachmenttemporaryfilesdirs.h include/KF5/mimetreeparser/bodypart.h include/KF5/mimetreeparser/bodypartformatter.h include/KF5/mimetreeparser/bodypartformatterfactory.h include/KF5/mimetreeparser/enums.h include/KF5/mimetreeparser/messagepart.h -include/KF5/mimetreeparser/mimetreeparser_debug.h include/KF5/mimetreeparser/mimetreeparser_export.h include/KF5/mimetreeparser/nodehelper.h include/KF5/mimetreeparser/objecttreeparser.h include/KF5/mimetreeparser/objecttreesource.h include/KF5/mimetreeparser/partmetadata.h include/KF5/mimetreeparser/partnodebodypart.h include/KF5/mimetreeparser/simpleobjecttreesource.h include/KF5/mimetreeparser/util.h include/KF5/mimetreeparser_version.h include/KF5/templateparser/customtemplates.h include/KF5/templateparser/customtemplates_kfg.h include/KF5/templateparser/customtemplatesmenu.h include/KF5/templateparser/defaulttemplates.h include/KF5/templateparser/globalsettings_templateparser.h include/KF5/templateparser/templateconvertcommandjob.h include/KF5/templateparser/templateparser_export.h include/KF5/templateparser/templateparseremailaddressrequesterbase.h include/KF5/templateparser/templateparserextracthtmlinforesult.h include/KF5/templateparser/templateparserjob.h include/KF5/templateparser/templatescommandmenu.h include/KF5/templateparser/templatesconfiguration.h include/KF5/templateparser/templatesconfiguration_kfg.h include/KF5/templateparser/templatesinsertcommandaction.h include/KF5/templateparser/templatesinsertcommandpushbutton.h include/KF5/templateparser/templatestextedit.h include/KF5/templateparser/templatesutil.h include/KF5/templateparser/ui_templatesconfiguration_base.h include/KF5/templateparser_version.h include/KF5/webengineviewer/checkphishingurlcache.h include/KF5/webengineviewer/checkphishingurljob.h include/KF5/webengineviewer/checkphishingurlutil.h include/KF5/webengineviewer/createphishingurldatabasejob.h include/KF5/webengineviewer/findbarbase.h include/KF5/webengineviewer/findbarwebengineview.h include/KF5/webengineviewer/hashcachemanager.h include/KF5/webengineviewer/interceptormanager.h include/KF5/webengineviewer/localdatabasemanager.h include/KF5/webengineviewer/networkpluginurlinterceptor.h include/KF5/webengineviewer/networkpluginurlinterceptorconfigurewidget.h include/KF5/webengineviewer/networkpluginurlinterceptorinterface.h include/KF5/webengineviewer/networkurlinterceptor.h include/KF5/webengineviewer/networkurlinterceptorpluginmanager.h include/KF5/webengineviewer/searchfullhashjob.h include/KF5/webengineviewer/updatedatabaseinfo.h include/KF5/webengineviewer/webengineaccesskey.h include/KF5/webengineviewer/webengineexporthtmlpagejob.h include/KF5/webengineviewer/webenginemanagescript.h include/KF5/webengineviewer/webenginepage.h include/KF5/webengineviewer/webenginescript.h include/KF5/webengineviewer/webengineview.h include/KF5/webengineviewer/webengineviewer_export.h include/KF5/webengineviewer/webhittest.h include/KF5/webengineviewer/webhittestresult.h include/KF5/webengineviewer/zoomactionmenu.h include/KF5/webengineviewer_version.h lib/cmake/KF5MessageComposer/KF5MessageComposerConfig.cmake lib/cmake/KF5MessageComposer/KF5MessageComposerConfigVersion.cmake lib/cmake/KF5MessageComposer/KF5MessageComposerTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5MessageComposer/KF5MessageComposerTargets.cmake lib/cmake/KF5MessageCore/KF5MessageCoreConfig.cmake lib/cmake/KF5MessageCore/KF5MessageCoreConfigVersion.cmake lib/cmake/KF5MessageCore/KF5MessageCoreTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5MessageCore/KF5MessageCoreTargets.cmake lib/cmake/KF5MessageList/KF5MessageListConfig.cmake lib/cmake/KF5MessageList/KF5MessageListConfigVersion.cmake lib/cmake/KF5MessageList/KF5MessageListTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5MessageList/KF5MessageListTargets.cmake lib/cmake/KF5MessageViewer/KF5MessageViewerConfig.cmake lib/cmake/KF5MessageViewer/KF5MessageViewerConfigVersion.cmake lib/cmake/KF5MessageViewer/KF5MessageViewerTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5MessageViewer/KF5MessageViewerTargets.cmake lib/cmake/KF5MimeTreeParser/KF5MimeTreeParserConfig.cmake lib/cmake/KF5MimeTreeParser/KF5MimeTreeParserConfigVersion.cmake lib/cmake/KF5MimeTreeParser/KF5MimeTreeParserTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5MimeTreeParser/KF5MimeTreeParserTargets.cmake lib/cmake/KF5TemplateParser/KF5TemplateParserConfig.cmake lib/cmake/KF5TemplateParser/KF5TemplateParserConfigVersion.cmake lib/cmake/KF5TemplateParser/KF5TemplateParserTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5TemplateParser/KF5TemplateParserTargets.cmake lib/cmake/KF5WebEngineViewer/KF5WebEngineViewerConfig.cmake lib/cmake/KF5WebEngineViewer/KF5WebEngineViewerConfigVersion.cmake lib/cmake/KF5WebEngineViewer/KF5WebEngineViewerTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5WebEngineViewer/KF5WebEngineViewerTargets.cmake lib/libKF5MessageComposer.so lib/libKF5MessageComposer.so.5 lib/libKF5MessageComposer.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKF5MessageCore.so lib/libKF5MessageCore.so.5 lib/libKF5MessageCore.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKF5MessageList.so lib/libKF5MessageList.so.5 lib/libKF5MessageList.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKF5MessageViewer.so lib/libKF5MessageViewer.so.5 lib/libKF5MessageViewer.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKF5MimeTreeParser.so lib/libKF5MimeTreeParser.so.5 lib/libKF5MimeTreeParser.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKF5TemplateParser.so lib/libKF5TemplateParser.so.5 lib/libKF5TemplateParser.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKF5WebEngineViewer.so lib/libKF5WebEngineViewer.so.5 lib/libKF5WebEngineViewer.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_MessageComposer.pri %%QT_MKSPECDIR%%/modules/qt_MessageCore.pri %%QT_MKSPECDIR%%/modules/qt_MessageList.pri %%QT_MKSPECDIR%%/modules/qt_MessageViewer.pri %%QT_MKSPECDIR%%/modules/qt_MimeTreeParser.pri %%QT_MKSPECDIR%%/modules/qt_TemplateParser.pri %%QT_MKSPECDIR%%/modules/qt_WebEngineViewer.pri %%QT_PLUGINDIR%%/messageviewer/grantlee/5.0/messageviewer_grantlee_extension.so %%QT_PLUGINDIR%%/messageviewer/messageviewer_defaultgrantleeheaderstyleplugin.so share/config.kcfg/customtemplates_kfg.kcfg share/config.kcfg/templatesconfiguration_kfg.kcfg share/kconf_update/messageviewer.upd share/knotifications5/messageviewer.notifyrc share/libmessageviewer/pics/enterprise_bottom.png share/libmessageviewer/pics/enterprise_bottom_left.png share/libmessageviewer/pics/enterprise_bottom_right.png share/libmessageviewer/pics/enterprise_icon.png share/libmessageviewer/pics/enterprise_left.png share/libmessageviewer/pics/enterprise_right.png share/libmessageviewer/pics/enterprise_s_left.png share/libmessageviewer/pics/enterprise_s_right.png share/libmessageviewer/pics/enterprise_sbar.png share/libmessageviewer/pics/enterprise_sp_right.png share/libmessageviewer/pics/enterprise_sw.png share/libmessageviewer/pics/enterprise_top.png share/libmessageviewer/pics/enterprise_top_left.png share/libmessageviewer/pics/enterprise_top_right.png share/libmessageviewer/pics/enterprise_w.png share/libmessageviewer/pics/quicklistClosed.png share/libmessageviewer/pics/quicklistOpened.png share/libmessageviewer/pics/quotecollapse.png share/libmessageviewer/pics/quoteexpand.png share/locale/ar/LC_MESSAGES/libmessagecomposer.mo share/locale/ar/LC_MESSAGES/libmessagecore.mo share/locale/ar/LC_MESSAGES/libmessagelist.mo share/locale/ar/LC_MESSAGES/libmessageviewer.mo share/locale/ar/LC_MESSAGES/libmimetreeparser.mo share/locale/ar/LC_MESSAGES/libtemplateparser.mo share/locale/ar/LC_MESSAGES/libwebengineviewer.mo share/locale/bg/LC_MESSAGES/libmessagelist.mo share/locale/bg/LC_MESSAGES/libmessageviewer.mo share/locale/bg/LC_MESSAGES/libmimetreeparser.mo share/locale/bs/LC_MESSAGES/libmessagecomposer.mo share/locale/bs/LC_MESSAGES/libmessagecore.mo share/locale/bs/LC_MESSAGES/libmessagelist.mo share/locale/bs/LC_MESSAGES/libmessageviewer.mo share/locale/bs/LC_MESSAGES/libmimetreeparser.mo share/locale/bs/LC_MESSAGES/libtemplateparser.mo share/locale/ca/LC_MESSAGES/libmessagecomposer.mo share/locale/ca/LC_MESSAGES/libmessagecore.mo share/locale/ca/LC_MESSAGES/libmessagelist.mo share/locale/ca/LC_MESSAGES/libmessageviewer.mo share/locale/ca/LC_MESSAGES/libmimetreeparser.mo share/locale/ca/LC_MESSAGES/libtemplateparser.mo share/locale/ca/LC_MESSAGES/libwebengineviewer.mo share/locale/ca@valencia/LC_MESSAGES/libmessagecomposer.mo share/locale/ca@valencia/LC_MESSAGES/libmessagecore.mo share/locale/ca@valencia/LC_MESSAGES/libmessagelist.mo share/locale/ca@valencia/LC_MESSAGES/libmessageviewer.mo share/locale/ca@valencia/LC_MESSAGES/libmimetreeparser.mo share/locale/ca@valencia/LC_MESSAGES/libtemplateparser.mo share/locale/ca@valencia/LC_MESSAGES/libwebengineviewer.mo share/locale/cs/LC_MESSAGES/libmessagecomposer.mo share/locale/cs/LC_MESSAGES/libmessagecore.mo share/locale/cs/LC_MESSAGES/libmessagelist.mo share/locale/cs/LC_MESSAGES/libmessageviewer.mo share/locale/cs/LC_MESSAGES/libmimetreeparser.mo share/locale/cs/LC_MESSAGES/libtemplateparser.mo share/locale/cs/LC_MESSAGES/libwebengineviewer.mo share/locale/da/LC_MESSAGES/libmessagecomposer.mo share/locale/da/LC_MESSAGES/libmessagecore.mo share/locale/da/LC_MESSAGES/libmessagelist.mo share/locale/da/LC_MESSAGES/libmessageviewer.mo share/locale/da/LC_MESSAGES/libmimetreeparser.mo share/locale/da/LC_MESSAGES/libtemplateparser.mo share/locale/da/LC_MESSAGES/libwebengineviewer.mo share/locale/de/LC_MESSAGES/libmessagecomposer.mo share/locale/de/LC_MESSAGES/libmessagecore.mo share/locale/de/LC_MESSAGES/libmessagelist.mo share/locale/de/LC_MESSAGES/libmessageviewer.mo share/locale/de/LC_MESSAGES/libmimetreeparser.mo share/locale/de/LC_MESSAGES/libtemplateparser.mo share/locale/de/LC_MESSAGES/libwebengineviewer.mo share/locale/el/LC_MESSAGES/libmessagecomposer.mo share/locale/el/LC_MESSAGES/libmessagecore.mo share/locale/el/LC_MESSAGES/libmessagelist.mo share/locale/el/LC_MESSAGES/libmessageviewer.mo share/locale/el/LC_MESSAGES/libmimetreeparser.mo share/locale/el/LC_MESSAGES/libtemplateparser.mo share/locale/en_GB/LC_MESSAGES/libmessagecomposer.mo share/locale/en_GB/LC_MESSAGES/libmessagecore.mo share/locale/en_GB/LC_MESSAGES/libmessagelist.mo share/locale/en_GB/LC_MESSAGES/libmessageviewer.mo share/locale/en_GB/LC_MESSAGES/libmimetreeparser.mo share/locale/en_GB/LC_MESSAGES/libtemplateparser.mo share/locale/en_GB/LC_MESSAGES/libwebengineviewer.mo share/locale/eo/LC_MESSAGES/libmessagecomposer.mo share/locale/eo/LC_MESSAGES/libmessagecore.mo share/locale/eo/LC_MESSAGES/libmessagelist.mo share/locale/eo/LC_MESSAGES/libmessageviewer.mo share/locale/eo/LC_MESSAGES/libmimetreeparser.mo share/locale/eo/LC_MESSAGES/libtemplateparser.mo share/locale/es/LC_MESSAGES/libmessagecomposer.mo share/locale/es/LC_MESSAGES/libmessagecore.mo share/locale/es/LC_MESSAGES/libmessagelist.mo share/locale/es/LC_MESSAGES/libmessageviewer.mo share/locale/es/LC_MESSAGES/libmimetreeparser.mo share/locale/es/LC_MESSAGES/libtemplateparser.mo share/locale/es/LC_MESSAGES/libwebengineviewer.mo share/locale/et/LC_MESSAGES/libmessagecomposer.mo share/locale/et/LC_MESSAGES/libmessagecore.mo share/locale/et/LC_MESSAGES/libmessagelist.mo share/locale/et/LC_MESSAGES/libmessageviewer.mo share/locale/et/LC_MESSAGES/libmimetreeparser.mo share/locale/et/LC_MESSAGES/libtemplateparser.mo share/locale/et/LC_MESSAGES/libwebengineviewer.mo share/locale/eu/LC_MESSAGES/libmessagelist.mo share/locale/eu/LC_MESSAGES/libmessageviewer.mo share/locale/eu/LC_MESSAGES/libmimetreeparser.mo share/locale/fa/LC_MESSAGES/libmessagelist.mo share/locale/fa/LC_MESSAGES/libmessageviewer.mo share/locale/fa/LC_MESSAGES/libmimetreeparser.mo share/locale/fi/LC_MESSAGES/libmessagecomposer.mo share/locale/fi/LC_MESSAGES/libmessagecore.mo share/locale/fi/LC_MESSAGES/libmessagelist.mo share/locale/fi/LC_MESSAGES/libmessageviewer.mo share/locale/fi/LC_MESSAGES/libmimetreeparser.mo share/locale/fi/LC_MESSAGES/libtemplateparser.mo share/locale/fi/LC_MESSAGES/libwebengineviewer.mo share/locale/fr/LC_MESSAGES/libmessagecomposer.mo share/locale/fr/LC_MESSAGES/libmessagecore.mo share/locale/fr/LC_MESSAGES/libmessagelist.mo share/locale/fr/LC_MESSAGES/libmessageviewer.mo share/locale/fr/LC_MESSAGES/libmimetreeparser.mo share/locale/fr/LC_MESSAGES/libtemplateparser.mo share/locale/fr/LC_MESSAGES/libwebengineviewer.mo share/locale/ga/LC_MESSAGES/libmessagecomposer.mo share/locale/ga/LC_MESSAGES/libmessagecore.mo share/locale/ga/LC_MESSAGES/libmessagelist.mo share/locale/ga/LC_MESSAGES/libmessageviewer.mo share/locale/ga/LC_MESSAGES/libmimetreeparser.mo share/locale/ga/LC_MESSAGES/libtemplateparser.mo share/locale/gl/LC_MESSAGES/libmessagecomposer.mo share/locale/gl/LC_MESSAGES/libmessagecore.mo share/locale/gl/LC_MESSAGES/libmessagelist.mo share/locale/gl/LC_MESSAGES/libmessageviewer.mo share/locale/gl/LC_MESSAGES/libmimetreeparser.mo share/locale/gl/LC_MESSAGES/libtemplateparser.mo share/locale/gl/LC_MESSAGES/libwebengineviewer.mo share/locale/he/LC_MESSAGES/libmessagelist.mo share/locale/he/LC_MESSAGES/libmessageviewer.mo share/locale/he/LC_MESSAGES/libmimetreeparser.mo share/locale/hi/LC_MESSAGES/libmessagelist.mo share/locale/hi/LC_MESSAGES/libmessageviewer.mo share/locale/hi/LC_MESSAGES/libmimetreeparser.mo share/locale/hr/LC_MESSAGES/libmessagelist.mo share/locale/hr/LC_MESSAGES/libmessageviewer.mo share/locale/hr/LC_MESSAGES/libmimetreeparser.mo share/locale/hu/LC_MESSAGES/libmessagecomposer.mo share/locale/hu/LC_MESSAGES/libmessagecore.mo share/locale/hu/LC_MESSAGES/libmessagelist.mo share/locale/hu/LC_MESSAGES/libmessageviewer.mo share/locale/hu/LC_MESSAGES/libmimetreeparser.mo share/locale/hu/LC_MESSAGES/libtemplateparser.mo share/locale/ia/LC_MESSAGES/libmessagecomposer.mo share/locale/ia/LC_MESSAGES/libmessagecore.mo share/locale/ia/LC_MESSAGES/libmessagelist.mo share/locale/ia/LC_MESSAGES/libmessageviewer.mo share/locale/ia/LC_MESSAGES/libmimetreeparser.mo share/locale/ia/LC_MESSAGES/libtemplateparser.mo share/locale/is/LC_MESSAGES/libmessagelist.mo share/locale/is/LC_MESSAGES/libmessageviewer.mo share/locale/is/LC_MESSAGES/libmimetreeparser.mo share/locale/it/LC_MESSAGES/libmessagecomposer.mo share/locale/it/LC_MESSAGES/libmessagecore.mo share/locale/it/LC_MESSAGES/libmessagelist.mo share/locale/it/LC_MESSAGES/libmessageviewer.mo share/locale/it/LC_MESSAGES/libmimetreeparser.mo share/locale/it/LC_MESSAGES/libtemplateparser.mo share/locale/it/LC_MESSAGES/libwebengineviewer.mo share/locale/ja/LC_MESSAGES/libmessagecomposer.mo share/locale/ja/LC_MESSAGES/libmessagecore.mo share/locale/ja/LC_MESSAGES/libmessagelist.mo share/locale/ja/LC_MESSAGES/libmessageviewer.mo share/locale/ja/LC_MESSAGES/libmimetreeparser.mo share/locale/ja/LC_MESSAGES/libtemplateparser.mo share/locale/ja/LC_MESSAGES/libwebengineviewer.mo share/locale/kk/LC_MESSAGES/libmessagecomposer.mo share/locale/kk/LC_MESSAGES/libmessagecore.mo share/locale/kk/LC_MESSAGES/libmessagelist.mo share/locale/kk/LC_MESSAGES/libmessageviewer.mo share/locale/kk/LC_MESSAGES/libmimetreeparser.mo share/locale/kk/LC_MESSAGES/libtemplateparser.mo share/locale/km/LC_MESSAGES/libmessagecore.mo share/locale/km/LC_MESSAGES/libmessagelist.mo share/locale/km/LC_MESSAGES/libmessageviewer.mo share/locale/km/LC_MESSAGES/libmimetreeparser.mo share/locale/km/LC_MESSAGES/libtemplateparser.mo share/locale/ko/LC_MESSAGES/libmessagecomposer.mo share/locale/ko/LC_MESSAGES/libmessagecore.mo share/locale/ko/LC_MESSAGES/libmessagelist.mo share/locale/ko/LC_MESSAGES/libmessageviewer.mo share/locale/ko/LC_MESSAGES/libmimetreeparser.mo share/locale/ko/LC_MESSAGES/libtemplateparser.mo share/locale/ko/LC_MESSAGES/libwebengineviewer.mo share/locale/lt/LC_MESSAGES/libmessagecomposer.mo share/locale/lt/LC_MESSAGES/libmessagecore.mo share/locale/lt/LC_MESSAGES/libmessagelist.mo share/locale/lt/LC_MESSAGES/libmessageviewer.mo share/locale/lt/LC_MESSAGES/libmimetreeparser.mo share/locale/lt/LC_MESSAGES/libtemplateparser.mo share/locale/lv/LC_MESSAGES/libmessagecore.mo share/locale/lv/LC_MESSAGES/libmessagelist.mo share/locale/lv/LC_MESSAGES/libmessageviewer.mo share/locale/lv/LC_MESSAGES/libmimetreeparser.mo share/locale/mr/LC_MESSAGES/libmessagecomposer.mo share/locale/mr/LC_MESSAGES/libmessagecore.mo share/locale/mr/LC_MESSAGES/libmessagelist.mo share/locale/mr/LC_MESSAGES/libmessageviewer.mo share/locale/mr/LC_MESSAGES/libmimetreeparser.mo share/locale/mr/LC_MESSAGES/libtemplateparser.mo share/locale/nb/LC_MESSAGES/libmessagecomposer.mo share/locale/nb/LC_MESSAGES/libmessagecore.mo share/locale/nb/LC_MESSAGES/libmessagelist.mo share/locale/nb/LC_MESSAGES/libmessageviewer.mo share/locale/nb/LC_MESSAGES/libmimetreeparser.mo share/locale/nb/LC_MESSAGES/libtemplateparser.mo share/locale/nds/LC_MESSAGES/libmessagecomposer.mo share/locale/nds/LC_MESSAGES/libmessagecore.mo share/locale/nds/LC_MESSAGES/libmessagelist.mo share/locale/nds/LC_MESSAGES/libmessageviewer.mo share/locale/nds/LC_MESSAGES/libmimetreeparser.mo share/locale/nds/LC_MESSAGES/libtemplateparser.mo share/locale/nl/LC_MESSAGES/libmessagecomposer.mo share/locale/nl/LC_MESSAGES/libmessagecore.mo share/locale/nl/LC_MESSAGES/libmessagelist.mo share/locale/nl/LC_MESSAGES/libmessageviewer.mo share/locale/nl/LC_MESSAGES/libmimetreeparser.mo share/locale/nl/LC_MESSAGES/libtemplateparser.mo share/locale/nl/LC_MESSAGES/libwebengineviewer.mo share/locale/nn/LC_MESSAGES/libmessagecomposer.mo share/locale/nn/LC_MESSAGES/libmessagecore.mo share/locale/nn/LC_MESSAGES/libmessagelist.mo share/locale/nn/LC_MESSAGES/libmessageviewer.mo share/locale/nn/LC_MESSAGES/libmimetreeparser.mo share/locale/pa/LC_MESSAGES/libmessagecomposer.mo share/locale/pa/LC_MESSAGES/libmessagecore.mo share/locale/pa/LC_MESSAGES/libmessagelist.mo share/locale/pa/LC_MESSAGES/libmessageviewer.mo share/locale/pa/LC_MESSAGES/libmimetreeparser.mo share/locale/pa/LC_MESSAGES/libtemplateparser.mo share/locale/pl/LC_MESSAGES/libmessagecomposer.mo share/locale/pl/LC_MESSAGES/libmessagecore.mo share/locale/pl/LC_MESSAGES/libmessagelist.mo share/locale/pl/LC_MESSAGES/libmessageviewer.mo share/locale/pl/LC_MESSAGES/libmimetreeparser.mo share/locale/pl/LC_MESSAGES/libtemplateparser.mo share/locale/pl/LC_MESSAGES/libwebengineviewer.mo share/locale/pt/LC_MESSAGES/libmessagecomposer.mo share/locale/pt/LC_MESSAGES/libmessagecore.mo share/locale/pt/LC_MESSAGES/libmessagelist.mo share/locale/pt/LC_MESSAGES/libmessageviewer.mo share/locale/pt/LC_MESSAGES/libmimetreeparser.mo share/locale/pt/LC_MESSAGES/libtemplateparser.mo share/locale/pt/LC_MESSAGES/libwebengineviewer.mo share/locale/pt_BR/LC_MESSAGES/libmessagecomposer.mo share/locale/pt_BR/LC_MESSAGES/libmessagecore.mo share/locale/pt_BR/LC_MESSAGES/libmessagelist.mo share/locale/pt_BR/LC_MESSAGES/libmessageviewer.mo share/locale/pt_BR/LC_MESSAGES/libmimetreeparser.mo share/locale/pt_BR/LC_MESSAGES/libtemplateparser.mo share/locale/pt_BR/LC_MESSAGES/libwebengineviewer.mo share/locale/ro/LC_MESSAGES/libmessagecomposer.mo share/locale/ro/LC_MESSAGES/libmessagecore.mo share/locale/ro/LC_MESSAGES/libmessagelist.mo share/locale/ro/LC_MESSAGES/libmessageviewer.mo share/locale/ro/LC_MESSAGES/libmimetreeparser.mo share/locale/ro/LC_MESSAGES/libtemplateparser.mo share/locale/ru/LC_MESSAGES/libmessagecomposer.mo share/locale/ru/LC_MESSAGES/libmessagecore.mo share/locale/ru/LC_MESSAGES/libmessagelist.mo share/locale/ru/LC_MESSAGES/libmessageviewer.mo share/locale/ru/LC_MESSAGES/libmimetreeparser.mo share/locale/ru/LC_MESSAGES/libtemplateparser.mo share/locale/ru/LC_MESSAGES/libwebengineviewer.mo share/locale/sk/LC_MESSAGES/libmessagecomposer.mo share/locale/sk/LC_MESSAGES/libmessagecore.mo share/locale/sk/LC_MESSAGES/libmessagelist.mo share/locale/sk/LC_MESSAGES/libmessageviewer.mo share/locale/sk/LC_MESSAGES/libmimetreeparser.mo share/locale/sk/LC_MESSAGES/libtemplateparser.mo share/locale/sk/LC_MESSAGES/libwebengineviewer.mo share/locale/sl/LC_MESSAGES/libmessagecomposer.mo share/locale/sl/LC_MESSAGES/libmessagecore.mo share/locale/sl/LC_MESSAGES/libmessagelist.mo share/locale/sl/LC_MESSAGES/libmessageviewer.mo share/locale/sl/LC_MESSAGES/libmimetreeparser.mo share/locale/sl/LC_MESSAGES/libtemplateparser.mo share/locale/sl/LC_MESSAGES/libwebengineviewer.mo share/locale/sr/LC_MESSAGES/libmessagecomposer.mo share/locale/sr/LC_MESSAGES/libmessagecore.mo share/locale/sr/LC_MESSAGES/libmessagelist.mo share/locale/sr/LC_MESSAGES/libmessageviewer.mo share/locale/sr/LC_MESSAGES/libmimetreeparser.mo share/locale/sr/LC_MESSAGES/libtemplateparser.mo share/locale/sr/LC_MESSAGES/libwebengineviewer.mo share/locale/sv/LC_MESSAGES/libmessagecomposer.mo share/locale/sv/LC_MESSAGES/libmessagecore.mo share/locale/sv/LC_MESSAGES/libmessagelist.mo share/locale/sv/LC_MESSAGES/libmessageviewer.mo share/locale/sv/LC_MESSAGES/libmimetreeparser.mo share/locale/sv/LC_MESSAGES/libtemplateparser.mo share/locale/sv/LC_MESSAGES/libwebengineviewer.mo share/locale/tr/LC_MESSAGES/libmessagecomposer.mo share/locale/tr/LC_MESSAGES/libmessagecore.mo share/locale/tr/LC_MESSAGES/libmessagelist.mo share/locale/tr/LC_MESSAGES/libmessageviewer.mo share/locale/tr/LC_MESSAGES/libmimetreeparser.mo share/locale/tr/LC_MESSAGES/libtemplateparser.mo share/locale/tr/LC_MESSAGES/libwebengineviewer.mo share/locale/ug/LC_MESSAGES/libmessagecomposer.mo share/locale/ug/LC_MESSAGES/libmessagecore.mo share/locale/ug/LC_MESSAGES/libmessagelist.mo share/locale/ug/LC_MESSAGES/libmessageviewer.mo share/locale/ug/LC_MESSAGES/libmimetreeparser.mo share/locale/ug/LC_MESSAGES/libtemplateparser.mo share/locale/uk/LC_MESSAGES/libmessagecomposer.mo share/locale/uk/LC_MESSAGES/libmessagecore.mo share/locale/uk/LC_MESSAGES/libmessagelist.mo share/locale/uk/LC_MESSAGES/libmessageviewer.mo share/locale/uk/LC_MESSAGES/libmimetreeparser.mo share/locale/uk/LC_MESSAGES/libtemplateparser.mo share/locale/uk/LC_MESSAGES/libwebengineviewer.mo share/locale/wa/LC_MESSAGES/libmessagelist.mo share/locale/wa/LC_MESSAGES/libmessageviewer.mo share/locale/wa/LC_MESSAGES/libmimetreeparser.mo share/locale/wa/LC_MESSAGES/libtemplateparser.mo share/locale/zh_CN/LC_MESSAGES/libmessagecomposer.mo share/locale/zh_CN/LC_MESSAGES/libmessagecore.mo share/locale/zh_CN/LC_MESSAGES/libmessagelist.mo share/locale/zh_CN/LC_MESSAGES/libmessageviewer.mo share/locale/zh_CN/LC_MESSAGES/libmimetreeparser.mo share/locale/zh_CN/LC_MESSAGES/libtemplateparser.mo share/locale/zh_CN/LC_MESSAGES/libwebengineviewer.mo share/locale/zh_TW/LC_MESSAGES/libmessagecomposer.mo share/locale/zh_TW/LC_MESSAGES/libmessagecore.mo share/locale/zh_TW/LC_MESSAGES/libmessagelist.mo share/locale/zh_TW/LC_MESSAGES/libmessageviewer.mo share/locale/zh_TW/LC_MESSAGES/libmimetreeparser.mo share/locale/zh_TW/LC_MESSAGES/libtemplateparser.mo share/locale/zh_TW/LC_MESSAGES/libwebengineviewer.mo share/messagelist/pics/mail-horizontal-space.png share/messagelist/pics/mail-vertical-separator-line.png share/messageviewer/about/default/background.png share/messageviewer/about/default/main.css share/messageviewer/about/default/main.html share/messageviewer/about/default/splash.theme share/messageviewer/about/default/status.html share/messageviewer/defaultthemes/5.2/header.html share/messageviewer/defaultthemes/5.2/kmail_default.desktop share/messageviewer/defaultthemes/5.2/photo.png share/messageviewer/defaultthemes/5.2/photo.svg share/messageviewer/defaultthemes/5.2/style.css share/messageviewer/longurlServices.json share/org.kde.syntax-highlighting/syntax/kmail-template.xml Index: head/net/pimcommon/Makefile =================================================================== --- head/net/pimcommon/Makefile (revision 499276) +++ head/net/pimcommon/Makefile (revision 499277) @@ -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 \ 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 USE_QT= 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 499276) +++ head/net/pimcommon/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551810930 -SHA256 (KDE/applications/18.12.3/pimcommon-18.12.3.tar.xz) = f4a0bf8146d1140c0252a5315baa826651968352a828c004d91b06e0e98c6b9e -SIZE (KDE/applications/18.12.3/pimcommon-18.12.3.tar.xz) = 295052 +TIMESTAMP = 1555094935 +SHA256 (KDE/applications/19.04.0/pimcommon-19.04.0.tar.xz) = b25d10571e55ab11b758ad6b1040ef2d148b4b5b913f41665c355df25bceb12e +SIZE (KDE/applications/19.04.0/pimcommon-19.04.0.tar.xz) = 295500 Index: head/net/pimcommon/pkg-plist =================================================================== --- head/net/pimcommon/pkg-plist (revision 499276) +++ head/net/pimcommon/pkg-plist (revision 499277) @@ -1,176 +1,176 @@ etc/xdg/pimcommon.categories etc/xdg/pimcommon.renamecategories include/KF5/PimCommon/AbstractGenericPlugin include/KF5/PimCommon/AbstractGenericPluginInterface include/KF5/PimCommon/AutoCorrection include/KF5/PimCommon/AutoCorrectionLanguage include/KF5/PimCommon/AutoCorrectionWidget include/KF5/PimCommon/ConfigureImmutableWidgetUtils include/KF5/PimCommon/ConfigurePluginDialog include/KF5/PimCommon/ConfigurePluginsListWidget include/KF5/PimCommon/ConfigurePluginsWidget include/KF5/PimCommon/CustomToolsPlugin +include/KF5/PimCommon/CustomToolsPluginManager include/KF5/PimCommon/CustomToolsViewInterface include/KF5/PimCommon/CustomToolsWidgetng include/KF5/PimCommon/CustomTreeView include/KF5/PimCommon/GenericGrantleeFormatter include/KF5/PimCommon/GenericPlugin include/KF5/PimCommon/GenericPluginManager include/KF5/PimCommon/KActionMenuChangeCase include/KF5/PimCommon/KPimPrintPreviewDialog include/KF5/PimCommon/LineEditWithAutoCorrection include/KF5/PimCommon/LineEditWithCompleterNg include/KF5/PimCommon/LogActivitiesManager include/KF5/PimCommon/MigrateApplicationFiles include/KF5/PimCommon/MigrateFileInfo include/KF5/PimCommon/MinimumComboBox include/KF5/PimCommon/NetworkManager include/KF5/PimCommon/NetworkUtil include/KF5/PimCommon/PimCommonSettings include/KF5/PimCommon/PimUtil include/KF5/PimCommon/PluginUtil include/KF5/PimCommon/PurposeMenuWidget include/KF5/PimCommon/RenameFileDialog include/KF5/PimCommon/RichTexteditWithAutoCorrection include/KF5/PimCommon/ShareServiceUrlManager include/KF5/PimCommon/SimpleStringListEditor include/KF5/PimCommon/SpellCheckLineEdit include/KF5/PimCommon/TemplateListWidget include/KF5/PimCommon/TemplateManager include/KF5/PimCommon/TranslatorWidget include/KF5/PimCommonAkonadi/AnnotationDialog include/KF5/PimCommonAkonadi/CheckedCollectionWidget include/KF5/PimCommonAkonadi/CollectionAclPage include/KF5/PimCommonAkonadi/CollectionAnnotationsAttribute include/KF5/PimCommonAkonadi/CollectionTypeUtil include/KF5/PimCommonAkonadi/ContentTypeWidget include/KF5/PimCommonAkonadi/CreateResource include/KF5/PimCommonAkonadi/FetchRecursiveCollectionsJob include/KF5/PimCommonAkonadi/GenericPluginInterface include/KF5/PimCommonAkonadi/ImapAclAttribute include/KF5/PimCommonAkonadi/ImapResourceCapabilitiesManager include/KF5/PimCommonAkonadi/IncidencesForWidget include/KF5/PimCommonAkonadi/MailUtil include/KF5/PimCommonAkonadi/ManageServerSideSubscriptionJob include/KF5/PimCommonAkonadi/PluginInterface include/KF5/PimCommonAkonadi/SelectMultiCollectionDialog include/KF5/pimcommon/abstractgenericplugin.h include/KF5/pimcommon/abstractgenericplugininterface.h include/KF5/pimcommon/autocorrection.h include/KF5/pimcommon/autocorrectionlanguage.h include/KF5/pimcommon/autocorrectionwidget.h include/KF5/pimcommon/config-pimcommon.h include/KF5/pimcommon/configureimmutablewidgetutils.h include/KF5/pimcommon/configureplugindialog.h include/KF5/pimcommon/configurepluginslistwidget.h include/KF5/pimcommon/configurepluginswidget.h include/KF5/pimcommon/customtoolsplugin.h +include/KF5/pimcommon/customtoolspluginmanager.h include/KF5/pimcommon/customtoolsviewinterface.h include/KF5/pimcommon/customtoolswidgetng.h include/KF5/pimcommon/customtreeview.h include/KF5/pimcommon/genericgrantleeformatter.h include/KF5/pimcommon/genericplugin.h include/KF5/pimcommon/genericpluginmanager.h include/KF5/pimcommon/imapresourcesettings.h include/KF5/pimcommon/kactionmenuchangecase.h include/KF5/pimcommon/kpimprintpreviewdialog.h include/KF5/pimcommon/lineeditwithautocorrection.h include/KF5/pimcommon/lineeditwithcompleterng.h include/KF5/pimcommon/logactivitiesmanager.h include/KF5/pimcommon/migrateapplicationfiles.h include/KF5/pimcommon/migratefileinfo.h include/KF5/pimcommon/minimumcombobox.h include/KF5/pimcommon/networkmanager.h include/KF5/pimcommon/networkutil.h -include/KF5/pimcommon/pimcommon_debug.h include/KF5/pimcommon/pimcommon_export.h include/KF5/pimcommon/pimcommonsetting_base.h include/KF5/pimcommon/pimcommonsettings.h include/KF5/pimcommon/pimutil.h include/KF5/pimcommon/pluginutil.h include/KF5/pimcommon/purposemenuwidget.h include/KF5/pimcommon/renamefiledialog.h include/KF5/pimcommon/richtexteditwithautocorrection.h include/KF5/pimcommon/shareserviceurlmanager.h include/KF5/pimcommon/simplestringlisteditor.h include/KF5/pimcommon/spellchecklineedit.h include/KF5/pimcommon/templatelistwidget.h include/KF5/pimcommon/templatemanager.h include/KF5/pimcommon/translatorwidget.h include/KF5/pimcommon_version.h include/KF5/pimcommonakonadi/annotationdialog.h include/KF5/pimcommonakonadi/checkedcollectionwidget.h include/KF5/pimcommonakonadi/collectionaclpage.h include/KF5/pimcommonakonadi/collectionannotationsattribute.h include/KF5/pimcommonakonadi/collectiontypeutil.h include/KF5/pimcommonakonadi/contenttypewidget.h include/KF5/pimcommonakonadi/createresource.h include/KF5/pimcommonakonadi/fetchrecursivecollectionsjob.h include/KF5/pimcommonakonadi/genericplugininterface.h include/KF5/pimcommonakonadi/imapaclattribute.h include/KF5/pimcommonakonadi/imapresourcecapabilitiesmanager.h include/KF5/pimcommonakonadi/incidencesforwidget.h include/KF5/pimcommonakonadi/mailutil.h include/KF5/pimcommonakonadi/manageserversidesubscriptionjob.h -include/KF5/pimcommonakonadi/pimcommonakonadi_debug.h include/KF5/pimcommonakonadi/pimcommonakonadi_export.h include/KF5/pimcommonakonadi/plugininterface.h include/KF5/pimcommonakonadi/selectmulticollectiondialog.h include/KF5/pimcommonakonadi_version.h lib/cmake/KF5PimCommon/KF5PimCommonConfig.cmake lib/cmake/KF5PimCommon/KF5PimCommonConfigVersion.cmake lib/cmake/KF5PimCommon/KF5PimCommonTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5PimCommon/KF5PimCommonTargets.cmake lib/cmake/KF5PimCommonAkonadi/KF5PimCommonAkonadiConfig.cmake lib/cmake/KF5PimCommonAkonadi/KF5PimCommonAkonadiConfigVersion.cmake lib/cmake/KF5PimCommonAkonadi/KF5PimCommonAkonadiTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5PimCommonAkonadi/KF5PimCommonAkonadiTargets.cmake lib/libKF5PimCommon.so lib/libKF5PimCommon.so.5 lib/libKF5PimCommon.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKF5PimCommonAkonadi.so lib/libKF5PimCommonAkonadi.so.5 lib/libKF5PimCommonAkonadi.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_PimCommon.pri %%QT_MKSPECDIR%%/modules/qt_PimCommonAkonadi.pri %%QT_PLUGINDIR%%/designer/pimcommonwidgets.so share/locale/ar/LC_MESSAGES/libpimcommon.mo share/locale/bs/LC_MESSAGES/libpimcommon.mo share/locale/ca/LC_MESSAGES/libpimcommon.mo share/locale/ca@valencia/LC_MESSAGES/libpimcommon.mo share/locale/cs/LC_MESSAGES/libpimcommon.mo share/locale/da/LC_MESSAGES/libpimcommon.mo share/locale/de/LC_MESSAGES/libpimcommon.mo share/locale/el/LC_MESSAGES/libpimcommon.mo share/locale/en_GB/LC_MESSAGES/libpimcommon.mo share/locale/es/LC_MESSAGES/libpimcommon.mo share/locale/et/LC_MESSAGES/libpimcommon.mo share/locale/fi/LC_MESSAGES/libpimcommon.mo share/locale/fr/LC_MESSAGES/libpimcommon.mo share/locale/ga/LC_MESSAGES/libpimcommon.mo share/locale/gl/LC_MESSAGES/libpimcommon.mo share/locale/hu/LC_MESSAGES/libpimcommon.mo share/locale/ia/LC_MESSAGES/libpimcommon.mo share/locale/it/LC_MESSAGES/libpimcommon.mo share/locale/ja/LC_MESSAGES/libpimcommon.mo share/locale/kk/LC_MESSAGES/libpimcommon.mo share/locale/ko/LC_MESSAGES/libpimcommon.mo share/locale/lt/LC_MESSAGES/libpimcommon.mo share/locale/mr/LC_MESSAGES/libpimcommon.mo share/locale/nb/LC_MESSAGES/libpimcommon.mo share/locale/nds/LC_MESSAGES/libpimcommon.mo share/locale/nl/LC_MESSAGES/libpimcommon.mo share/locale/pl/LC_MESSAGES/libpimcommon.mo share/locale/pt/LC_MESSAGES/libpimcommon.mo share/locale/pt_BR/LC_MESSAGES/libpimcommon.mo share/locale/ro/LC_MESSAGES/libpimcommon.mo share/locale/ru/LC_MESSAGES/libpimcommon.mo share/locale/sk/LC_MESSAGES/libpimcommon.mo share/locale/sl/LC_MESSAGES/libpimcommon.mo share/locale/sr/LC_MESSAGES/libpimcommon.mo share/locale/sv/LC_MESSAGES/libpimcommon.mo share/locale/tr/LC_MESSAGES/libpimcommon.mo share/locale/ug/LC_MESSAGES/libpimcommon.mo share/locale/uk/LC_MESSAGES/libpimcommon.mo share/locale/zh_CN/LC_MESSAGES/libpimcommon.mo share/locale/zh_TW/LC_MESSAGES/libpimcommon.mo Index: head/net/zeroconf-ioslave/distinfo =================================================================== --- head/net/zeroconf-ioslave/distinfo (revision 499276) +++ head/net/zeroconf-ioslave/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551810927 -SHA256 (KDE/applications/18.12.3/zeroconf-ioslave-18.12.3.tar.xz) = b3adcaec0ebd89ddaf839954fb387e59791683d98f93da0c3dacb0266cd02a12 -SIZE (KDE/applications/18.12.3/zeroconf-ioslave-18.12.3.tar.xz) = 38740 +TIMESTAMP = 1555094935 +SHA256 (KDE/applications/19.04.0/zeroconf-ioslave-19.04.0.tar.xz) = e1f7465f200d1c7c53c56a8ebf9a463022a27d6c244d0d1768ff58763e5b53dc +SIZE (KDE/applications/19.04.0/zeroconf-ioslave-19.04.0.tar.xz) = 38732 Index: head/net-im/kaccounts-integration/distinfo =================================================================== --- head/net-im/kaccounts-integration/distinfo (revision 499276) +++ head/net-im/kaccounts-integration/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551811098 -SHA256 (KDE/applications/18.12.3/kaccounts-integration-18.12.3.tar.xz) = 6e7e4d7aac270f605a5fd4ec9efea8c13807ccb67c11fd3412c1d794ab09e6ce -SIZE (KDE/applications/18.12.3/kaccounts-integration-18.12.3.tar.xz) = 71028 +TIMESTAMP = 1555094895 +SHA256 (KDE/applications/19.04.0/kaccounts-integration-19.04.0.tar.xz) = d7b257f6b7278361690b2c1d948c92bdb8b14f741ce96ef35f37c8eea3feb687 +SIZE (KDE/applications/19.04.0/kaccounts-integration-19.04.0.tar.xz) = 71012 Index: head/net-im/kaccounts-providers/distinfo =================================================================== --- head/net-im/kaccounts-providers/distinfo (revision 499276) +++ head/net-im/kaccounts-providers/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551811098 -SHA256 (KDE/applications/18.12.3/kaccounts-providers-18.12.3.tar.xz) = 4d084ffdac10a8a8cc8b79a9b17116893c023288c9e29d1cbabe3d28cd0ba5f6 -SIZE (KDE/applications/18.12.3/kaccounts-providers-18.12.3.tar.xz) = 31616 +TIMESTAMP = 1555094896 +SHA256 (KDE/applications/19.04.0/kaccounts-providers-19.04.0.tar.xz) = 4eb74ef042c30ea44f5391f8798d9ceca44d46bf46480355160af61bcb6236d7 +SIZE (KDE/applications/19.04.0/kaccounts-providers-19.04.0.tar.xz) = 31612 Index: head/net-im/kopete/Makefile =================================================================== --- head/net-im/kopete/Makefile (revision 499276) +++ head/net-im/kopete/Makefile (revision 499277) @@ -1,41 +1,40 @@ # $FreeBSD$ PORTNAME= kopete PORTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 3 CATEGORIES= net-im kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE multi-protocol instant messenger BUILD_DEPENDS= v4l_compat>0:multimedia/v4l_compat LIB_DEPENDS= libidn.so:dns/libidn \ libjasper.so:graphics/jasper \ libotr.so:security/libotr \ libqca-qt5.so:devel/qca \ libv4l2.so:multimedia/libv4l USES= cmake compiler:c++11-lang jpeg kde:5 qt:5 shebangfix \ tar:xz USE_GNOME= libxml2 libxslt USE_KDE= archive auth bookmarks codecs completion config configwidgets \ coreaddons crash dbusaddons dnssd ecm emoticons guiaddons i18n \ iconthemes itemviews jobwidgets js kcmutils kdelibs4support \ khtml kio notifications notifyconfig parts service solid sonnet \ texteditor textwidgets unitconversion wallet widgetsaddons \ windowsystem xmlgui # KDE PIM components USE_KDE+= contacts identitymanagement libkleo pimtextedit USE_QT= core dbus gui network phonon4 printsupport sql widgets xml \ buildtools_build qmake_build # See #228640: temporary work around to fix the build on Current with ld being lld. LLD_UNSAFE= yes SHEBANG_FILES= protocols/winpopup/winpopup-install \ protocols/winpopup/winpopup-send \ kopete/kconf_update/*.pl OPTIONS_DEFINE= DOCS .include Index: head/net-im/kopete/distinfo =================================================================== --- head/net-im/kopete/distinfo (revision 499276) +++ head/net-im/kopete/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551811098 -SHA256 (KDE/applications/18.12.3/kopete-18.12.3.tar.xz) = 8ca7a41e39be23ca6802deade7b5edb88b7e3000bc8e6fb2f68efbc15c2c8d3b -SIZE (KDE/applications/18.12.3/kopete-18.12.3.tar.xz) = 9347932 +TIMESTAMP = 1555094906 +SHA256 (KDE/applications/19.04.0/kopete-19.04.0.tar.xz) = 88068ceb8735e1b7ecaac9a9e4c36d40629b53d514c987823c987cfac6dc99df +SIZE (KDE/applications/19.04.0/kopete-19.04.0.tar.xz) = 9377564 Index: head/net-im/kopete/pkg-plist =================================================================== --- head/net-im/kopete/pkg-plist (revision 499276) +++ head/net-im/kopete/pkg-plist (revision 499277) @@ -1,720 +1,720 @@ bin/kopete bin/winpopup-install bin/winpopup-send etc/xdg/kopete.categories etc/xdg/kopeterc include/kopete/kabcpersistence.h include/kopete/kopeteaccount.h include/kopete/kopeteaccountmanager.h include/kopete/kopeteaddedinfoevent.h include/kopete/kopeteappearancesettings.h include/kopete/kopeteavatarmanager.h include/kopete/kopetebehaviorsettings.h include/kopete/kopeteblacklister.h include/kopete/kopetechatsession.h include/kopete/kopetechatsessionmanager.h include/kopete/kopetecommand.h include/kopete/kopetecommandhandler.h include/kopete/kopetecontact.h include/kopete/kopetecontactlist.h include/kopete/kopetecontactlistelement.h include/kopete/kopetecontacttaskbase.h include/kopete/kopetedeletecontacttask.h include/kopete/kopeteemoticons.h include/kopete/kopeteglobal.h include/kopete/kopetegroup.h include/kopete/kopeteidentity.h include/kopete/kopeteidentitymanager.h include/kopete/kopeteinfoevent.h include/kopete/kopetemessage.h include/kopete/kopetemessageevent.h include/kopete/kopetemessagehandler.h include/kopete/kopetemessagehandlerchain.h include/kopete/kopetemetacontact.h include/kopete/kopetemimetypehandler.h include/kopete/kopeteonlinestatus.h include/kopete/kopeteonlinestatusmanager.h include/kopete/kopetepassword.h include/kopete/kopetepasswordedaccount.h include/kopete/kopetepicture.h include/kopete/kopeteplugin.h include/kopete/kopetepluginmanager.h include/kopete/kopeteproperty.h include/kopete/kopetepropertycontainer.h include/kopete/kopeteprotocol.h include/kopete/kopetesimplemessagehandler.h include/kopete/kopetestatusmanager.h include/kopete/kopetestatusmessage.h include/kopete/kopetestatussettings.h include/kopete/kopetetask.h include/kopete/kopetetransfermanager.h include/kopete/kopeteuiglobal.h include/kopete/kopeteutils.h include/kopete/kopeteversion.h include/kopete/libkopete_export.h include/kopete/ui/accountselector.h include/kopete/ui/addcontactpage.h include/kopete/ui/addressbookselectordialog.h include/kopete/ui/addressbookselectorwidget.h include/kopete/ui/avatardialog.h include/kopete/ui/avatarselectorwidget.h include/kopete/ui/contactaddednotifydialog.h include/kopete/ui/editaccountwidget.h include/kopete/ui/kopetecontactaction.h include/kopete/ui/kopeteinfodialog.h include/kopete/ui/kopetelistview.h include/kopete/ui/kopetelistviewitem.h include/kopete/ui/kopetelistviewsearchline.h include/kopete/ui/kopetepasswordwidget.h include/kopete/ui/kopetestdaction.h include/kopete/ui/kopeteview.h include/kopete/ui/kopeteviewplugin.h include/kopete/ui/ui_kopeteawaydialogbase.h include/kopete/ui/ui_kopetepasswordwidgetbase.h lib/libkopete.so lib/libkopete.so.1 lib/libkopete.so.1.0.0 lib/libkopete_oscar.so lib/libkopete_oscar.so.1 lib/libkopete_oscar.so.1.0.0 lib/libkopete_otr_shared.so lib/libkopete_otr_shared.so.1 lib/libkopete_otr_shared.so.1.0.0 lib/libkopete_videodevice.so lib/libkopete_videodevice.so.1 lib/libkopete_videodevice.so.1.0.0 lib/libkopeteaddaccountwizard.so lib/libkopeteaddaccountwizard.so.1 lib/libkopeteaddaccountwizard.so.1.0.0 lib/libkopetechatwindow_shared.so lib/libkopetechatwindow_shared.so.1 lib/libkopetechatwindow_shared.so.1.0.0 lib/libkopetecontactlist.so lib/libkopetecontactlist.so.1 lib/libkopetecontactlist.so.1.0.0 lib/libkopeteidentity.so lib/libkopeteidentity.so.1 lib/libkopeteidentity.so.1.0.0 lib/libkopeteprivacy.so lib/libkopeteprivacy.so.1 lib/libkopeteprivacy.so.1.0.0 lib/libkopetestatusmenu.so lib/libkopetestatusmenu.so.1 lib/libkopetestatusmenu.so.1.0.0 lib/liboscar.so lib/liboscar.so.1 lib/liboscar.so.1.0.0 lib/libqgroupwise.so %%QT_PLUGINDIR%%/accessible/chatwindowaccessiblewidgetfactory.so %%QT_PLUGINDIR%%/chattexteditpart.so %%QT_PLUGINDIR%%/kcm_kopete_accountconfig.so %%QT_PLUGINDIR%%/kcm_kopete_addbookmarks.so %%QT_PLUGINDIR%%/kcm_kopete_appearanceconfig.so %%QT_PLUGINDIR%%/kcm_kopete_autoreplace.so %%QT_PLUGINDIR%%/kcm_kopete_avdeviceconfig.so %%QT_PLUGINDIR%%/kcm_kopete_behaviorconfig.so %%QT_PLUGINDIR%%/kcm_kopete_chatwindowconfig.so %%QT_PLUGINDIR%%/kcm_kopete_highlight.so %%QT_PLUGINDIR%%/kcm_kopete_history.so %%QT_PLUGINDIR%%/kcm_kopete_otr.so %%QT_PLUGINDIR%%/kcm_kopete_pluginconfig.so %%QT_PLUGINDIR%%/kcm_kopete_privacy.so %%QT_PLUGINDIR%%/kcm_kopete_statusconfig.so %%QT_PLUGINDIR%%/kcm_kopete_texteffect.so %%QT_PLUGINDIR%%/kcm_kopete_urlpicpreview.so %%QT_PLUGINDIR%%/kcm_kopete_webpresence.so %%QT_PLUGINDIR%%/kopete_addbookmarks.so %%QT_PLUGINDIR%%/kopete_aim.so %%QT_PLUGINDIR%%/kopete_autoreplace.so %%QT_PLUGINDIR%%/kopete_bonjour.so %%QT_PLUGINDIR%%/kopete_chatwindow.so %%QT_PLUGINDIR%%/kopete_contactnotes.so %%QT_PLUGINDIR%%/kopete_emailwindow.so %%QT_PLUGINDIR%%/kopete_groupwise.so %%QT_PLUGINDIR%%/kopete_highlight.so %%QT_PLUGINDIR%%/kopete_history.so %%QT_PLUGINDIR%%/kopete_icq.so %%QT_PLUGINDIR%%/kopete_jabber.so %%QT_PLUGINDIR%%/kopete_otr.so %%QT_PLUGINDIR%%/kopete_privacy.so %%QT_PLUGINDIR%%/kopete_qq.so %%QT_PLUGINDIR%%/kopete_statistics.so %%QT_PLUGINDIR%%/kopete_testbed.so %%QT_PLUGINDIR%%/kopete_texteffect.so %%QT_PLUGINDIR%%/kopete_urlpicpreview.so %%QT_PLUGINDIR%%/kopete_webpresence.so %%QT_PLUGINDIR%%/kopete_wp.so share/applications/org.kde.kopete.desktop share/config.kcfg/historyconfig.kcfg share/config.kcfg/kopete_otr.kcfg share/config.kcfg/kopeteappearancesettings.kcfg share/config.kcfg/kopetebehaviorsettings.kcfg share/config.kcfg/kopetestatussettings.kcfg share/config.kcfg/urlpicpreview.kcfg share/config.kcfg/webpresenceconfig.kcfg share/dbus-1/interfaces/org.kde.Kopete.xml share/dbus-1/interfaces/org.kde.kopete.Client.xml share/dbus-1/interfaces/org.kde.kopete.Statistics.xml share/icons/hicolor/128x128/apps/kopete-offline.png share/icons/hicolor/128x128/apps/kopete.png share/icons/hicolor/16x16/apps/kopete-offline.png share/icons/hicolor/16x16/apps/kopete.png share/icons/hicolor/22x22/apps/kopete-offline.png share/icons/hicolor/22x22/apps/kopete.png share/icons/hicolor/32x32/apps/kopete-offline.png share/icons/hicolor/32x32/apps/kopete.png share/icons/hicolor/48x48/apps/kopete-offline.png share/icons/hicolor/48x48/apps/kopete.png share/icons/hicolor/64x64/apps/kopete-offline.png share/icons/hicolor/64x64/apps/kopete.png share/icons/hicolor/scalable/apps/kopete-offline.svgz share/icons/hicolor/scalable/apps/kopete.svgz share/icons/oxygen/128x128/actions/voicecall.png share/icons/oxygen/128x128/actions/webcamreceive.png share/icons/oxygen/128x128/actions/webcamsend.png share/icons/oxygen/128x128/apps/kopete_avdevice.png share/icons/oxygen/16x16/actions/account_offline_overlay.png share/icons/oxygen/16x16/actions/contact_away_overlay.png share/icons/oxygen/16x16/actions/contact_busy_overlay.png share/icons/oxygen/16x16/actions/contact_food_overlay.png share/icons/oxygen/16x16/actions/contact_freeforchat_overlay.png share/icons/oxygen/16x16/actions/contact_invisible_overlay.png share/icons/oxygen/16x16/actions/contact_phone_overlay.png share/icons/oxygen/16x16/actions/contact_xa_overlay.png share/icons/oxygen/16x16/actions/emoticon.png share/icons/oxygen/16x16/actions/im-status-message-edit.png share/icons/oxygen/16x16/actions/metacontact_unknown.png share/icons/oxygen/16x16/actions/status_unknown.png share/icons/oxygen/16x16/actions/status_unknown_overlay.png share/icons/oxygen/16x16/actions/view-user-offline-kopete.png share/icons/oxygen/16x16/actions/voicecall.png share/icons/oxygen/16x16/actions/webcamreceive.png share/icons/oxygen/16x16/actions/webcamsend.png share/icons/oxygen/22x22/actions/account_offline_overlay.png share/icons/oxygen/22x22/actions/im-status-message-edit.png share/icons/oxygen/22x22/actions/view-user-offline-kopete.png share/icons/oxygen/22x22/actions/voicecall.png share/icons/oxygen/22x22/actions/webcamreceive.png share/icons/oxygen/22x22/actions/webcamsend.png share/icons/oxygen/22x22/apps/kopete_avdevice.png share/icons/oxygen/22x22/status/object-locked-finished.png share/icons/oxygen/22x22/status/object-locked-unverified.png share/icons/oxygen/22x22/status/object-locked-verified.png share/icons/oxygen/32x32/actions/account_offline_overlay.png share/icons/oxygen/32x32/actions/im-status-message-edit.png share/icons/oxygen/32x32/actions/metacontact_unknown.png share/icons/oxygen/32x32/actions/view-user-offline-kopete.png share/icons/oxygen/32x32/actions/voicecall.png share/icons/oxygen/32x32/actions/webcamreceive.png share/icons/oxygen/32x32/actions/webcamsend.png share/icons/oxygen/32x32/apps/kopete_avdevice.png share/icons/oxygen/48x48/actions/im-status-message-edit.png share/icons/oxygen/48x48/actions/mail-encrypt.png share/icons/oxygen/48x48/actions/view-user-offline-kopete.png share/icons/oxygen/48x48/actions/voicecall.png share/icons/oxygen/48x48/actions/webcamreceive.png share/icons/oxygen/48x48/actions/webcamsend.png share/icons/oxygen/64x64/actions/voicecall.png share/icons/oxygen/64x64/actions/webcamreceive.png share/icons/oxygen/64x64/actions/webcamsend.png share/icons/oxygen/64x64/apps/kopete_avdevice.png share/icons/oxygen/scalable/actions/account_offline_overlay.svgz share/icons/oxygen/scalable/actions/im-status-message-edit.svgz share/icons/oxygen/scalable/actions/view-user-offline-kopete.svgz share/icons/oxygen/scalable/actions/voicecall.svgz share/icons/oxygen/scalable/actions/webcamreceive.svgz share/icons/oxygen/scalable/actions/webcamsend.svgz share/kconf_update/kopete-account-0.10.pl share/kconf_update/kopete-account-kconf_update.sh share/kconf_update/kopete-account-kconf_update.upd share/kconf_update/kopete-gaim_to_pidgin_style.pl share/kconf_update/kopete-gaim_to_pidgin_style.upd share/kconf_update/kopete-initialstatus.pl share/kconf_update/kopete-initialstatus.upd share/kconf_update/kopete-jabberpriorityaddition-kconf_update.sh share/kconf_update/kopete-jabberpriorityaddition-kconf_update.upd share/kconf_update/kopete-jabberproxytype-kconf_update.sh share/kconf_update/kopete-jabberproxytype-kconf_update.upd share/kconf_update/kopete-nameTracking.upd share/kconf_update/kopete-pluginloader.pl share/kconf_update/kopete-pluginloader.upd share/kconf_update/kopete-pluginloader2.sh share/kconf_update/kopete-pluginloader2.upd share/kconf_update/kopete-update_icq_server.pl share/kconf_update/kopete-update_icq_server.upd share/kconf_update/kopete-update_icq_ssl.pl share/kconf_update/kopete-update_icq_ssl.upd share/knotifications5/kopete.notifyrc %%DATADIR%%/CompactContactListLayouts.xml %%DATADIR%%/DefaultContactListLayouts.xml %%DATADIR%%/icons/hicolor/128x128/apps/bonjour_protocol.png %%DATADIR%%/icons/hicolor/128x128/apps/jabber_protocol.png %%DATADIR%%/icons/hicolor/128x128/apps/qq_protocol.png %%DATADIR%%/icons/hicolor/128x128/apps/testbed_protocol.png %%DATADIR%%/icons/hicolor/128x128/apps/wp_protocol.png %%DATADIR%%/icons/hicolor/16x16/actions/aim_away.png %%DATADIR%%/icons/hicolor/16x16/actions/aim_connecting.mng %%DATADIR%%/icons/hicolor/16x16/actions/aim_offline.png %%DATADIR%%/icons/hicolor/16x16/actions/aim_online.png %%DATADIR%%/icons/hicolor/16x16/actions/groupwise_away.png %%DATADIR%%/icons/hicolor/16x16/actions/groupwise_busy.png %%DATADIR%%/icons/hicolor/16x16/actions/groupwise_connecting.mng %%DATADIR%%/icons/hicolor/16x16/actions/groupwise_invisible.png %%DATADIR%%/icons/hicolor/16x16/actions/groupwise_online.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_away.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_connecting.mng %%DATADIR%%/icons/hicolor/16x16/actions/icq_dnd.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_ffc.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_invisible.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_na.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_occupied.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_offline.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_online.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_xstatus0.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_xstatus1.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_xstatus10.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_xstatus11.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_xstatus12.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_xstatus13.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_xstatus14.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_xstatus15.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_xstatus16.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_xstatus17.png -%%DATADIR%%/icons/hicolor/16x16/actions/icq_xstatus%%KDE_APPLICATIONS_VERSION_SHORT%%.png +%%DATADIR%%/icons/hicolor/16x16/actions/icq_xstatus18.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_xstatus19.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_xstatus2.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_xstatus20.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_xstatus21.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_xstatus22.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_xstatus23.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_xstatus24.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_xstatus25.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_xstatus26.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_xstatus27.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_xstatus28.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_xstatus29.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_xstatus3.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_xstatus30.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_xstatus31.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_xstatus4.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_xstatus5.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_xstatus6.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_xstatus7.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_xstatus8.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_xstatus9.png %%DATADIR%%/icons/hicolor/16x16/actions/jabber_away.png %%DATADIR%%/icons/hicolor/16x16/actions/jabber_chatty.png %%DATADIR%%/icons/hicolor/16x16/actions/jabber_connecting.mng %%DATADIR%%/icons/hicolor/16x16/actions/jabber_group.png %%DATADIR%%/icons/hicolor/16x16/actions/jabber_invisible.png %%DATADIR%%/icons/hicolor/16x16/actions/jabber_na.png %%DATADIR%%/icons/hicolor/16x16/actions/jabber_offline.png %%DATADIR%%/icons/hicolor/16x16/actions/jabber_online.png %%DATADIR%%/icons/hicolor/16x16/actions/jabber_original.png %%DATADIR%%/icons/hicolor/16x16/actions/jabber_raw.png %%DATADIR%%/icons/hicolor/16x16/actions/jabber_serv_off.png %%DATADIR%%/icons/hicolor/16x16/actions/jabber_serv_on.png %%DATADIR%%/icons/hicolor/16x16/actions/jabber_xa.png %%DATADIR%%/icons/hicolor/16x16/actions/logging.png %%DATADIR%%/icons/hicolor/16x16/actions/qq_connecting.mng %%DATADIR%%/icons/hicolor/16x16/actions/wp_away.png %%DATADIR%%/icons/hicolor/16x16/apps/aim_protocol.png %%DATADIR%%/icons/hicolor/16x16/apps/bonjour_protocol.png %%DATADIR%%/icons/hicolor/16x16/apps/groupwise_protocol.png %%DATADIR%%/icons/hicolor/16x16/apps/icq_protocol.png %%DATADIR%%/icons/hicolor/16x16/apps/jabber_gateway_aim.png %%DATADIR%%/icons/hicolor/16x16/apps/jabber_gateway_gadu.png %%DATADIR%%/icons/hicolor/16x16/apps/jabber_gateway_http-ws.png %%DATADIR%%/icons/hicolor/16x16/apps/jabber_gateway_icq.png %%DATADIR%%/icons/hicolor/16x16/apps/jabber_gateway_irc.png %%DATADIR%%/icons/hicolor/16x16/apps/jabber_gateway_msn.png %%DATADIR%%/icons/hicolor/16x16/apps/jabber_gateway_qq.png %%DATADIR%%/icons/hicolor/16x16/apps/jabber_gateway_sms.png %%DATADIR%%/icons/hicolor/16x16/apps/jabber_gateway_smtp.png %%DATADIR%%/icons/hicolor/16x16/apps/jabber_gateway_tlen.png %%DATADIR%%/icons/hicolor/16x16/apps/jabber_gateway_yahoo.png %%DATADIR%%/icons/hicolor/16x16/apps/jabber_protocol.png %%DATADIR%%/icons/hicolor/16x16/apps/qq_protocol.png %%DATADIR%%/icons/hicolor/16x16/apps/testbed_protocol.png %%DATADIR%%/icons/hicolor/16x16/apps/wp_protocol.png %%DATADIR%%/icons/hicolor/22x22/actions/logging.png %%DATADIR%%/icons/hicolor/22x22/actions/qq_connecting.mng %%DATADIR%%/icons/hicolor/22x22/apps/bonjour_protocol.png %%DATADIR%%/icons/hicolor/22x22/apps/groupwise_protocol.png %%DATADIR%%/icons/hicolor/22x22/apps/jabber_protocol.png %%DATADIR%%/icons/hicolor/22x22/apps/qq_protocol.png %%DATADIR%%/icons/hicolor/32x32/actions/logging.png %%DATADIR%%/icons/hicolor/32x32/actions/qq_connecting.mng %%DATADIR%%/icons/hicolor/32x32/apps/aim_protocol.png %%DATADIR%%/icons/hicolor/32x32/apps/bonjour_protocol.png %%DATADIR%%/icons/hicolor/32x32/apps/groupwise_protocol.png %%DATADIR%%/icons/hicolor/32x32/apps/icq_protocol.png %%DATADIR%%/icons/hicolor/32x32/apps/jabber_protocol.png %%DATADIR%%/icons/hicolor/32x32/apps/preferences-plugin-text-effect-kopete.png %%DATADIR%%/icons/hicolor/32x32/apps/preferences-text-autocorrection-kopete.png %%DATADIR%%/icons/hicolor/32x32/apps/preferences-text-highlighting-kopete.png %%DATADIR%%/icons/hicolor/32x32/apps/qq_protocol.png %%DATADIR%%/icons/hicolor/32x32/apps/testbed_protocol.png %%DATADIR%%/icons/hicolor/32x32/apps/wp_protocol.png %%DATADIR%%/icons/hicolor/48x48/actions/logging.png %%DATADIR%%/icons/hicolor/48x48/actions/qq_connecting.mng %%DATADIR%%/icons/hicolor/48x48/apps/bonjour_protocol.png %%DATADIR%%/icons/hicolor/48x48/apps/groupwise_protocol.png %%DATADIR%%/icons/hicolor/48x48/apps/jabber_protocol.png %%DATADIR%%/icons/hicolor/48x48/apps/qq_protocol.png %%DATADIR%%/icons/hicolor/48x48/apps/testbed_protocol.png %%DATADIR%%/icons/hicolor/48x48/apps/wp_protocol.png %%DATADIR%%/icons/hicolor/64x64/actions/logging.png %%DATADIR%%/icons/hicolor/64x64/actions/qq_connecting.mng %%DATADIR%%/icons/hicolor/64x64/apps/bonjour_protocol.png %%DATADIR%%/icons/hicolor/64x64/apps/groupwise_protocol.png %%DATADIR%%/icons/hicolor/64x64/apps/jabber_protocol.png %%DATADIR%%/icons/hicolor/64x64/apps/qq_protocol.png %%DATADIR%%/icons/hicolor/64x64/apps/testbed_protocol.png %%DATADIR%%/icons/hicolor/64x64/apps/wp_protocol.png %%DATADIR%%/styles/Clean/Contents/Resources/Footer.html %%DATADIR%%/styles/Clean/Contents/Resources/Header.html %%DATADIR%%/styles/Clean/Contents/Resources/Incoming/Content.html %%DATADIR%%/styles/Clean/Contents/Resources/Incoming/NextContent.html %%DATADIR%%/styles/Clean/Contents/Resources/Incoming/buddy_icon.png %%DATADIR%%/styles/Clean/Contents/Resources/Outgoing/Content.html %%DATADIR%%/styles/Clean/Contents/Resources/Outgoing/NextContent.html %%DATADIR%%/styles/Clean/Contents/Resources/Outgoing/StateError.html %%DATADIR%%/styles/Clean/Contents/Resources/Outgoing/StateSending.html %%DATADIR%%/styles/Clean/Contents/Resources/Outgoing/buddy_icon.png %%DATADIR%%/styles/Clean/Contents/Resources/Status.html %%DATADIR%%/styles/Clean/Contents/Resources/images/action.png %%DATADIR%%/styles/Clean/Contents/Resources/images/important.png %%DATADIR%%/styles/Clean/Contents/Resources/images/internal.png %%DATADIR%%/styles/Clean/Contents/Resources/images/state-error.png %%DATADIR%%/styles/Clean/Contents/Resources/images/state-sending.gif %%DATADIR%%/styles/Clean/Contents/Resources/main.css %%DATADIR%%/styles/Clear/Contents/Resources/Footer.html %%DATADIR%%/styles/Clear/Contents/Resources/Header.html %%DATADIR%%/styles/Clear/Contents/Resources/Incoming/Action.html %%DATADIR%%/styles/Clear/Contents/Resources/Incoming/Content.html %%DATADIR%%/styles/Clear/Contents/Resources/Incoming/NextContent.html %%DATADIR%%/styles/Clear/Contents/Resources/Incoming/buddy_icon.png %%DATADIR%%/styles/Clear/Contents/Resources/Outgoing/Action.html %%DATADIR%%/styles/Clear/Contents/Resources/Outgoing/Content.html %%DATADIR%%/styles/Clear/Contents/Resources/Outgoing/NextContent.html %%DATADIR%%/styles/Clear/Contents/Resources/Outgoing/StateError.html %%DATADIR%%/styles/Clear/Contents/Resources/Outgoing/StateSending.html %%DATADIR%%/styles/Clear/Contents/Resources/Outgoing/buddy_icon.png %%DATADIR%%/styles/Clear/Contents/Resources/Status.html %%DATADIR%%/styles/Clear/Contents/Resources/Variants/No_avatars.css %%DATADIR%%/styles/Clear/Contents/Resources/images/body-background.png %%DATADIR%%/styles/Clear/Contents/Resources/images/body-inbound-arrow.png %%DATADIR%%/styles/Clear/Contents/Resources/images/body-inbound-avatar.png %%DATADIR%%/styles/Clear/Contents/Resources/images/body-inbound-background.png %%DATADIR%%/styles/Clear/Contents/Resources/images/body-inbound-left.png %%DATADIR%%/styles/Clear/Contents/Resources/images/body-inbound-right.png %%DATADIR%%/styles/Clear/Contents/Resources/images/body-outbound-arrow.png %%DATADIR%%/styles/Clear/Contents/Resources/images/body-outbound-avatar.png %%DATADIR%%/styles/Clear/Contents/Resources/images/body-outbound-left.png %%DATADIR%%/styles/Clear/Contents/Resources/images/body-outbound-right.png %%DATADIR%%/styles/Clear/Contents/Resources/images/footer-inbound-background.png %%DATADIR%%/styles/Clear/Contents/Resources/images/footer-inbound-left.png %%DATADIR%%/styles/Clear/Contents/Resources/images/footer-inbound-right.png %%DATADIR%%/styles/Clear/Contents/Resources/images/footer-outbound-background.png %%DATADIR%%/styles/Clear/Contents/Resources/images/footer-outbound-left.png %%DATADIR%%/styles/Clear/Contents/Resources/images/footer-outbound-right.png %%DATADIR%%/styles/Clear/Contents/Resources/images/header-inbound-background.png %%DATADIR%%/styles/Clear/Contents/Resources/images/header-inbound-left.png %%DATADIR%%/styles/Clear/Contents/Resources/images/header-inbound-right.png %%DATADIR%%/styles/Clear/Contents/Resources/images/header-outbound-background.png %%DATADIR%%/styles/Clear/Contents/Resources/images/header-outbound-left.png %%DATADIR%%/styles/Clear/Contents/Resources/images/header-outbound-right.png %%DATADIR%%/styles/Clear/Contents/Resources/images/icon-action.png %%DATADIR%%/styles/Clear/Contents/Resources/images/icon-highlighted.png %%DATADIR%%/styles/Clear/Contents/Resources/images/icon-internal.png %%DATADIR%%/styles/Clear/Contents/Resources/images/icon-me.png %%DATADIR%%/styles/Clear/Contents/Resources/images/icon-time.png %%DATADIR%%/styles/Clear/Contents/Resources/images/icon-you.png %%DATADIR%%/styles/Clear/Contents/Resources/images/state-error.png %%DATADIR%%/styles/Clear/Contents/Resources/images/state-sending.gif %%DATADIR%%/styles/Clear/Contents/Resources/main.css %%DATADIR%%/styles/Hacker/COPYRIGHT %%DATADIR%%/styles/Hacker/Contents/Info.plist %%DATADIR%%/styles/Hacker/Contents/Resources/Footer.html %%DATADIR%%/styles/Hacker/Contents/Resources/Header.html %%DATADIR%%/styles/Hacker/Contents/Resources/Incoming/Action.html %%DATADIR%%/styles/Hacker/Contents/Resources/Incoming/Content.html %%DATADIR%%/styles/Hacker/Contents/Resources/Incoming/Context.html %%DATADIR%%/styles/Hacker/Contents/Resources/Incoming/NextContent.html %%DATADIR%%/styles/Hacker/Contents/Resources/Incoming/NextContext.html %%DATADIR%%/styles/Hacker/Contents/Resources/Incoming/buddy_icon.png %%DATADIR%%/styles/Hacker/Contents/Resources/Outgoing/Action.html %%DATADIR%%/styles/Hacker/Contents/Resources/Outgoing/Content.html %%DATADIR%%/styles/Hacker/Contents/Resources/Outgoing/Context.html %%DATADIR%%/styles/Hacker/Contents/Resources/Outgoing/NextContent.html %%DATADIR%%/styles/Hacker/Contents/Resources/Outgoing/NextContext.html %%DATADIR%%/styles/Hacker/Contents/Resources/Outgoing/StateError.html %%DATADIR%%/styles/Hacker/Contents/Resources/Outgoing/StateSending.html %%DATADIR%%/styles/Hacker/Contents/Resources/Outgoing/buddy_icon.png %%DATADIR%%/styles/Hacker/Contents/Resources/Status.html %%DATADIR%%/styles/Hacker/Contents/Resources/Variants/Dark-Noback.css %%DATADIR%%/styles/Hacker/Contents/Resources/Variants/Dark.css %%DATADIR%%/styles/Hacker/Contents/Resources/Variants/Dark2-Noback.css %%DATADIR%%/styles/Hacker/Contents/Resources/Variants/Dark2.css %%DATADIR%%/styles/Hacker/Contents/Resources/Variants/Light-Noback.css %%DATADIR%%/styles/Hacker/Contents/Resources/Variants/Light.css %%DATADIR%%/styles/Hacker/Contents/Resources/Variants/Light2-Noback.css %%DATADIR%%/styles/Hacker/Contents/Resources/Variants/Light2.css %%DATADIR%%/styles/Hacker/Contents/Resources/images/background.png %%DATADIR%%/styles/Hacker/Contents/Resources/images/background2.png %%DATADIR%%/styles/Hacker/Contents/Resources/images/kopete.png %%DATADIR%%/styles/Hacker/Contents/Resources/images/state-error.png %%DATADIR%%/styles/Hacker/Contents/Resources/images/state-sending-white.gif %%DATADIR%%/styles/Hacker/Contents/Resources/images/state-sending.gif %%DATADIR%%/styles/Hacker/Contents/Resources/main.css %%DATADIR%%/styles/Hacker/README %%DATADIR%%/styles/Hacker/gpl.txt %%DATADIR%%/styles/Konqi/Contents/Resources/Footer.html %%DATADIR%%/styles/Konqi/Contents/Resources/Header.html %%DATADIR%%/styles/Konqi/Contents/Resources/Incoming/Content.html %%DATADIR%%/styles/Konqi/Contents/Resources/Incoming/NextContent.html %%DATADIR%%/styles/Konqi/Contents/Resources/Incoming/buddy_icon.png %%DATADIR%%/styles/Konqi/Contents/Resources/Outgoing/Content.html %%DATADIR%%/styles/Konqi/Contents/Resources/Outgoing/NextContent.html %%DATADIR%%/styles/Konqi/Contents/Resources/Outgoing/buddy_icon.png %%DATADIR%%/styles/Konqi/Contents/Resources/Status.html %%DATADIR%%/styles/Konqi/Contents/Resources/Variants/Side_blue.css %%DATADIR%%/styles/Konqi/Contents/Resources/Variants/Side_blue_moon.css %%DATADIR%%/styles/Konqi/Contents/Resources/Variants/Side_blue_moon_without_transparency.css %%DATADIR%%/styles/Konqi/Contents/Resources/Variants/Side_blue_without_transparency.css %%DATADIR%%/styles/Konqi/Contents/Resources/Variants/Side_green.css %%DATADIR%%/styles/Konqi/Contents/Resources/Variants/Side_green_without_trans.css %%DATADIR%%/styles/Konqi/Contents/Resources/Variants/Side_green_without_transparency.css %%DATADIR%%/styles/Konqi/Contents/Resources/Variants/konqui/cadre1.png %%DATADIR%%/styles/Konqi/Contents/Resources/Variants/konqui/cadre2.png %%DATADIR%%/styles/Konqi/Contents/Resources/Variants/konqui/cadre3.png %%DATADIR%%/styles/Konqi/Contents/Resources/Variants/konqui/cadre4.png %%DATADIR%%/styles/Konqi/Contents/Resources/Variants/konqui/cadre5.png %%DATADIR%%/styles/Konqi/Contents/Resources/Variants/konqui/cadre6.png %%DATADIR%%/styles/Konqi/Contents/Resources/Variants/konqui/konqui-blue.png %%DATADIR%%/styles/Konqi/Contents/Resources/Variants/konqui/konqui-green.png %%DATADIR%%/styles/Konqi/Contents/Resources/Variants/konqui/konqui-moon.jpg %%DATADIR%%/styles/Konqi/Contents/Resources/main.css %%DATADIR%%/styles/Konqi/Contents/Resources/puce.png %%DATADIR%%/styles/Kopete/Contents/Resources/Footer.html %%DATADIR%%/styles/Kopete/Contents/Resources/Header.html %%DATADIR%%/styles/Kopete/Contents/Resources/Incoming/Action.html %%DATADIR%%/styles/Kopete/Contents/Resources/Incoming/Content.html %%DATADIR%%/styles/Kopete/Contents/Resources/Incoming/NextContent.html %%DATADIR%%/styles/Kopete/Contents/Resources/Incoming/buddy_icon.png %%DATADIR%%/styles/Kopete/Contents/Resources/Outgoing/Action.html %%DATADIR%%/styles/Kopete/Contents/Resources/Outgoing/Content.html %%DATADIR%%/styles/Kopete/Contents/Resources/Outgoing/NextContent.html %%DATADIR%%/styles/Kopete/Contents/Resources/Outgoing/StateError.html %%DATADIR%%/styles/Kopete/Contents/Resources/Outgoing/StateSending.html %%DATADIR%%/styles/Kopete/Contents/Resources/Outgoing/buddy_icon.png %%DATADIR%%/styles/Kopete/Contents/Resources/Status.html %%DATADIR%%/styles/Kopete/Contents/Resources/Variants/Big_pictures.css %%DATADIR%%/styles/Kopete/Contents/Resources/Variants/Contact_color.css %%DATADIR%%/styles/Kopete/Contents/Resources/Variants/_compact_.css %%DATADIR%%/styles/Kopete/Contents/Resources/Variants/_compact_Contact_color.css %%DATADIR%%/styles/Kopete/Contents/Resources/images/action.png %%DATADIR%%/styles/Kopete/Contents/Resources/images/important.png %%DATADIR%%/styles/Kopete/Contents/Resources/images/state-error.png %%DATADIR%%/styles/Kopete/Contents/Resources/images/state-sending.gif %%DATADIR%%/styles/Kopete/Contents/Resources/images/system.png %%DATADIR%%/styles/Kopete/Contents/Resources/main.css %%DATADIR%%/styles/Pidgin/Contents/Info.plist %%DATADIR%%/styles/Pidgin/Contents/Resources/Footer.html %%DATADIR%%/styles/Pidgin/Contents/Resources/Header.html %%DATADIR%%/styles/Pidgin/Contents/Resources/Incoming/Action.html %%DATADIR%%/styles/Pidgin/Contents/Resources/Incoming/Content.html %%DATADIR%%/styles/Pidgin/Contents/Resources/Incoming/NextContent.html %%DATADIR%%/styles/Pidgin/Contents/Resources/Outgoing/Action.html %%DATADIR%%/styles/Pidgin/Contents/Resources/Outgoing/Content.html %%DATADIR%%/styles/Pidgin/Contents/Resources/Outgoing/NextContent.html %%DATADIR%%/styles/Pidgin/Contents/Resources/Outgoing/StateError.html %%DATADIR%%/styles/Pidgin/Contents/Resources/Outgoing/StateSending.html %%DATADIR%%/styles/Pidgin/Contents/Resources/Status.html %%DATADIR%%/styles/Pidgin/Contents/Resources/Variants/Contact-Colors.css %%DATADIR%%/styles/Pidgin/Contents/Resources/Variants/Name-Colors.css %%DATADIR%%/styles/Pidgin/Contents/Resources/Variants/No-Colors.css %%DATADIR%%/styles/Pidgin/Contents/Resources/Variants/Status-Colors.css %%DATADIR%%/styles/Pidgin/Contents/Resources/images/state-error.png %%DATADIR%%/styles/Pidgin/Contents/Resources/images/state-sending.gif %%DATADIR%%/styles/Pidgin/Contents/Resources/main.css %%DATADIR%%/styles/Retropete/Contents/Resources/Footer.html %%DATADIR%%/styles/Retropete/Contents/Resources/Header.html %%DATADIR%%/styles/Retropete/Contents/Resources/Incoming/Action.html %%DATADIR%%/styles/Retropete/Contents/Resources/Incoming/Content.html %%DATADIR%%/styles/Retropete/Contents/Resources/Incoming/NextContent.html %%DATADIR%%/styles/Retropete/Contents/Resources/Outgoing/Action.html %%DATADIR%%/styles/Retropete/Contents/Resources/Outgoing/Content.html %%DATADIR%%/styles/Retropete/Contents/Resources/Outgoing/NextContent.html %%DATADIR%%/styles/Retropete/Contents/Resources/Outgoing/StateError.html %%DATADIR%%/styles/Retropete/Contents/Resources/Outgoing/StateSending.html %%DATADIR%%/styles/Retropete/Contents/Resources/Status.html %%DATADIR%%/styles/Retropete/Contents/Resources/images/state-error.png %%DATADIR%%/styles/Retropete/Contents/Resources/images/state-sending.gif %%DATADIR%%/styles/Retropete/Contents/Resources/main.css %%DATADIR%%/webpresence/webpresence_html.xsl %%DATADIR%%/webpresence/webpresence_html_images.xsl %%DATADIR%%/webpresence/webpresence_xhtml.xsl %%DATADIR%%/webpresence/webpresence_xhtml_images.xsl %%DATADIR%%_history/historychatui.rc %%DATADIR%%_history/historyui.rc share/kservices5/aim.protocol share/kservices5/chatwindow.desktop share/kservices5/emailwindow.desktop share/kservices5/kconfiguredialog/kopete_addbookmarks_config.desktop share/kservices5/kconfiguredialog/kopete_autoreplace_config.desktop share/kservices5/kconfiguredialog/kopete_highlight_config.desktop share/kservices5/kconfiguredialog/kopete_history_config.desktop share/kservices5/kconfiguredialog/kopete_otr_config.desktop share/kservices5/kconfiguredialog/kopete_privacy_config.desktop share/kservices5/kconfiguredialog/kopete_texteffect_config.desktop share/kservices5/kconfiguredialog/kopete_urlpicpreview_config.desktop share/kservices5/kconfiguredialog/kopete_webpresence_config.desktop share/kservices5/kopete_accountconfig.desktop share/kservices5/kopete_addbookmarks.desktop share/kservices5/kopete_aim.desktop share/kservices5/kopete_appearanceconfig.desktop share/kservices5/kopete_autoreplace.desktop share/kservices5/kopete_avdeviceconfig.desktop share/kservices5/kopete_behaviorconfig.desktop share/kservices5/kopete_bonjour.desktop share/kservices5/kopete_chatwindowconfig.desktop share/kservices5/kopete_contactnotes.desktop share/kservices5/kopete_groupwise.desktop share/kservices5/kopete_highlight.desktop share/kservices5/kopete_history.desktop share/kservices5/kopete_icq.desktop share/kservices5/kopete_jabber.desktop share/kservices5/kopete_otr.desktop share/kservices5/kopete_pluginconfig.desktop share/kservices5/kopete_privacy.desktop share/kservices5/kopete_qq.desktop share/kservices5/kopete_statistics.desktop share/kservices5/kopete_statusconfig.desktop share/kservices5/kopete_testbed.desktop share/kservices5/kopete_texteffect.desktop share/kservices5/kopete_urlpicpreview.desktop share/kservices5/kopete_webpresence.desktop share/kservices5/kopete_wp.desktop share/kservices5/xmpp.protocol share/kservicetypes5/kopeteplugin.desktop share/kservicetypes5/kopeteprotocol.desktop share/kservicetypes5/kopeteui.desktop share/kxmlgui5/kopete/kopetechatwindow.rc share/kxmlgui5/kopete/kopeteemailwindow.rc share/kxmlgui5/kopete/kopeteui.rc share/kxmlgui5/kopete/privacychatui.rc share/kxmlgui5/kopete/privacyui.rc share/kxmlgui5/kopete_groupwise/gwchatui.rc share/kxmlgui5/kopete_otr/otrchatui.rc share/kxmlgui5/kopete_otr/otrui.rc share/locale/ar/LC_MESSAGES/kio_jabberdisco.mo share/locale/ar/LC_MESSAGES/kopete.mo share/locale/bg/LC_MESSAGES/kio_jabberdisco.mo share/locale/bg/LC_MESSAGES/kopete.mo share/locale/bs/LC_MESSAGES/kio_jabberdisco.mo share/locale/bs/LC_MESSAGES/kopete.mo share/locale/ca/LC_MESSAGES/kio_jabberdisco.mo share/locale/ca/LC_MESSAGES/kopete.mo share/locale/ca@valencia/LC_MESSAGES/kio_jabberdisco.mo share/locale/ca@valencia/LC_MESSAGES/kopete.mo share/locale/cs/LC_MESSAGES/kio_jabberdisco.mo share/locale/cs/LC_MESSAGES/kopete.mo share/locale/da/LC_MESSAGES/kio_jabberdisco.mo share/locale/da/LC_MESSAGES/kopete.mo share/locale/de/LC_MESSAGES/kio_jabberdisco.mo share/locale/de/LC_MESSAGES/kopete.mo share/locale/el/LC_MESSAGES/kio_jabberdisco.mo share/locale/el/LC_MESSAGES/kopete.mo share/locale/en_GB/LC_MESSAGES/kio_jabberdisco.mo share/locale/en_GB/LC_MESSAGES/kopete.mo share/locale/eo/LC_MESSAGES/kio_jabberdisco.mo share/locale/eo/LC_MESSAGES/kopete.mo share/locale/es/LC_MESSAGES/kio_jabberdisco.mo share/locale/es/LC_MESSAGES/kopete.mo share/locale/et/LC_MESSAGES/kio_jabberdisco.mo share/locale/et/LC_MESSAGES/kopete.mo share/locale/eu/LC_MESSAGES/kio_jabberdisco.mo share/locale/eu/LC_MESSAGES/kopete.mo share/locale/fa/LC_MESSAGES/kio_jabberdisco.mo share/locale/fa/LC_MESSAGES/kopete.mo share/locale/fi/LC_MESSAGES/kio_jabberdisco.mo share/locale/fi/LC_MESSAGES/kopete.mo share/locale/fr/LC_MESSAGES/kio_jabberdisco.mo share/locale/fr/LC_MESSAGES/kopete.mo share/locale/ga/LC_MESSAGES/kio_jabberdisco.mo share/locale/ga/LC_MESSAGES/kopete.mo share/locale/gl/LC_MESSAGES/kio_jabberdisco.mo share/locale/gl/LC_MESSAGES/kopete.mo share/locale/he/LC_MESSAGES/kopete.mo share/locale/hi/LC_MESSAGES/kio_jabberdisco.mo share/locale/hi/LC_MESSAGES/kopete.mo share/locale/hr/LC_MESSAGES/kio_jabberdisco.mo share/locale/hr/LC_MESSAGES/kopete.mo share/locale/hu/LC_MESSAGES/kio_jabberdisco.mo share/locale/hu/LC_MESSAGES/kopete.mo share/locale/ia/LC_MESSAGES/kio_jabberdisco.mo share/locale/ia/LC_MESSAGES/kopete.mo share/locale/is/LC_MESSAGES/kio_jabberdisco.mo share/locale/is/LC_MESSAGES/kopete.mo share/locale/it/LC_MESSAGES/kio_jabberdisco.mo share/locale/it/LC_MESSAGES/kopete.mo share/locale/ja/LC_MESSAGES/kio_jabberdisco.mo share/locale/ja/LC_MESSAGES/kopete.mo share/locale/kk/LC_MESSAGES/kio_jabberdisco.mo share/locale/kk/LC_MESSAGES/kopete.mo share/locale/km/LC_MESSAGES/kio_jabberdisco.mo share/locale/km/LC_MESSAGES/kopete.mo share/locale/ko/LC_MESSAGES/kio_jabberdisco.mo share/locale/ko/LC_MESSAGES/kopete.mo share/locale/lt/LC_MESSAGES/kio_jabberdisco.mo share/locale/lt/LC_MESSAGES/kopete.mo share/locale/lv/LC_MESSAGES/kio_jabberdisco.mo share/locale/lv/LC_MESSAGES/kopete.mo share/locale/mr/LC_MESSAGES/kio_jabberdisco.mo share/locale/mr/LC_MESSAGES/kopete.mo share/locale/nb/LC_MESSAGES/kio_jabberdisco.mo share/locale/nb/LC_MESSAGES/kopete.mo share/locale/nds/LC_MESSAGES/kio_jabberdisco.mo share/locale/nds/LC_MESSAGES/kopete.mo share/locale/nl/LC_MESSAGES/kio_jabberdisco.mo share/locale/nl/LC_MESSAGES/kopete.mo share/locale/nn/LC_MESSAGES/kio_jabberdisco.mo share/locale/nn/LC_MESSAGES/kopete.mo share/locale/pa/LC_MESSAGES/kio_jabberdisco.mo share/locale/pa/LC_MESSAGES/kopete.mo share/locale/pl/LC_MESSAGES/kio_jabberdisco.mo share/locale/pl/LC_MESSAGES/kopete.mo share/locale/pt/LC_MESSAGES/kio_jabberdisco.mo share/locale/pt/LC_MESSAGES/kopete.mo share/locale/pt_BR/LC_MESSAGES/kio_jabberdisco.mo share/locale/pt_BR/LC_MESSAGES/kopete.mo share/locale/ro/LC_MESSAGES/kio_jabberdisco.mo share/locale/ro/LC_MESSAGES/kopete.mo share/locale/ru/LC_MESSAGES/kio_jabberdisco.mo share/locale/ru/LC_MESSAGES/kopete.mo share/locale/sk/LC_MESSAGES/kio_jabberdisco.mo share/locale/sk/LC_MESSAGES/kopete.mo share/locale/sl/LC_MESSAGES/kio_jabberdisco.mo share/locale/sl/LC_MESSAGES/kopete.mo share/locale/sr/LC_MESSAGES/kio_jabberdisco.mo share/locale/sr/LC_MESSAGES/kopete.mo share/locale/sv/LC_MESSAGES/kio_jabberdisco.mo share/locale/sv/LC_MESSAGES/kopete.mo share/locale/tr/LC_MESSAGES/kio_jabberdisco.mo share/locale/tr/LC_MESSAGES/kopete.mo share/locale/ug/LC_MESSAGES/kio_jabberdisco.mo share/locale/ug/LC_MESSAGES/kopete.mo share/locale/uk/LC_MESSAGES/kio_jabberdisco.mo share/locale/uk/LC_MESSAGES/kopete.mo share/locale/wa/LC_MESSAGES/kopete.mo share/locale/zh_CN/LC_MESSAGES/kio_jabberdisco.mo share/locale/zh_CN/LC_MESSAGES/kopete.mo share/locale/zh_TW/LC_MESSAGES/kio_jabberdisco.mo share/locale/zh_TW/LC_MESSAGES/kopete.mo share/metainfo/org.kde.kopete.appdata.xml share/sounds/Kopete_Event.ogg share/sounds/Kopete_Received.ogg share/sounds/Kopete_Sent.ogg share/sounds/Kopete_User_is_Online.ogg Index: head/net-im/ktp-accounts-kcm/Makefile =================================================================== --- head/net-im/ktp-accounts-kcm/Makefile (revision 499276) +++ head/net-im/ktp-accounts-kcm/Makefile (revision 499277) @@ -1,48 +1,47 @@ # $FreeBSD$ PORTNAME= ktp-accounts-kcm DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= net-im kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE instant messaging account management module LICENSE= LGPL21+ LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libaccounts-qt5.so:net-im/libaccounts-qt5 \ libkaccounts.so:net-im/kaccounts-integration \ libtelepathy-qt5.so:net-im/telepathy-qt \ libtelepathy-logger-qt.so:net-im/telepathy-logger-qt5 \ libKTpCommonInternals.so:net-im/ktp-common-internals \ libKF5AkonadiPrivate.so:databases/akonadi \ libsignon-qt5.so:sysutils/signon-qt5 RUN_DEPENDS= ${KDE_PREFIX}/bin/ktp-contactlist:net-im/ktp-contact-list \ ${QT_PLUGINDIR}/kaccounts/ui/owncloud_plugin_kaccounts.so:net-im/kaccounts-providers USES= compiler:c++11-lang cmake gettext gnome kde:5 \ pkgconfig qt:5 tar:xz USE_GNOME= intltool USE_KDE= auth codecs config configwidgets coreaddons ecm i18n \ iconthemes itemviews kcmutils kio notifications notifyconfig \ service texteditor wallet widgetsaddons windowsystem USE_QT= core dbus declarative gui network sql widgets xml \ buildtools_build qmake_build USE_LDCONFIG= yes OPTIONS_DEFINE= HAZE IRC JABBER SALUT DOCS OPTIONS_DEFAULT=JABBER HAZE_DESC= libpurple protocols support HAZE_RUN_DEPENDS= ${LOCALBASE}/libexec/telepathy-haze:net-im/telepathy-haze IRC_DESC= Internet Relay Chat support IRC_RUN_DEPENDS= ${LOCALBASE}/libexec/telepathy-idle:net-im/telepathy-idle JABBER_RUN_DEPENDS= ${LOCALBASE}/libexec/telepathy-gabble:net-im/telepathy-gabble SALUT_DESC= Link-local (serverless) XMPP support SALUT_RUN_DEPENDS= ${LOCALBASE}/libexec/telepathy-salut:net-im/telepathy-salut .include Index: head/net-im/ktp-accounts-kcm/distinfo =================================================================== --- head/net-im/ktp-accounts-kcm/distinfo (revision 499276) +++ head/net-im/ktp-accounts-kcm/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551811101 -SHA256 (KDE/applications/18.12.3/ktp-accounts-kcm-18.12.3.tar.xz) = ab6ab0f6cb438ec68b110158f7c6555572f04ad69da04f5e1d144cfc4a8ee8cb -SIZE (KDE/applications/18.12.3/ktp-accounts-kcm-18.12.3.tar.xz) = 261760 +TIMESTAMP = 1555094906 +SHA256 (KDE/applications/19.04.0/ktp-accounts-kcm-19.04.0.tar.xz) = e7c11f4310dd4cb119336fb569cc9799dbdd3d7f4b87af9e265f8fc4439ec7f8 +SIZE (KDE/applications/19.04.0/ktp-accounts-kcm-19.04.0.tar.xz) = 261536 Index: head/net-im/ktp-approver/Makefile =================================================================== --- head/net-im/ktp-approver/Makefile (revision 499276) +++ head/net-im/ktp-approver/Makefile (revision 499277) @@ -1,25 +1,24 @@ # $FreeBSD$ PORTNAME= ktp-approver DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= net-im kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE instant messaging notifier LICENSE= LGPL21+ LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libtelepathy-qt5.so:net-im/telepathy-qt \ libKTpCommonInternals.so:net-im/ktp-common-internals RUN_DEPENDS= ${KDE_PREFIX}/bin/ktp-contactlist:net-im/ktp-contact-list USES= compiler:c++11-lang cmake gettext kde:5 qt:5 tar:xz USE_KDE= config coreaddons ecm dbusaddons service i18n notifications USE_QT= core dbus gui network widgets xml \ buildtools_build qmake_build OPTIONS_DEFINE= DOCS .include Index: head/net-im/ktp-approver/distinfo =================================================================== --- head/net-im/ktp-approver/distinfo (revision 499276) +++ head/net-im/ktp-approver/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551811100 -SHA256 (KDE/applications/18.12.3/ktp-approver-18.12.3.tar.xz) = 0616fcad79fdeae5f2a58b167419f1745e94cea21950faa535e7b5a6c2e53cf6 -SIZE (KDE/applications/18.12.3/ktp-approver-18.12.3.tar.xz) = 36936 +TIMESTAMP = 1555094907 +SHA256 (KDE/applications/19.04.0/ktp-approver-19.04.0.tar.xz) = ec273b9eabcedd47c97fa60c68a3037115b9b06a91892d32871e8ded4c04cdfe +SIZE (KDE/applications/19.04.0/ktp-approver-19.04.0.tar.xz) = 36852 Index: head/net-im/ktp-auth-handler/Makefile =================================================================== --- head/net-im/ktp-auth-handler/Makefile (revision 499276) +++ head/net-im/ktp-auth-handler/Makefile (revision 499277) @@ -1,30 +1,29 @@ # $FreeBSD$ PORTNAME= ktp-auth-handler DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 2 CATEGORIES= net-im kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KWallet integration module for KDE Telepathy LICENSE= LGPL21+ LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libqca-qt5.so:devel/qca \ libtelepathy-qt5.so:net-im/telepathy-qt \ libKTpCommonInternals.so:net-im/ktp-common-internals \ libaccounts-qt5.so:net-im/libaccounts-qt5 \ libkaccounts.so:net-im/kaccounts-integration \ libsignon-qt5.so:sysutils/signon-qt5 USES= compiler:c++11-lang cmake gettext kde:5 pkgconfig \ qt:5 tar:xz USE_KDE= completion config coreaddons ecm i18n jobwidgets kdewebkit \ kio wallet service widgetsaddons USE_QT= core dbus gui network webkit widgets xml \ buildtools_build qmake_build OPTIONS_DEFINE= DOCS .include Index: head/net-im/ktp-auth-handler/distinfo =================================================================== --- head/net-im/ktp-auth-handler/distinfo (revision 499276) +++ head/net-im/ktp-auth-handler/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551811087 -SHA256 (KDE/applications/18.12.3/ktp-auth-handler-18.12.3.tar.xz) = 91d6e0148c9006117bc67969012f7a12405e186fc8ffd4011732dc3e7c16a4be -SIZE (KDE/applications/18.12.3/ktp-auth-handler-18.12.3.tar.xz) = 46040 +TIMESTAMP = 1555094907 +SHA256 (KDE/applications/19.04.0/ktp-auth-handler-19.04.0.tar.xz) = db459ed02c5ed37ce41ec9728d931ca1ab987c43d1b48f501d38b40e1e4f19e9 +SIZE (KDE/applications/19.04.0/ktp-auth-handler-19.04.0.tar.xz) = 46012 Index: head/net-im/ktp-call-ui/Makefile =================================================================== --- head/net-im/ktp-call-ui/Makefile (revision 499276) +++ head/net-im/ktp-call-ui/Makefile (revision 499277) @@ -1,31 +1,30 @@ # $FreeBSD$ PORTNAME= ktp-call-ui DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 3 CATEGORIES= net-im kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Voice/Video Call UI for Telepathy 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 kde:5 pkgconfig \ python:2.7 qt:5 tar:xz USE_GNOME= glib20 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 499276) +++ head/net-im/ktp-call-ui/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551811111 -SHA256 (KDE/applications/18.12.3/ktp-call-ui-18.12.3.tar.xz) = 3558b9ef7a2a000f6b49454c4477dcd9700168a1f2c060267b24c78725097571 -SIZE (KDE/applications/18.12.3/ktp-call-ui-18.12.3.tar.xz) = 96256 +TIMESTAMP = 1555094918 +SHA256 (KDE/applications/19.04.0/ktp-call-ui-19.04.0.tar.xz) = b63ef1f0bcaed631f9106a355dd60e48edb6e7e39bb6bd0603b504fc33949427 +SIZE (KDE/applications/19.04.0/ktp-call-ui-19.04.0.tar.xz) = 96268 Index: head/net-im/ktp-common-internals/Makefile =================================================================== --- head/net-im/ktp-common-internals/Makefile (revision 499276) +++ head/net-im/ktp-common-internals/Makefile (revision 499277) @@ -1,34 +1,33 @@ # $FreeBSD$ PORTNAME= ktp-common-internals DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= net-im kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE Telepathy internal library LIB_DEPENDS= libgcrypt.so:security/libgcrypt \ libsignon-qt5.so:sysutils/signon-qt5 \ libtelepathy-qt5.so:net-im/telepathy-qt \ libtelepathy-logger-qt.so:net-im/telepathy-logger-qt5 \ libotr.so:security/libotr \ libaccounts-qt5.so:net-im/libaccounts-qt5 \ libkaccounts.so:net-im/kaccounts-integration RUN_DEPENDS= ${LOCALBASE}/lib/mission-control-plugins.0/mcp-account-manager-accounts-sso.so:net-im/telepathy-accounts-signon \ ${LOCALBASE}/libexec/mission-control-5:net-im/telepathy-mission-control USES= cmake compiler:c++11-lang gettext pkgconfig kde:5 \ qt:5 tar:xz USE_KDE= auth bookmarks codecs completion config configwidgets \ coreaddons ecm i18n iconthemes itemviews jobwidgets kcmutils \ kio notifications notifyconfig parts people service solid \ sonnet texteditor textwidgets wallet widgetsaddons windowsystem \ xmlgui USE_QT= core dbus declarative gui network sql widgets xml \ buildtools_build qmake_build USE_LDCONFIG= yes OPTIONS_DEFINE= DOCS .include Index: head/net-im/ktp-common-internals/distinfo =================================================================== --- head/net-im/ktp-common-internals/distinfo (revision 499276) +++ head/net-im/ktp-common-internals/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551811086 -SHA256 (KDE/applications/18.12.3/ktp-common-internals-18.12.3.tar.xz) = 3913a515d98f74940e0db6b85fc5c6c128c68cffb427c93164052be437634740 -SIZE (KDE/applications/18.12.3/ktp-common-internals-18.12.3.tar.xz) = 441288 +TIMESTAMP = 1555094918 +SHA256 (KDE/applications/19.04.0/ktp-common-internals-19.04.0.tar.xz) = 12e3e0733eef78a649fa1e55f2f3d228b581fb1a0ba401e154dd57d4eb286eaa +SIZE (KDE/applications/19.04.0/ktp-common-internals-19.04.0.tar.xz) = 441516 Index: head/net-im/ktp-contact-list/Makefile =================================================================== --- head/net-im/ktp-contact-list/Makefile (revision 499276) +++ head/net-im/ktp-contact-list/Makefile (revision 499277) @@ -1,25 +1,24 @@ # $FreeBSD$ PORTNAME= ktp-contact-list DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= net-im kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE instant messaging contact list application LIB_DEPENDS= libtelepathy-qt5.so:net-im/telepathy-qt \ libtelepathy-logger-qt.so:net-im/telepathy-logger-qt5 \ libKTpCommonInternals.so:net-im/ktp-common-internals USES= compiler:c++11-lang cmake gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs completion config configwidgets coreaddons \ dbusaddons ecm i18n iconthemes jobwidgets kcmutils kio \ notifications notifyconfig people service wallet widgetsaddons \ windowsystem xmlgui USE_QT= core dbus gui network widgets xml \ buildtools_build qmake_build OPTIONS_DEFINE= DOCS .include Index: head/net-im/ktp-contact-list/distinfo =================================================================== --- head/net-im/ktp-contact-list/distinfo (revision 499276) +++ head/net-im/ktp-contact-list/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551811099 -SHA256 (KDE/applications/18.12.3/ktp-contact-list-18.12.3.tar.xz) = 8f858371ec3760bc042dbf6f022ba834ca5b9ae43997e67bf395978df603d0c1 -SIZE (KDE/applications/18.12.3/ktp-contact-list-18.12.3.tar.xz) = 146480 +TIMESTAMP = 1555094918 +SHA256 (KDE/applications/19.04.0/ktp-contact-list-19.04.0.tar.xz) = 745a1b403e3e1bfd0604521709f44634ab15a053b45f5c390d9a8e80fa405668 +SIZE (KDE/applications/19.04.0/ktp-contact-list-19.04.0.tar.xz) = 146476 Index: head/net-im/ktp-contact-runner/Makefile =================================================================== --- head/net-im/ktp-contact-runner/Makefile (revision 499276) +++ head/net-im/ktp-contact-runner/Makefile (revision 499277) @@ -1,22 +1,21 @@ # $FreeBSD$ PORTNAME= ktp-contact-runner DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= net-im kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KRunner integration module for KDE Telepathy LIB_DEPENDS= libtelepathy-qt5.so:net-im/telepathy-qt \ libKTpCommonInternals.so:net-im/ktp-common-internals USES= compiler:c++11-lang cmake gettext kde:5 qt:5 tar:xz USE_KDE= config coreaddons ecm i18n package plasma-framework runner \ service wallet USE_QT= core dbus gui network widgets xml\ buildtools_build qmake_build OPTIONS_DEFINE= DOCS .include Index: head/net-im/ktp-contact-runner/distinfo =================================================================== --- head/net-im/ktp-contact-runner/distinfo (revision 499276) +++ head/net-im/ktp-contact-runner/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551811087 -SHA256 (KDE/applications/18.12.3/ktp-contact-runner-18.12.3.tar.xz) = 886d561952ac1a8a5fa50ffdff8699358480d18d58cbaec217ed865d2047f0a9 -SIZE (KDE/applications/18.12.3/ktp-contact-runner-18.12.3.tar.xz) = 42176 +TIMESTAMP = 1555094919 +SHA256 (KDE/applications/19.04.0/ktp-contact-runner-19.04.0.tar.xz) = 12d9e3cf2a230e590c9e3e17462b8e061641a70840492971434b131c15594773 +SIZE (KDE/applications/19.04.0/ktp-contact-runner-19.04.0.tar.xz) = 42136 Index: head/net-im/ktp-desktop-applets/distinfo =================================================================== --- head/net-im/ktp-desktop-applets/distinfo (revision 499276) +++ head/net-im/ktp-desktop-applets/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551811100 -SHA256 (KDE/applications/18.12.3/ktp-desktop-applets-18.12.3.tar.xz) = 439dca1046beba0d2579918f2e409e6629e5063da6eeb1001bcd65ff3edb32c4 -SIZE (KDE/applications/18.12.3/ktp-desktop-applets-18.12.3.tar.xz) = 42704 +TIMESTAMP = 1555094919 +SHA256 (KDE/applications/19.04.0/ktp-desktop-applets-19.04.0.tar.xz) = ba5d0422156e0ea38db1abeb317310266fd96b2b259a40df4233880d15037d8c +SIZE (KDE/applications/19.04.0/ktp-desktop-applets-19.04.0.tar.xz) = 42636 Index: head/net-im/ktp-filetransfer-handler/Makefile =================================================================== --- head/net-im/ktp-filetransfer-handler/Makefile (revision 499276) +++ head/net-im/ktp-filetransfer-handler/Makefile (revision 499277) @@ -1,26 +1,25 @@ # $FreeBSD$ PORTNAME= ktp-filetransfer-handler DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= net-im kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE instant messaging file transfer handler LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libtelepathy-qt5.so:net-im/telepathy-qt \ libKTpCommonInternals.so:net-im/ktp-common-internals USES= compiler:c++11-lang cmake gettext kde:5 qt:5 tar:xz USE_KDE= auth bookmarks codecs completion config configwidgets \ coreaddons ecm i18n itemviews jobwidgets kio service solid \ wallet widgetsaddons xmlgui USE_QT= core dbus gui network xml widgets \ buildtools_build qmake_build OPTIONS_DEFINE= DOCS .include Index: head/net-im/ktp-filetransfer-handler/distinfo =================================================================== --- head/net-im/ktp-filetransfer-handler/distinfo (revision 499276) +++ head/net-im/ktp-filetransfer-handler/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551811100 -SHA256 (KDE/applications/18.12.3/ktp-filetransfer-handler-18.12.3.tar.xz) = 898c7f4ffc8d8bec691cc9744fb356722cf7957f39d2d855138492b647542231 -SIZE (KDE/applications/18.12.3/ktp-filetransfer-handler-18.12.3.tar.xz) = 45760 +TIMESTAMP = 1555094919 +SHA256 (KDE/applications/19.04.0/ktp-filetransfer-handler-19.04.0.tar.xz) = 3088b79a79b35fc52f38ae2941e9f1ca8a80a1eed1c3bcdfd489b2e069febcfd +SIZE (KDE/applications/19.04.0/ktp-filetransfer-handler-19.04.0.tar.xz) = 45716 Index: head/net-im/ktp-kded-module/Makefile =================================================================== --- head/net-im/ktp-kded-module/Makefile (revision 499276) +++ head/net-im/ktp-kded-module/Makefile (revision 499277) @@ -1,26 +1,25 @@ # $FreeBSD$ PORTNAME= ktp-kded-module DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= net-im kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Module for integration of instant messaging into KDE Workspaces LICENSE= LGPL21+ LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libtelepathy-qt5.so:net-im/telepathy-qt \ libKTpCommonInternals.so:net-im/ktp-common-internals USES= compiler:c++11-lang cmake gettext kde:5 qt:5 tar:xz USE_KDE= activities auth codecs completion config configwidgets coreaddons \ dbusaddons i18n idletime jobwidgets kcmutils kio notifications \ service wallet widgetsaddons USE_QT= concurrent core dbus gui network sql widgets xml \ buildtools_build qmake_build OPTIONS_DEFINE= DOCS .include Index: head/net-im/ktp-kded-module/distinfo =================================================================== --- head/net-im/ktp-kded-module/distinfo (revision 499276) +++ head/net-im/ktp-kded-module/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551811087 -SHA256 (KDE/applications/18.12.3/ktp-kded-module-18.12.3.tar.xz) = ebbd02a1441caf8e9ced851c8f814255ac4b9e75485a4bc59026f647d3fd4854 -SIZE (KDE/applications/18.12.3/ktp-kded-module-18.12.3.tar.xz) = 94740 +TIMESTAMP = 1555094920 +SHA256 (KDE/applications/19.04.0/ktp-kded-module-19.04.0.tar.xz) = 3409e3ec270f0ba2f558b6e6a84e9948936c128cc536fc6c16c4dd5bd8a3c94b +SIZE (KDE/applications/19.04.0/ktp-kded-module-19.04.0.tar.xz) = 94648 Index: head/net-im/ktp-send-file/Makefile =================================================================== --- head/net-im/ktp-send-file/Makefile (revision 499276) +++ head/net-im/ktp-send-file/Makefile (revision 499277) @@ -1,25 +1,24 @@ # $FreeBSD$ PORTNAME= ktp-send-file DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= net-im kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE instant messaging file transfer application LIB_DEPENDS= libtelepathy-qt5.so:net-im/telepathy-qt \ libKTpCommonInternals.so:net-im/ktp-common-internals RUN_DEPENDS= ${KDE_PREFIX}/lib/libexec/ktp-filetransfer-handler:net-im/ktp-filetransfer-handler \ ${KDE_PREFIX}/bin/ktp-contactlist:net-im/ktp-contact-list USES= compiler:c++11-lang cmake gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs completion config configwidgets coreaddons ecm \ i18n iconthemes jobwidgets kcmutils kio service wallet \ widgetsaddons USE_QT= core dbus gui network widgets xml \ buildtools_build qmake_build OPTIONS_DEFINE= DOCS .include Index: head/net-im/ktp-send-file/distinfo =================================================================== --- head/net-im/ktp-send-file/distinfo (revision 499276) +++ head/net-im/ktp-send-file/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551811099 -SHA256 (KDE/applications/18.12.3/ktp-send-file-18.12.3.tar.xz) = 0015551c42d66f14ae508eee76f138584bbec3b77a4aff4a003255b52d8414f2 -SIZE (KDE/applications/18.12.3/ktp-send-file-18.12.3.tar.xz) = 28572 +TIMESTAMP = 1555094920 +SHA256 (KDE/applications/19.04.0/ktp-send-file-19.04.0.tar.xz) = f0be593d3101cbc5027e7dcc23a767d2e3e753d140afe97d5790db20eea07226 +SIZE (KDE/applications/19.04.0/ktp-send-file-19.04.0.tar.xz) = 28524 Index: head/net-im/ktp-text-ui/Makefile =================================================================== --- head/net-im/ktp-text-ui/Makefile (revision 499276) +++ head/net-im/ktp-text-ui/Makefile (revision 499277) @@ -1,32 +1,31 @@ # $FreeBSD$ PORTNAME= ktp-text-ui DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= net-im kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE chat window application LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libtelepathy-qt5.so:net-im/telepathy-qt \ libtelepathy-logger-qt.so:net-im/telepathy-logger-qt5 \ libKTpCommonInternals.so:net-im/ktp-common-internals RUN_DEPENDS= ${KDE_PREFIX}/bin/ktp-contactlist:net-im/ktp-contact-list USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= archive auth codecs completion config configwidgets coreaddons \ dbusaddons ecm emoticons i18n iconthemes itemviews jobwidgets \ kcmutils kdewebkit kio notifications notifyconfig people \ service sonnet textwidgets wallet widgetsaddons windowsystem \ xmlgui USE_QT= core dbus declarative gui location network speech webchannel \ webengine widgets xml \ buildtools_build qmake_build USE_LDCONFIG= yes OPTIONS_DEFINE= DOCS .include Index: head/net-im/ktp-text-ui/distinfo =================================================================== --- head/net-im/ktp-text-ui/distinfo (revision 499276) +++ head/net-im/ktp-text-ui/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551811099 -SHA256 (KDE/applications/18.12.3/ktp-text-ui-18.12.3.tar.xz) = 6a37a26b0b226d5d30b298a4d6d85f8dcfe9f39cbc35e1b6322651678815a34e -SIZE (KDE/applications/18.12.3/ktp-text-ui-18.12.3.tar.xz) = 466320 +TIMESTAMP = 1555094920 +SHA256 (KDE/applications/19.04.0/ktp-text-ui-19.04.0.tar.xz) = 78ac51d23e54d6044b70083db8d2c6972643a207a7f475cde15292e08b6b6469 +SIZE (KDE/applications/19.04.0/ktp-text-ui-19.04.0.tar.xz) = 466100 Index: head/print/print-manager/distinfo =================================================================== --- head/print/print-manager/distinfo (revision 499276) +++ head/print/print-manager/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551810955 -SHA256 (KDE/applications/18.12.3/print-manager-18.12.3.tar.xz) = 917ea500bcd11d2ca3cc1e7de1b38d7ef72f1d397182aaac2c6a31cd338f387d -SIZE (KDE/applications/18.12.3/print-manager-18.12.3.tar.xz) = 238832 +TIMESTAMP = 1555094935 +SHA256 (KDE/applications/19.04.0/print-manager-19.04.0.tar.xz) = f9dfe61ba341013ae59892cd6715b7c00ee6777ca4d2e81deeda1cf2d283f6ba +SIZE (KDE/applications/19.04.0/print-manager-19.04.0.tar.xz) = 239680 Index: head/science/kalzium/distinfo =================================================================== --- head/science/kalzium/distinfo (revision 499276) +++ head/science/kalzium/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551811085 -SHA256 (KDE/applications/18.12.3/kalzium-18.12.3.tar.xz) = 100f63b0c1624c10ce7bb54a6a8fa6dfaf6800f580bfc0889745e171fe135fef -SIZE (KDE/applications/18.12.3/kalzium-18.12.3.tar.xz) = 26573732 +TIMESTAMP = 1555094946 +SHA256 (KDE/applications/19.04.0/kalzium-19.04.0.tar.xz) = 16fe2873dfad5de78b9a07a4c528e8ac747a54eced9feaa65f1c9fccc23b0d03 +SIZE (KDE/applications/19.04.0/kalzium-19.04.0.tar.xz) = 26551896 Index: head/science/step/Makefile =================================================================== --- head/science/step/Makefile (revision 499276) +++ head/science/step/Makefile (revision 499277) @@ -1,39 +1,38 @@ # $FreeBSD$ PORTNAME= step DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= science kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE interactive physics simulator LIB_DEPENDS= libcln.so:math/cln \ libgsl.so:math/gsl \ libqalculate.so:math/libqalculate USES= cmake compiler:c++11-lang eigen:3 gettext kde:5 \ pkgconfig qt:5 tar:xz USE_KDE= attica auth bookmarks codecs completion config configwidgets \ coreaddons crash doctools ecm emoticons guiaddons i18n \ iconthemes init itemmodels itemviews jobwidgets js \ kdelibs4support khtml kio newstuff notifications parts \ plotting service solid sonnet textwidgets unitconversion \ widgetsaddons windowsystem xmlgui USE_QT= core dbus declarative gui network opengl printsupport svg \ widgets xml \ buildtools_build qmake_build CXXFLAGS_powerpc64= -Wno-error=return-type CXXFLAGS_powerpc= -Wno-error=return-type CXXFLAGS_powerpcspe= -Wno-error=return-type CXXFLAGS_sparc64= -Wno-error=return-type OPTIONS_DEFINE= DOCS pre-configure: # Avoid building translations, should the user pass # CURRENT_LANG to CMake. ${REINPLACE_CMD} -e '/set(STEP_BUILD_TRANSLATIONS 1)/ d' \ ${WRKSRC}/${PORTNAME}/data/CMakeLists.txt .include Index: head/science/step/distinfo =================================================================== --- head/science/step/distinfo (revision 499276) +++ head/science/step/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551811086 -SHA256 (KDE/applications/18.12.3/step-18.12.3.tar.xz) = 35abaf0a4597e141f4db08ad91ebcefafe43609b986a93a11e5f3ec19165c755 -SIZE (KDE/applications/18.12.3/step-18.12.3.tar.xz) = 860296 +TIMESTAMP = 1555094946 +SHA256 (KDE/applications/19.04.0/step-19.04.0.tar.xz) = c37cbd4a7179d796dd4458dbdd98e48d59c5f0278f19026a4f5cc2b50e140319 +SIZE (KDE/applications/19.04.0/step-19.04.0.tar.xz) = 860532 Index: head/security/kgpg/distinfo =================================================================== --- head/security/kgpg/distinfo (revision 499276) +++ head/security/kgpg/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551810992 -SHA256 (KDE/applications/18.12.3/kgpg-18.12.3.tar.xz) = 05d70923f4c9d068b339dc0a3d3f28890cafe1fbef9820dd6157c1f5fd8f19e8 -SIZE (KDE/applications/18.12.3/kgpg-18.12.3.tar.xz) = 2880440 +TIMESTAMP = 1555094946 +SHA256 (KDE/applications/19.04.0/kgpg-19.04.0.tar.xz) = 2fb47d9d08cfca94dce1c4d19bce5d2955c3cd3ceec6265a8b537de612a53128 +SIZE (KDE/applications/19.04.0/kgpg-19.04.0.tar.xz) = 2866612 Index: head/security/kleopatra/Makefile =================================================================== --- head/security/kleopatra/Makefile (revision 499276) +++ head/security/kleopatra/Makefile (revision 499277) @@ -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 gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs config configwidgets coreaddons 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 499276) +++ head/security/kleopatra/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551810993 -SHA256 (KDE/applications/18.12.3/kleopatra-18.12.3.tar.xz) = ea165519846d70206e951d8d904bc02d17ed724db100638e657f7c930c4c490b -SIZE (KDE/applications/18.12.3/kleopatra-18.12.3.tar.xz) = 1929240 +TIMESTAMP = 1555094947 +SHA256 (KDE/applications/19.04.0/kleopatra-19.04.0.tar.xz) = 8ad7ec0b99efabdbc270559098dfca64e39ddd30a64b13915c04988a9c8b8b70 +SIZE (KDE/applications/19.04.0/kleopatra-19.04.0.tar.xz) = 1929920 Index: head/security/kpkpass/distinfo =================================================================== --- head/security/kpkpass/distinfo (revision 499276) +++ head/security/kpkpass/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551810925 -SHA256 (KDE/applications/18.12.3/kpkpass-18.12.3.tar.xz) = cd70809ab7a052e0ca2a18266ec5564bde16ac917988798290e3f01e428bd84f -SIZE (KDE/applications/18.12.3/kpkpass-18.12.3.tar.xz) = 23212 +TIMESTAMP = 1555094947 +SHA256 (KDE/applications/19.04.0/kpkpass-19.04.0.tar.xz) = 0121e03af506451a39b34a2f0ca063228454a40f71d9706dea3cee644a4c8f28 +SIZE (KDE/applications/19.04.0/kpkpass-19.04.0.tar.xz) = 23348 Index: head/security/kwalletmanager/distinfo =================================================================== --- head/security/kwalletmanager/distinfo (revision 499276) +++ head/security/kwalletmanager/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551810993 -SHA256 (KDE/applications/18.12.3/kwalletmanager-18.12.3.tar.xz) = 78232285c08241dc06cd6da88dcdce0d850417dd73f0d07034ec6d9a6f97f478 -SIZE (KDE/applications/18.12.3/kwalletmanager-18.12.3.tar.xz) = 785876 +TIMESTAMP = 1555094948 +SHA256 (KDE/applications/19.04.0/kwalletmanager-19.04.0.tar.xz) = 5cc25daaa8511694b01ba4b0a7ca39f8f2eef9fce10e99411ae287013fc27734 +SIZE (KDE/applications/19.04.0/kwalletmanager-19.04.0.tar.xz) = 786244 Index: head/security/libkleo/distinfo =================================================================== --- head/security/libkleo/distinfo (revision 499276) +++ head/security/libkleo/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551810992 -SHA256 (KDE/applications/18.12.3/libkleo-18.12.3.tar.xz) = e528ed366352404d48313a8c154f56c672470bf06524ea7a150a726d3eb87d69 -SIZE (KDE/applications/18.12.3/libkleo-18.12.3.tar.xz) = 333248 +TIMESTAMP = 1555094948 +SHA256 (KDE/applications/19.04.0/libkleo-19.04.0.tar.xz) = fbd97ae860c0361fca8bfa8a80a2d19e96779eb8d436a9a32c10cfe9767d8981 +SIZE (KDE/applications/19.04.0/libkleo-19.04.0.tar.xz) = 333600 Index: head/sysutils/baloo-widgets/distinfo =================================================================== --- head/sysutils/baloo-widgets/distinfo (revision 499276) +++ head/sysutils/baloo-widgets/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551810951 -SHA256 (KDE/applications/18.12.3/baloo-widgets-18.12.3.tar.xz) = b8475ba1a74f8ebc6a36029b60ac803ab0d2c81c253b8c16bd05b6249454c3e3 -SIZE (KDE/applications/18.12.3/baloo-widgets-18.12.3.tar.xz) = 245652 +TIMESTAMP = 1555094948 +SHA256 (KDE/applications/19.04.0/baloo-widgets-19.04.0.tar.xz) = ab3d83bb1f2007620273d1a3eb580d821e0655aaf7e3efd2dc81087a24d1c275 +SIZE (KDE/applications/19.04.0/baloo-widgets-19.04.0.tar.xz) = 248800 Index: head/sysutils/baloo-widgets/pkg-plist =================================================================== --- head/sysutils/baloo-widgets/pkg-plist (revision 499276) +++ head/sysutils/baloo-widgets/pkg-plist (revision 499277) @@ -1,64 +1,65 @@ 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.%%KDE_APPLICATIONS_VERSION%% +lib/libKF5BalooWidgets.so.19.4.0 %%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/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 499276) +++ head/sysutils/filelight/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551810952 -SHA256 (KDE/applications/18.12.3/filelight-18.12.3.tar.xz) = 9090bc7c7ac2586e857cdc246a94621c1453e7f65c6d491f2f374f43d3e4af1a -SIZE (KDE/applications/18.12.3/filelight-18.12.3.tar.xz) = 660688 +TIMESTAMP = 1555094949 +SHA256 (KDE/applications/19.04.0/filelight-19.04.0.tar.xz) = 22eaa8f0e9e69652240554687b2cecb55449e67caac6055c2d868f3089d835ad +SIZE (KDE/applications/19.04.0/filelight-19.04.0.tar.xz) = 661148 Index: head/sysutils/filelight/pkg-plist =================================================================== --- head/sysutils/filelight/pkg-plist (revision 499276) +++ head/sysutils/filelight/pkg-plist (revision 499277) @@ -1,55 +1,56 @@ bin/filelight +etc/xdg/filelight.categories etc/xdg/filelightrc share/applications/org.kde.filelight.desktop share/icons/hicolor/128x128/apps/filelight.png share/icons/hicolor/16x16/apps/filelight.png share/icons/hicolor/22x22/apps/filelight.png share/icons/hicolor/32x32/apps/filelight.png share/icons/hicolor/48x48/apps/filelight.png share/icons/hicolor/64x64/apps/filelight.png share/kxmlgui5/filelight/filelightui.rc share/locale/bg/LC_MESSAGES/filelight.mo share/locale/bs/LC_MESSAGES/filelight.mo share/locale/ca/LC_MESSAGES/filelight.mo share/locale/ca@valencia/LC_MESSAGES/filelight.mo share/locale/cs/LC_MESSAGES/filelight.mo share/locale/da/LC_MESSAGES/filelight.mo share/locale/de/LC_MESSAGES/filelight.mo share/locale/el/LC_MESSAGES/filelight.mo share/locale/en_GB/LC_MESSAGES/filelight.mo share/locale/eo/LC_MESSAGES/filelight.mo share/locale/es/LC_MESSAGES/filelight.mo share/locale/et/LC_MESSAGES/filelight.mo share/locale/eu/LC_MESSAGES/filelight.mo share/locale/fi/LC_MESSAGES/filelight.mo share/locale/fr/LC_MESSAGES/filelight.mo share/locale/ga/LC_MESSAGES/filelight.mo share/locale/gl/LC_MESSAGES/filelight.mo share/locale/hu/LC_MESSAGES/filelight.mo share/locale/ia/LC_MESSAGES/filelight.mo share/locale/it/LC_MESSAGES/filelight.mo share/locale/ja/LC_MESSAGES/filelight.mo share/locale/kk/LC_MESSAGES/filelight.mo share/locale/ko/LC_MESSAGES/filelight.mo share/locale/lt/LC_MESSAGES/filelight.mo share/locale/mr/LC_MESSAGES/filelight.mo share/locale/nb/LC_MESSAGES/filelight.mo share/locale/nds/LC_MESSAGES/filelight.mo share/locale/nl/LC_MESSAGES/filelight.mo share/locale/nn/LC_MESSAGES/filelight.mo share/locale/pa/LC_MESSAGES/filelight.mo share/locale/pl/LC_MESSAGES/filelight.mo share/locale/pt/LC_MESSAGES/filelight.mo share/locale/pt_BR/LC_MESSAGES/filelight.mo share/locale/ro/LC_MESSAGES/filelight.mo share/locale/ru/LC_MESSAGES/filelight.mo share/locale/sk/LC_MESSAGES/filelight.mo share/locale/sl/LC_MESSAGES/filelight.mo share/locale/sr/LC_MESSAGES/filelight.mo share/locale/sv/LC_MESSAGES/filelight.mo share/locale/tr/LC_MESSAGES/filelight.mo share/locale/ug/LC_MESSAGES/filelight.mo share/locale/uk/LC_MESSAGES/filelight.mo share/locale/zh_CN/LC_MESSAGES/filelight.mo share/locale/zh_TW/LC_MESSAGES/filelight.mo share/metainfo/org.kde.filelight.appdata.xml Index: head/sysutils/k3b/Makefile =================================================================== --- head/sysutils/k3b/Makefile (revision 499276) +++ head/sysutils/k3b/Makefile (revision 499277) @@ -1,56 +1,55 @@ # $FreeBSD$ PORTNAME= k3b DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= sysutils multimedia kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE CD/DVD writing suite LIB_DEPENDS= libFLAC.so:audio/flac \ libKF5Cddb.so:audio/libkcddb \ libcdda_paranoia.so:audio/cdparanoia \ libdvdread.so:multimedia/libdvdread \ libmad.so:audio/libmad \ libmp3lame.so:audio/lame \ libogg.so:audio/libogg \ libsamplerate.so:audio/libsamplerate \ libsndfile.so:audio/libsndfile \ libtag.so:audio/taglib \ libvorbis.so:audio/libvorbis RUN_DEPENDS= cdrecord:sysutils/cdrtools BUILD_DEPENDS= cdrecord:sysutils/cdrtools USES= cmake compiler:c++11-lang desktop-file-utils gettext iconv \ kde:5 pkgconfig qt:5 shared-mime-info tar:xz USE_KDE= archive attica auth bookmarks codecs completion config \ configwidgets coreaddons ecm filemetadata i18n iconthemes \ itemviews jobwidgets kcmutils kio newstuff notifications \ notifyconfig service solid widgetsaddons xmlgui USE_QT= core dbus gui network webkit widgets xml \ buildtools_build qmake_build # The ffmpeg-plugin needs patching CMAKE_ARGS= -DK3B_BUILD_FFMPEG_DECODER_PLUGIN:BOOL=FALSE OPTIONS_DEFINE= CDRDAO CDRSKIN DVDPLUSRW EMOVIX VCDIMAGER DOCS OPTIONS_DEFAULT= ${OPTIONS_DEFINE} CDRDAO_DESC= Burning: cdrdao CDRDAO_RUN_DEPENDS= cdrdao:sysutils/cdrdao DVDPLUSRW_DESC= Burning: DVD+RW tools (DVD+/-R(W)) DVDPLUSRW_RUN_DEPENDS= dvd+rw-format:sysutils/dvd+rw-tools EMOVIX_DESC= Burning: eMovix (bootable video CDs) EMOVIX_RUN_DEPENDS= mkmovixiso:multimedia/emovix VCDIMAGER_DESC= Burning: VCDImager (video CDs) VCDIMAGER_RUN_DEPENDS= vcdxrip:multimedia/vcdimager CDRSKIN_DESC= Burning: cdrskin (improved performance) CDRSKIN_RUN_DEPENDS= cdrskin:devel/libburn .include Index: head/sysutils/k3b/distinfo =================================================================== --- head/sysutils/k3b/distinfo (revision 499276) +++ head/sysutils/k3b/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551810953 -SHA256 (KDE/applications/18.12.3/k3b-18.12.3.tar.xz) = cee825ff0c058cc1cbe3bf47a7acbe3889949460ba383ffae3756b67b418362e -SIZE (KDE/applications/18.12.3/k3b-18.12.3.tar.xz) = 10593176 +TIMESTAMP = 1555094949 +SHA256 (KDE/applications/19.04.0/k3b-19.04.0.tar.xz) = ab0293d0dab2048dcacd4fc54ee2e12d2f55adcecde7cd02e4c31ffd5917ee39 +SIZE (KDE/applications/19.04.0/k3b-19.04.0.tar.xz) = 10516264 Index: head/sysutils/k3b/pkg-plist =================================================================== --- head/sysutils/k3b/pkg-plist (revision 499276) +++ head/sysutils/k3b/pkg-plist (revision 499277) @@ -1,531 +1,531 @@ bin/k3b etc/xdg/k3btheme.knsrc include/k3b_export.h include/k3bactivepipe.h include/k3baudiocdtrackdrag.h include/k3baudiocdtrackreader.h include/k3baudiocdtracksource.h include/k3baudiocuefilewritingjob.h include/k3baudiodatasource.h include/k3baudiodatasourceiterator.h include/k3baudiodecoder.h include/k3baudiodoc.h include/k3baudiodocreader.h include/k3baudioencoder.h include/k3baudiofile.h include/k3baudiofileanalyzerjob.h include/k3baudiofilereader.h include/k3baudiojob.h include/k3baudiotrack.h include/k3baudiotrackreader.h include/k3baudiozerodata.h include/k3baudiozerodatareader.h include/k3bbinimagewritingjob.h include/k3bblankingjob.h include/k3bbootitem.h include/k3bbusywidget.h include/k3bcdcopyjob.h include/k3bcddb.h include/k3bcdparanoialib.h include/k3bcdrdaowriter.h include/k3bcdrecordwriter.h include/k3bcdrskinwriter.h include/k3bcdtext.h include/k3bcdtextvalidator.h include/k3bchecksumpipe.h include/k3bclonejob.h include/k3bcore.h include/k3bcuefileparser.h include/k3bdatadoc.h include/k3bdataitem.h include/k3bdatajob.h include/k3bdefaultexternalprograms.h include/k3bdevice.h include/k3bdevice_export.h include/k3bdevicecombobox.h include/k3bdeviceglobals.h include/k3bdevicehandler.h include/k3bdevicemanager.h include/k3bdeviceselectiondialog.h include/k3bdevicetypes.h include/k3bdiritem.h include/k3bdirsizejob.h include/k3bdiskinfo.h include/k3bdoc.h include/k3bdvdcopyjob.h include/k3bdvdformattingjob.h include/k3bexceptions.h include/k3bexternalbinmanager.h include/k3bfileitem.h include/k3bfilesplitter.h include/k3bfilesysteminfo.h include/k3bglobals.h include/k3bglobalsettings.h include/k3bgrowisofswriter.h include/k3bimagefilereader.h include/k3binffilewriter.h include/k3bintmapcombobox.h include/k3bintvalidator.h include/k3biso9660.h include/k3biso9660backend.h include/k3biso9660imagewritingjob.h include/k3bisooptions.h include/k3bjob.h include/k3bjobhandler.h include/k3bmd5job.h include/k3bmediacache.h include/k3bmedium.h include/k3bmetawriter.h include/k3bmixeddoc.h include/k3bmixedjob.h include/k3bmovixdoc.h include/k3bmovixfileitem.h include/k3bmovixjob.h include/k3bmsf.h include/k3bmsfedit.h include/k3bmultichoicedialog.h include/k3bplugin.h include/k3bpluginconfigwidget.h include/k3bpluginmanager.h include/k3bprocess.h include/k3bprojectplugin.h include/k3brawaudiodatareader.h include/k3brawaudiodatasource.h include/k3bsignalwaiter.h include/k3bsimplejobhandler.h include/k3bstdguiitems.h include/k3bthreadjob.h include/k3bthreadwidget.h include/k3bthroughputestimator.h include/k3btoc.h include/k3btocfilewriter.h include/k3btrack.h include/k3bvalidators.h include/k3bvcddoc.h include/k3bvcdjob.h include/k3bvcdoptions.h include/k3bverificationjob.h include/k3bversion.h include/k3bvideodvd.h include/k3bvideodvdaudiostream.h include/k3bvideodvddoc.h include/k3bvideodvdjob.h include/k3bvideodvdptt.h include/k3bvideodvdsubpicturestream.h include/k3bvideodvdtime.h include/k3bvideodvdtitle.h include/k3bvideodvdtitledetectclippingjob.h include/k3bvideodvdtitletranscodingjob.h include/k3bvideodvdvideostream.h include/k3bwavefilewriter.h lib/libk3bdevice.so lib/libk3bdevice.so.7 lib/libk3bdevice.so.7.0.0 lib/libk3blib.so lib/libk3blib.so.7 lib/libk3blib.so.7.0.0 %%QT_PLUGINDIR%%/k3baudiometainforenamerplugin.so %%QT_PLUGINDIR%%/k3baudioprojectcddbplugin.so %%QT_PLUGINDIR%%/k3bexternalencoder.so %%QT_PLUGINDIR%%/k3bflacdecoder.so %%QT_PLUGINDIR%%/k3blameencoder.so %%QT_PLUGINDIR%%/k3blibsndfiledecoder.so %%QT_PLUGINDIR%%/k3bmaddecoder.so %%QT_PLUGINDIR%%/k3boggvorbisdecoder.so %%QT_PLUGINDIR%%/k3boggvorbisencoder.so %%QT_PLUGINDIR%%/k3bsoxencoder.so %%QT_PLUGINDIR%%/k3bwavedecoder.so %%QT_PLUGINDIR%%/kcm_k3bexternalencoder.so %%QT_PLUGINDIR%%/kcm_k3blameencoder.so %%QT_PLUGINDIR%%/kcm_k3boggvorbisencoder.so %%QT_PLUGINDIR%%/kcm_k3bsoxencoder.so -%%QT_PLUGINDIR%%/kio_videodvd.so +%%QT_PLUGINDIR%%/kf5/kio/videodvd.so share/applications/org.kde.k3b.desktop share/icons/hicolor/128x128/apps/k3b.png share/icons/hicolor/128x128/mimetypes/application-x-k3b.png share/icons/hicolor/16x16/apps/k3b.png share/icons/hicolor/22x22/apps/k3b.png share/icons/hicolor/32x32/apps/k3b.png share/icons/hicolor/32x32/mimetypes/application-x-k3b.png share/icons/hicolor/48x48/apps/k3b.png share/icons/hicolor/48x48/mimetypes/application-x-k3b.png share/icons/hicolor/64x64/apps/k3b.png share/icons/hicolor/64x64/mimetypes/application-x-k3b.png share/icons/hicolor/scalable/apps/k3b.svgz share/icons/hicolor/scalable/mimetypes/application-x-k3b.svgz %%DATADIR%%/cdi/cdi_imag.rtf %%DATADIR%%/cdi/cdi_text.fnt %%DATADIR%%/cdi/cdi_vcd.app %%DATADIR%%/cdi/cdi_vcd.cfg %%DATADIR%%/cdi/icdia.htm %%DATADIR%%/cdi/vcd_on_cdi_41.pdf %%DATADIR%%/extra/k3bphotosvcd.mpg %%DATADIR%%/extra/k3bphotovcd.mpg %%DATADIR%%/icons/hicolor/128x128/actions/tools-rip-audio-cd.png %%DATADIR%%/icons/hicolor/128x128/actions/tools-rip-video-cd.png %%DATADIR%%/icons/hicolor/128x128/actions/tools-rip-video-dvd.png %%DATADIR%%/icons/hicolor/128x128/devices/media-optical-audio.png %%DATADIR%%/icons/hicolor/128x128/devices/media-optical-cd-video.png %%DATADIR%%/icons/hicolor/128x128/devices/media-optical-dvd-video.png %%DATADIR%%/icons/hicolor/128x128/devices/media-optical-mixed-cd.png %%DATADIR%%/icons/hicolor/128x128/devices/media-optical-video.png %%DATADIR%%/icons/hicolor/16x16/actions/musicbrainz.png %%DATADIR%%/icons/hicolor/16x16/actions/tools-rip-audio-cd.png %%DATADIR%%/icons/hicolor/16x16/actions/tools-rip-video-cd.png %%DATADIR%%/icons/hicolor/16x16/actions/tools-rip-video-dvd.png %%DATADIR%%/icons/hicolor/16x16/devices/media-optical-audio.png %%DATADIR%%/icons/hicolor/16x16/devices/media-optical-cd-video.png %%DATADIR%%/icons/hicolor/16x16/devices/media-optical-data.png %%DATADIR%%/icons/hicolor/16x16/devices/media-optical-mixed-cd.png %%DATADIR%%/icons/hicolor/16x16/devices/media-optical-video.png %%DATADIR%%/icons/hicolor/22x22/actions/tools-rip-audio-cd.png %%DATADIR%%/icons/hicolor/22x22/actions/tools-rip-video-cd.png %%DATADIR%%/icons/hicolor/22x22/actions/tools-rip-video-dvd.png %%DATADIR%%/icons/hicolor/22x22/devices/media-optical-audio.png %%DATADIR%%/icons/hicolor/22x22/devices/media-optical-cd-video.png %%DATADIR%%/icons/hicolor/22x22/devices/media-optical-data.png %%DATADIR%%/icons/hicolor/22x22/devices/media-optical-mixed-cd.png %%DATADIR%%/icons/hicolor/22x22/devices/media-optical-video.png %%DATADIR%%/icons/hicolor/32x32/actions/tools-rip-audio-cd.png %%DATADIR%%/icons/hicolor/32x32/actions/tools-rip-video-cd.png %%DATADIR%%/icons/hicolor/32x32/actions/tools-rip-video-dvd.png %%DATADIR%%/icons/hicolor/32x32/devices/media-optical-audio.png %%DATADIR%%/icons/hicolor/32x32/devices/media-optical-cd-video.png %%DATADIR%%/icons/hicolor/32x32/devices/media-optical-data.png %%DATADIR%%/icons/hicolor/32x32/devices/media-optical-dvd-video.png %%DATADIR%%/icons/hicolor/32x32/devices/media-optical-mixed-cd.png %%DATADIR%%/icons/hicolor/32x32/devices/media-optical-video.png %%DATADIR%%/icons/hicolor/48x48/actions/tools-rip-audio-cd.png %%DATADIR%%/icons/hicolor/48x48/actions/tools-rip-video-cd.png %%DATADIR%%/icons/hicolor/48x48/actions/tools-rip-video-dvd.png %%DATADIR%%/icons/hicolor/48x48/devices/media-optical-audio.png %%DATADIR%%/icons/hicolor/48x48/devices/media-optical-cd-video.png %%DATADIR%%/icons/hicolor/48x48/devices/media-optical-data.png %%DATADIR%%/icons/hicolor/48x48/devices/media-optical-dvd-video.png %%DATADIR%%/icons/hicolor/48x48/devices/media-optical-mixed-cd.png %%DATADIR%%/icons/hicolor/48x48/devices/media-optical-video.png %%DATADIR%%/icons/hicolor/64x64/actions/musicbrainz.png %%DATADIR%%/icons/hicolor/64x64/actions/tools-rip-audio-cd.png %%DATADIR%%/icons/hicolor/64x64/actions/tools-rip-video-cd.png %%DATADIR%%/icons/hicolor/64x64/actions/tools-rip-video-dvd.png %%DATADIR%%/icons/hicolor/64x64/devices/media-optical-audio.png %%DATADIR%%/icons/hicolor/64x64/devices/media-optical-cd-video.png %%DATADIR%%/icons/hicolor/64x64/devices/media-optical-dvd-video.png %%DATADIR%%/icons/hicolor/64x64/devices/media-optical-mixed-cd.png %%DATADIR%%/icons/hicolor/64x64/devices/media-optical-video.png %%DATADIR%%/icons/hicolor/scalable/actions/tools-rip-audio-cd.svgz %%DATADIR%%/icons/hicolor/scalable/actions/tools-rip-video-cd.svgz %%DATADIR%%/icons/hicolor/scalable/actions/tools-rip-video-dvd.svgz %%DATADIR%%/icons/hicolor/scalable/devices/media-optical-audio.svgz %%DATADIR%%/icons/hicolor/scalable/devices/media-optical-cd-video.svgz %%DATADIR%%/icons/hicolor/scalable/devices/media-optical-data.svgz %%DATADIR%%/icons/hicolor/scalable/devices/media-optical-dvd-video.svgz %%DATADIR%%/icons/hicolor/scalable/devices/media-optical-mixed-cd.svgz %%DATADIR%%/icons/hicolor/scalable/devices/media-optical-video.svgz %%DATADIR%%/pics/73lab/dialog_left.png %%DATADIR%%/pics/73lab/dialog_right.png %%DATADIR%%/pics/73lab/k3b.theme %%DATADIR%%/pics/73lab/media_audio.png %%DATADIR%%/pics/73lab/media_data.png %%DATADIR%%/pics/73lab/media_empty.png %%DATADIR%%/pics/73lab/media_left.png %%DATADIR%%/pics/73lab/media_mixed.png %%DATADIR%%/pics/73lab/media_none.png %%DATADIR%%/pics/73lab/media_video.png %%DATADIR%%/pics/73lab/probing.png %%DATADIR%%/pics/73lab/progress_fail.png %%DATADIR%%/pics/73lab/progress_right.png %%DATADIR%%/pics/73lab/progress_success.png %%DATADIR%%/pics/73lab/progress_working.png %%DATADIR%%/pics/73lab/project_left.png %%DATADIR%%/pics/73lab/project_right.png %%DATADIR%%/pics/73lab/splash.png %%DATADIR%%/pics/73lab/welcome_bg.png %%DATADIR%%/pics/RobsTheme/dialog_left.png %%DATADIR%%/pics/RobsTheme/dialog_right.png %%DATADIR%%/pics/RobsTheme/k3b.theme %%DATADIR%%/pics/RobsTheme/media_audio.png %%DATADIR%%/pics/RobsTheme/media_data.png %%DATADIR%%/pics/RobsTheme/media_empty.png %%DATADIR%%/pics/RobsTheme/media_left.png %%DATADIR%%/pics/RobsTheme/media_mixed.png %%DATADIR%%/pics/RobsTheme/media_none.png %%DATADIR%%/pics/RobsTheme/media_video.png %%DATADIR%%/pics/RobsTheme/progress_fail.png %%DATADIR%%/pics/RobsTheme/progress_right.png %%DATADIR%%/pics/RobsTheme/progress_success.png %%DATADIR%%/pics/RobsTheme/progress_working.png %%DATADIR%%/pics/RobsTheme/project_left.png %%DATADIR%%/pics/RobsTheme/project_right.png %%DATADIR%%/pics/RobsTheme/splash.png %%DATADIR%%/pics/RobsTheme/welcome_bg.png %%DATADIR%%/pics/crystal/dialog_left.png %%DATADIR%%/pics/crystal/dialog_right.png %%DATADIR%%/pics/crystal/k3b.theme %%DATADIR%%/pics/crystal/media_audio.png %%DATADIR%%/pics/crystal/media_data.png %%DATADIR%%/pics/crystal/media_empty.png %%DATADIR%%/pics/crystal/media_left.png %%DATADIR%%/pics/crystal/media_mixed.png %%DATADIR%%/pics/crystal/media_none.png %%DATADIR%%/pics/crystal/media_video.png %%DATADIR%%/pics/crystal/probing.png %%DATADIR%%/pics/crystal/progress_fail.png %%DATADIR%%/pics/crystal/progress_right.png %%DATADIR%%/pics/crystal/progress_success.png %%DATADIR%%/pics/crystal/progress_working.png %%DATADIR%%/pics/crystal/project_left.png %%DATADIR%%/pics/crystal/project_right.png %%DATADIR%%/pics/crystal/splash.png %%DATADIR%%/pics/crystal/welcome_bg.png %%DATADIR%%/pics/quant/dialog_left.png %%DATADIR%%/pics/quant/dialog_right.png %%DATADIR%%/pics/quant/k3b.theme %%DATADIR%%/pics/quant/media_audio.png %%DATADIR%%/pics/quant/media_data.png %%DATADIR%%/pics/quant/media_empty.png %%DATADIR%%/pics/quant/media_left.png %%DATADIR%%/pics/quant/media_mixed.png %%DATADIR%%/pics/quant/media_none.png %%DATADIR%%/pics/quant/media_video.png %%DATADIR%%/pics/quant/progress_fail.png %%DATADIR%%/pics/quant/progress_right.png %%DATADIR%%/pics/quant/progress_success.png %%DATADIR%%/pics/quant/progress_working.png %%DATADIR%%/pics/quant/project_left.png %%DATADIR%%/pics/quant/project_right.png %%DATADIR%%/pics/quant/splash.png %%DATADIR%%/pics/quant/welcome_bg.png share/knotifications5/k3b.notifyrc share/konqsidebartng/virtual_folders/services/videodvd.desktop share/kservices5/ServiceMenus/k3b_create_audio_cd.desktop share/kservices5/ServiceMenus/k3b_create_data_project.desktop share/kservices5/ServiceMenus/k3b_create_video_cd.desktop share/kservices5/ServiceMenus/k3b_write_bin_image.desktop share/kservices5/ServiceMenus/k3b_write_iso_image.desktop share/kservices5/k3baudiometainforenamerplugin.desktop share/kservices5/k3baudioprojectcddbplugin.desktop share/kservices5/k3bexternalencoder.desktop share/kservices5/k3bflacdecoder.desktop share/kservices5/k3blameencoder.desktop share/kservices5/k3blibsndfiledecoder.desktop share/kservices5/k3bmaddecoder.desktop share/kservices5/k3boggvorbisdecoder.desktop share/kservices5/k3boggvorbisencoder.desktop share/kservices5/k3bsoxencoder.desktop share/kservices5/k3bwavedecoder.desktop share/kservices5/kcm_k3bexternalencoder.desktop share/kservices5/kcm_k3blameencoder.desktop share/kservices5/kcm_k3boggvorbisencoder.desktop share/kservices5/kcm_k3bsoxencoder.desktop share/kservices5/videodvd.protocol share/kservicetypes5/k3bplugin.desktop share/kxmlgui5/k3b/k3bdeviceui.rc share/kxmlgui5/k3b/k3bui.rc share/locale/ar/LC_MESSAGES/k3b.mo share/locale/bg/LC_MESSAGES/k3b.mo share/locale/bg/LC_MESSAGES/kio_videodvd.mo share/locale/bg/LC_MESSAGES/libk3b.mo share/locale/bg/LC_MESSAGES/libk3bdevice.mo share/locale/bs/LC_MESSAGES/k3b.mo share/locale/bs/LC_MESSAGES/kio_videodvd.mo share/locale/bs/LC_MESSAGES/libk3b.mo share/locale/bs/LC_MESSAGES/libk3bdevice.mo share/locale/ca/LC_MESSAGES/k3b.mo share/locale/ca/LC_MESSAGES/kio_videodvd.mo share/locale/ca/LC_MESSAGES/libk3b.mo share/locale/ca/LC_MESSAGES/libk3bdevice.mo share/locale/ca@valencia/LC_MESSAGES/k3b.mo share/locale/ca@valencia/LC_MESSAGES/kio_videodvd.mo share/locale/ca@valencia/LC_MESSAGES/libk3b.mo share/locale/ca@valencia/LC_MESSAGES/libk3bdevice.mo share/locale/cs/LC_MESSAGES/k3b.mo share/locale/cs/LC_MESSAGES/kio_videodvd.mo share/locale/cs/LC_MESSAGES/libk3b.mo share/locale/cs/LC_MESSAGES/libk3bdevice.mo share/locale/da/LC_MESSAGES/k3b.mo share/locale/da/LC_MESSAGES/kio_videodvd.mo share/locale/da/LC_MESSAGES/libk3b.mo share/locale/da/LC_MESSAGES/libk3bdevice.mo share/locale/de/LC_MESSAGES/k3b.mo share/locale/de/LC_MESSAGES/kio_videodvd.mo share/locale/de/LC_MESSAGES/libk3b.mo share/locale/de/LC_MESSAGES/libk3bdevice.mo share/locale/el/LC_MESSAGES/k3b.mo share/locale/el/LC_MESSAGES/kio_videodvd.mo share/locale/el/LC_MESSAGES/libk3b.mo share/locale/el/LC_MESSAGES/libk3bdevice.mo share/locale/en_GB/LC_MESSAGES/k3b.mo share/locale/en_GB/LC_MESSAGES/kio_videodvd.mo share/locale/en_GB/LC_MESSAGES/libk3b.mo share/locale/en_GB/LC_MESSAGES/libk3bdevice.mo share/locale/eo/LC_MESSAGES/k3b.mo share/locale/eo/LC_MESSAGES/kio_videodvd.mo share/locale/eo/LC_MESSAGES/libk3b.mo share/locale/eo/LC_MESSAGES/libk3bdevice.mo share/locale/es/LC_MESSAGES/k3b.mo share/locale/es/LC_MESSAGES/kio_videodvd.mo share/locale/es/LC_MESSAGES/libk3b.mo share/locale/es/LC_MESSAGES/libk3bdevice.mo share/locale/et/LC_MESSAGES/k3b.mo share/locale/et/LC_MESSAGES/kio_videodvd.mo share/locale/et/LC_MESSAGES/libk3b.mo share/locale/et/LC_MESSAGES/libk3bdevice.mo share/locale/eu/LC_MESSAGES/k3b.mo share/locale/eu/LC_MESSAGES/kio_videodvd.mo share/locale/eu/LC_MESSAGES/libk3b.mo share/locale/eu/LC_MESSAGES/libk3bdevice.mo share/locale/fa/LC_MESSAGES/k3b.mo share/locale/fi/LC_MESSAGES/k3b.mo share/locale/fi/LC_MESSAGES/kio_videodvd.mo share/locale/fi/LC_MESSAGES/libk3b.mo share/locale/fi/LC_MESSAGES/libk3bdevice.mo share/locale/fr/LC_MESSAGES/k3b.mo share/locale/fr/LC_MESSAGES/kio_videodvd.mo share/locale/fr/LC_MESSAGES/libk3b.mo share/locale/fr/LC_MESSAGES/libk3bdevice.mo share/locale/ga/LC_MESSAGES/k3b.mo share/locale/ga/LC_MESSAGES/kio_videodvd.mo share/locale/ga/LC_MESSAGES/libk3b.mo share/locale/ga/LC_MESSAGES/libk3bdevice.mo share/locale/gl/LC_MESSAGES/k3b.mo share/locale/gl/LC_MESSAGES/kio_videodvd.mo share/locale/gl/LC_MESSAGES/libk3b.mo share/locale/gl/LC_MESSAGES/libk3bdevice.mo share/locale/he/LC_MESSAGES/k3b.mo share/locale/he/LC_MESSAGES/kio_videodvd.mo share/locale/he/LC_MESSAGES/libk3b.mo share/locale/he/LC_MESSAGES/libk3bdevice.mo share/locale/hi/LC_MESSAGES/k3b.mo share/locale/hi/LC_MESSAGES/kio_videodvd.mo share/locale/hi/LC_MESSAGES/libk3b.mo share/locale/hi/LC_MESSAGES/libk3bdevice.mo share/locale/hr/LC_MESSAGES/k3b.mo share/locale/hr/LC_MESSAGES/kio_videodvd.mo share/locale/hr/LC_MESSAGES/libk3b.mo share/locale/hr/LC_MESSAGES/libk3bdevice.mo share/locale/hu/LC_MESSAGES/k3b.mo share/locale/hu/LC_MESSAGES/kio_videodvd.mo share/locale/hu/LC_MESSAGES/libk3b.mo share/locale/hu/LC_MESSAGES/libk3bdevice.mo share/locale/id/LC_MESSAGES/kio_videodvd.mo share/locale/is/LC_MESSAGES/k3b.mo share/locale/is/LC_MESSAGES/kio_videodvd.mo share/locale/is/LC_MESSAGES/libk3b.mo share/locale/is/LC_MESSAGES/libk3bdevice.mo share/locale/it/LC_MESSAGES/k3b.mo share/locale/it/LC_MESSAGES/kio_videodvd.mo share/locale/it/LC_MESSAGES/libk3b.mo share/locale/it/LC_MESSAGES/libk3bdevice.mo share/locale/ja/LC_MESSAGES/k3b.mo share/locale/ja/LC_MESSAGES/kio_videodvd.mo share/locale/ja/LC_MESSAGES/libk3b.mo share/locale/ja/LC_MESSAGES/libk3bdevice.mo share/locale/kk/LC_MESSAGES/k3b.mo share/locale/kk/LC_MESSAGES/kio_videodvd.mo share/locale/kk/LC_MESSAGES/libk3b.mo share/locale/kk/LC_MESSAGES/libk3bdevice.mo share/locale/km/LC_MESSAGES/k3b.mo share/locale/km/LC_MESSAGES/kio_videodvd.mo share/locale/km/LC_MESSAGES/libk3b.mo share/locale/km/LC_MESSAGES/libk3bdevice.mo share/locale/ko/LC_MESSAGES/k3b.mo share/locale/ko/LC_MESSAGES/kio_videodvd.mo share/locale/ko/LC_MESSAGES/libk3b.mo share/locale/ko/LC_MESSAGES/libk3bdevice.mo share/locale/lt/LC_MESSAGES/k3b.mo share/locale/lt/LC_MESSAGES/kio_videodvd.mo share/locale/lt/LC_MESSAGES/libk3b.mo share/locale/lt/LC_MESSAGES/libk3bdevice.mo share/locale/lv/LC_MESSAGES/k3b.mo share/locale/lv/LC_MESSAGES/kio_videodvd.mo share/locale/lv/LC_MESSAGES/libk3b.mo share/locale/lv/LC_MESSAGES/libk3bdevice.mo share/locale/mr/LC_MESSAGES/k3b.mo share/locale/mr/LC_MESSAGES/kio_videodvd.mo share/locale/mr/LC_MESSAGES/libk3b.mo share/locale/mr/LC_MESSAGES/libk3bdevice.mo share/locale/nb/LC_MESSAGES/k3b.mo share/locale/nb/LC_MESSAGES/kio_videodvd.mo share/locale/nb/LC_MESSAGES/libk3b.mo share/locale/nb/LC_MESSAGES/libk3bdevice.mo share/locale/nds/LC_MESSAGES/k3b.mo share/locale/nds/LC_MESSAGES/kio_videodvd.mo share/locale/nds/LC_MESSAGES/libk3b.mo share/locale/nds/LC_MESSAGES/libk3bdevice.mo share/locale/nl/LC_MESSAGES/k3b.mo share/locale/nl/LC_MESSAGES/kio_videodvd.mo share/locale/nl/LC_MESSAGES/libk3b.mo share/locale/nl/LC_MESSAGES/libk3bdevice.mo share/locale/nn/LC_MESSAGES/k3b.mo share/locale/nn/LC_MESSAGES/kio_videodvd.mo share/locale/nn/LC_MESSAGES/libk3b.mo share/locale/nn/LC_MESSAGES/libk3bdevice.mo share/locale/pa/LC_MESSAGES/k3b.mo share/locale/pa/LC_MESSAGES/kio_videodvd.mo share/locale/pa/LC_MESSAGES/libk3b.mo share/locale/pa/LC_MESSAGES/libk3bdevice.mo share/locale/pl/LC_MESSAGES/k3b.mo share/locale/pl/LC_MESSAGES/kio_videodvd.mo share/locale/pl/LC_MESSAGES/libk3b.mo share/locale/pl/LC_MESSAGES/libk3bdevice.mo share/locale/pt/LC_MESSAGES/k3b.mo share/locale/pt/LC_MESSAGES/kio_videodvd.mo share/locale/pt/LC_MESSAGES/libk3b.mo share/locale/pt/LC_MESSAGES/libk3bdevice.mo share/locale/pt_BR/LC_MESSAGES/k3b.mo share/locale/pt_BR/LC_MESSAGES/kio_videodvd.mo share/locale/pt_BR/LC_MESSAGES/libk3b.mo share/locale/pt_BR/LC_MESSAGES/libk3bdevice.mo share/locale/ro/LC_MESSAGES/k3b.mo share/locale/ro/LC_MESSAGES/kio_videodvd.mo share/locale/ro/LC_MESSAGES/libk3b.mo share/locale/ro/LC_MESSAGES/libk3bdevice.mo share/locale/ru/LC_MESSAGES/k3b.mo share/locale/ru/LC_MESSAGES/kio_videodvd.mo share/locale/ru/LC_MESSAGES/libk3b.mo share/locale/ru/LC_MESSAGES/libk3bdevice.mo share/locale/sk/LC_MESSAGES/k3b.mo share/locale/sk/LC_MESSAGES/kio_videodvd.mo share/locale/sk/LC_MESSAGES/libk3b.mo share/locale/sk/LC_MESSAGES/libk3bdevice.mo share/locale/sl/LC_MESSAGES/k3b.mo share/locale/sl/LC_MESSAGES/kio_videodvd.mo share/locale/sl/LC_MESSAGES/libk3b.mo share/locale/sl/LC_MESSAGES/libk3bdevice.mo share/locale/sr/LC_MESSAGES/k3b.mo share/locale/sr/LC_MESSAGES/kio_videodvd.mo share/locale/sr/LC_MESSAGES/libk3b.mo share/locale/sr/LC_MESSAGES/libk3bdevice.mo share/locale/sv/LC_MESSAGES/k3b.mo share/locale/sv/LC_MESSAGES/kio_videodvd.mo share/locale/sv/LC_MESSAGES/libk3b.mo share/locale/sv/LC_MESSAGES/libk3bdevice.mo share/locale/tr/LC_MESSAGES/k3b.mo share/locale/tr/LC_MESSAGES/kio_videodvd.mo share/locale/tr/LC_MESSAGES/libk3b.mo share/locale/tr/LC_MESSAGES/libk3bdevice.mo share/locale/ug/LC_MESSAGES/k3b.mo share/locale/ug/LC_MESSAGES/kio_videodvd.mo share/locale/ug/LC_MESSAGES/libk3b.mo share/locale/ug/LC_MESSAGES/libk3bdevice.mo share/locale/uk/LC_MESSAGES/k3b.mo share/locale/uk/LC_MESSAGES/kio_videodvd.mo share/locale/uk/LC_MESSAGES/libk3b.mo share/locale/uk/LC_MESSAGES/libk3bdevice.mo share/locale/wa/LC_MESSAGES/kio_videodvd.mo share/locale/zh_CN/LC_MESSAGES/k3b.mo share/locale/zh_CN/LC_MESSAGES/kio_videodvd.mo share/locale/zh_CN/LC_MESSAGES/libk3b.mo share/locale/zh_CN/LC_MESSAGES/libk3bdevice.mo share/locale/zh_TW/LC_MESSAGES/k3b.mo share/locale/zh_TW/LC_MESSAGES/kio_videodvd.mo share/locale/zh_TW/LC_MESSAGES/libk3b.mo share/locale/zh_TW/LC_MESSAGES/libk3bdevice.mo share/metainfo/org.kde.k3b.appdata.xml share/mime/packages/x-k3b.xml share/solid/actions/k3b_audiocd_rip.desktop share/solid/actions/k3b_copy_disc.desktop share/solid/actions/k3b_create_audio_cd_from_blank_medium.desktop share/solid/actions/k3b_create_data_project_from_blank_medium.desktop share/solid/actions/k3b_videodvd_rip.desktop Index: head/sysutils/kbackup/distinfo =================================================================== --- head/sysutils/kbackup/distinfo (revision 499276) +++ head/sysutils/kbackup/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551810954 -SHA256 (KDE/applications/18.12.3/kbackup-18.12.3.tar.xz) = 7b42f7fff48f4cf735e27603d0e44ecd13d5c85474680f8d24850eaadd4f13bf -SIZE (KDE/applications/18.12.3/kbackup-18.12.3.tar.xz) = 351768 +TIMESTAMP = 1555094950 +SHA256 (KDE/applications/19.04.0/kbackup-19.04.0.tar.xz) = 84b8f7b05a1812deb128a85aa2d6f1010fb7b2f8cb51aa3771077ef20fd4b4ce +SIZE (KDE/applications/19.04.0/kbackup-19.04.0.tar.xz) = 355268 Index: head/sysutils/kbackup/pkg-plist =================================================================== --- head/sysutils/kbackup/pkg-plist (revision 499276) +++ head/sysutils/kbackup/pkg-plist (revision 499277) @@ -1,37 +1,38 @@ bin/kbackup share/applications/org.kde.kbackup.desktop share/icons/hicolor/16x16/apps/kbackup.png share/icons/hicolor/16x16/mimetypes/text-x-kbp.png share/icons/hicolor/22x22/actions/kbackup_cancel.png share/icons/hicolor/22x22/actions/kbackup_runs.png share/icons/hicolor/22x22/actions/kbackup_start.png share/icons/hicolor/32x32/apps/kbackup.png share/icons/hicolor/32x32/mimetypes/text-x-kbp.png share/kxmlgui5/kbackup/kbackupui.rc share/locale/ca/LC_MESSAGES/kbackup.mo share/locale/ca@valencia/LC_MESSAGES/kbackup.mo share/locale/cs/LC_MESSAGES/kbackup.mo share/locale/da/LC_MESSAGES/kbackup.mo share/locale/de/LC_MESSAGES/kbackup.mo +share/locale/el/LC_MESSAGES/kbackup.mo share/locale/en_GB/LC_MESSAGES/kbackup.mo share/locale/es/LC_MESSAGES/kbackup.mo share/locale/eu/LC_MESSAGES/kbackup.mo share/locale/fi/LC_MESSAGES/kbackup.mo share/locale/fr/LC_MESSAGES/kbackup.mo share/locale/gl/LC_MESSAGES/kbackup.mo share/locale/ia/LC_MESSAGES/kbackup.mo share/locale/it/LC_MESSAGES/kbackup.mo share/locale/ja/LC_MESSAGES/kbackup.mo share/locale/nl/LC_MESSAGES/kbackup.mo share/locale/nn/LC_MESSAGES/kbackup.mo share/locale/pl/LC_MESSAGES/kbackup.mo share/locale/pt/LC_MESSAGES/kbackup.mo share/locale/pt_BR/LC_MESSAGES/kbackup.mo share/locale/ru/LC_MESSAGES/kbackup.mo share/locale/sk/LC_MESSAGES/kbackup.mo share/locale/sv/LC_MESSAGES/kbackup.mo share/locale/uk/LC_MESSAGES/kbackup.mo share/locale/zh_CN/LC_MESSAGES/kbackup.mo share/locale/zh_TW/LC_MESSAGES/kbackup.mo share/metainfo/org.kde.kbackup.appdata.xml share/mime/packages/kbackup.xml Index: head/sysutils/kcron/distinfo =================================================================== --- head/sysutils/kcron/distinfo (revision 499276) +++ head/sysutils/kcron/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551810954 -SHA256 (KDE/applications/18.12.3/kcron-18.12.3.tar.xz) = ba1d7e3ed5453a4867b4900deb957f1020f1533bdadfc36a1c6f83921bfd6ca3 -SIZE (KDE/applications/18.12.3/kcron-18.12.3.tar.xz) = 1055812 +TIMESTAMP = 1555094950 +SHA256 (KDE/applications/19.04.0/kcron-19.04.0.tar.xz) = 58a84503da74d7c0e26ab14c95f92f57f0a9f0c5e1ce0fa4be30276728c8be35 +SIZE (KDE/applications/19.04.0/kcron-19.04.0.tar.xz) = 926820 Index: head/sysutils/kdebugsettings/distinfo =================================================================== --- head/sysutils/kdebugsettings/distinfo (revision 499276) +++ head/sysutils/kdebugsettings/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551810940 -SHA256 (KDE/applications/18.12.3/kdebugsettings-18.12.3.tar.xz) = 680eeec77314d23ca3a40c803b4c22a1800dc982fa81cba9f44dbfa9222539f7 -SIZE (KDE/applications/18.12.3/kdebugsettings-18.12.3.tar.xz) = 55104 +TIMESTAMP = 1555094950 +SHA256 (KDE/applications/19.04.0/kdebugsettings-19.04.0.tar.xz) = 7c06b1c5b1f14c3a67d34fda52494a8d47495b3473ecd9fe03e97cb1c88012c5 +SIZE (KDE/applications/19.04.0/kdebugsettings-19.04.0.tar.xz) = 55320 Index: head/sysutils/kdf/distinfo =================================================================== --- head/sysutils/kdf/distinfo (revision 499276) +++ head/sysutils/kdf/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551810951 -SHA256 (KDE/applications/18.12.3/kdf-18.12.3.tar.xz) = a8a9e8a4c2bdc1855078383f10720b4b3a388c678dee148494dc18ba5019a6ae -SIZE (KDE/applications/18.12.3/kdf-18.12.3.tar.xz) = 556536 +TIMESTAMP = 1555094951 +SHA256 (KDE/applications/19.04.0/kdf-19.04.0.tar.xz) = f1204fddefe5492c860a77ff2c343f9b885625b321a37673763d73510dd469fd +SIZE (KDE/applications/19.04.0/kdf-19.04.0.tar.xz) = 541444 Index: head/sysutils/kdialog/distinfo =================================================================== --- head/sysutils/kdialog/distinfo (revision 499276) +++ head/sysutils/kdialog/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551810952 -SHA256 (KDE/applications/18.12.3/kdialog-18.12.3.tar.xz) = 8b17013ced4b02ceaf89ed3d3fdcfa4fce06fac54d54041fb1e47169f2def212 -SIZE (KDE/applications/18.12.3/kdialog-18.12.3.tar.xz) = 97392 +TIMESTAMP = 1555094951 +SHA256 (KDE/applications/19.04.0/kdialog-19.04.0.tar.xz) = 2cdd5a65046cfc09246bd1fbc8be818db486e35437f00e20e372d58988f04ace +SIZE (KDE/applications/19.04.0/kdialog-19.04.0.tar.xz) = 98652 Index: head/sysutils/kfloppy/distinfo =================================================================== --- head/sysutils/kfloppy/distinfo (revision 499276) +++ head/sysutils/kfloppy/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551810953 -SHA256 (KDE/applications/18.12.3/kfloppy-18.12.3.tar.xz) = d68af7c572591a1a297cc823c1cb16a8a15973983c31f2e598d75dcc09ae2363 -SIZE (KDE/applications/18.12.3/kfloppy-18.12.3.tar.xz) = 199308 +TIMESTAMP = 1555094951 +SHA256 (KDE/applications/19.04.0/kfloppy-19.04.0.tar.xz) = fafa66fddf5fe938b5666ef94ea4a1f41487cb3cc815fa6bc65332ee7574f7e1 +SIZE (KDE/applications/19.04.0/kfloppy-19.04.0.tar.xz) = 199396 Index: head/sysutils/khelpcenter/distinfo =================================================================== --- head/sysutils/khelpcenter/distinfo (revision 499276) +++ head/sysutils/khelpcenter/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551810950 -SHA256 (KDE/applications/18.12.3/khelpcenter-18.12.3.tar.xz) = 5b4a9ed17d0898c74cf7fd1612e2d055086d5e04148b3b17df5977255fc240b8 -SIZE (KDE/applications/18.12.3/khelpcenter-18.12.3.tar.xz) = 3841936 +TIMESTAMP = 1555094962 +SHA256 (KDE/applications/19.04.0/khelpcenter-19.04.0.tar.xz) = 5fc4f9553e8575055edf259baa3d0b0c663db5caf67dc392db9e519d6b85699f +SIZE (KDE/applications/19.04.0/khelpcenter-19.04.0.tar.xz) = 3841472 Index: head/sysutils/ksystemlog/distinfo =================================================================== --- head/sysutils/ksystemlog/distinfo (revision 499276) +++ head/sysutils/ksystemlog/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551810951 -SHA256 (KDE/applications/18.12.3/ksystemlog-18.12.3.tar.xz) = 93f276698b74af654f3ed147d5c025162bd919ec6c79a7c7dd7678051c307e52 -SIZE (KDE/applications/18.12.3/ksystemlog-18.12.3.tar.xz) = 1924336 +TIMESTAMP = 1555094962 +SHA256 (KDE/applications/19.04.0/ksystemlog-19.04.0.tar.xz) = 6a9f389b04fac92b0e2955e86e4a45aa73494f6dd24c9a6704826b469414fb5d +SIZE (KDE/applications/19.04.0/ksystemlog-19.04.0.tar.xz) = 1924560 Index: head/sysutils/signon-kwallet-extension/distinfo =================================================================== --- head/sysutils/signon-kwallet-extension/distinfo (revision 499276) +++ head/sysutils/signon-kwallet-extension/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551810952 -SHA256 (KDE/applications/18.12.3/signon-kwallet-extension-18.12.3.tar.xz) = 9a6c25cf19a382cbfd219c043838ad691c4c53ae8c3bc9f4b59f9f6f98bd3a4f -SIZE (KDE/applications/18.12.3/signon-kwallet-extension-18.12.3.tar.xz) = 10624 +TIMESTAMP = 1555094963 +SHA256 (KDE/applications/19.04.0/signon-kwallet-extension-19.04.0.tar.xz) = eb93120d2acfbac4b823bc301b3724d250dc7e7041eef347c1337c7df84c0c40 +SIZE (KDE/applications/19.04.0/signon-kwallet-extension-19.04.0.tar.xz) = 10632 Index: head/sysutils/sweeper/distinfo =================================================================== --- head/sysutils/sweeper/distinfo (revision 499276) +++ head/sysutils/sweeper/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551810953 -SHA256 (KDE/applications/18.12.3/sweeper-18.12.3.tar.xz) = 8007da0f4d835e376fb049d539ca9fd6840ef7196f25b62cf652374a645fc6e0 -SIZE (KDE/applications/18.12.3/sweeper-18.12.3.tar.xz) = 368120 +TIMESTAMP = 1555094963 +SHA256 (KDE/applications/19.04.0/sweeper-19.04.0.tar.xz) = 7ed57321ba601725291e1cfa6cdfe2060ad0405d42124dc8d8d44d137b852f72 +SIZE (KDE/applications/19.04.0/sweeper-19.04.0.tar.xz) = 368272 Index: head/textproc/kompare/distinfo =================================================================== --- head/textproc/kompare/distinfo (revision 499276) +++ head/textproc/kompare/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551811086 -SHA256 (KDE/applications/18.12.3/kompare-18.12.3.tar.xz) = 7a132a0aced98079fdec37188e9a46f5399e7584ab9d39801d7f0f8176623285 -SIZE (KDE/applications/18.12.3/kompare-18.12.3.tar.xz) = 801896 +TIMESTAMP = 1555094963 +SHA256 (KDE/applications/19.04.0/kompare-19.04.0.tar.xz) = 49453b90e21d3b2acd766aac244f579e2dc446ec8abf854ceb2faf34fc3e647f +SIZE (KDE/applications/19.04.0/kompare-19.04.0.tar.xz) = 802100 Index: head/textproc/kompare/pkg-plist =================================================================== --- head/textproc/kompare/pkg-plist (revision 499276) +++ head/textproc/kompare/pkg-plist (revision 499277) @@ -1,72 +1,70 @@ bin/kompare include/kompare/kompareinterface.h lib/libkomparedialogpages.so.5 lib/libkompareinterface.so lib/libkompareinterface.so.5 -%%QT_PLUGINDIR%%/komparenavtreepart.so -%%QT_PLUGINDIR%%/komparepart.so +%%QT_PLUGINDIR%%/kf5/parts/komparenavtreepart.so +%%QT_PLUGINDIR%%/kf5/parts/komparepart.so share/applications/org.kde.kompare.desktop share/icons/hicolor/128x128/apps/kompare.png share/icons/hicolor/16x16/apps/kompare.png share/icons/hicolor/22x22/apps/kompare.png share/icons/hicolor/32x32/apps/kompare.png share/icons/hicolor/48x48/apps/kompare.png share/icons/hicolor/scalable/apps/kompare.svgz share/kservices5/ServiceMenus/kompare.desktop share/kservices5/komparenavtreepart.desktop share/kservices5/komparepart.desktop share/kservicetypes5/komparenavigationpart.desktop share/kservicetypes5/kompareviewpart.desktop -share/kxmlgui5/komparepart/komparepartui.rc -share/kxmlgui5/kompare/kompareui.rc share/locale/ar/LC_MESSAGES/kompare.mo share/locale/bg/LC_MESSAGES/kompare.mo share/locale/bs/LC_MESSAGES/kompare.mo share/locale/ca/LC_MESSAGES/kompare.mo share/locale/ca@valencia/LC_MESSAGES/kompare.mo share/locale/cs/LC_MESSAGES/kompare.mo share/locale/da/LC_MESSAGES/kompare.mo share/locale/de/LC_MESSAGES/kompare.mo share/locale/el/LC_MESSAGES/kompare.mo share/locale/en_GB/LC_MESSAGES/kompare.mo share/locale/eo/LC_MESSAGES/kompare.mo share/locale/es/LC_MESSAGES/kompare.mo share/locale/et/LC_MESSAGES/kompare.mo share/locale/eu/LC_MESSAGES/kompare.mo share/locale/fa/LC_MESSAGES/kompare.mo share/locale/fi/LC_MESSAGES/kompare.mo share/locale/fr/LC_MESSAGES/kompare.mo share/locale/ga/LC_MESSAGES/kompare.mo share/locale/gl/LC_MESSAGES/kompare.mo share/locale/hi/LC_MESSAGES/kompare.mo share/locale/hr/LC_MESSAGES/kompare.mo share/locale/hu/LC_MESSAGES/kompare.mo share/locale/is/LC_MESSAGES/kompare.mo share/locale/it/LC_MESSAGES/kompare.mo share/locale/ja/LC_MESSAGES/kompare.mo share/locale/kk/LC_MESSAGES/kompare.mo share/locale/km/LC_MESSAGES/kompare.mo share/locale/ko/LC_MESSAGES/kompare.mo share/locale/lt/LC_MESSAGES/kompare.mo share/locale/lv/LC_MESSAGES/kompare.mo share/locale/mr/LC_MESSAGES/kompare.mo share/locale/nb/LC_MESSAGES/kompare.mo share/locale/nds/LC_MESSAGES/kompare.mo share/locale/nl/LC_MESSAGES/kompare.mo share/locale/nn/LC_MESSAGES/kompare.mo share/locale/pa/LC_MESSAGES/kompare.mo share/locale/pl/LC_MESSAGES/kompare.mo share/locale/pt/LC_MESSAGES/kompare.mo share/locale/pt_BR/LC_MESSAGES/kompare.mo share/locale/ro/LC_MESSAGES/kompare.mo share/locale/ru/LC_MESSAGES/kompare.mo share/locale/sk/LC_MESSAGES/kompare.mo share/locale/sl/LC_MESSAGES/kompare.mo share/locale/sr/LC_MESSAGES/kompare.mo share/locale/sv/LC_MESSAGES/kompare.mo share/locale/tr/LC_MESSAGES/kompare.mo share/locale/ug/LC_MESSAGES/kompare.mo share/locale/uk/LC_MESSAGES/kompare.mo share/locale/zh_CN/LC_MESSAGES/kompare.mo share/locale/zh_TW/LC_MESSAGES/kompare.mo share/metainfo/org.kde.kompare.appdata.xml Index: head/textproc/libkomparediff2/distinfo =================================================================== --- head/textproc/libkomparediff2/distinfo (revision 499276) +++ head/textproc/libkomparediff2/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551811086 -SHA256 (KDE/applications/18.12.3/libkomparediff2-18.12.3.tar.xz) = f70bf7470f67419a7071a4df23d929c4c4ed80d588b3096d48486ee0f27d890c -SIZE (KDE/applications/18.12.3/libkomparediff2-18.12.3.tar.xz) = 173456 +TIMESTAMP = 1555094964 +SHA256 (KDE/applications/19.04.0/libkomparediff2-19.04.0.tar.xz) = ffb3370aa869831f86dc009353abd72a5f0c7a7d1c570d5fecf9747131247464 +SIZE (KDE/applications/19.04.0/libkomparediff2-19.04.0.tar.xz) = 173568 Index: head/x11/konsole/distinfo =================================================================== --- head/x11/konsole/distinfo (revision 499276) +++ head/x11/konsole/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551810991 -SHA256 (KDE/applications/18.12.3/konsole-18.12.3.tar.xz) = 01ff3245d755a6e38207e58e50e5f82e5c681ead2ad7176d46aec00a8a562e08 -SIZE (KDE/applications/18.12.3/konsole-18.12.3.tar.xz) = 1098092 +TIMESTAMP = 1555094966 +SHA256 (KDE/applications/19.04.0/konsole-19.04.0.tar.xz) = 62d53840f6cac4686feafa7f75d641bb56867b7dfc12e6ce95afa7e796e37cef +SIZE (KDE/applications/19.04.0/konsole-19.04.0.tar.xz) = 1121996 Index: head/x11-clocks/kteatime/distinfo =================================================================== --- head/x11-clocks/kteatime/distinfo (revision 499276) +++ head/x11-clocks/kteatime/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551810955 -SHA256 (KDE/applications/18.12.3/kteatime-18.12.3.tar.xz) = 24b3e51edc9d6625ca5b3542bd5edd1d42d79142f2c30f886e1b9515dcdfac6d -SIZE (KDE/applications/18.12.3/kteatime-18.12.3.tar.xz) = 298456 +TIMESTAMP = 1555094964 +SHA256 (KDE/applications/19.04.0/kteatime-19.04.0.tar.xz) = 8672fa70912e9bf4488d5258258a14babbf65ee160dc537ab665ff2136a0c490 +SIZE (KDE/applications/19.04.0/kteatime-19.04.0.tar.xz) = 298480 Index: head/x11-clocks/ktimer/distinfo =================================================================== --- head/x11-clocks/ktimer/distinfo (revision 499276) +++ head/x11-clocks/ktimer/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551810955 -SHA256 (KDE/applications/18.12.3/ktimer-18.12.3.tar.xz) = b3808fa9821c3a624b880b9a5607c8e12287cd38418ff06dd9af8345f324fe7e -SIZE (KDE/applications/18.12.3/ktimer-18.12.3.tar.xz) = 376732 +TIMESTAMP = 1555094965 +SHA256 (KDE/applications/19.04.0/ktimer-19.04.0.tar.xz) = d772292fa447aec07ff763d7bdfc351fbf2fd7d09160a574ec36ff2905ea5b79 +SIZE (KDE/applications/19.04.0/ktimer-19.04.0.tar.xz) = 377084 Index: head/x11-fm/dolphin/Makefile =================================================================== --- head/x11-fm/dolphin/Makefile (revision 499276) +++ head/x11-fm/dolphin/Makefile (revision 499277) @@ -1,35 +1,34 @@ # $FreeBSD$ PORTNAME= dolphin DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= x11-fm kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE filemanager dolphin LICENSE= LGPL20 LICENSE_FILE= ${WRKSRC}/COPYING RUN_DEPENDS= ${QT_PLUGINDIR}/ffmpegthumbs.so:multimedia/kdemultimedia-ffmpegthumbs \ ${QT_PLUGINDIR}/gsthumbnail.so:graphics/kdegraphics-thumbnailers \ ${QT_PLUGINDIR}/audiothumbnail.so:devel/kio-extras USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= activities attica auth baloo baloo-widgets bookmarks codecs \ completion config configwidgets coreaddons crash dbusaddons \ doctools ecm emoticons filemetadata i18n iconthemes init \ itemmodels itemviews jobwidgets kcmutils kde-cli-tools \ kdelibs4support kio newstuff notifications parts service \ solid sonnet texteditor textwidgets widgetsaddons \ windowsystem xmlgui USE_QT= concurrent core dbus gui network phonon4 widgets xml \ buildtools_build qmake_build SHLIB_VER= 5.0.0 PLIST_SUB+= SHLIB_VER="${SHLIB_VER}" \ SHLIB_SHVER="${SHLIB_VER:R:R}" OPTIONS_DEFINE= DOCS .include Index: head/x11-fm/dolphin/distinfo =================================================================== --- head/x11-fm/dolphin/distinfo (revision 499276) +++ head/x11-fm/dolphin/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551811075 -SHA256 (KDE/applications/18.12.3/dolphin-18.12.3.tar.xz) = c4921759bdfec9a96201a5d76a67869f867ec7e3caf92f8e46fa5d853a0741b1 -SIZE (KDE/applications/18.12.3/dolphin-18.12.3.tar.xz) = 4868312 +TIMESTAMP = 1555094965 +SHA256 (KDE/applications/19.04.0/dolphin-19.04.0.tar.xz) = f3f45b9048c283252067eebfad8c6e1efc6bc64d43fcba78b933850ea4762375 +SIZE (KDE/applications/19.04.0/dolphin-19.04.0.tar.xz) = 4826048 Index: head/x11-fm/konqueror/Makefile =================================================================== --- head/x11-fm/konqueror/Makefile (revision 499276) +++ head/x11-fm/konqueror/Makefile (revision 499277) @@ -1,26 +1,26 @@ # $FreeBSD$ PORTNAME= konqueror DISTVERSION= ${KDE_APPLICATIONS_VERSION} CATEGORIES= x11-fm www kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE system log application -LIB_DEPENDS= libtidy.so:www/tidy-lib +LIB_DEPENDS= libtidy5.so:www/tidy-html5 USES= cmake compiler:c++11-lang desktop-file-utils gettext \ - kde:5 pkgconfig qt:5 tar:xz + 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 widgetsaddons windowsystem xmlgui -USE_QT= core dbus declarative gui location network printsupport script \ + 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 499276) +++ head/x11-fm/konqueror/distinfo (revision 499277) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551811074 -SHA256 (KDE/applications/18.12.3/konqueror-18.12.3.tar.xz) = d9eb2bb4cd121f9967c6d6e7275dfb56bd41aec03c2b9d903d543b330ca4666a -SIZE (KDE/applications/18.12.3/konqueror-18.12.3.tar.xz) = 7755872 +TIMESTAMP = 1555094965 +SHA256 (KDE/applications/19.04.0/konqueror-19.04.0.tar.xz) = 8da6fdd7de037bed79b6341e670a7491d371d084c59fdbefb4ffae0d2da82e4c +SIZE (KDE/applications/19.04.0/konqueror-19.04.0.tar.xz) = 7757952 Index: head/x11-fm/konqueror/pkg-plist =================================================================== --- head/x11-fm/konqueror/pkg-plist (revision 499276) +++ head/x11-fm/konqueror/pkg-plist (revision 499277) @@ -1,1597 +1,1597 @@ bin/fsview bin/kfmclient bin/konqueror etc/xdg/akregatorplugin.categories etc/xdg/autostart/konqy_preload.desktop etc/xdg/konqueror.categories etc/xdg/translaterc include/KF5/konq_events.h include/KF5/konq_historyentry.h include/KF5/konq_historyprovider.h include/KF5/konq_popupmenu.h include/KF5/konq_version.h include/KF5/libkonq_export.h lib/cmake/KF5Konq/KF5KonqConfig.cmake lib/cmake/KF5Konq/KF5KonqConfigVersion.cmake lib/cmake/KF5Konq/KF5KonqTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5Konq/KF5KonqTargets.cmake lib/libKF5Konq.so lib/libKF5Konq.so.5.97.0 lib/libKF5Konq.so.6 lib/libkdeinit5_kfmclient.so lib/libkdeinit5_konqueror.so lib/libkonquerorprivate.so.5 lib/libkonquerorprivate.so.5.0.97 -lib/libkwebenginepartlib.so +lib/libkwebenginepart.so %%QT_PLUGINDIR%%/akregatorkonqfeedicon.so %%QT_PLUGINDIR%%/autorefresh.so %%QT_PLUGINDIR%%/babelfishplugin.so %%QT_PLUGINDIR%%/dirfilterplugin.so %%QT_PLUGINDIR%%/domtreeviewerplugin.so %%QT_PLUGINDIR%%/fsviewpart.so %%QT_PLUGINDIR%%/kcm_bookmarks.so %%QT_PLUGINDIR%%/kcm_konq.so %%QT_PLUGINDIR%%/kcm_konqhtml.so %%QT_PLUGINDIR%%/kcm_performance.so %%QT_PLUGINDIR%%/kf5/kfileitemaction/akregatorplugin.so %%QT_PLUGINDIR%%/kf5/parts/webenginepart.so %%QT_PLUGINDIR%%/khtmlsettingsplugin.so %%QT_PLUGINDIR%%/khtmlttsplugin.so %%QT_PLUGINDIR%%/kimgallery.so %%QT_PLUGINDIR%%/konq_aboutpage.so %%QT_PLUGINDIR%%/konq_shellcmdplugin.so %%QT_PLUGINDIR%%/minitoolsplugin.so %%QT_PLUGINDIR%%/rellinksplugin.so %%QT_PLUGINDIR%%/searchbarplugin.so %%QT_PLUGINDIR%%/validatorsplugin.so %%QT_PLUGINDIR%%/webarchiverplugin.so %%QT_PLUGINDIR%%/webarchivethumbnail.so share/akregator/pics/feed.png share/applications/kfmclient.desktop share/applications/kfmclient_dir.desktop share/applications/kfmclient_html.desktop share/applications/kfmclient_war.desktop share/applications/konqbrowser.desktop share/config.kcfg/konqueror.kcfg share/config.kcfg/validators.kcfg share/dbus-1/interfaces/org.kde.Konqueror.Main.xml share/dbus-1/interfaces/org.kde.Konqueror.MainWindow.xml share/dolphinpart/kpartplugins/dirfilterplugin.desktop share/dolphinpart/kpartplugins/dirfilterplugin.rc share/dolphinpart/kpartplugins/kimgalleryplugin.desktop share/dolphinpart/kpartplugins/kimgalleryplugin.rc share/dolphinpart/kpartplugins/kshellcmdplugin.desktop share/dolphinpart/kpartplugins/kshellcmdplugin.rc share/domtreeviewer/domtreeviewerui.rc share/fsview/fsview_part.rc share/icons/hicolor/128x128/apps/konqueror.png share/icons/hicolor/128x128/apps/webengine.png share/icons/hicolor/16x16/actions/babelfish.png share/icons/hicolor/16x16/actions/cssvalidator.png share/icons/hicolor/16x16/actions/htmlvalidator.png share/icons/hicolor/16x16/actions/imagegallery.png share/icons/hicolor/16x16/actions/validators.png share/icons/hicolor/16x16/actions/webarchiver.png share/icons/hicolor/16x16/apps/konqueror.png share/icons/hicolor/16x16/apps/webengine.png share/icons/hicolor/22x22/actions/babelfish.png share/icons/hicolor/22x22/actions/cssvalidator.png share/icons/hicolor/22x22/actions/htmlvalidator.png share/icons/hicolor/22x22/actions/imagegallery.png share/icons/hicolor/22x22/actions/validators.png share/icons/hicolor/22x22/actions/webarchiver.png share/icons/hicolor/22x22/apps/fsview.png share/icons/hicolor/22x22/apps/konqueror.png share/icons/hicolor/22x22/apps/webengine.png share/icons/hicolor/32x32/actions/htmlvalidator.png share/icons/hicolor/32x32/actions/validators.png share/icons/hicolor/32x32/apps/fsview.png share/icons/hicolor/32x32/apps/konqueror.png share/icons/hicolor/32x32/apps/webengine.png share/icons/hicolor/48x48/actions/htmlvalidator.png share/icons/hicolor/48x48/actions/validators.png share/icons/hicolor/48x48/apps/konqueror.png share/icons/hicolor/48x48/apps/webengine.png share/icons/hicolor/64x64/actions/htmlvalidator.png share/icons/hicolor/64x64/actions/validators.png share/icons/hicolor/64x64/apps/konqueror.png share/icons/hicolor/64x64/apps/webengine.png share/icons/hicolor/scalable/actions/htmlvalidator.svgz share/icons/hicolor/scalable/actions/validators.svgz share/kcmcss/template.css share/kcontrol/pics/onlyone.png share/kcontrol/pics/overlapping.png share/kf5/kbookmark/directory_bookmarkbar.desktop share/khtml/kpartplugins/akregator_konqfeedicon.desktop share/khtml/kpartplugins/akregator_konqfeedicon.rc share/khtml/kpartplugins/autorefresh.desktop share/khtml/kpartplugins/autorefresh.rc share/khtml/kpartplugins/khtmlsettingsplugin.desktop share/khtml/kpartplugins/khtmlsettingsplugin.rc share/khtml/kpartplugins/khtmltts.desktop share/khtml/kpartplugins/khtmltts.rc share/khtml/kpartplugins/minitoolsplugin.desktop share/khtml/kpartplugins/minitoolsplugin.rc share/khtml/kpartplugins/plugin_babelfish.rc share/khtml/kpartplugins/plugin_domtreeviewer.desktop share/khtml/kpartplugins/plugin_domtreeviewer.rc share/khtml/kpartplugins/plugin_rellinks.desktop share/khtml/kpartplugins/plugin_rellinks.rc share/khtml/kpartplugins/plugin_translator.desktop share/khtml/kpartplugins/plugin_validators.desktop share/khtml/kpartplugins/plugin_validators.rc share/khtml/kpartplugins/plugin_webarchiver.desktop share/khtml/kpartplugins/plugin_webarchiver.rc %%DATADIR%%/about/intro.html %%DATADIR%%/about/konq.css %%DATADIR%%/about/launch.html %%DATADIR%%/about/plugins.html %%DATADIR%%/about/plugins_rtl.html %%DATADIR%%/about/specs.html %%DATADIR%%/about/tips.html %%DATADIR%%/about/top-left-konqueror.png %%DATADIR%%/icons/hicolor/16x16/actions/google.png %%DATADIR%%/icons/hicolor/22x22/actions/google.png %%DATADIR%%/icons/hicolor/32x32/actions/google.png %%DATADIR%%/icons/hicolor/48x48/actions/google.png %%DATADIR%%/icons/hicolor/64x64/actions/google.png %%DATADIR%%/icons/hicolor/scalable/actions/google.svgz %%DATADIR%%/kpartplugins/searchbar.desktop %%DATADIR%%/kpartplugins/searchbar.rc %%DATADIR%%/opensearch/google.xml %%DATADIR%%/pics/indicator_connect.png %%DATADIR%%/pics/indicator_empty.png %%DATADIR%%/pics/indicator_noconnect.png %%DATADIR%%/pics/indicator_viewactive.png share/kservices5/akregator_konqplugin.desktop share/kservices5/bookmarks.desktop share/kservices5/filebehavior.desktop share/kservices5/fsview_part.desktop share/kservices5/kcmkonqyperformance.desktop share/kservices5/kcmperformance.desktop share/kservices5/khtml_appearance.desktop share/kservices5/khtml_behavior.desktop share/kservices5/khtml_filter.desktop share/kservices5/khtml_general.desktop share/kservices5/khtml_java_js.desktop share/kservices5/konq_aboutpage.desktop share/kservices5/org.kde.konqueror.desktop share/kservices5/webarchivethumbnail.desktop share/kservices5/webenginepart.desktop share/kservicetypes5/konqaboutpage.desktop share/kxmlgui5/webenginepart/webenginepart.rc share/locale/ar/LC_MESSAGES/adblock.mo share/locale/ar/LC_MESSAGES/akregator_konqplugin.mo share/locale/ar/LC_MESSAGES/autorefresh.mo share/locale/ar/LC_MESSAGES/babelfish.mo share/locale/ar/LC_MESSAGES/dirfilterplugin.mo share/locale/ar/LC_MESSAGES/domtreeviewer.mo share/locale/ar/LC_MESSAGES/fsview.mo share/locale/ar/LC_MESSAGES/imgalleryplugin.mo share/locale/ar/LC_MESSAGES/kcmbookmarks.mo share/locale/ar/LC_MESSAGES/kcmkonq.mo share/locale/ar/LC_MESSAGES/kcmkonqhtml.mo share/locale/ar/LC_MESSAGES/kcmperformance.mo share/locale/ar/LC_MESSAGES/kfmclient.mo share/locale/ar/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/ar/LC_MESSAGES/khtmltts.mo share/locale/ar/LC_MESSAGES/konqueror.mo share/locale/ar/LC_MESSAGES/kshellcmdplugin.mo share/locale/ar/LC_MESSAGES/libkonq.mo share/locale/ar/LC_MESSAGES/mf_konqplugin.mo share/locale/ar/LC_MESSAGES/minitoolsplugin.mo share/locale/ar/LC_MESSAGES/rellinks.mo share/locale/ar/LC_MESSAGES/searchbarplugin.mo share/locale/ar/LC_MESSAGES/uachangerplugin.mo share/locale/ar/LC_MESSAGES/validatorsplugin.mo share/locale/ar/LC_MESSAGES/webarchiver.mo share/locale/ar/LC_MESSAGES/webenginepart.mo share/locale/ast/LC_MESSAGES/adblock.mo share/locale/ast/LC_MESSAGES/akregator_konqplugin.mo share/locale/ast/LC_MESSAGES/autorefresh.mo share/locale/ast/LC_MESSAGES/babelfish.mo share/locale/ast/LC_MESSAGES/dirfilterplugin.mo share/locale/ast/LC_MESSAGES/domtreeviewer.mo share/locale/ast/LC_MESSAGES/fsview.mo share/locale/ast/LC_MESSAGES/imgalleryplugin.mo share/locale/ast/LC_MESSAGES/kcmbookmarks.mo share/locale/ast/LC_MESSAGES/kcmkonq.mo share/locale/ast/LC_MESSAGES/kcmkonqhtml.mo share/locale/ast/LC_MESSAGES/kcmperformance.mo share/locale/ast/LC_MESSAGES/kfmclient.mo share/locale/ast/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/ast/LC_MESSAGES/khtmltts.mo share/locale/ast/LC_MESSAGES/konqueror.mo share/locale/ast/LC_MESSAGES/kshellcmdplugin.mo share/locale/ast/LC_MESSAGES/libkonq.mo share/locale/ast/LC_MESSAGES/mf_konqplugin.mo share/locale/ast/LC_MESSAGES/minitoolsplugin.mo share/locale/ast/LC_MESSAGES/rellinks.mo share/locale/ast/LC_MESSAGES/searchbarplugin.mo share/locale/ast/LC_MESSAGES/uachangerplugin.mo share/locale/ast/LC_MESSAGES/validatorsplugin.mo share/locale/ast/LC_MESSAGES/webarchiver.mo share/locale/ast/LC_MESSAGES/webenginepart.mo share/locale/bg/LC_MESSAGES/adblock.mo share/locale/bg/LC_MESSAGES/akregator_konqplugin.mo share/locale/bg/LC_MESSAGES/autorefresh.mo share/locale/bg/LC_MESSAGES/babelfish.mo share/locale/bg/LC_MESSAGES/dirfilterplugin.mo share/locale/bg/LC_MESSAGES/domtreeviewer.mo share/locale/bg/LC_MESSAGES/fsview.mo share/locale/bg/LC_MESSAGES/imgalleryplugin.mo share/locale/bg/LC_MESSAGES/kcmbookmarks.mo share/locale/bg/LC_MESSAGES/kcmkonq.mo share/locale/bg/LC_MESSAGES/kcmkonqhtml.mo share/locale/bg/LC_MESSAGES/kcmperformance.mo share/locale/bg/LC_MESSAGES/kfmclient.mo share/locale/bg/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/bg/LC_MESSAGES/khtmltts.mo share/locale/bg/LC_MESSAGES/konqueror.mo share/locale/bg/LC_MESSAGES/kshellcmdplugin.mo share/locale/bg/LC_MESSAGES/libkonq.mo share/locale/bg/LC_MESSAGES/mf_konqplugin.mo share/locale/bg/LC_MESSAGES/minitoolsplugin.mo share/locale/bg/LC_MESSAGES/rellinks.mo share/locale/bg/LC_MESSAGES/searchbarplugin.mo share/locale/bg/LC_MESSAGES/uachangerplugin.mo share/locale/bg/LC_MESSAGES/validatorsplugin.mo share/locale/bg/LC_MESSAGES/webarchiver.mo share/locale/bg/LC_MESSAGES/webenginepart.mo share/locale/bs/LC_MESSAGES/adblock.mo share/locale/bs/LC_MESSAGES/akregator_konqplugin.mo share/locale/bs/LC_MESSAGES/autorefresh.mo share/locale/bs/LC_MESSAGES/babelfish.mo share/locale/bs/LC_MESSAGES/dirfilterplugin.mo share/locale/bs/LC_MESSAGES/domtreeviewer.mo share/locale/bs/LC_MESSAGES/fsview.mo share/locale/bs/LC_MESSAGES/imgalleryplugin.mo share/locale/bs/LC_MESSAGES/kcmbookmarks.mo share/locale/bs/LC_MESSAGES/kcmkonq.mo share/locale/bs/LC_MESSAGES/kcmkonqhtml.mo share/locale/bs/LC_MESSAGES/kcmperformance.mo share/locale/bs/LC_MESSAGES/kfmclient.mo share/locale/bs/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/bs/LC_MESSAGES/khtmltts.mo share/locale/bs/LC_MESSAGES/konqueror.mo share/locale/bs/LC_MESSAGES/kshellcmdplugin.mo share/locale/bs/LC_MESSAGES/libkonq.mo share/locale/bs/LC_MESSAGES/mf_konqplugin.mo share/locale/bs/LC_MESSAGES/minitoolsplugin.mo share/locale/bs/LC_MESSAGES/rellinks.mo share/locale/bs/LC_MESSAGES/searchbarplugin.mo share/locale/bs/LC_MESSAGES/uachangerplugin.mo share/locale/bs/LC_MESSAGES/validatorsplugin.mo share/locale/bs/LC_MESSAGES/webarchiver.mo share/locale/bs/LC_MESSAGES/webenginepart.mo share/locale/ca/LC_MESSAGES/adblock.mo share/locale/ca/LC_MESSAGES/akregator_konqplugin.mo share/locale/ca/LC_MESSAGES/autorefresh.mo share/locale/ca/LC_MESSAGES/babelfish.mo share/locale/ca/LC_MESSAGES/dirfilterplugin.mo share/locale/ca/LC_MESSAGES/domtreeviewer.mo share/locale/ca/LC_MESSAGES/fsview.mo share/locale/ca/LC_MESSAGES/imgalleryplugin.mo share/locale/ca/LC_MESSAGES/kcmbookmarks.mo share/locale/ca/LC_MESSAGES/kcmkonq.mo share/locale/ca/LC_MESSAGES/kcmkonqhtml.mo share/locale/ca/LC_MESSAGES/kcmperformance.mo share/locale/ca/LC_MESSAGES/kfmclient.mo share/locale/ca/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/ca/LC_MESSAGES/khtmltts.mo share/locale/ca/LC_MESSAGES/konqueror.mo share/locale/ca/LC_MESSAGES/kshellcmdplugin.mo share/locale/ca/LC_MESSAGES/libkonq.mo share/locale/ca/LC_MESSAGES/mf_konqplugin.mo share/locale/ca/LC_MESSAGES/minitoolsplugin.mo share/locale/ca/LC_MESSAGES/rellinks.mo share/locale/ca/LC_MESSAGES/searchbarplugin.mo share/locale/ca/LC_MESSAGES/uachangerplugin.mo share/locale/ca/LC_MESSAGES/validatorsplugin.mo share/locale/ca/LC_MESSAGES/webarchiver.mo share/locale/ca/LC_MESSAGES/webenginepart.mo share/locale/ca@valencia/LC_MESSAGES/adblock.mo share/locale/ca@valencia/LC_MESSAGES/akregator_konqplugin.mo share/locale/ca@valencia/LC_MESSAGES/autorefresh.mo share/locale/ca@valencia/LC_MESSAGES/babelfish.mo share/locale/ca@valencia/LC_MESSAGES/dirfilterplugin.mo share/locale/ca@valencia/LC_MESSAGES/domtreeviewer.mo share/locale/ca@valencia/LC_MESSAGES/fsview.mo share/locale/ca@valencia/LC_MESSAGES/imgalleryplugin.mo share/locale/ca@valencia/LC_MESSAGES/kcmbookmarks.mo share/locale/ca@valencia/LC_MESSAGES/kcmkonq.mo share/locale/ca@valencia/LC_MESSAGES/kcmkonqhtml.mo share/locale/ca@valencia/LC_MESSAGES/kcmperformance.mo share/locale/ca@valencia/LC_MESSAGES/kfmclient.mo share/locale/ca@valencia/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/ca@valencia/LC_MESSAGES/khtmltts.mo share/locale/ca@valencia/LC_MESSAGES/konqueror.mo share/locale/ca@valencia/LC_MESSAGES/kshellcmdplugin.mo share/locale/ca@valencia/LC_MESSAGES/libkonq.mo share/locale/ca@valencia/LC_MESSAGES/mf_konqplugin.mo share/locale/ca@valencia/LC_MESSAGES/minitoolsplugin.mo share/locale/ca@valencia/LC_MESSAGES/rellinks.mo share/locale/ca@valencia/LC_MESSAGES/searchbarplugin.mo share/locale/ca@valencia/LC_MESSAGES/uachangerplugin.mo share/locale/ca@valencia/LC_MESSAGES/validatorsplugin.mo share/locale/ca@valencia/LC_MESSAGES/webarchiver.mo share/locale/ca@valencia/LC_MESSAGES/webenginepart.mo share/locale/cs/LC_MESSAGES/adblock.mo share/locale/cs/LC_MESSAGES/akregator_konqplugin.mo share/locale/cs/LC_MESSAGES/autorefresh.mo share/locale/cs/LC_MESSAGES/babelfish.mo share/locale/cs/LC_MESSAGES/dirfilterplugin.mo share/locale/cs/LC_MESSAGES/domtreeviewer.mo share/locale/cs/LC_MESSAGES/fsview.mo share/locale/cs/LC_MESSAGES/imgalleryplugin.mo share/locale/cs/LC_MESSAGES/kcmbookmarks.mo share/locale/cs/LC_MESSAGES/kcmkonq.mo share/locale/cs/LC_MESSAGES/kcmkonqhtml.mo share/locale/cs/LC_MESSAGES/kcmperformance.mo share/locale/cs/LC_MESSAGES/kfmclient.mo share/locale/cs/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/cs/LC_MESSAGES/khtmltts.mo share/locale/cs/LC_MESSAGES/konqueror.mo share/locale/cs/LC_MESSAGES/kshellcmdplugin.mo share/locale/cs/LC_MESSAGES/libkonq.mo share/locale/cs/LC_MESSAGES/mf_konqplugin.mo share/locale/cs/LC_MESSAGES/minitoolsplugin.mo share/locale/cs/LC_MESSAGES/rellinks.mo share/locale/cs/LC_MESSAGES/searchbarplugin.mo share/locale/cs/LC_MESSAGES/uachangerplugin.mo share/locale/cs/LC_MESSAGES/validatorsplugin.mo share/locale/cs/LC_MESSAGES/webarchiver.mo share/locale/cs/LC_MESSAGES/webenginepart.mo share/locale/da/LC_MESSAGES/adblock.mo share/locale/da/LC_MESSAGES/akregator_konqplugin.mo share/locale/da/LC_MESSAGES/autorefresh.mo share/locale/da/LC_MESSAGES/babelfish.mo share/locale/da/LC_MESSAGES/dirfilterplugin.mo share/locale/da/LC_MESSAGES/domtreeviewer.mo share/locale/da/LC_MESSAGES/fsview.mo share/locale/da/LC_MESSAGES/imgalleryplugin.mo share/locale/da/LC_MESSAGES/kcmbookmarks.mo share/locale/da/LC_MESSAGES/kcmkonq.mo share/locale/da/LC_MESSAGES/kcmkonqhtml.mo share/locale/da/LC_MESSAGES/kcmperformance.mo share/locale/da/LC_MESSAGES/kfmclient.mo share/locale/da/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/da/LC_MESSAGES/khtmltts.mo share/locale/da/LC_MESSAGES/konqueror.mo share/locale/da/LC_MESSAGES/kshellcmdplugin.mo share/locale/da/LC_MESSAGES/libkonq.mo share/locale/da/LC_MESSAGES/mf_konqplugin.mo share/locale/da/LC_MESSAGES/minitoolsplugin.mo share/locale/da/LC_MESSAGES/rellinks.mo share/locale/da/LC_MESSAGES/searchbarplugin.mo share/locale/da/LC_MESSAGES/uachangerplugin.mo share/locale/da/LC_MESSAGES/validatorsplugin.mo share/locale/da/LC_MESSAGES/webarchiver.mo share/locale/da/LC_MESSAGES/webenginepart.mo share/locale/de/LC_MESSAGES/adblock.mo share/locale/de/LC_MESSAGES/akregator_konqplugin.mo share/locale/de/LC_MESSAGES/autorefresh.mo share/locale/de/LC_MESSAGES/babelfish.mo share/locale/de/LC_MESSAGES/dirfilterplugin.mo share/locale/de/LC_MESSAGES/domtreeviewer.mo share/locale/de/LC_MESSAGES/fsview.mo share/locale/de/LC_MESSAGES/imgalleryplugin.mo share/locale/de/LC_MESSAGES/kcmbookmarks.mo share/locale/de/LC_MESSAGES/kcmkonq.mo share/locale/de/LC_MESSAGES/kcmkonqhtml.mo share/locale/de/LC_MESSAGES/kcmperformance.mo share/locale/de/LC_MESSAGES/kfmclient.mo share/locale/de/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/de/LC_MESSAGES/khtmltts.mo share/locale/de/LC_MESSAGES/konqueror.mo share/locale/de/LC_MESSAGES/kshellcmdplugin.mo share/locale/de/LC_MESSAGES/libkonq.mo share/locale/de/LC_MESSAGES/mf_konqplugin.mo share/locale/de/LC_MESSAGES/minitoolsplugin.mo share/locale/de/LC_MESSAGES/rellinks.mo share/locale/de/LC_MESSAGES/searchbarplugin.mo share/locale/de/LC_MESSAGES/uachangerplugin.mo share/locale/de/LC_MESSAGES/validatorsplugin.mo share/locale/de/LC_MESSAGES/webarchiver.mo share/locale/de/LC_MESSAGES/webenginepart.mo share/locale/el/LC_MESSAGES/adblock.mo share/locale/el/LC_MESSAGES/akregator_konqplugin.mo share/locale/el/LC_MESSAGES/autorefresh.mo share/locale/el/LC_MESSAGES/babelfish.mo share/locale/el/LC_MESSAGES/dirfilterplugin.mo share/locale/el/LC_MESSAGES/domtreeviewer.mo share/locale/el/LC_MESSAGES/fsview.mo share/locale/el/LC_MESSAGES/imgalleryplugin.mo share/locale/el/LC_MESSAGES/kcmbookmarks.mo share/locale/el/LC_MESSAGES/kcmkonq.mo share/locale/el/LC_MESSAGES/kcmkonqhtml.mo share/locale/el/LC_MESSAGES/kcmperformance.mo share/locale/el/LC_MESSAGES/kfmclient.mo share/locale/el/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/el/LC_MESSAGES/khtmltts.mo share/locale/el/LC_MESSAGES/konqueror.mo share/locale/el/LC_MESSAGES/kshellcmdplugin.mo share/locale/el/LC_MESSAGES/libkonq.mo share/locale/el/LC_MESSAGES/mf_konqplugin.mo share/locale/el/LC_MESSAGES/minitoolsplugin.mo share/locale/el/LC_MESSAGES/rellinks.mo share/locale/el/LC_MESSAGES/searchbarplugin.mo share/locale/el/LC_MESSAGES/uachangerplugin.mo share/locale/el/LC_MESSAGES/validatorsplugin.mo share/locale/el/LC_MESSAGES/webarchiver.mo share/locale/el/LC_MESSAGES/webenginepart.mo share/locale/en_GB/LC_MESSAGES/adblock.mo share/locale/en_GB/LC_MESSAGES/akregator_konqplugin.mo share/locale/en_GB/LC_MESSAGES/autorefresh.mo share/locale/en_GB/LC_MESSAGES/babelfish.mo share/locale/en_GB/LC_MESSAGES/dirfilterplugin.mo share/locale/en_GB/LC_MESSAGES/domtreeviewer.mo share/locale/en_GB/LC_MESSAGES/fsview.mo share/locale/en_GB/LC_MESSAGES/imgalleryplugin.mo share/locale/en_GB/LC_MESSAGES/kcmbookmarks.mo share/locale/en_GB/LC_MESSAGES/kcmkonq.mo share/locale/en_GB/LC_MESSAGES/kcmkonqhtml.mo share/locale/en_GB/LC_MESSAGES/kcmperformance.mo share/locale/en_GB/LC_MESSAGES/kfmclient.mo share/locale/en_GB/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/en_GB/LC_MESSAGES/khtmltts.mo share/locale/en_GB/LC_MESSAGES/konqueror.mo share/locale/en_GB/LC_MESSAGES/kshellcmdplugin.mo share/locale/en_GB/LC_MESSAGES/libkonq.mo share/locale/en_GB/LC_MESSAGES/mf_konqplugin.mo share/locale/en_GB/LC_MESSAGES/minitoolsplugin.mo share/locale/en_GB/LC_MESSAGES/rellinks.mo share/locale/en_GB/LC_MESSAGES/searchbarplugin.mo share/locale/en_GB/LC_MESSAGES/uachangerplugin.mo share/locale/en_GB/LC_MESSAGES/validatorsplugin.mo share/locale/en_GB/LC_MESSAGES/webarchiver.mo share/locale/en_GB/LC_MESSAGES/webenginepart.mo share/locale/eo/LC_MESSAGES/adblock.mo share/locale/eo/LC_MESSAGES/akregator_konqplugin.mo share/locale/eo/LC_MESSAGES/autorefresh.mo share/locale/eo/LC_MESSAGES/babelfish.mo share/locale/eo/LC_MESSAGES/dirfilterplugin.mo share/locale/eo/LC_MESSAGES/domtreeviewer.mo share/locale/eo/LC_MESSAGES/fsview.mo share/locale/eo/LC_MESSAGES/imgalleryplugin.mo share/locale/eo/LC_MESSAGES/kcmbookmarks.mo share/locale/eo/LC_MESSAGES/kcmkonq.mo share/locale/eo/LC_MESSAGES/kcmkonqhtml.mo share/locale/eo/LC_MESSAGES/kcmperformance.mo share/locale/eo/LC_MESSAGES/kfmclient.mo share/locale/eo/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/eo/LC_MESSAGES/khtmltts.mo share/locale/eo/LC_MESSAGES/konqueror.mo share/locale/eo/LC_MESSAGES/kshellcmdplugin.mo share/locale/eo/LC_MESSAGES/libkonq.mo share/locale/eo/LC_MESSAGES/mf_konqplugin.mo share/locale/eo/LC_MESSAGES/minitoolsplugin.mo share/locale/eo/LC_MESSAGES/rellinks.mo share/locale/eo/LC_MESSAGES/searchbarplugin.mo share/locale/eo/LC_MESSAGES/uachangerplugin.mo share/locale/eo/LC_MESSAGES/validatorsplugin.mo share/locale/eo/LC_MESSAGES/webarchiver.mo share/locale/eo/LC_MESSAGES/webenginepart.mo share/locale/es/LC_MESSAGES/adblock.mo share/locale/es/LC_MESSAGES/akregator_konqplugin.mo share/locale/es/LC_MESSAGES/autorefresh.mo share/locale/es/LC_MESSAGES/babelfish.mo share/locale/es/LC_MESSAGES/dirfilterplugin.mo share/locale/es/LC_MESSAGES/domtreeviewer.mo share/locale/es/LC_MESSAGES/fsview.mo share/locale/es/LC_MESSAGES/imgalleryplugin.mo share/locale/es/LC_MESSAGES/kcmbookmarks.mo share/locale/es/LC_MESSAGES/kcmkonq.mo share/locale/es/LC_MESSAGES/kcmkonqhtml.mo share/locale/es/LC_MESSAGES/kcmperformance.mo share/locale/es/LC_MESSAGES/kfmclient.mo share/locale/es/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/es/LC_MESSAGES/khtmltts.mo share/locale/es/LC_MESSAGES/konqueror.mo share/locale/es/LC_MESSAGES/kshellcmdplugin.mo share/locale/es/LC_MESSAGES/libkonq.mo share/locale/es/LC_MESSAGES/mf_konqplugin.mo share/locale/es/LC_MESSAGES/minitoolsplugin.mo share/locale/es/LC_MESSAGES/rellinks.mo share/locale/es/LC_MESSAGES/searchbarplugin.mo share/locale/es/LC_MESSAGES/uachangerplugin.mo share/locale/es/LC_MESSAGES/validatorsplugin.mo share/locale/es/LC_MESSAGES/webarchiver.mo share/locale/es/LC_MESSAGES/webenginepart.mo share/locale/et/LC_MESSAGES/adblock.mo share/locale/et/LC_MESSAGES/akregator_konqplugin.mo share/locale/et/LC_MESSAGES/autorefresh.mo share/locale/et/LC_MESSAGES/babelfish.mo share/locale/et/LC_MESSAGES/dirfilterplugin.mo share/locale/et/LC_MESSAGES/domtreeviewer.mo share/locale/et/LC_MESSAGES/fsview.mo share/locale/et/LC_MESSAGES/imgalleryplugin.mo share/locale/et/LC_MESSAGES/kcmbookmarks.mo share/locale/et/LC_MESSAGES/kcmkonq.mo share/locale/et/LC_MESSAGES/kcmkonqhtml.mo share/locale/et/LC_MESSAGES/kcmperformance.mo share/locale/et/LC_MESSAGES/kfmclient.mo share/locale/et/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/et/LC_MESSAGES/khtmltts.mo share/locale/et/LC_MESSAGES/konqueror.mo share/locale/et/LC_MESSAGES/kshellcmdplugin.mo share/locale/et/LC_MESSAGES/libkonq.mo share/locale/et/LC_MESSAGES/mf_konqplugin.mo share/locale/et/LC_MESSAGES/minitoolsplugin.mo share/locale/et/LC_MESSAGES/rellinks.mo share/locale/et/LC_MESSAGES/searchbarplugin.mo share/locale/et/LC_MESSAGES/uachangerplugin.mo share/locale/et/LC_MESSAGES/validatorsplugin.mo share/locale/et/LC_MESSAGES/webarchiver.mo share/locale/et/LC_MESSAGES/webenginepart.mo share/locale/eu/LC_MESSAGES/adblock.mo share/locale/eu/LC_MESSAGES/akregator_konqplugin.mo share/locale/eu/LC_MESSAGES/autorefresh.mo share/locale/eu/LC_MESSAGES/babelfish.mo share/locale/eu/LC_MESSAGES/dirfilterplugin.mo share/locale/eu/LC_MESSAGES/domtreeviewer.mo share/locale/eu/LC_MESSAGES/fsview.mo share/locale/eu/LC_MESSAGES/imgalleryplugin.mo share/locale/eu/LC_MESSAGES/kcmbookmarks.mo share/locale/eu/LC_MESSAGES/kcmkonq.mo share/locale/eu/LC_MESSAGES/kcmkonqhtml.mo share/locale/eu/LC_MESSAGES/kcmperformance.mo share/locale/eu/LC_MESSAGES/kfmclient.mo share/locale/eu/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/eu/LC_MESSAGES/khtmltts.mo share/locale/eu/LC_MESSAGES/konqueror.mo share/locale/eu/LC_MESSAGES/kshellcmdplugin.mo share/locale/eu/LC_MESSAGES/libkonq.mo share/locale/eu/LC_MESSAGES/mf_konqplugin.mo share/locale/eu/LC_MESSAGES/minitoolsplugin.mo share/locale/eu/LC_MESSAGES/rellinks.mo share/locale/eu/LC_MESSAGES/searchbarplugin.mo share/locale/eu/LC_MESSAGES/uachangerplugin.mo share/locale/eu/LC_MESSAGES/validatorsplugin.mo share/locale/eu/LC_MESSAGES/webarchiver.mo share/locale/eu/LC_MESSAGES/webenginepart.mo share/locale/fa/LC_MESSAGES/adblock.mo share/locale/fa/LC_MESSAGES/akregator_konqplugin.mo share/locale/fa/LC_MESSAGES/autorefresh.mo share/locale/fa/LC_MESSAGES/babelfish.mo share/locale/fa/LC_MESSAGES/dirfilterplugin.mo share/locale/fa/LC_MESSAGES/domtreeviewer.mo share/locale/fa/LC_MESSAGES/fsview.mo share/locale/fa/LC_MESSAGES/imgalleryplugin.mo share/locale/fa/LC_MESSAGES/kcmbookmarks.mo share/locale/fa/LC_MESSAGES/kcmkonq.mo share/locale/fa/LC_MESSAGES/kcmkonqhtml.mo share/locale/fa/LC_MESSAGES/kcmperformance.mo share/locale/fa/LC_MESSAGES/kfmclient.mo share/locale/fa/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/fa/LC_MESSAGES/khtmltts.mo share/locale/fa/LC_MESSAGES/konqueror.mo share/locale/fa/LC_MESSAGES/kshellcmdplugin.mo share/locale/fa/LC_MESSAGES/libkonq.mo share/locale/fa/LC_MESSAGES/mf_konqplugin.mo share/locale/fa/LC_MESSAGES/minitoolsplugin.mo share/locale/fa/LC_MESSAGES/rellinks.mo share/locale/fa/LC_MESSAGES/searchbarplugin.mo share/locale/fa/LC_MESSAGES/uachangerplugin.mo share/locale/fa/LC_MESSAGES/validatorsplugin.mo share/locale/fa/LC_MESSAGES/webarchiver.mo share/locale/fa/LC_MESSAGES/webenginepart.mo share/locale/fi/LC_MESSAGES/adblock.mo share/locale/fi/LC_MESSAGES/akregator_konqplugin.mo share/locale/fi/LC_MESSAGES/autorefresh.mo share/locale/fi/LC_MESSAGES/babelfish.mo share/locale/fi/LC_MESSAGES/dirfilterplugin.mo share/locale/fi/LC_MESSAGES/domtreeviewer.mo share/locale/fi/LC_MESSAGES/fsview.mo share/locale/fi/LC_MESSAGES/imgalleryplugin.mo share/locale/fi/LC_MESSAGES/kcmbookmarks.mo share/locale/fi/LC_MESSAGES/kcmkonq.mo share/locale/fi/LC_MESSAGES/kcmkonqhtml.mo share/locale/fi/LC_MESSAGES/kcmperformance.mo share/locale/fi/LC_MESSAGES/kfmclient.mo share/locale/fi/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/fi/LC_MESSAGES/khtmltts.mo share/locale/fi/LC_MESSAGES/konqueror.mo share/locale/fi/LC_MESSAGES/kshellcmdplugin.mo share/locale/fi/LC_MESSAGES/libkonq.mo share/locale/fi/LC_MESSAGES/mf_konqplugin.mo share/locale/fi/LC_MESSAGES/minitoolsplugin.mo share/locale/fi/LC_MESSAGES/rellinks.mo share/locale/fi/LC_MESSAGES/searchbarplugin.mo share/locale/fi/LC_MESSAGES/uachangerplugin.mo share/locale/fi/LC_MESSAGES/validatorsplugin.mo share/locale/fi/LC_MESSAGES/webarchiver.mo share/locale/fi/LC_MESSAGES/webenginepart.mo share/locale/fr/LC_MESSAGES/adblock.mo share/locale/fr/LC_MESSAGES/akregator_konqplugin.mo share/locale/fr/LC_MESSAGES/autorefresh.mo share/locale/fr/LC_MESSAGES/babelfish.mo share/locale/fr/LC_MESSAGES/dirfilterplugin.mo share/locale/fr/LC_MESSAGES/domtreeviewer.mo share/locale/fr/LC_MESSAGES/fsview.mo share/locale/fr/LC_MESSAGES/imgalleryplugin.mo share/locale/fr/LC_MESSAGES/kcmbookmarks.mo share/locale/fr/LC_MESSAGES/kcmkonq.mo share/locale/fr/LC_MESSAGES/kcmkonqhtml.mo share/locale/fr/LC_MESSAGES/kcmperformance.mo share/locale/fr/LC_MESSAGES/kfmclient.mo share/locale/fr/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/fr/LC_MESSAGES/khtmltts.mo share/locale/fr/LC_MESSAGES/konqueror.mo share/locale/fr/LC_MESSAGES/kshellcmdplugin.mo share/locale/fr/LC_MESSAGES/libkonq.mo share/locale/fr/LC_MESSAGES/mf_konqplugin.mo share/locale/fr/LC_MESSAGES/minitoolsplugin.mo share/locale/fr/LC_MESSAGES/rellinks.mo share/locale/fr/LC_MESSAGES/searchbarplugin.mo share/locale/fr/LC_MESSAGES/uachangerplugin.mo share/locale/fr/LC_MESSAGES/validatorsplugin.mo share/locale/fr/LC_MESSAGES/webarchiver.mo share/locale/fr/LC_MESSAGES/webenginepart.mo share/locale/ga/LC_MESSAGES/adblock.mo share/locale/ga/LC_MESSAGES/akregator_konqplugin.mo share/locale/ga/LC_MESSAGES/autorefresh.mo share/locale/ga/LC_MESSAGES/babelfish.mo share/locale/ga/LC_MESSAGES/dirfilterplugin.mo share/locale/ga/LC_MESSAGES/domtreeviewer.mo share/locale/ga/LC_MESSAGES/fsview.mo share/locale/ga/LC_MESSAGES/imgalleryplugin.mo share/locale/ga/LC_MESSAGES/kcmbookmarks.mo share/locale/ga/LC_MESSAGES/kcmkonq.mo share/locale/ga/LC_MESSAGES/kcmkonqhtml.mo share/locale/ga/LC_MESSAGES/kcmperformance.mo share/locale/ga/LC_MESSAGES/kfmclient.mo share/locale/ga/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/ga/LC_MESSAGES/khtmltts.mo share/locale/ga/LC_MESSAGES/konqueror.mo share/locale/ga/LC_MESSAGES/kshellcmdplugin.mo share/locale/ga/LC_MESSAGES/libkonq.mo share/locale/ga/LC_MESSAGES/mf_konqplugin.mo share/locale/ga/LC_MESSAGES/minitoolsplugin.mo share/locale/ga/LC_MESSAGES/rellinks.mo share/locale/ga/LC_MESSAGES/searchbarplugin.mo share/locale/ga/LC_MESSAGES/uachangerplugin.mo share/locale/ga/LC_MESSAGES/validatorsplugin.mo share/locale/ga/LC_MESSAGES/webarchiver.mo share/locale/ga/LC_MESSAGES/webenginepart.mo share/locale/gl/LC_MESSAGES/adblock.mo share/locale/gl/LC_MESSAGES/akregator_konqplugin.mo share/locale/gl/LC_MESSAGES/autorefresh.mo share/locale/gl/LC_MESSAGES/babelfish.mo share/locale/gl/LC_MESSAGES/dirfilterplugin.mo share/locale/gl/LC_MESSAGES/domtreeviewer.mo share/locale/gl/LC_MESSAGES/fsview.mo share/locale/gl/LC_MESSAGES/imgalleryplugin.mo share/locale/gl/LC_MESSAGES/kcmbookmarks.mo share/locale/gl/LC_MESSAGES/kcmkonq.mo share/locale/gl/LC_MESSAGES/kcmkonqhtml.mo share/locale/gl/LC_MESSAGES/kcmperformance.mo share/locale/gl/LC_MESSAGES/kfmclient.mo share/locale/gl/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/gl/LC_MESSAGES/khtmltts.mo share/locale/gl/LC_MESSAGES/konqueror.mo share/locale/gl/LC_MESSAGES/kshellcmdplugin.mo share/locale/gl/LC_MESSAGES/libkonq.mo share/locale/gl/LC_MESSAGES/mf_konqplugin.mo share/locale/gl/LC_MESSAGES/minitoolsplugin.mo share/locale/gl/LC_MESSAGES/rellinks.mo share/locale/gl/LC_MESSAGES/searchbarplugin.mo share/locale/gl/LC_MESSAGES/uachangerplugin.mo share/locale/gl/LC_MESSAGES/validatorsplugin.mo share/locale/gl/LC_MESSAGES/webarchiver.mo share/locale/gl/LC_MESSAGES/webenginepart.mo share/locale/he/LC_MESSAGES/adblock.mo share/locale/he/LC_MESSAGES/akregator_konqplugin.mo share/locale/he/LC_MESSAGES/autorefresh.mo share/locale/he/LC_MESSAGES/babelfish.mo share/locale/he/LC_MESSAGES/dirfilterplugin.mo share/locale/he/LC_MESSAGES/domtreeviewer.mo share/locale/he/LC_MESSAGES/fsview.mo share/locale/he/LC_MESSAGES/imgalleryplugin.mo share/locale/he/LC_MESSAGES/kcmbookmarks.mo share/locale/he/LC_MESSAGES/kcmkonq.mo share/locale/he/LC_MESSAGES/kcmkonqhtml.mo share/locale/he/LC_MESSAGES/kcmperformance.mo share/locale/he/LC_MESSAGES/kfmclient.mo share/locale/he/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/he/LC_MESSAGES/khtmltts.mo share/locale/he/LC_MESSAGES/konqueror.mo share/locale/he/LC_MESSAGES/kshellcmdplugin.mo share/locale/he/LC_MESSAGES/libkonq.mo share/locale/he/LC_MESSAGES/minitoolsplugin.mo share/locale/he/LC_MESSAGES/rellinks.mo share/locale/he/LC_MESSAGES/searchbarplugin.mo share/locale/he/LC_MESSAGES/uachangerplugin.mo share/locale/he/LC_MESSAGES/validatorsplugin.mo share/locale/he/LC_MESSAGES/webarchiver.mo share/locale/hi/LC_MESSAGES/akregator_konqplugin.mo share/locale/hi/LC_MESSAGES/autorefresh.mo share/locale/hi/LC_MESSAGES/babelfish.mo share/locale/hi/LC_MESSAGES/dirfilterplugin.mo share/locale/hi/LC_MESSAGES/domtreeviewer.mo share/locale/hi/LC_MESSAGES/fsview.mo share/locale/hi/LC_MESSAGES/imgalleryplugin.mo share/locale/hi/LC_MESSAGES/kcmbookmarks.mo share/locale/hi/LC_MESSAGES/kcmkonq.mo share/locale/hi/LC_MESSAGES/kcmkonqhtml.mo share/locale/hi/LC_MESSAGES/kcmperformance.mo share/locale/hi/LC_MESSAGES/kfmclient.mo share/locale/hi/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/hi/LC_MESSAGES/khtmltts.mo share/locale/hi/LC_MESSAGES/konqueror.mo share/locale/hi/LC_MESSAGES/kshellcmdplugin.mo share/locale/hi/LC_MESSAGES/libkonq.mo share/locale/hi/LC_MESSAGES/mf_konqplugin.mo share/locale/hi/LC_MESSAGES/minitoolsplugin.mo share/locale/hi/LC_MESSAGES/rellinks.mo share/locale/hi/LC_MESSAGES/searchbarplugin.mo share/locale/hi/LC_MESSAGES/uachangerplugin.mo share/locale/hi/LC_MESSAGES/validatorsplugin.mo share/locale/hi/LC_MESSAGES/webarchiver.mo share/locale/hr/LC_MESSAGES/adblock.mo share/locale/hr/LC_MESSAGES/akregator_konqplugin.mo share/locale/hr/LC_MESSAGES/autorefresh.mo share/locale/hr/LC_MESSAGES/babelfish.mo share/locale/hr/LC_MESSAGES/dirfilterplugin.mo share/locale/hr/LC_MESSAGES/domtreeviewer.mo share/locale/hr/LC_MESSAGES/fsview.mo share/locale/hr/LC_MESSAGES/imgalleryplugin.mo share/locale/hr/LC_MESSAGES/kcmbookmarks.mo share/locale/hr/LC_MESSAGES/kcmkonq.mo share/locale/hr/LC_MESSAGES/kcmkonqhtml.mo share/locale/hr/LC_MESSAGES/kcmperformance.mo share/locale/hr/LC_MESSAGES/kfmclient.mo share/locale/hr/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/hr/LC_MESSAGES/khtmltts.mo share/locale/hr/LC_MESSAGES/konqueror.mo share/locale/hr/LC_MESSAGES/kshellcmdplugin.mo share/locale/hr/LC_MESSAGES/libkonq.mo share/locale/hr/LC_MESSAGES/mf_konqplugin.mo share/locale/hr/LC_MESSAGES/minitoolsplugin.mo share/locale/hr/LC_MESSAGES/rellinks.mo share/locale/hr/LC_MESSAGES/searchbarplugin.mo share/locale/hr/LC_MESSAGES/uachangerplugin.mo share/locale/hr/LC_MESSAGES/validatorsplugin.mo share/locale/hr/LC_MESSAGES/webarchiver.mo share/locale/hu/LC_MESSAGES/adblock.mo share/locale/hu/LC_MESSAGES/akregator_konqplugin.mo share/locale/hu/LC_MESSAGES/autorefresh.mo share/locale/hu/LC_MESSAGES/babelfish.mo share/locale/hu/LC_MESSAGES/dirfilterplugin.mo share/locale/hu/LC_MESSAGES/domtreeviewer.mo share/locale/hu/LC_MESSAGES/fsview.mo share/locale/hu/LC_MESSAGES/imgalleryplugin.mo share/locale/hu/LC_MESSAGES/kcmbookmarks.mo share/locale/hu/LC_MESSAGES/kcmkonq.mo share/locale/hu/LC_MESSAGES/kcmkonqhtml.mo share/locale/hu/LC_MESSAGES/kcmperformance.mo share/locale/hu/LC_MESSAGES/kfmclient.mo share/locale/hu/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/hu/LC_MESSAGES/khtmltts.mo share/locale/hu/LC_MESSAGES/konqueror.mo share/locale/hu/LC_MESSAGES/kshellcmdplugin.mo share/locale/hu/LC_MESSAGES/libkonq.mo share/locale/hu/LC_MESSAGES/mf_konqplugin.mo share/locale/hu/LC_MESSAGES/minitoolsplugin.mo share/locale/hu/LC_MESSAGES/rellinks.mo share/locale/hu/LC_MESSAGES/searchbarplugin.mo share/locale/hu/LC_MESSAGES/uachangerplugin.mo share/locale/hu/LC_MESSAGES/validatorsplugin.mo share/locale/hu/LC_MESSAGES/webarchiver.mo share/locale/hu/LC_MESSAGES/webenginepart.mo share/locale/ia/LC_MESSAGES/adblock.mo share/locale/ia/LC_MESSAGES/akregator_konqplugin.mo share/locale/ia/LC_MESSAGES/autorefresh.mo share/locale/ia/LC_MESSAGES/babelfish.mo share/locale/ia/LC_MESSAGES/dirfilterplugin.mo share/locale/ia/LC_MESSAGES/domtreeviewer.mo share/locale/ia/LC_MESSAGES/fsview.mo share/locale/ia/LC_MESSAGES/imgalleryplugin.mo share/locale/ia/LC_MESSAGES/kcmbookmarks.mo share/locale/ia/LC_MESSAGES/kcmkonq.mo share/locale/ia/LC_MESSAGES/kcmkonqhtml.mo share/locale/ia/LC_MESSAGES/kcmperformance.mo share/locale/ia/LC_MESSAGES/kfmclient.mo share/locale/ia/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/ia/LC_MESSAGES/khtmltts.mo share/locale/ia/LC_MESSAGES/konqueror.mo share/locale/ia/LC_MESSAGES/kshellcmdplugin.mo share/locale/ia/LC_MESSAGES/libkonq.mo share/locale/ia/LC_MESSAGES/mf_konqplugin.mo share/locale/ia/LC_MESSAGES/minitoolsplugin.mo share/locale/ia/LC_MESSAGES/rellinks.mo share/locale/ia/LC_MESSAGES/searchbarplugin.mo share/locale/ia/LC_MESSAGES/uachangerplugin.mo share/locale/ia/LC_MESSAGES/validatorsplugin.mo share/locale/ia/LC_MESSAGES/webarchiver.mo share/locale/ia/LC_MESSAGES/webenginepart.mo share/locale/id/LC_MESSAGES/adblock.mo share/locale/id/LC_MESSAGES/akregator_konqplugin.mo share/locale/id/LC_MESSAGES/kcmbookmarks.mo share/locale/id/LC_MESSAGES/kcmkonq.mo share/locale/id/LC_MESSAGES/kcmkonqhtml.mo share/locale/id/LC_MESSAGES/kcmperformance.mo share/locale/id/LC_MESSAGES/kfmclient.mo share/locale/id/LC_MESSAGES/khtmltts.mo share/locale/id/LC_MESSAGES/konqueror.mo share/locale/id/LC_MESSAGES/kshellcmdplugin.mo share/locale/id/LC_MESSAGES/libkonq.mo share/locale/id/LC_MESSAGES/mf_konqplugin.mo share/locale/id/LC_MESSAGES/minitoolsplugin.mo share/locale/id/LC_MESSAGES/rellinks.mo share/locale/id/LC_MESSAGES/searchbarplugin.mo share/locale/id/LC_MESSAGES/uachangerplugin.mo share/locale/id/LC_MESSAGES/validatorsplugin.mo share/locale/id/LC_MESSAGES/webarchiver.mo share/locale/id/LC_MESSAGES/webenginepart.mo share/locale/is/LC_MESSAGES/adblock.mo share/locale/is/LC_MESSAGES/akregator_konqplugin.mo share/locale/is/LC_MESSAGES/autorefresh.mo share/locale/is/LC_MESSAGES/babelfish.mo share/locale/is/LC_MESSAGES/dirfilterplugin.mo share/locale/is/LC_MESSAGES/domtreeviewer.mo share/locale/is/LC_MESSAGES/fsview.mo share/locale/is/LC_MESSAGES/imgalleryplugin.mo share/locale/is/LC_MESSAGES/kcmbookmarks.mo share/locale/is/LC_MESSAGES/kcmkonq.mo share/locale/is/LC_MESSAGES/kcmkonqhtml.mo share/locale/is/LC_MESSAGES/kcmperformance.mo share/locale/is/LC_MESSAGES/kfmclient.mo share/locale/is/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/is/LC_MESSAGES/khtmltts.mo share/locale/is/LC_MESSAGES/konqueror.mo share/locale/is/LC_MESSAGES/kshellcmdplugin.mo share/locale/is/LC_MESSAGES/libkonq.mo share/locale/is/LC_MESSAGES/mf_konqplugin.mo share/locale/is/LC_MESSAGES/minitoolsplugin.mo share/locale/is/LC_MESSAGES/rellinks.mo share/locale/is/LC_MESSAGES/searchbarplugin.mo share/locale/is/LC_MESSAGES/uachangerplugin.mo share/locale/is/LC_MESSAGES/validatorsplugin.mo share/locale/is/LC_MESSAGES/webarchiver.mo share/locale/it/LC_MESSAGES/adblock.mo share/locale/it/LC_MESSAGES/akregator_konqplugin.mo share/locale/it/LC_MESSAGES/autorefresh.mo share/locale/it/LC_MESSAGES/babelfish.mo share/locale/it/LC_MESSAGES/dirfilterplugin.mo share/locale/it/LC_MESSAGES/domtreeviewer.mo share/locale/it/LC_MESSAGES/fsview.mo share/locale/it/LC_MESSAGES/imgalleryplugin.mo share/locale/it/LC_MESSAGES/kcmbookmarks.mo share/locale/it/LC_MESSAGES/kcmkonq.mo share/locale/it/LC_MESSAGES/kcmkonqhtml.mo share/locale/it/LC_MESSAGES/kcmperformance.mo share/locale/it/LC_MESSAGES/kfmclient.mo share/locale/it/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/it/LC_MESSAGES/khtmltts.mo share/locale/it/LC_MESSAGES/konqueror.mo share/locale/it/LC_MESSAGES/kshellcmdplugin.mo share/locale/it/LC_MESSAGES/libkonq.mo share/locale/it/LC_MESSAGES/mf_konqplugin.mo share/locale/it/LC_MESSAGES/minitoolsplugin.mo share/locale/it/LC_MESSAGES/rellinks.mo share/locale/it/LC_MESSAGES/searchbarplugin.mo share/locale/it/LC_MESSAGES/uachangerplugin.mo share/locale/it/LC_MESSAGES/validatorsplugin.mo share/locale/it/LC_MESSAGES/webarchiver.mo share/locale/it/LC_MESSAGES/webenginepart.mo share/locale/ja/LC_MESSAGES/adblock.mo share/locale/ja/LC_MESSAGES/akregator_konqplugin.mo share/locale/ja/LC_MESSAGES/autorefresh.mo share/locale/ja/LC_MESSAGES/babelfish.mo share/locale/ja/LC_MESSAGES/dirfilterplugin.mo share/locale/ja/LC_MESSAGES/domtreeviewer.mo share/locale/ja/LC_MESSAGES/fsview.mo share/locale/ja/LC_MESSAGES/imgalleryplugin.mo share/locale/ja/LC_MESSAGES/kcmbookmarks.mo share/locale/ja/LC_MESSAGES/kcmkonq.mo share/locale/ja/LC_MESSAGES/kcmkonqhtml.mo share/locale/ja/LC_MESSAGES/kcmperformance.mo share/locale/ja/LC_MESSAGES/kfmclient.mo share/locale/ja/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/ja/LC_MESSAGES/khtmltts.mo share/locale/ja/LC_MESSAGES/konqueror.mo share/locale/ja/LC_MESSAGES/kshellcmdplugin.mo share/locale/ja/LC_MESSAGES/libkonq.mo share/locale/ja/LC_MESSAGES/mf_konqplugin.mo share/locale/ja/LC_MESSAGES/minitoolsplugin.mo share/locale/ja/LC_MESSAGES/rellinks.mo share/locale/ja/LC_MESSAGES/searchbarplugin.mo share/locale/ja/LC_MESSAGES/uachangerplugin.mo share/locale/ja/LC_MESSAGES/validatorsplugin.mo share/locale/ja/LC_MESSAGES/webarchiver.mo share/locale/ja/LC_MESSAGES/webenginepart.mo share/locale/kk/LC_MESSAGES/adblock.mo share/locale/kk/LC_MESSAGES/akregator_konqplugin.mo share/locale/kk/LC_MESSAGES/autorefresh.mo share/locale/kk/LC_MESSAGES/babelfish.mo share/locale/kk/LC_MESSAGES/dirfilterplugin.mo share/locale/kk/LC_MESSAGES/domtreeviewer.mo share/locale/kk/LC_MESSAGES/fsview.mo share/locale/kk/LC_MESSAGES/imgalleryplugin.mo share/locale/kk/LC_MESSAGES/kcmbookmarks.mo share/locale/kk/LC_MESSAGES/kcmkonq.mo share/locale/kk/LC_MESSAGES/kcmkonqhtml.mo share/locale/kk/LC_MESSAGES/kcmperformance.mo share/locale/kk/LC_MESSAGES/kfmclient.mo share/locale/kk/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/kk/LC_MESSAGES/khtmltts.mo share/locale/kk/LC_MESSAGES/konqueror.mo share/locale/kk/LC_MESSAGES/kshellcmdplugin.mo share/locale/kk/LC_MESSAGES/libkonq.mo share/locale/kk/LC_MESSAGES/mf_konqplugin.mo share/locale/kk/LC_MESSAGES/minitoolsplugin.mo share/locale/kk/LC_MESSAGES/rellinks.mo share/locale/kk/LC_MESSAGES/searchbarplugin.mo share/locale/kk/LC_MESSAGES/uachangerplugin.mo share/locale/kk/LC_MESSAGES/validatorsplugin.mo share/locale/kk/LC_MESSAGES/webarchiver.mo share/locale/kk/LC_MESSAGES/webenginepart.mo share/locale/km/LC_MESSAGES/adblock.mo share/locale/km/LC_MESSAGES/akregator_konqplugin.mo share/locale/km/LC_MESSAGES/autorefresh.mo share/locale/km/LC_MESSAGES/babelfish.mo share/locale/km/LC_MESSAGES/dirfilterplugin.mo share/locale/km/LC_MESSAGES/domtreeviewer.mo share/locale/km/LC_MESSAGES/fsview.mo share/locale/km/LC_MESSAGES/imgalleryplugin.mo share/locale/km/LC_MESSAGES/kcmbookmarks.mo share/locale/km/LC_MESSAGES/kcmkonq.mo share/locale/km/LC_MESSAGES/kcmkonqhtml.mo share/locale/km/LC_MESSAGES/kcmperformance.mo share/locale/km/LC_MESSAGES/kfmclient.mo share/locale/km/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/km/LC_MESSAGES/khtmltts.mo share/locale/km/LC_MESSAGES/konqueror.mo share/locale/km/LC_MESSAGES/kshellcmdplugin.mo share/locale/km/LC_MESSAGES/libkonq.mo share/locale/km/LC_MESSAGES/mf_konqplugin.mo share/locale/km/LC_MESSAGES/minitoolsplugin.mo share/locale/km/LC_MESSAGES/rellinks.mo share/locale/km/LC_MESSAGES/searchbarplugin.mo share/locale/km/LC_MESSAGES/uachangerplugin.mo share/locale/km/LC_MESSAGES/validatorsplugin.mo share/locale/km/LC_MESSAGES/webarchiver.mo share/locale/km/LC_MESSAGES/webenginepart.mo share/locale/ko/LC_MESSAGES/adblock.mo share/locale/ko/LC_MESSAGES/akregator_konqplugin.mo share/locale/ko/LC_MESSAGES/autorefresh.mo share/locale/ko/LC_MESSAGES/babelfish.mo share/locale/ko/LC_MESSAGES/dirfilterplugin.mo share/locale/ko/LC_MESSAGES/domtreeviewer.mo share/locale/ko/LC_MESSAGES/fsview.mo share/locale/ko/LC_MESSAGES/imgalleryplugin.mo share/locale/ko/LC_MESSAGES/kcmbookmarks.mo share/locale/ko/LC_MESSAGES/kcmkonq.mo share/locale/ko/LC_MESSAGES/kcmkonqhtml.mo share/locale/ko/LC_MESSAGES/kcmperformance.mo share/locale/ko/LC_MESSAGES/kfmclient.mo share/locale/ko/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/ko/LC_MESSAGES/khtmltts.mo share/locale/ko/LC_MESSAGES/konqueror.mo share/locale/ko/LC_MESSAGES/kshellcmdplugin.mo share/locale/ko/LC_MESSAGES/libkonq.mo share/locale/ko/LC_MESSAGES/mf_konqplugin.mo share/locale/ko/LC_MESSAGES/minitoolsplugin.mo share/locale/ko/LC_MESSAGES/rellinks.mo share/locale/ko/LC_MESSAGES/searchbarplugin.mo share/locale/ko/LC_MESSAGES/uachangerplugin.mo share/locale/ko/LC_MESSAGES/validatorsplugin.mo share/locale/ko/LC_MESSAGES/webarchiver.mo share/locale/ko/LC_MESSAGES/webenginepart.mo share/locale/lt/LC_MESSAGES/adblock.mo share/locale/lt/LC_MESSAGES/akregator_konqplugin.mo share/locale/lt/LC_MESSAGES/autorefresh.mo share/locale/lt/LC_MESSAGES/babelfish.mo share/locale/lt/LC_MESSAGES/dirfilterplugin.mo share/locale/lt/LC_MESSAGES/domtreeviewer.mo share/locale/lt/LC_MESSAGES/fsview.mo share/locale/lt/LC_MESSAGES/imgalleryplugin.mo share/locale/lt/LC_MESSAGES/kcmbookmarks.mo share/locale/lt/LC_MESSAGES/kcmkonq.mo share/locale/lt/LC_MESSAGES/kcmkonqhtml.mo share/locale/lt/LC_MESSAGES/kcmperformance.mo share/locale/lt/LC_MESSAGES/kfmclient.mo share/locale/lt/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/lt/LC_MESSAGES/khtmltts.mo share/locale/lt/LC_MESSAGES/konqueror.mo share/locale/lt/LC_MESSAGES/kshellcmdplugin.mo share/locale/lt/LC_MESSAGES/libkonq.mo share/locale/lt/LC_MESSAGES/mf_konqplugin.mo share/locale/lt/LC_MESSAGES/minitoolsplugin.mo share/locale/lt/LC_MESSAGES/rellinks.mo share/locale/lt/LC_MESSAGES/searchbarplugin.mo share/locale/lt/LC_MESSAGES/uachangerplugin.mo share/locale/lt/LC_MESSAGES/validatorsplugin.mo share/locale/lt/LC_MESSAGES/webarchiver.mo share/locale/lt/LC_MESSAGES/webenginepart.mo share/locale/lv/LC_MESSAGES/adblock.mo share/locale/lv/LC_MESSAGES/akregator_konqplugin.mo share/locale/lv/LC_MESSAGES/autorefresh.mo share/locale/lv/LC_MESSAGES/babelfish.mo share/locale/lv/LC_MESSAGES/dirfilterplugin.mo share/locale/lv/LC_MESSAGES/domtreeviewer.mo share/locale/lv/LC_MESSAGES/fsview.mo share/locale/lv/LC_MESSAGES/imgalleryplugin.mo share/locale/lv/LC_MESSAGES/kcmbookmarks.mo share/locale/lv/LC_MESSAGES/kcmkonq.mo share/locale/lv/LC_MESSAGES/kcmkonqhtml.mo share/locale/lv/LC_MESSAGES/kcmperformance.mo share/locale/lv/LC_MESSAGES/kfmclient.mo share/locale/lv/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/lv/LC_MESSAGES/khtmltts.mo share/locale/lv/LC_MESSAGES/konqueror.mo share/locale/lv/LC_MESSAGES/kshellcmdplugin.mo share/locale/lv/LC_MESSAGES/libkonq.mo share/locale/lv/LC_MESSAGES/mf_konqplugin.mo share/locale/lv/LC_MESSAGES/minitoolsplugin.mo share/locale/lv/LC_MESSAGES/rellinks.mo share/locale/lv/LC_MESSAGES/searchbarplugin.mo share/locale/lv/LC_MESSAGES/uachangerplugin.mo share/locale/lv/LC_MESSAGES/validatorsplugin.mo share/locale/lv/LC_MESSAGES/webarchiver.mo share/locale/mr/LC_MESSAGES/adblock.mo share/locale/mr/LC_MESSAGES/akregator_konqplugin.mo share/locale/mr/LC_MESSAGES/autorefresh.mo share/locale/mr/LC_MESSAGES/babelfish.mo share/locale/mr/LC_MESSAGES/dirfilterplugin.mo share/locale/mr/LC_MESSAGES/domtreeviewer.mo share/locale/mr/LC_MESSAGES/fsview.mo share/locale/mr/LC_MESSAGES/imgalleryplugin.mo share/locale/mr/LC_MESSAGES/kcmbookmarks.mo share/locale/mr/LC_MESSAGES/kcmkonq.mo share/locale/mr/LC_MESSAGES/kcmkonqhtml.mo share/locale/mr/LC_MESSAGES/kcmperformance.mo share/locale/mr/LC_MESSAGES/kfmclient.mo share/locale/mr/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/mr/LC_MESSAGES/khtmltts.mo share/locale/mr/LC_MESSAGES/konqueror.mo share/locale/mr/LC_MESSAGES/kshellcmdplugin.mo share/locale/mr/LC_MESSAGES/libkonq.mo share/locale/mr/LC_MESSAGES/mf_konqplugin.mo share/locale/mr/LC_MESSAGES/minitoolsplugin.mo share/locale/mr/LC_MESSAGES/rellinks.mo share/locale/mr/LC_MESSAGES/searchbarplugin.mo share/locale/mr/LC_MESSAGES/uachangerplugin.mo share/locale/mr/LC_MESSAGES/validatorsplugin.mo share/locale/mr/LC_MESSAGES/webarchiver.mo share/locale/mr/LC_MESSAGES/webenginepart.mo share/locale/nb/LC_MESSAGES/adblock.mo share/locale/nb/LC_MESSAGES/akregator_konqplugin.mo share/locale/nb/LC_MESSAGES/autorefresh.mo share/locale/nb/LC_MESSAGES/babelfish.mo share/locale/nb/LC_MESSAGES/dirfilterplugin.mo share/locale/nb/LC_MESSAGES/domtreeviewer.mo share/locale/nb/LC_MESSAGES/fsview.mo share/locale/nb/LC_MESSAGES/imgalleryplugin.mo share/locale/nb/LC_MESSAGES/kcmbookmarks.mo share/locale/nb/LC_MESSAGES/kcmkonq.mo share/locale/nb/LC_MESSAGES/kcmkonqhtml.mo share/locale/nb/LC_MESSAGES/kcmperformance.mo share/locale/nb/LC_MESSAGES/kfmclient.mo share/locale/nb/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/nb/LC_MESSAGES/khtmltts.mo share/locale/nb/LC_MESSAGES/konqueror.mo share/locale/nb/LC_MESSAGES/kshellcmdplugin.mo share/locale/nb/LC_MESSAGES/libkonq.mo share/locale/nb/LC_MESSAGES/mf_konqplugin.mo share/locale/nb/LC_MESSAGES/minitoolsplugin.mo share/locale/nb/LC_MESSAGES/rellinks.mo share/locale/nb/LC_MESSAGES/searchbarplugin.mo share/locale/nb/LC_MESSAGES/uachangerplugin.mo share/locale/nb/LC_MESSAGES/validatorsplugin.mo share/locale/nb/LC_MESSAGES/webarchiver.mo share/locale/nb/LC_MESSAGES/webenginepart.mo share/locale/nds/LC_MESSAGES/adblock.mo share/locale/nds/LC_MESSAGES/akregator_konqplugin.mo share/locale/nds/LC_MESSAGES/autorefresh.mo share/locale/nds/LC_MESSAGES/babelfish.mo share/locale/nds/LC_MESSAGES/dirfilterplugin.mo share/locale/nds/LC_MESSAGES/domtreeviewer.mo share/locale/nds/LC_MESSAGES/fsview.mo share/locale/nds/LC_MESSAGES/imgalleryplugin.mo share/locale/nds/LC_MESSAGES/kcmbookmarks.mo share/locale/nds/LC_MESSAGES/kcmkonq.mo share/locale/nds/LC_MESSAGES/kcmkonqhtml.mo share/locale/nds/LC_MESSAGES/kcmperformance.mo share/locale/nds/LC_MESSAGES/kfmclient.mo share/locale/nds/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/nds/LC_MESSAGES/khtmltts.mo share/locale/nds/LC_MESSAGES/konqueror.mo share/locale/nds/LC_MESSAGES/kshellcmdplugin.mo share/locale/nds/LC_MESSAGES/libkonq.mo share/locale/nds/LC_MESSAGES/mf_konqplugin.mo share/locale/nds/LC_MESSAGES/minitoolsplugin.mo share/locale/nds/LC_MESSAGES/rellinks.mo share/locale/nds/LC_MESSAGES/searchbarplugin.mo share/locale/nds/LC_MESSAGES/uachangerplugin.mo share/locale/nds/LC_MESSAGES/validatorsplugin.mo share/locale/nds/LC_MESSAGES/webarchiver.mo share/locale/nds/LC_MESSAGES/webenginepart.mo share/locale/nl/LC_MESSAGES/adblock.mo share/locale/nl/LC_MESSAGES/akregator_konqplugin.mo share/locale/nl/LC_MESSAGES/autorefresh.mo share/locale/nl/LC_MESSAGES/babelfish.mo share/locale/nl/LC_MESSAGES/dirfilterplugin.mo share/locale/nl/LC_MESSAGES/domtreeviewer.mo share/locale/nl/LC_MESSAGES/fsview.mo share/locale/nl/LC_MESSAGES/imgalleryplugin.mo share/locale/nl/LC_MESSAGES/kcmbookmarks.mo share/locale/nl/LC_MESSAGES/kcmkonq.mo share/locale/nl/LC_MESSAGES/kcmkonqhtml.mo share/locale/nl/LC_MESSAGES/kcmperformance.mo share/locale/nl/LC_MESSAGES/kfmclient.mo share/locale/nl/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/nl/LC_MESSAGES/khtmltts.mo share/locale/nl/LC_MESSAGES/konqueror.mo share/locale/nl/LC_MESSAGES/kshellcmdplugin.mo share/locale/nl/LC_MESSAGES/libkonq.mo share/locale/nl/LC_MESSAGES/mf_konqplugin.mo share/locale/nl/LC_MESSAGES/minitoolsplugin.mo share/locale/nl/LC_MESSAGES/rellinks.mo share/locale/nl/LC_MESSAGES/searchbarplugin.mo share/locale/nl/LC_MESSAGES/uachangerplugin.mo share/locale/nl/LC_MESSAGES/validatorsplugin.mo share/locale/nl/LC_MESSAGES/webarchiver.mo share/locale/nl/LC_MESSAGES/webenginepart.mo share/locale/nn/LC_MESSAGES/adblock.mo share/locale/nn/LC_MESSAGES/akregator_konqplugin.mo share/locale/nn/LC_MESSAGES/autorefresh.mo share/locale/nn/LC_MESSAGES/babelfish.mo share/locale/nn/LC_MESSAGES/dirfilterplugin.mo share/locale/nn/LC_MESSAGES/domtreeviewer.mo share/locale/nn/LC_MESSAGES/fsview.mo share/locale/nn/LC_MESSAGES/imgalleryplugin.mo share/locale/nn/LC_MESSAGES/kcmbookmarks.mo share/locale/nn/LC_MESSAGES/kcmkonq.mo share/locale/nn/LC_MESSAGES/kcmkonqhtml.mo share/locale/nn/LC_MESSAGES/kcmperformance.mo share/locale/nn/LC_MESSAGES/kfmclient.mo share/locale/nn/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/nn/LC_MESSAGES/khtmltts.mo share/locale/nn/LC_MESSAGES/konqueror.mo share/locale/nn/LC_MESSAGES/kshellcmdplugin.mo share/locale/nn/LC_MESSAGES/libkonq.mo share/locale/nn/LC_MESSAGES/mf_konqplugin.mo share/locale/nn/LC_MESSAGES/minitoolsplugin.mo share/locale/nn/LC_MESSAGES/rellinks.mo share/locale/nn/LC_MESSAGES/searchbarplugin.mo share/locale/nn/LC_MESSAGES/uachangerplugin.mo share/locale/nn/LC_MESSAGES/validatorsplugin.mo share/locale/nn/LC_MESSAGES/webarchiver.mo share/locale/nn/LC_MESSAGES/webenginepart.mo share/locale/pa/LC_MESSAGES/adblock.mo share/locale/pa/LC_MESSAGES/akregator_konqplugin.mo share/locale/pa/LC_MESSAGES/autorefresh.mo share/locale/pa/LC_MESSAGES/babelfish.mo share/locale/pa/LC_MESSAGES/dirfilterplugin.mo share/locale/pa/LC_MESSAGES/domtreeviewer.mo share/locale/pa/LC_MESSAGES/fsview.mo share/locale/pa/LC_MESSAGES/imgalleryplugin.mo share/locale/pa/LC_MESSAGES/kcmbookmarks.mo share/locale/pa/LC_MESSAGES/kcmkonq.mo share/locale/pa/LC_MESSAGES/kcmkonqhtml.mo share/locale/pa/LC_MESSAGES/kcmperformance.mo share/locale/pa/LC_MESSAGES/kfmclient.mo share/locale/pa/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/pa/LC_MESSAGES/khtmltts.mo share/locale/pa/LC_MESSAGES/konqueror.mo share/locale/pa/LC_MESSAGES/kshellcmdplugin.mo share/locale/pa/LC_MESSAGES/libkonq.mo share/locale/pa/LC_MESSAGES/mf_konqplugin.mo share/locale/pa/LC_MESSAGES/minitoolsplugin.mo share/locale/pa/LC_MESSAGES/rellinks.mo share/locale/pa/LC_MESSAGES/searchbarplugin.mo share/locale/pa/LC_MESSAGES/uachangerplugin.mo share/locale/pa/LC_MESSAGES/validatorsplugin.mo share/locale/pa/LC_MESSAGES/webarchiver.mo share/locale/pa/LC_MESSAGES/webenginepart.mo share/locale/pl/LC_MESSAGES/adblock.mo share/locale/pl/LC_MESSAGES/akregator_konqplugin.mo share/locale/pl/LC_MESSAGES/autorefresh.mo share/locale/pl/LC_MESSAGES/babelfish.mo share/locale/pl/LC_MESSAGES/dirfilterplugin.mo share/locale/pl/LC_MESSAGES/domtreeviewer.mo share/locale/pl/LC_MESSAGES/fsview.mo share/locale/pl/LC_MESSAGES/imgalleryplugin.mo share/locale/pl/LC_MESSAGES/kcmbookmarks.mo share/locale/pl/LC_MESSAGES/kcmkonq.mo share/locale/pl/LC_MESSAGES/kcmkonqhtml.mo share/locale/pl/LC_MESSAGES/kcmperformance.mo share/locale/pl/LC_MESSAGES/kfmclient.mo share/locale/pl/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/pl/LC_MESSAGES/khtmltts.mo share/locale/pl/LC_MESSAGES/konqueror.mo share/locale/pl/LC_MESSAGES/kshellcmdplugin.mo share/locale/pl/LC_MESSAGES/libkonq.mo share/locale/pl/LC_MESSAGES/mf_konqplugin.mo share/locale/pl/LC_MESSAGES/minitoolsplugin.mo share/locale/pl/LC_MESSAGES/rellinks.mo share/locale/pl/LC_MESSAGES/searchbarplugin.mo share/locale/pl/LC_MESSAGES/uachangerplugin.mo share/locale/pl/LC_MESSAGES/validatorsplugin.mo share/locale/pl/LC_MESSAGES/webarchiver.mo share/locale/pl/LC_MESSAGES/webenginepart.mo share/locale/pt/LC_MESSAGES/adblock.mo share/locale/pt/LC_MESSAGES/akregator_konqplugin.mo share/locale/pt/LC_MESSAGES/autorefresh.mo share/locale/pt/LC_MESSAGES/babelfish.mo share/locale/pt/LC_MESSAGES/dirfilterplugin.mo share/locale/pt/LC_MESSAGES/domtreeviewer.mo share/locale/pt/LC_MESSAGES/fsview.mo share/locale/pt/LC_MESSAGES/imgalleryplugin.mo share/locale/pt/LC_MESSAGES/kcmbookmarks.mo share/locale/pt/LC_MESSAGES/kcmkonq.mo share/locale/pt/LC_MESSAGES/kcmkonqhtml.mo share/locale/pt/LC_MESSAGES/kcmperformance.mo share/locale/pt/LC_MESSAGES/kfmclient.mo share/locale/pt/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/pt/LC_MESSAGES/khtmltts.mo share/locale/pt/LC_MESSAGES/konqueror.mo share/locale/pt/LC_MESSAGES/kshellcmdplugin.mo share/locale/pt/LC_MESSAGES/libkonq.mo share/locale/pt/LC_MESSAGES/mf_konqplugin.mo share/locale/pt/LC_MESSAGES/minitoolsplugin.mo share/locale/pt/LC_MESSAGES/rellinks.mo share/locale/pt/LC_MESSAGES/searchbarplugin.mo share/locale/pt/LC_MESSAGES/uachangerplugin.mo share/locale/pt/LC_MESSAGES/validatorsplugin.mo share/locale/pt/LC_MESSAGES/webarchiver.mo share/locale/pt/LC_MESSAGES/webenginepart.mo share/locale/pt_BR/LC_MESSAGES/adblock.mo share/locale/pt_BR/LC_MESSAGES/akregator_konqplugin.mo share/locale/pt_BR/LC_MESSAGES/autorefresh.mo share/locale/pt_BR/LC_MESSAGES/babelfish.mo share/locale/pt_BR/LC_MESSAGES/dirfilterplugin.mo share/locale/pt_BR/LC_MESSAGES/domtreeviewer.mo share/locale/pt_BR/LC_MESSAGES/fsview.mo share/locale/pt_BR/LC_MESSAGES/imgalleryplugin.mo share/locale/pt_BR/LC_MESSAGES/kcmbookmarks.mo share/locale/pt_BR/LC_MESSAGES/kcmkonq.mo share/locale/pt_BR/LC_MESSAGES/kcmkonqhtml.mo share/locale/pt_BR/LC_MESSAGES/kcmperformance.mo share/locale/pt_BR/LC_MESSAGES/kfmclient.mo share/locale/pt_BR/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/pt_BR/LC_MESSAGES/khtmltts.mo share/locale/pt_BR/LC_MESSAGES/konqueror.mo share/locale/pt_BR/LC_MESSAGES/kshellcmdplugin.mo share/locale/pt_BR/LC_MESSAGES/libkonq.mo share/locale/pt_BR/LC_MESSAGES/mf_konqplugin.mo share/locale/pt_BR/LC_MESSAGES/minitoolsplugin.mo share/locale/pt_BR/LC_MESSAGES/rellinks.mo share/locale/pt_BR/LC_MESSAGES/searchbarplugin.mo share/locale/pt_BR/LC_MESSAGES/uachangerplugin.mo share/locale/pt_BR/LC_MESSAGES/validatorsplugin.mo share/locale/pt_BR/LC_MESSAGES/webarchiver.mo share/locale/pt_BR/LC_MESSAGES/webenginepart.mo share/locale/ro/LC_MESSAGES/adblock.mo share/locale/ro/LC_MESSAGES/akregator_konqplugin.mo share/locale/ro/LC_MESSAGES/autorefresh.mo share/locale/ro/LC_MESSAGES/babelfish.mo share/locale/ro/LC_MESSAGES/dirfilterplugin.mo share/locale/ro/LC_MESSAGES/domtreeviewer.mo share/locale/ro/LC_MESSAGES/fsview.mo share/locale/ro/LC_MESSAGES/imgalleryplugin.mo share/locale/ro/LC_MESSAGES/kcmbookmarks.mo share/locale/ro/LC_MESSAGES/kcmkonq.mo share/locale/ro/LC_MESSAGES/kcmkonqhtml.mo share/locale/ro/LC_MESSAGES/kcmperformance.mo share/locale/ro/LC_MESSAGES/kfmclient.mo share/locale/ro/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/ro/LC_MESSAGES/khtmltts.mo share/locale/ro/LC_MESSAGES/konqueror.mo share/locale/ro/LC_MESSAGES/kshellcmdplugin.mo share/locale/ro/LC_MESSAGES/libkonq.mo share/locale/ro/LC_MESSAGES/mf_konqplugin.mo share/locale/ro/LC_MESSAGES/minitoolsplugin.mo share/locale/ro/LC_MESSAGES/rellinks.mo share/locale/ro/LC_MESSAGES/searchbarplugin.mo share/locale/ro/LC_MESSAGES/uachangerplugin.mo share/locale/ro/LC_MESSAGES/validatorsplugin.mo share/locale/ro/LC_MESSAGES/webarchiver.mo share/locale/ro/LC_MESSAGES/webenginepart.mo share/locale/ru/LC_MESSAGES/adblock.mo share/locale/ru/LC_MESSAGES/akregator_konqplugin.mo share/locale/ru/LC_MESSAGES/autorefresh.mo share/locale/ru/LC_MESSAGES/babelfish.mo share/locale/ru/LC_MESSAGES/dirfilterplugin.mo share/locale/ru/LC_MESSAGES/domtreeviewer.mo share/locale/ru/LC_MESSAGES/fsview.mo share/locale/ru/LC_MESSAGES/imgalleryplugin.mo share/locale/ru/LC_MESSAGES/kcmbookmarks.mo share/locale/ru/LC_MESSAGES/kcmkonq.mo share/locale/ru/LC_MESSAGES/kcmkonqhtml.mo share/locale/ru/LC_MESSAGES/kcmperformance.mo share/locale/ru/LC_MESSAGES/kfmclient.mo share/locale/ru/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/ru/LC_MESSAGES/khtmltts.mo share/locale/ru/LC_MESSAGES/konqueror.mo share/locale/ru/LC_MESSAGES/kshellcmdplugin.mo share/locale/ru/LC_MESSAGES/libkonq.mo share/locale/ru/LC_MESSAGES/mf_konqplugin.mo share/locale/ru/LC_MESSAGES/minitoolsplugin.mo share/locale/ru/LC_MESSAGES/rellinks.mo share/locale/ru/LC_MESSAGES/searchbarplugin.mo share/locale/ru/LC_MESSAGES/uachangerplugin.mo share/locale/ru/LC_MESSAGES/validatorsplugin.mo share/locale/ru/LC_MESSAGES/webarchiver.mo share/locale/ru/LC_MESSAGES/webenginepart.mo share/locale/sk/LC_MESSAGES/adblock.mo share/locale/sk/LC_MESSAGES/akregator_konqplugin.mo share/locale/sk/LC_MESSAGES/autorefresh.mo share/locale/sk/LC_MESSAGES/babelfish.mo share/locale/sk/LC_MESSAGES/dirfilterplugin.mo share/locale/sk/LC_MESSAGES/domtreeviewer.mo share/locale/sk/LC_MESSAGES/fsview.mo share/locale/sk/LC_MESSAGES/imgalleryplugin.mo share/locale/sk/LC_MESSAGES/kcmbookmarks.mo share/locale/sk/LC_MESSAGES/kcmkonq.mo share/locale/sk/LC_MESSAGES/kcmkonqhtml.mo share/locale/sk/LC_MESSAGES/kcmperformance.mo share/locale/sk/LC_MESSAGES/kfmclient.mo share/locale/sk/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/sk/LC_MESSAGES/khtmltts.mo share/locale/sk/LC_MESSAGES/konqueror.mo share/locale/sk/LC_MESSAGES/kshellcmdplugin.mo share/locale/sk/LC_MESSAGES/libkonq.mo share/locale/sk/LC_MESSAGES/mf_konqplugin.mo share/locale/sk/LC_MESSAGES/minitoolsplugin.mo share/locale/sk/LC_MESSAGES/rellinks.mo share/locale/sk/LC_MESSAGES/searchbarplugin.mo share/locale/sk/LC_MESSAGES/uachangerplugin.mo share/locale/sk/LC_MESSAGES/validatorsplugin.mo share/locale/sk/LC_MESSAGES/webarchiver.mo share/locale/sk/LC_MESSAGES/webenginepart.mo share/locale/sl/LC_MESSAGES/adblock.mo share/locale/sl/LC_MESSAGES/akregator_konqplugin.mo share/locale/sl/LC_MESSAGES/autorefresh.mo share/locale/sl/LC_MESSAGES/babelfish.mo share/locale/sl/LC_MESSAGES/dirfilterplugin.mo share/locale/sl/LC_MESSAGES/domtreeviewer.mo share/locale/sl/LC_MESSAGES/fsview.mo share/locale/sl/LC_MESSAGES/imgalleryplugin.mo share/locale/sl/LC_MESSAGES/kcmbookmarks.mo share/locale/sl/LC_MESSAGES/kcmkonq.mo share/locale/sl/LC_MESSAGES/kcmkonqhtml.mo share/locale/sl/LC_MESSAGES/kcmperformance.mo share/locale/sl/LC_MESSAGES/kfmclient.mo share/locale/sl/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/sl/LC_MESSAGES/khtmltts.mo share/locale/sl/LC_MESSAGES/konqueror.mo share/locale/sl/LC_MESSAGES/kshellcmdplugin.mo share/locale/sl/LC_MESSAGES/libkonq.mo share/locale/sl/LC_MESSAGES/mf_konqplugin.mo share/locale/sl/LC_MESSAGES/minitoolsplugin.mo share/locale/sl/LC_MESSAGES/rellinks.mo share/locale/sl/LC_MESSAGES/searchbarplugin.mo share/locale/sl/LC_MESSAGES/uachangerplugin.mo share/locale/sl/LC_MESSAGES/validatorsplugin.mo share/locale/sl/LC_MESSAGES/webarchiver.mo share/locale/sl/LC_MESSAGES/webenginepart.mo share/locale/sr/LC_MESSAGES/adblock.mo share/locale/sr/LC_MESSAGES/akregator_konqplugin.mo share/locale/sr/LC_MESSAGES/autorefresh.mo share/locale/sr/LC_MESSAGES/babelfish.mo share/locale/sr/LC_MESSAGES/dirfilterplugin.mo share/locale/sr/LC_MESSAGES/domtreeviewer.mo share/locale/sr/LC_MESSAGES/fsview.mo share/locale/sr/LC_MESSAGES/imgalleryplugin.mo share/locale/sr/LC_MESSAGES/kcmbookmarks.mo share/locale/sr/LC_MESSAGES/kcmkonq.mo share/locale/sr/LC_MESSAGES/kcmkonqhtml.mo share/locale/sr/LC_MESSAGES/kcmperformance.mo share/locale/sr/LC_MESSAGES/kfmclient.mo share/locale/sr/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/sr/LC_MESSAGES/khtmltts.mo share/locale/sr/LC_MESSAGES/konqueror.mo share/locale/sr/LC_MESSAGES/kshellcmdplugin.mo share/locale/sr/LC_MESSAGES/libkonq.mo share/locale/sr/LC_MESSAGES/mf_konqplugin.mo share/locale/sr/LC_MESSAGES/minitoolsplugin.mo share/locale/sr/LC_MESSAGES/rellinks.mo share/locale/sr/LC_MESSAGES/searchbarplugin.mo share/locale/sr/LC_MESSAGES/uachangerplugin.mo share/locale/sr/LC_MESSAGES/validatorsplugin.mo share/locale/sr/LC_MESSAGES/webarchiver.mo share/locale/sr/LC_MESSAGES/webenginepart.mo share/locale/sv/LC_MESSAGES/adblock.mo share/locale/sv/LC_MESSAGES/akregator_konqplugin.mo share/locale/sv/LC_MESSAGES/autorefresh.mo share/locale/sv/LC_MESSAGES/babelfish.mo share/locale/sv/LC_MESSAGES/dirfilterplugin.mo share/locale/sv/LC_MESSAGES/domtreeviewer.mo share/locale/sv/LC_MESSAGES/fsview.mo share/locale/sv/LC_MESSAGES/imgalleryplugin.mo share/locale/sv/LC_MESSAGES/kcmbookmarks.mo share/locale/sv/LC_MESSAGES/kcmkonq.mo share/locale/sv/LC_MESSAGES/kcmkonqhtml.mo share/locale/sv/LC_MESSAGES/kcmperformance.mo share/locale/sv/LC_MESSAGES/kfmclient.mo share/locale/sv/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/sv/LC_MESSAGES/khtmltts.mo share/locale/sv/LC_MESSAGES/konqueror.mo share/locale/sv/LC_MESSAGES/kshellcmdplugin.mo share/locale/sv/LC_MESSAGES/libkonq.mo share/locale/sv/LC_MESSAGES/mf_konqplugin.mo share/locale/sv/LC_MESSAGES/minitoolsplugin.mo share/locale/sv/LC_MESSAGES/rellinks.mo share/locale/sv/LC_MESSAGES/searchbarplugin.mo share/locale/sv/LC_MESSAGES/uachangerplugin.mo share/locale/sv/LC_MESSAGES/validatorsplugin.mo share/locale/sv/LC_MESSAGES/webarchiver.mo share/locale/sv/LC_MESSAGES/webenginepart.mo share/locale/tr/LC_MESSAGES/adblock.mo share/locale/tr/LC_MESSAGES/akregator_konqplugin.mo share/locale/tr/LC_MESSAGES/autorefresh.mo share/locale/tr/LC_MESSAGES/babelfish.mo share/locale/tr/LC_MESSAGES/dirfilterplugin.mo share/locale/tr/LC_MESSAGES/domtreeviewer.mo share/locale/tr/LC_MESSAGES/fsview.mo share/locale/tr/LC_MESSAGES/imgalleryplugin.mo share/locale/tr/LC_MESSAGES/kcmbookmarks.mo share/locale/tr/LC_MESSAGES/kcmkonq.mo share/locale/tr/LC_MESSAGES/kcmkonqhtml.mo share/locale/tr/LC_MESSAGES/kcmperformance.mo share/locale/tr/LC_MESSAGES/kfmclient.mo share/locale/tr/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/tr/LC_MESSAGES/khtmltts.mo share/locale/tr/LC_MESSAGES/konqueror.mo share/locale/tr/LC_MESSAGES/kshellcmdplugin.mo share/locale/tr/LC_MESSAGES/libkonq.mo share/locale/tr/LC_MESSAGES/mf_konqplugin.mo share/locale/tr/LC_MESSAGES/minitoolsplugin.mo share/locale/tr/LC_MESSAGES/rellinks.mo share/locale/tr/LC_MESSAGES/searchbarplugin.mo share/locale/tr/LC_MESSAGES/uachangerplugin.mo share/locale/tr/LC_MESSAGES/validatorsplugin.mo share/locale/tr/LC_MESSAGES/webarchiver.mo share/locale/tr/LC_MESSAGES/webenginepart.mo share/locale/ug/LC_MESSAGES/adblock.mo share/locale/ug/LC_MESSAGES/akregator_konqplugin.mo share/locale/ug/LC_MESSAGES/autorefresh.mo share/locale/ug/LC_MESSAGES/babelfish.mo share/locale/ug/LC_MESSAGES/dirfilterplugin.mo share/locale/ug/LC_MESSAGES/domtreeviewer.mo share/locale/ug/LC_MESSAGES/fsview.mo share/locale/ug/LC_MESSAGES/imgalleryplugin.mo share/locale/ug/LC_MESSAGES/kcmbookmarks.mo share/locale/ug/LC_MESSAGES/kcmkonq.mo share/locale/ug/LC_MESSAGES/kcmkonqhtml.mo share/locale/ug/LC_MESSAGES/kcmperformance.mo share/locale/ug/LC_MESSAGES/kfmclient.mo share/locale/ug/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/ug/LC_MESSAGES/khtmltts.mo share/locale/ug/LC_MESSAGES/konqueror.mo share/locale/ug/LC_MESSAGES/kshellcmdplugin.mo share/locale/ug/LC_MESSAGES/libkonq.mo share/locale/ug/LC_MESSAGES/mf_konqplugin.mo share/locale/ug/LC_MESSAGES/minitoolsplugin.mo share/locale/ug/LC_MESSAGES/rellinks.mo share/locale/ug/LC_MESSAGES/searchbarplugin.mo share/locale/ug/LC_MESSAGES/uachangerplugin.mo share/locale/ug/LC_MESSAGES/validatorsplugin.mo share/locale/ug/LC_MESSAGES/webarchiver.mo share/locale/ug/LC_MESSAGES/webenginepart.mo share/locale/uk/LC_MESSAGES/adblock.mo share/locale/uk/LC_MESSAGES/akregator_konqplugin.mo share/locale/uk/LC_MESSAGES/autorefresh.mo share/locale/uk/LC_MESSAGES/babelfish.mo share/locale/uk/LC_MESSAGES/dirfilterplugin.mo share/locale/uk/LC_MESSAGES/domtreeviewer.mo share/locale/uk/LC_MESSAGES/fsview.mo share/locale/uk/LC_MESSAGES/imgalleryplugin.mo share/locale/uk/LC_MESSAGES/kcmbookmarks.mo share/locale/uk/LC_MESSAGES/kcmkonq.mo share/locale/uk/LC_MESSAGES/kcmkonqhtml.mo share/locale/uk/LC_MESSAGES/kcmperformance.mo share/locale/uk/LC_MESSAGES/kfmclient.mo share/locale/uk/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/uk/LC_MESSAGES/khtmltts.mo share/locale/uk/LC_MESSAGES/konqueror.mo share/locale/uk/LC_MESSAGES/kshellcmdplugin.mo share/locale/uk/LC_MESSAGES/libkonq.mo share/locale/uk/LC_MESSAGES/mf_konqplugin.mo share/locale/uk/LC_MESSAGES/minitoolsplugin.mo share/locale/uk/LC_MESSAGES/rellinks.mo share/locale/uk/LC_MESSAGES/searchbarplugin.mo share/locale/uk/LC_MESSAGES/uachangerplugin.mo share/locale/uk/LC_MESSAGES/validatorsplugin.mo share/locale/uk/LC_MESSAGES/webarchiver.mo share/locale/uk/LC_MESSAGES/webenginepart.mo share/locale/wa/LC_MESSAGES/adblock.mo share/locale/wa/LC_MESSAGES/akregator_konqplugin.mo share/locale/wa/LC_MESSAGES/autorefresh.mo share/locale/wa/LC_MESSAGES/babelfish.mo share/locale/wa/LC_MESSAGES/dirfilterplugin.mo share/locale/wa/LC_MESSAGES/domtreeviewer.mo share/locale/wa/LC_MESSAGES/fsview.mo share/locale/wa/LC_MESSAGES/imgalleryplugin.mo share/locale/wa/LC_MESSAGES/kcmbookmarks.mo share/locale/wa/LC_MESSAGES/kcmkonq.mo share/locale/wa/LC_MESSAGES/kcmkonqhtml.mo share/locale/wa/LC_MESSAGES/kcmperformance.mo share/locale/wa/LC_MESSAGES/kfmclient.mo share/locale/wa/LC_MESSAGES/khtmltts.mo share/locale/wa/LC_MESSAGES/konqueror.mo share/locale/wa/LC_MESSAGES/kshellcmdplugin.mo share/locale/wa/LC_MESSAGES/libkonq.mo share/locale/wa/LC_MESSAGES/rellinks.mo share/locale/wa/LC_MESSAGES/uachangerplugin.mo share/locale/zh_CN/LC_MESSAGES/adblock.mo share/locale/zh_CN/LC_MESSAGES/akregator_konqplugin.mo share/locale/zh_CN/LC_MESSAGES/autorefresh.mo share/locale/zh_CN/LC_MESSAGES/babelfish.mo share/locale/zh_CN/LC_MESSAGES/dirfilterplugin.mo share/locale/zh_CN/LC_MESSAGES/domtreeviewer.mo share/locale/zh_CN/LC_MESSAGES/fsview.mo share/locale/zh_CN/LC_MESSAGES/imgalleryplugin.mo share/locale/zh_CN/LC_MESSAGES/kcmbookmarks.mo share/locale/zh_CN/LC_MESSAGES/kcmkonq.mo share/locale/zh_CN/LC_MESSAGES/kcmkonqhtml.mo share/locale/zh_CN/LC_MESSAGES/kcmperformance.mo share/locale/zh_CN/LC_MESSAGES/kfmclient.mo share/locale/zh_CN/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/zh_CN/LC_MESSAGES/khtmltts.mo share/locale/zh_CN/LC_MESSAGES/konqueror.mo share/locale/zh_CN/LC_MESSAGES/kshellcmdplugin.mo share/locale/zh_CN/LC_MESSAGES/libkonq.mo share/locale/zh_CN/LC_MESSAGES/mf_konqplugin.mo share/locale/zh_CN/LC_MESSAGES/minitoolsplugin.mo share/locale/zh_CN/LC_MESSAGES/rellinks.mo share/locale/zh_CN/LC_MESSAGES/searchbarplugin.mo share/locale/zh_CN/LC_MESSAGES/uachangerplugin.mo share/locale/zh_CN/LC_MESSAGES/validatorsplugin.mo share/locale/zh_CN/LC_MESSAGES/webarchiver.mo share/locale/zh_CN/LC_MESSAGES/webenginepart.mo share/locale/zh_TW/LC_MESSAGES/adblock.mo share/locale/zh_TW/LC_MESSAGES/akregator_konqplugin.mo share/locale/zh_TW/LC_MESSAGES/autorefresh.mo share/locale/zh_TW/LC_MESSAGES/babelfish.mo share/locale/zh_TW/LC_MESSAGES/dirfilterplugin.mo share/locale/zh_TW/LC_MESSAGES/domtreeviewer.mo share/locale/zh_TW/LC_MESSAGES/fsview.mo share/locale/zh_TW/LC_MESSAGES/imgalleryplugin.mo share/locale/zh_TW/LC_MESSAGES/kcmbookmarks.mo share/locale/zh_TW/LC_MESSAGES/kcmkonq.mo share/locale/zh_TW/LC_MESSAGES/kcmkonqhtml.mo share/locale/zh_TW/LC_MESSAGES/kcmperformance.mo share/locale/zh_TW/LC_MESSAGES/kfmclient.mo share/locale/zh_TW/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/zh_TW/LC_MESSAGES/khtmltts.mo share/locale/zh_TW/LC_MESSAGES/konqueror.mo share/locale/zh_TW/LC_MESSAGES/kshellcmdplugin.mo share/locale/zh_TW/LC_MESSAGES/libkonq.mo share/locale/zh_TW/LC_MESSAGES/mf_konqplugin.mo share/locale/zh_TW/LC_MESSAGES/minitoolsplugin.mo share/locale/zh_TW/LC_MESSAGES/rellinks.mo share/locale/zh_TW/LC_MESSAGES/searchbarplugin.mo share/locale/zh_TW/LC_MESSAGES/uachangerplugin.mo share/locale/zh_TW/LC_MESSAGES/validatorsplugin.mo share/locale/zh_TW/LC_MESSAGES/webarchiver.mo share/locale/zh_TW/LC_MESSAGES/webenginepart.mo share/metainfo/org.kde.konqueror.appdata.xml share/kwebkitpart/kpartplugins/akregator_konqfeedicon.desktop share/kwebkitpart/kpartplugins/akregator_konqfeedicon.rc share/kwebkitpart/kpartplugins/autorefresh.desktop share/kwebkitpart/kpartplugins/autorefresh.rc share/kwebkitpart/kpartplugins/khtmlsettingsplugin.desktop share/kwebkitpart/kpartplugins/khtmlsettingsplugin.rc share/kwebkitpart/kpartplugins/khtmltts.desktop share/kwebkitpart/kpartplugins/khtmltts.rc share/kwebkitpart/kpartplugins/plugin_babelfish.rc share/kwebkitpart/kpartplugins/plugin_translator.desktop share/kwebkitpart/kpartplugins/plugin_validators.desktop share/kwebkitpart/kpartplugins/plugin_validators.rc share/webenginepart/kpartplugins/akregator_konqfeedicon.desktop share/webenginepart/kpartplugins/akregator_konqfeedicon.rc share/webenginepart/kpartplugins/autorefresh.desktop share/webenginepart/kpartplugins/autorefresh.rc share/webenginepart/kpartplugins/khtmlsettingsplugin.desktop share/webenginepart/kpartplugins/khtmlsettingsplugin.rc share/webenginepart/kpartplugins/khtmltts.desktop share/webenginepart/kpartplugins/khtmltts.rc share/webenginepart/kpartplugins/plugin_babelfish.rc share/webenginepart/kpartplugins/plugin_translator.desktop share/webenginepart/kpartplugins/plugin_validators.desktop share/webenginepart/kpartplugins/plugin_validators.rc share/webenginepart/error.html