Index: head/Mk/Uses/kde.mk =================================================================== --- head/Mk/Uses/kde.mk (revision 450055) +++ head/Mk/Uses/kde.mk (revision 450056) @@ -1,645 +1,645 @@ # $FreeBSD$ # # Provides support for KDE and KF5-based ports. # # Feature: kde # Valid ARGS: 4 5 # # 4: Depend on KDE4 components and variables. # 5: Depend on KDE Frameworks 5 components and variables. # # Variables that can be set by a port: # # USE_KDE List of KDE4/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-frameworks: part of frameworks release # kde-kde4: part of kde4 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= 4 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 #' . endif _KDE_RELNAME= KDE${_KDE_VERSION} # === VERSIONS OF THE DIFFERENT COMPONENTS ===================================== # Old KDE desktop. KDE4_VERSION?= 4.14.3 KDE4_KDELIBS_VERSION= 4.14.30 KDE4_ACTIVITIES_VERSION= 4.13.3 KDE4_WORKSPACE_VERSION= 4.11.22 KDE4_KDEPIM_VERSION?= 4.14.10 # Applications version for the kde4-applications. KDE4_APPLICATIONS_BRANCH?= Attic KDE4_APPLICATIONS_VERSION?= 15.04.3 KDE4_BRANCH?= stable # Current KDE desktop. -KDE_FRAMEWORKS_VERSION?= 5.37.0 +KDE_FRAMEWORKS_VERSION?= 5.38.0 KDE_FRAMEWORKS_BRANCH?= stable # Current KDE applications. KDE_APPLICATIONS_VERSION?= 16.12.3 KDE_APPLICATIONS_BRANCH?= stable # Upstream moves old software to Attic/. Specify the newest applications release there. # Only the major version is used for the comparison. _KDE_APPLICATIONS_ATTIC_VERSION= 16.12.3 # Extended KDE universe applications. CALLIGRA_VERSION?= 2.9.11 CALLIGRA_BRANCH?= stable KDEVELOP_VERSION?= 4.7.4 KDEVELOP_BRANCH?= stable KTP_VERSION?= 0.9.0 KTP_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-kde4 . 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-kde4} PORTVERSION?= ${KDE4_VERSION} MASTER_SITES?= KDE/${KDE4_BRANCH}/${KDE4_VERSION}/src DIST_SUBDIR?= KDE/${KDE4_VERSION} . elif ${_KDE_CATEGORY:Mkde-applications} PORTVERSION?= ${KDE_APPLICATIONS_VERSION} . if ${_KDE_VERSION:M4} CONFLICTS_INSTALL?= ${PORTNAME}-kf5-* . else CONFLICTS_INSTALL?= kde4-${PORTNAME}-* ${PORTNAME}-kde4-* . endif # 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 . endif DIST_SUBDIR?= KDE/applications/${KDE_APPLICATIONS_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*4*} CMAKE_ARGS+= -DKDE4_BUILD_TESTS:BOOL=OFF . elif ${_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}" # For KDE4 applications provide KDE4 version numbers. . if ${_KDE_VERSION:M*4*} PLIST_SUB+= KDE4_VERSION="${KDE4_VERSION}" \ KDE4_GENERIC_LIB_VERSION=${KDE4_KDELIBS_VERSION} \ KDE4_NON_GENERIC_LIB_VERSION=${KDE4_KDELIBS_VERSION:S,^4,5,} \ KDE4_KDELIBS_VERSION=${KDE4_KDELIBS_VERSION} \ KDE4_NG_KDELIBS_VERSION=${KDE4_KDELIBS_VERSION:S,^4,5,} . elif ${_KDE_VERSION:M*5*} PLIST_SUB+= 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_KDE4_ALL= baloo baloo-widgets baseapps kactivities kate kdelibs \ kfilemetadata korundum libkcddb libkcompactdisc \ libkdcraw libkdeedu libkdegames libkexiv2 libkipi \ libkonq libksane marble nepomuk-core nepomuk-widgets \ okular oxygen-icons5 perlkde perlqt pimlibs pykde4 \ pykdeuic4 qtruby runtime smokegen smokekde smokeqt \ workspace # These components are not part of the Software Compilation. _USE_KDE4_ALL+= akonadi attica automoc4 ontologies qimageblitz soprano \ strigi # 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 i18n idletime itemmodels \ itemviews kirigami2 oxygen-icons5 plotting prison solid \ sonnet syntaxhighlighting threadweaver wayland \ widgetsaddons windowsystem # NOT LISTED TIER1: modemmanagerqt networkmanagerqt (not applicable) _USE_FRAMEWORKS_TIER2= auth completion crash doctools filemetadata5 \ kimageformats jobwidgets notifications package \ pty unitconversion # NOT LISTED TIER2: activities-stats (runtime requires x11/plasma5-kactivitymanagerd) _USE_FRAMEWORKS_TIER3= activities baloo5 bookmarks configwidgets \ designerplugin emoticons globalaccel guiaddons \ iconthemes init kcmutils kdeclarative \ kded kdesu kdewebkit kio newstuff notifyconfig parts \ people plasma-framework 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} _USE_KDE5_ALL= ${_USE_FRAMEWORKS_ALL} # ====================== kde4 components ======================================= baloo_PORT= sysutils/baloo baloo_LIB= libbaloocore.so baloo-widgets_PORT= sysutils/baloo-widgets baloo-widgets_LIB= libbaloowidgets.so baseapps_PORT= x11/kde4-baseapps baseapps_PATH= ${KDE_PREFIX}/bin/kfmclient baseapps_TYPE= run kactivities_PORT= x11/kactivities kactivities_LIB= libkactivities.so kate_PORT= editors/kate kate_LIB= libkateinterfaces.so kdelibs_PORT= x11/kdelibs4 kdelibs_LIB= libkdecore.so kfilemetadata_PORT= sysutils/kfilemetadata kfilemetadata_LIB= libkfilemetadata.so korundum_PORT= devel/ruby-korundum korundum_PATH= ${KDE_PREFIX}/lib/kde4/krubypluginfactory.so korundum_TYPE= run libkcddb_PORT= audio/libkcddb libkcddb_LIB= libkcddb.so libkcompactdisc_PORT= audio/libkcompactdisc libkcompactdisc_LIB= libkcompactdisc.so libkdcraw_PORT= graphics/libkdcraw-kde4 libkdcraw_LIB= libkdcraw.so libkdeedu_PORT= misc/libkdeedu libkdeedu_LIB= libkeduvocdocument.so libkdegames_PORT= games/libkdegames libkdegames_LIB= libkdegames.so libkexiv2_PORT= graphics/libkexiv2-kde4 libkexiv2_LIB= libkexiv2.so libkipi_PORT= graphics/libkipi-kde4 libkipi_LIB= libkipi.so libkonq_PORT= x11/libkonq libkonq_LIB= libkonq.so libksane_PORT= graphics/libksane libksane_LIB= libksane.so marble_PORT= astro/marble marble_LIB= libmarblewidget.so nepomuk-core_PORT= sysutils/nepomuk-core nepomuk-core_LIB= libnepomukcore.so nepomuk-widgets_PORT= sysutils/nepomuk-widgets nepomuk-widgets_LIB= libnepomukwidgets.so okular_PORT= graphics/okular okular_LIB= libokularcore.so perlkde_PORT= devel/p5-perlkde perlkde_PATH= ${KDE_PREFIX}/lib/kde4/kperlpluginfactory.so perlkde_TYPE= run perlqt_PORT= devel/p5-perlqt perlqt_PATH= ${KDE_PREFIX}/bin/puic4 pimlibs_PORT= deskutils/kdepimlibs4 pimlibs_LIB= libkpimutils.so pykde4_PORT= devel/py-pykde4 pykde4_PATH= ${KDE_PREFIX}/lib/kde4/kpythonpluginfactory.so pykde4_TYPE= run pykdeuic4_PORT= devel/py-pykdeuic4 pykdeuic4_PATH= ${LOCALBASE}/bin/pykdeuic4 pykdeuic4_TYPE= run qtruby_PORT= devel/ruby-qtruby qtruby_LIB= libqtruby4shared.so runtime_PORT= x11/kde4-runtime runtime_PATH= ${KDE_PREFIX}/bin/knotify4 runtime_TYPE= run smokegen_PORT= devel/smokegen smokegen_LIB= libsmokebase.so smokekde_PORT= devel/smokekde smokekde_LIB= libsmokekdecore.so smokeqt_PORT= devel/smokeqt smokeqt_LIB= libsmokeqtcore.so workspace_PORT= x11/kde4-workspace workspace_LIB= libkworkspace.so # Non-Software Compilation components akonadi_PORT= databases/akonadi akonadi_LIB= libakonadiprotocolinternals.so attica_PORT= x11-toolkits/attica attica_LIB= libattica.so automoc4_PORT= devel/automoc4 automoc4_PATH= ${LOCALBASE}/bin/automoc4 automoc4_TYPE= build ontologies_PORT= x11-toolkits/shared-desktop-ontologies ontologies_PATH= ${LOCALBASE}/share/ontology/core/rdf.ontology qimageblitz_PORT= x11/qimageblitz qimageblitz_LIB= libqimageblitz.so soprano_PORT= textproc/soprano soprano_LIB= libsoprano.so strigi_PORT= deskutils/libstreamanalyzer strigi_LIB= libstreamanalyzer.so.0 # ====================== end of kde4 components ================================ # ====================== frameworks components ================================= activities_PORT= x11/kf5-kactivities activities_LIB= libKF5Activities.so apidox_PORT= devel/kf5-kapidox apidox_PATH= ${KDE_PREFIX}/bin/kapidox_generate apidox_TYPE= run archive_PORT= archivers/kf5-karchive archive_LIB= libKF5Archive.so attica5_PORT= x11-toolkits/kf5-attica attica5_LIB= libKF5Attica.so auth_PORT= devel/kf5-kauth auth_LIB= libKF5Auth.so baloo5_PORT= sysutils/kf5-baloo baloo5_LIB= libKF5Baloo.so bookmarks_PORT= devel/kf5-kbookmarks bookmarks_LIB= libKF5Bookmarks.so breeze-icons_PORT= x11-themes/kf5-breeze-icons breeze-icons_PATH= ${KDE_PREFIX}/share/icons/breeze/index.theme breeze-icons_TYPE= run codecs_PORT= textproc/kf5-kcodecs codecs_LIB= libKF5Codecs.so completion_PORT= x11-toolkits/kf5-kcompletion completion_LIB= libKF5Completion.so config_PORT= devel/kf5-kconfig config_LIB= libKF5ConfigCore.so configwidgets_PORT= x11-toolkits/kf5-kconfigwidgets configwidgets_LIB= libKF5ConfigWidgets.so coreaddons_PORT= devel/kf5-kcoreaddons coreaddons_LIB= libKF5CoreAddons.so crash_PORT= devel/kf5-kcrash crash_LIB= libKF5Crash.so dbusaddons_PORT= devel/kf5-kdbusaddons dbusaddons_LIB= libKF5DBusAddons.so designerplugin_PORT= x11-toolkits/kf5-kdesignerplugin designerplugin_PATH= ${QT_PLUGINDIR}/designer/kf5widgets.so designerplugin_TYPE= run dnssd_PORT= dns/kf5-kdnssd dnssd_LIB= libKF5DNSSD.so doctools_PORT= devel/kf5-kdoctools doctools_PATH= ${KDE_PREFIX}/bin/meinproc5 ecm_PORT= devel/kf5-extra-cmake-modules ecm_PATH= ${LOCALBASE}/share/ECM/cmake/ECMConfig.cmake emoticons_PORT= x11-themes/kf5-kemoticons emoticons_LIB= libKF5Emoticons.so filemetadata5_PORT= devel/kf5-kfilemetadata filemetadata5_LIB= libKF5FileMetaData.so frameworkintegration_PORT= x11/kf5-frameworkintegration frameworkintegration_LIB= libKF5Style.so globalaccel_PORT= x11/kf5-kglobalaccel globalaccel_LIB= libKF5GlobalAccel.so guiaddons_PORT= x11-toolkits/kf5-kguiaddons guiaddons_LIB= libKF5GuiAddons.so i18n_PORT= devel/kf5-ki18n i18n_LIB= libKF5I18n.so iconthemes_PORT= x11-themes/kf5-kiconthemes iconthemes_LIB= libKF5IconThemes.so idletime_PORT= devel/kf5-kidletime idletime_LIB= libKF5IdleTime.so init_PORT= x11/kf5-kinit init_PATH= ${KDE_PREFIX}/bin/kdeinit5 itemmodels_PORT= devel/kf5-kitemmodels itemmodels_LIB= libKF5ItemModels.so itemviews_PORT= x11-toolkits/kf5-kitemviews itemviews_LIB= libKF5ItemViews.so jobwidgets_PORT= x11-toolkits/kf5-kjobwidgets jobwidgets_LIB= libKF5JobWidgets.so js_PORT= www/kf5-kjs js_LIB= libKF5JS.so jsembed_PORT= www/kf5-kjsembed jsembed_LIB= libKF5JsEmbed.so kcmutils_PORT= devel/kf5-kcmutils kcmutils_LIB= libKF5KCMUtils.so kdeclarative_PORT= devel/kf5-kdeclarative kdeclarative_LIB= libKF5Declarative.so kded_PORT= x11/kf5-kded kded_LIB= libkdeinit5_kded5.so kdelibs4support_PORT= x11/kf5-kdelibs4support kdelibs4support_LIB= libKF5KDELibs4Support.so kdesu_PORT= security/kf5-kdesu kdesu_LIB= libKF5Su.so kdewebkit_PORT= www/kf5-kdewebkit kdewebkit_LIB= libKF5WebKit.so khtml_PORT= www/kf5-khtml khtml_LIB= libKF5KHtml.so kimageformats_PORT= graphics/kf5-kimageformats kimageformats_PATH= ${QT_PLUGINDIR}/imageformats/kimg_xcf.so kimageformats_TYPE= run kio_PORT= devel/kf5-kio kio_LIB= libKF5KIOCore.so kirigami2_PORT= x11-toolkits/kf5-kirigami2 kirigami2_PATH= ${QT_QMLDIR}/org/kde/kirigami.2/libkirigamiplugin.so kross_PORT= lang/kf5-kross kross_LIB= libKF5KrossCore.so mediaplayer_PORT= multimedia/kf5-kmediaplayer mediaplayer_LIB= libKF5MediaPlayer.so.5 newstuff_PORT= devel/kf5-knewstuff newstuff_LIB= libKF5NewStuff.so notifications_PORT= devel/kf5-knotifications notifications_LIB= libKF5Notifications.so notifyconfig_PORT= devel/kf5-knotifyconfig notifyconfig_LIB= libKF5NotifyConfig.so # This is a KF5 port used by KDE4 as well, but it's architecture-independent # and only contains icons. oxygen-icons5_PORT= x11-themes/kf5-oxygen-icons5 oxygen-icons5_PATH= ${KDE_PREFIX}/share/icons/oxygen/index.theme oxygen-icons5_TYPE= run package_PORT= devel/kf5-kpackage package_LIB= libKF5Package.so parts_PORT= devel/kf5-kparts parts_LIB= libKF5Parts.so people_PORT= devel/kf5-kpeople people_LIB= libKF5People.so plasma-framework_PORT= x11/kf5-plasma-framework plasma-framework_LIB= libKF5Plasma.so plotting_PORT= graphics/kf5-kplotting plotting_LIB= libKF5Plotting.so prison_PORT= graphics/kf5-prison prison_LIB= libKF5Prison.so pty_PORT= devel/kf5-kpty pty_LIB= libKF5Pty.so runner_PORT= x11/kf5-krunner runner_LIB= libKF5Runner.so service_PORT= devel/kf5-kservice service_PATH= ${KDE_PREFIX}/bin/kbuildsycoca5 solid_PORT= devel/kf5-solid solid_LIB= libKF5Solid.so sonnet_PORT= textproc/kf5-sonnet sonnet_LIB= libKF5SonnetCore.so syntaxhighlighting_PORT= textproc/kf5-syntax-highlighting syntaxhighlighting_LIB= libKF5SyntaxHighlighting.so texteditor_PORT= devel/kf5-ktexteditor texteditor_LIB= libKF5TextEditor.so textwidgets_PORT= x11-toolkits/kf5-ktextwidgets textwidgets_LIB= libKF5TextWidgets.so threadweaver_PORT= devel/kf5-threadweaver threadweaver_LIB= libKF5ThreadWeaver.so unitconversion_PORT= devel/kf5-kunitconversion unitconversion_LIB= libKF5UnitConversion.so wallet_PORT= sysutils/kf5-kwallet wallet_LIB= libKF5Wallet.so wayland_PORT= x11/kf5-kwayland wayland_LIB= libKF5WaylandClient.so widgetsaddons_PORT= x11-toolkits/kf5-kwidgetsaddons widgetsaddons_LIB= libKF5WidgetsAddons.so windowsystem_PORT= x11/kf5-kwindowsystem windowsystem_LIB= libKF5WindowSystem.so xmlgui_PORT= x11-toolkits/kf5-kxmlgui xmlgui_LIB= libKF5XmlGui.so xmlrpcclient_PORT= net/kf5-kxmlrpcclient xmlrpcclient_LIB= libKF5XmlRpcClient.so # ====================== end of frameworks components ========================== # end of component list ######################################################## _USE_KDE_ALL= ${_USE_${_KDE_RELNAME}_ALL} # Iterate through components deprived of suffix. . for component in ${USE_KDE:O:u:C/_.+//} # Check that the component is valid. . if ${_USE_KDE_ALL:M${component}} != "" # Skip meta-components (currently none). . if defined(${component}_PORT) && (defined(${component}_PATH) || defined(${component}_LIB)) # Check if a dependency type is explicitly requested. . if ${USE_KDE:M${component}_*} != "" && ${USE_KDE:M${component}} == "" ${component}_TYPE= # empty . if ${USE_KDE:M${component}_build} != "" ${component}_TYPE+= build . endif . if ${USE_KDE:M${component}_run} != "" ${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(${component}_TYPE) ${component}_TYPE= build run . endif # Set real dependencies. . if defined(${component}_LIB) && ${${component}_TYPE:Mbuild} && ${${component}_TYPE:Mrun} LIB_DEPENDS+= ${${component}_LIB}:${${component}_PORT} . else ${component}_PATH?= ${KDE_PREFIX}/lib/${${component}_LIB} ${component}_DEPENDS= ${${component}_PATH}:${${component}_PORT} . if ${${component}_TYPE:Mbuild} != "" BUILD_DEPENDS+= ${${component}_DEPENDS} . endif . if ${${component}_TYPE:Mrun} != "" RUN_DEPENDS+= ${${component}_DEPENDS} . endif . endif # ${${component}_LIB} && ${${component}_TYPE:Mbuild} && ${${component}_TYPE:Mrun} . endif # defined(${component}_PORT) && defined(${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 Index: head/archivers/kf5-karchive/Makefile =================================================================== --- head/archivers/kf5-karchive/Makefile (revision 450055) +++ head/archivers/kf5-karchive/Makefile (revision 450056) @@ -1,16 +1,15 @@ # Created by: tcberner # $FreeBSD$ PORTNAME= karchive PORTVERSION= ${KDE_FRAMEWORKS_VERSION} -PORTREVISION= 1 CATEGORIES= archivers kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 library that provides classes for handling archive formats USES= cmake:outsource compiler:c++11-lib kde:5 tar:xz USE_KDE= ecm USE_QT5= buildtools_build core qmake_build .include Index: head/archivers/kf5-karchive/distinfo =================================================================== --- head/archivers/kf5-karchive/distinfo (revision 450055) +++ head/archivers/kf5-karchive/distinfo (revision 450056) @@ -1,3 +1,3 @@ -TIMESTAMP = 1502086004 -SHA256 (KDE/frameworks/5.37.0/karchive-5.37.0.tar.xz) = 358648e9615f521e0d8e37f3a8b7c95ee593bf5adbad114601a7b30928a62995 -SIZE (KDE/frameworks/5.37.0/karchive-5.37.0.tar.xz) = 113580 +TIMESTAMP = 1504433736 +SHA256 (KDE/frameworks/5.38.0/karchive-5.38.0.tar.xz) = 9354d45219342b888ac0eccbc3ce3a054858fcce9d4c93817352d2b447ebb658 +SIZE (KDE/frameworks/5.38.0/karchive-5.38.0.tar.xz) = 113572 Index: head/devel/kf5-extra-cmake-modules/distinfo =================================================================== --- head/devel/kf5-extra-cmake-modules/distinfo (revision 450055) +++ head/devel/kf5-extra-cmake-modules/distinfo (revision 450056) @@ -1,3 +1,3 @@ -TIMESTAMP = 1502086004 -SHA256 (KDE/frameworks/5.37.0/extra-cmake-modules-5.37.0.tar.xz) = 26198cf05c084c158bb23f0585a9df5bba1aa16b746252c80bdf4f0261b527cb -SIZE (KDE/frameworks/5.37.0/extra-cmake-modules-5.37.0.tar.xz) = 311696 +TIMESTAMP = 1504969175 +SHA256 (KDE/frameworks/5.38.0/extra-cmake-modules-5.38.0.tar.xz) = 6188a8ac8d799439204f69a1eb229431fc9f196790b88d6fb72bb3d57edb2332 +SIZE (KDE/frameworks/5.38.0/extra-cmake-modules-5.38.0.tar.xz) = 312532 Index: head/devel/kf5-extra-cmake-modules/pkg-plist =================================================================== --- head/devel/kf5-extra-cmake-modules/pkg-plist (revision 450055) +++ head/devel/kf5-extra-cmake-modules/pkg-plist (revision 450056) @@ -1,182 +1,184 @@ share/ECM/cmake/ECMConfig.cmake share/ECM/cmake/ECMConfigVersion.cmake share/ECM/find-modules/ECMFindModuleHelpersStub.cmake share/ECM/find-modules/FindEGL.cmake share/ECM/find-modules/FindGperf.cmake share/ECM/find-modules/FindInotify.cmake share/ECM/find-modules/FindKF5.cmake share/ECM/find-modules/FindLibGit2.cmake share/ECM/find-modules/FindOpenEXR.cmake share/ECM/find-modules/FindPng2Ico.cmake share/ECM/find-modules/FindPoppler.cmake share/ECM/find-modules/FindPythonModuleGeneration.cmake share/ECM/find-modules/FindQHelpGenerator.cmake share/ECM/find-modules/FindQtWaylandScanner.cmake share/ECM/find-modules/FindSharedMimeInfo.cmake share/ECM/find-modules/FindWayland.cmake share/ECM/find-modules/FindWaylandScanner.cmake share/ECM/find-modules/FindX11_XCB.cmake share/ECM/find-modules/FindXCB.cmake share/ECM/find-modules/GeneratePythonBindingUmbrellaModule.cmake share/ECM/find-modules/Qt5Ruleset.py share/ECM/find-modules/rules_engine.py share/ECM/find-modules/run-sip.py share/ECM/find-modules/sip_generator.py share/ECM/kde-modules/KDECMakeSettings.cmake share/ECM/kde-modules/KDECompilerSettings.cmake share/ECM/kde-modules/KDEFrameworkCompilerSettings.cmake share/ECM/kde-modules/KDEInstallDirs.cmake share/ECM/kde-modules/KDEPackageAppTemplates.cmake share/ECM/kde-modules/appstreamtest.cmake share/ECM/modules/ECMAddAppIcon.cmake share/ECM/modules/ECMAddQch.cmake +share/ECM/modules/ECMFindQMLModule.cmake.in share/ECM/modules/ECMQchDoxygen.config.in share/ECM/modules/ECMQchDoxygenLayout.xml share/ECM/modules/ECMAddTests.cmake share/ECM/modules/ECMCoverageOption.cmake share/ECM/modules/ECMCreateQmFromPoFiles.cmake share/ECM/modules/ECMEnableSanitizers.cmake share/ECM/modules/ECMFindModuleHelpers.cmake share/ECM/modules/ECMGenerateHeaders.cmake share/ECM/modules/ECMGeneratePkgConfigFile.cmake share/ECM/modules/ECMGeneratePriFile.cmake share/ECM/modules/ECMGenerateQmlTypes.cmake share/ECM/modules/ECMInstallIcons.cmake share/ECM/modules/ECMMarkAsTest.cmake share/ECM/modules/ECMMarkNonGuiExecutable.cmake share/ECM/modules/ECMOptionalAddSubdirectory.cmake share/ECM/modules/ECMPackageConfigHelpers.cmake share/ECM/modules/ECMPoQmTools.cmake +share/ECM/modules/ECMQMLModules.cmake share/ECM/modules/ECMQmLoader.cpp.in share/ECM/modules/ECMQtDeclareLoggingCategory.cmake share/ECM/modules/ECMQtDeclareLoggingCategory.cpp.in share/ECM/modules/ECMQtDeclareLoggingCategory.h.in share/ECM/modules/ECMQueryQmake.cmake share/ECM/modules/ECMSetupVersion.cmake share/ECM/modules/ECMUninstallTarget.cmake share/ECM/modules/ECMUseFindModules.cmake share/ECM/modules/ECMVersionHeader.h.in share/ECM/modules/ECMWinResolveSymlinks.cmake share/ECM/modules/ecm_uninstall.cmake.in share/ECM/test-modules/test_execute_and_compare.cmake share/ECM/toolchain/Android.cmake share/ECM/toolchain/deployment-file.json.in share/ECM/toolchain/specifydependencies.cmake %%PORTDOCS%%%%DOCSDIR%%/html/_sources/find-module/FindEGL.txt %%PORTDOCS%%%%DOCSDIR%%/html/_sources/find-module/FindKF5.txt %%PORTDOCS%%%%DOCSDIR%%/html/_sources/find-module/FindLibGit2.txt %%PORTDOCS%%%%DOCSDIR%%/html/_sources/find-module/FindOpenEXR.txt %%PORTDOCS%%%%DOCSDIR%%/html/_sources/find-module/FindPng2Ico.txt %%PORTDOCS%%%%DOCSDIR%%/html/_sources/find-module/FindPoppler.txt %%PORTDOCS%%%%DOCSDIR%%/html/_sources/find-module/FindQtWaylandScanner.txt %%PORTDOCS%%%%DOCSDIR%%/html/_sources/find-module/FindSharedMimeInfo.txt %%PORTDOCS%%%%DOCSDIR%%/html/_sources/find-module/FindWayland.txt %%PORTDOCS%%%%DOCSDIR%%/html/_sources/find-module/FindWaylandScanner.txt %%PORTDOCS%%%%DOCSDIR%%/html/_sources/find-module/FindX11_XCB.txt %%PORTDOCS%%%%DOCSDIR%%/html/_sources/find-module/FindXCB.txt %%PORTDOCS%%%%DOCSDIR%%/html/_sources/index.txt %%PORTDOCS%%%%DOCSDIR%%/html/_sources/kde-module/KDECMakeSettings.txt %%PORTDOCS%%%%DOCSDIR%%/html/_sources/kde-module/KDECompilerSettings.txt %%PORTDOCS%%%%DOCSDIR%%/html/_sources/kde-module/KDEFrameworkCompilerSettings.txt %%PORTDOCS%%%%DOCSDIR%%/html/_sources/kde-module/KDEInstallDirs.txt %%PORTDOCS%%%%DOCSDIR%%/html/_sources/kde-module/KDEPackageAppTemplates.txt %%PORTDOCS%%%%DOCSDIR%%/html/_sources/manual/ecm-developer.7.txt %%PORTDOCS%%%%DOCSDIR%%/html/_sources/manual/ecm-find-modules.7.txt %%PORTDOCS%%%%DOCSDIR%%/html/_sources/manual/ecm-kde-modules.7.txt %%PORTDOCS%%%%DOCSDIR%%/html/_sources/manual/ecm-modules.7.txt %%PORTDOCS%%%%DOCSDIR%%/html/_sources/manual/ecm-toolchains.7.txt %%PORTDOCS%%%%DOCSDIR%%/html/_sources/manual/ecm.7.txt %%PORTDOCS%%%%DOCSDIR%%/html/_sources/module/ECMAddAppIcon.txt %%PORTDOCS%%%%DOCSDIR%%/html/_sources/module/ECMAddQch.txt %%PORTDOCS%%%%DOCSDIR%%/html/_sources/module/ECMAddTests.txt %%PORTDOCS%%%%DOCSDIR%%/html/_sources/module/ECMCoverageOption.txt %%PORTDOCS%%%%DOCSDIR%%/html/_sources/module/ECMCreateQmFromPoFiles.txt %%PORTDOCS%%%%DOCSDIR%%/html/_sources/module/ECMEnableSanitizers.txt %%PORTDOCS%%%%DOCSDIR%%/html/_sources/module/ECMFindModuleHelpers.txt %%PORTDOCS%%%%DOCSDIR%%/html/_sources/module/ECMGenerateHeaders.txt %%PORTDOCS%%%%DOCSDIR%%/html/_sources/module/ECMGeneratePkgConfigFile.txt %%PORTDOCS%%%%DOCSDIR%%/html/_sources/module/ECMGeneratePriFile.txt %%PORTDOCS%%%%DOCSDIR%%/html/_sources/module/ECMInstallIcons.txt %%PORTDOCS%%%%DOCSDIR%%/html/_sources/module/ECMMarkAsTest.txt %%PORTDOCS%%%%DOCSDIR%%/html/_sources/module/ECMMarkNonGuiExecutable.txt %%PORTDOCS%%%%DOCSDIR%%/html/_sources/module/ECMOptionalAddSubdirectory.txt %%PORTDOCS%%%%DOCSDIR%%/html/_sources/module/ECMPackageConfigHelpers.txt %%PORTDOCS%%%%DOCSDIR%%/html/_sources/module/ECMPoQmTools.txt %%PORTDOCS%%%%DOCSDIR%%/html/_sources/module/ECMQtDeclareLoggingCategory.txt %%PORTDOCS%%%%DOCSDIR%%/html/_sources/module/ECMSetupVersion.txt %%PORTDOCS%%%%DOCSDIR%%/html/_sources/module/ECMUninstallTarget.txt %%PORTDOCS%%%%DOCSDIR%%/html/_sources/module/ECMUseFindModules.txt %%PORTDOCS%%%%DOCSDIR%%/html/_sources/toolchain/Android.txt %%PORTDOCS%%%%DOCSDIR%%/html/_static/ajax-loader.gif %%PORTDOCS%%%%DOCSDIR%%/html/_static/basic.css %%PORTDOCS%%%%DOCSDIR%%/html/_static/classic.css %%PORTDOCS%%%%DOCSDIR%%/html/_static/comment-bright.png %%PORTDOCS%%%%DOCSDIR%%/html/_static/comment-close.png %%PORTDOCS%%%%DOCSDIR%%/html/_static/comment.png %%PORTDOCS%%%%DOCSDIR%%/html/_static/doctools.js %%PORTDOCS%%%%DOCSDIR%%/html/_static/down-pressed.png %%PORTDOCS%%%%DOCSDIR%%/html/_static/down.png %%PORTDOCS%%%%DOCSDIR%%/html/_static/ecm.css %%PORTDOCS%%%%DOCSDIR%%/html/_static/file.png %%PORTDOCS%%%%DOCSDIR%%/html/_static/jquery-1.11.1.js %%PORTDOCS%%%%DOCSDIR%%/html/_static/jquery.js %%PORTDOCS%%%%DOCSDIR%%/html/_static/kde-favicon.ico %%PORTDOCS%%%%DOCSDIR%%/html/_static/minus.png %%PORTDOCS%%%%DOCSDIR%%/html/_static/plus.png %%PORTDOCS%%%%DOCSDIR%%/html/_static/pygments.css %%PORTDOCS%%%%DOCSDIR%%/html/_static/searchtools.js %%PORTDOCS%%%%DOCSDIR%%/html/_static/sidebar.js %%PORTDOCS%%%%DOCSDIR%%/html/_static/underscore-1.3.1.js %%PORTDOCS%%%%DOCSDIR%%/html/_static/underscore.js %%PORTDOCS%%%%DOCSDIR%%/html/_static/up-pressed.png %%PORTDOCS%%%%DOCSDIR%%/html/_static/up.png %%PORTDOCS%%%%DOCSDIR%%/html/_static/websupport.js %%PORTDOCS%%%%DOCSDIR%%/html/find-module/FindEGL.html %%PORTDOCS%%%%DOCSDIR%%/html/find-module/FindKF5.html %%PORTDOCS%%%%DOCSDIR%%/html/find-module/FindLibGit2.html %%PORTDOCS%%%%DOCSDIR%%/html/find-module/FindOpenEXR.html %%PORTDOCS%%%%DOCSDIR%%/html/find-module/FindPng2Ico.html %%PORTDOCS%%%%DOCSDIR%%/html/find-module/FindPoppler.html %%PORTDOCS%%%%DOCSDIR%%/html/find-module/FindQtWaylandScanner.html %%PORTDOCS%%%%DOCSDIR%%/html/find-module/FindSharedMimeInfo.html %%PORTDOCS%%%%DOCSDIR%%/html/find-module/FindWayland.html %%PORTDOCS%%%%DOCSDIR%%/html/find-module/FindWaylandScanner.html %%PORTDOCS%%%%DOCSDIR%%/html/find-module/FindX11_XCB.html %%PORTDOCS%%%%DOCSDIR%%/html/find-module/FindXCB.html %%PORTDOCS%%%%DOCSDIR%%/html/genindex.html %%PORTDOCS%%%%DOCSDIR%%/html/index.html %%PORTDOCS%%%%DOCSDIR%%/html/kde-module/KDECMakeSettings.html %%PORTDOCS%%%%DOCSDIR%%/html/kde-module/KDECompilerSettings.html %%PORTDOCS%%%%DOCSDIR%%/html/kde-module/KDEFrameworkCompilerSettings.html %%PORTDOCS%%%%DOCSDIR%%/html/kde-module/KDEInstallDirs.html %%PORTDOCS%%%%DOCSDIR%%/html/kde-module/KDEPackageAppTemplates.html %%PORTDOCS%%%%DOCSDIR%%/html/manual/ecm-developer.7.html %%PORTDOCS%%%%DOCSDIR%%/html/manual/ecm-find-modules.7.html %%PORTDOCS%%%%DOCSDIR%%/html/manual/ecm-kde-modules.7.html %%PORTDOCS%%%%DOCSDIR%%/html/manual/ecm-modules.7.html %%PORTDOCS%%%%DOCSDIR%%/html/manual/ecm-toolchains.7.html %%PORTDOCS%%%%DOCSDIR%%/html/manual/ecm.7.html %%PORTDOCS%%%%DOCSDIR%%/html/module/ECMAddAppIcon.html %%PORTDOCS%%%%DOCSDIR%%/html/module/ECMAddQch.html %%PORTDOCS%%%%DOCSDIR%%/html/module/ECMAddTests.html %%PORTDOCS%%%%DOCSDIR%%/html/module/ECMCoverageOption.html %%PORTDOCS%%%%DOCSDIR%%/html/module/ECMCreateQmFromPoFiles.html %%PORTDOCS%%%%DOCSDIR%%/html/module/ECMEnableSanitizers.html %%PORTDOCS%%%%DOCSDIR%%/html/module/ECMFindModuleHelpers.html %%PORTDOCS%%%%DOCSDIR%%/html/module/ECMGenerateHeaders.html %%PORTDOCS%%%%DOCSDIR%%/html/module/ECMGeneratePkgConfigFile.html %%PORTDOCS%%%%DOCSDIR%%/html/module/ECMGeneratePriFile.html %%PORTDOCS%%%%DOCSDIR%%/html/module/ECMInstallIcons.html %%PORTDOCS%%%%DOCSDIR%%/html/module/ECMMarkAsTest.html %%PORTDOCS%%%%DOCSDIR%%/html/module/ECMMarkNonGuiExecutable.html %%PORTDOCS%%%%DOCSDIR%%/html/module/ECMOptionalAddSubdirectory.html %%PORTDOCS%%%%DOCSDIR%%/html/module/ECMPackageConfigHelpers.html %%PORTDOCS%%%%DOCSDIR%%/html/module/ECMPoQmTools.html %%PORTDOCS%%%%DOCSDIR%%/html/module/ECMQtDeclareLoggingCategory.html %%PORTDOCS%%%%DOCSDIR%%/html/module/ECMSetupVersion.html %%PORTDOCS%%%%DOCSDIR%%/html/module/ECMUninstallTarget.html %%PORTDOCS%%%%DOCSDIR%%/html/module/ECMUseFindModules.html %%PORTDOCS%%%%DOCSDIR%%/html/search.html %%PORTDOCS%%%%DOCSDIR%%/html/searchindex.js %%PORTDOCS%%%%DOCSDIR%%/html/toolchain/Android.html %%HELP%%%%DOCSDIR%%/ExtraCMakeModules.qch Index: head/devel/kf5-kapidox/distinfo =================================================================== --- head/devel/kf5-kapidox/distinfo (revision 450055) +++ head/devel/kf5-kapidox/distinfo (revision 450056) @@ -1,3 +1,3 @@ -TIMESTAMP = 1502086004 -SHA256 (KDE/frameworks/5.37.0/kapidox-5.37.0.tar.xz) = bb3cac795319f1376b0dd7f6986a06e7a7e69aa59a6754c2864f7617ab5293f7 -SIZE (KDE/frameworks/5.37.0/kapidox-5.37.0.tar.xz) = 395612 +TIMESTAMP = 1504433740 +SHA256 (KDE/frameworks/5.38.0/kapidox-5.38.0.tar.xz) = e6c8de70bd2d8fd55c8dd4f01dfb526fe3230c5094aeed5fedda360c693993c8 +SIZE (KDE/frameworks/5.38.0/kapidox-5.38.0.tar.xz) = 395812 Index: head/devel/kf5-kauth/Makefile =================================================================== --- head/devel/kf5-kauth/Makefile (revision 450055) +++ head/devel/kf5-kauth/Makefile (revision 450056) @@ -1,19 +1,18 @@ # Created by: tcberner # $FreeBSD$ PORTNAME= kauth PORTVERSION= ${KDE_FRAMEWORKS_VERSION} -PORTREVISION= 1 CATEGORIES= devel kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 abstraction to system policy and authentication features LIB_DEPENDS= libpolkit-qt5-core-1.so:sysutils/polkit-qt5 USES= cmake:outsource compiler:c++11-lib kde:5 tar:xz USE_KDE= coreaddons ecm USE_QT5= buildtools_build core dbus gui linguisttools qmake_build \ widgets .include Index: head/devel/kf5-kauth/distinfo =================================================================== --- head/devel/kf5-kauth/distinfo (revision 450055) +++ head/devel/kf5-kauth/distinfo (revision 450056) @@ -1,3 +1,3 @@ -TIMESTAMP = 1502086004 -SHA256 (KDE/frameworks/5.37.0/kauth-5.37.0.tar.xz) = bc982bb8443d8a9791c4fffa20e29c9f852a7a18fa31f023d8b4efb517123f32 -SIZE (KDE/frameworks/5.37.0/kauth-5.37.0.tar.xz) = 84568 +TIMESTAMP = 1504433743 +SHA256 (KDE/frameworks/5.38.0/kauth-5.38.0.tar.xz) = 279af9593b3bf8b2730730877ff865944839e08d21855ea25864934fe372de8a +SIZE (KDE/frameworks/5.38.0/kauth-5.38.0.tar.xz) = 84804 Index: head/devel/kf5-kbookmarks/Makefile =================================================================== --- head/devel/kf5-kbookmarks/Makefile (revision 450055) +++ head/devel/kf5-kbookmarks/Makefile (revision 450056) @@ -1,18 +1,17 @@ # Created by: tcberner # $FreeBSD$ PORTNAME= kbookmarks PORTVERSION= ${KDE_FRAMEWORKS_VERSION} -PORTREVISION= 1 CATEGORIES= devel kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 library for bookmarks and the XBEL format USES= cmake:outsource compiler:c++11-lib kde:5 tar:xz USE_KDE= auth codecs config configwidgets coreaddons ecm \ iconthemes widgetsaddons xmlgui USE_QT5= buildtools_build core dbus gui linguisttools \ qmake_build widgets xml .include Index: head/devel/kf5-kbookmarks/distinfo =================================================================== --- head/devel/kf5-kbookmarks/distinfo (revision 450055) +++ head/devel/kf5-kbookmarks/distinfo (revision 450056) @@ -1,3 +1,3 @@ -TIMESTAMP = 1502086004 -SHA256 (KDE/frameworks/5.37.0/kbookmarks-5.37.0.tar.xz) = 815843ae3c6e8f36e1ea31aa9750dfa1b18be86c415edfcce362c2b3809cd950 -SIZE (KDE/frameworks/5.37.0/kbookmarks-5.37.0.tar.xz) = 117256 +TIMESTAMP = 1504433745 +SHA256 (KDE/frameworks/5.38.0/kbookmarks-5.38.0.tar.xz) = 38af8bb592a323b05d05b72d22b9bd5d48932a01e86941fec5e0e5ca59054368 +SIZE (KDE/frameworks/5.38.0/kbookmarks-5.38.0.tar.xz) = 117280 Index: head/devel/kf5-kcmutils/Makefile =================================================================== --- head/devel/kf5-kcmutils/Makefile (revision 450055) +++ head/devel/kf5-kcmutils/Makefile (revision 450056) @@ -1,19 +1,18 @@ # Created by: tcberner # $FreeBSD$ PORTNAME= kcmutils PORTVERSION= ${KDE_FRAMEWORKS_VERSION} -PORTREVISION= 1 CATEGORIES= devel kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 utilities for working with KCModules USES= cmake:outsource compiler:c++11-lib gettext kde:5 tar:xz USE_KDE= auth codecs config configwidgets coreaddons ecm i18n \ iconthemes itemviews kdeclarative package service \ widgetsaddons xmlgui USE_QT5= buildtools_build core dbus gui network qmake_build \ qml quick widgets xml .include Index: head/devel/kf5-kcmutils/distinfo =================================================================== --- head/devel/kf5-kcmutils/distinfo (revision 450055) +++ head/devel/kf5-kcmutils/distinfo (revision 450056) @@ -1,3 +1,3 @@ -TIMESTAMP = 1502086005 -SHA256 (KDE/frameworks/5.37.0/kcmutils-5.37.0.tar.xz) = fdefa93d5e796d82165c7ff0592d63c18da123534d989d77d55c9be00a2861c6 -SIZE (KDE/frameworks/5.37.0/kcmutils-5.37.0.tar.xz) = 235156 +TIMESTAMP = 1504433745 +SHA256 (KDE/frameworks/5.38.0/kcmutils-5.38.0.tar.xz) = 0b15971ece6003636d012e37760324b005b06050d4d076bbe30eed427717ce58 +SIZE (KDE/frameworks/5.38.0/kcmutils-5.38.0.tar.xz) = 235252 Index: head/devel/kf5-kconfig/Makefile =================================================================== --- head/devel/kf5-kconfig/Makefile (revision 450055) +++ head/devel/kf5-kconfig/Makefile (revision 450056) @@ -1,17 +1,16 @@ # Created by: tcberner # $FreeBSD$ PORTNAME= kconfig PORTVERSION= ${KDE_FRAMEWORKS_VERSION} -PORTREVISION= 1 CATEGORIES= devel kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 widgets for configuration dialogs USES= cmake:outsource compiler:c++11-lib kde:5 tar:xz USE_KDE= ecm USE_QT5= buildtools_build concurrent core gui linguisttools \ qmake_build testlib xml .include Index: head/devel/kf5-kconfig/distinfo =================================================================== --- head/devel/kf5-kconfig/distinfo (revision 450055) +++ head/devel/kf5-kconfig/distinfo (revision 450056) @@ -1,3 +1,3 @@ -TIMESTAMP = 1502086005 -SHA256 (KDE/frameworks/5.37.0/kconfig-5.37.0.tar.xz) = ad646fbf27a671761414609f729a033f5014ee0f6f9f4cd909ab00cfeb131eb8 -SIZE (KDE/frameworks/5.37.0/kconfig-5.37.0.tar.xz) = 233000 +TIMESTAMP = 1504433746 +SHA256 (KDE/frameworks/5.38.0/kconfig-5.38.0.tar.xz) = 79744af26c90b78f01e065049daea0a6470f0d8b8e71334652179bac1b12243a +SIZE (KDE/frameworks/5.38.0/kconfig-5.38.0.tar.xz) = 234272 Index: head/devel/kf5-kcoreaddons/Makefile =================================================================== --- head/devel/kf5-kcoreaddons/Makefile (revision 450055) +++ head/devel/kf5-kcoreaddons/Makefile (revision 450056) @@ -1,29 +1,28 @@ # Created by: tcberner # $FreeBSD$ PORTNAME= kcoreaddons PORTVERSION= ${KDE_FRAMEWORKS_VERSION} -PORTREVISION= 1 CATEGORIES= devel kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 addons to QtCore USES= cmake:outsource compiler:c++11-lib kde:5 shared-mime-info tar:xz USE_KDE= ecm USE_QT5= buildtools_build core linguisttools qmake_build OPTIONS_DEFINE= FAM INOTIFY OPTIONS_DEFAULT= INOTIFY OPTIONS_SUB= yes INOTIFY_DESC= Filesystem alteration notifications using inotify INOTIFY_LIB_DEPENDS= libinotify.so:devel/libinotify INOTIFY_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_INOTIFY # TODO: FAM is broken, and hangs on NFS FAM_DESC= Filesystem alteration notifications using fam (broken: hangs on NFS) FAM_USES= fam FAM_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_FAM .include Index: head/devel/kf5-kcoreaddons/distinfo =================================================================== --- head/devel/kf5-kcoreaddons/distinfo (revision 450055) +++ head/devel/kf5-kcoreaddons/distinfo (revision 450056) @@ -1,3 +1,3 @@ -TIMESTAMP = 1502086005 -SHA256 (KDE/frameworks/5.37.0/kcoreaddons-5.37.0.tar.xz) = 7e3c433cb0e010ae751c1347475283cb9e31763de5a7bc346a629d16c2d78528 -SIZE (KDE/frameworks/5.37.0/kcoreaddons-5.37.0.tar.xz) = 348284 +TIMESTAMP = 1504433746 +SHA256 (KDE/frameworks/5.38.0/kcoreaddons-5.38.0.tar.xz) = 9be3dd86402e173da025c0d326fd9a38ffeecb34828a287f8b8c530a5db275d4 +SIZE (KDE/frameworks/5.38.0/kcoreaddons-5.38.0.tar.xz) = 348756 Index: head/devel/kf5-kcrash/Makefile =================================================================== --- head/devel/kf5-kcrash/Makefile (revision 450055) +++ head/devel/kf5-kcrash/Makefile (revision 450056) @@ -1,17 +1,16 @@ # Created by: tcberner # $FreeBSD$ PORTNAME= kcrash PORTVERSION= ${KDE_FRAMEWORKS_VERSION} -PORTREVISION= 1 CATEGORIES= devel kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 library to handle crash analysis and bug report from apps USES= cmake:outsource compiler:c++11-lib kde:5 tar:xz USE_KDE= coreaddons ecm windowsystem USE_QT5= buildtools_build core gui qmake_build widgets x11extras USE_XORG= ice sm x11 xext .include Index: head/devel/kf5-kcrash/distinfo =================================================================== --- head/devel/kf5-kcrash/distinfo (revision 450055) +++ head/devel/kf5-kcrash/distinfo (revision 450056) @@ -1,3 +1,3 @@ -TIMESTAMP = 1502086005 -SHA256 (KDE/frameworks/5.37.0/kcrash-5.37.0.tar.xz) = c097aaca2c6ca8a177d697a8cccd4bd8bec2d09c07efd4bc7a4d0d3d1cbf629a -SIZE (KDE/frameworks/5.37.0/kcrash-5.37.0.tar.xz) = 21700 +TIMESTAMP = 1504433746 +SHA256 (KDE/frameworks/5.38.0/kcrash-5.38.0.tar.xz) = 215c90bf6501cb90db01f2a04155bcd8a8e66fcfb4a94649e72204c5a1df10a9 +SIZE (KDE/frameworks/5.38.0/kcrash-5.38.0.tar.xz) = 21704 Index: head/devel/kf5-kdbusaddons/Makefile =================================================================== --- head/devel/kf5-kdbusaddons/Makefile (revision 450055) +++ head/devel/kf5-kdbusaddons/Makefile (revision 450056) @@ -1,17 +1,16 @@ # Created by: tcberner # $FreeBSD$ PORTNAME= kdbusaddons PORTVERSION= ${KDE_FRAMEWORKS_VERSION} -PORTREVISION= 1 CATEGORIES= devel kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 addons to QtDBus USES= cmake:outsource compiler:c++11-lib kde:5 tar:xz USE_KDE= ecm USE_QT5= buildtools_build core dbus gui linguisttools \ qmake_build testlib x11extras .include Index: head/devel/kf5-kdbusaddons/distinfo =================================================================== --- head/devel/kf5-kdbusaddons/distinfo (revision 450055) +++ head/devel/kf5-kdbusaddons/distinfo (revision 450056) @@ -1,3 +1,3 @@ -TIMESTAMP = 1502086005 -SHA256 (KDE/frameworks/5.37.0/kdbusaddons-5.37.0.tar.xz) = 9140b649e140eb134d7290e3f268658900a61c3d50002ca1e7d772726756851c -SIZE (KDE/frameworks/5.37.0/kdbusaddons-5.37.0.tar.xz) = 35668 +TIMESTAMP = 1504433747 +SHA256 (KDE/frameworks/5.38.0/kdbusaddons-5.38.0.tar.xz) = 1c1f8955570cd7e0480ec619084c5ea56cbffaca5307d9053d52092f10d589d7 +SIZE (KDE/frameworks/5.38.0/kdbusaddons-5.38.0.tar.xz) = 35992 Index: head/devel/kf5-kdbusaddons/pkg-plist =================================================================== --- head/devel/kf5-kdbusaddons/pkg-plist (revision 450055) +++ head/devel/kf5-kdbusaddons/pkg-plist (revision 450056) @@ -1,65 +1,66 @@ bin/kquitapp5 include/KF5/KDBusAddons/KDBusConnectionPool include/KF5/KDBusAddons/KDBusInterProcessLock include/KF5/KDBusAddons/KDBusService include/KF5/KDBusAddons/KDEDModule include/KF5/KDBusAddons/KDEInitInterface include/KF5/KDBusAddons/kdbusaddons_export.h include/KF5/KDBusAddons/kdbusconnectionpool.h include/KF5/KDBusAddons/kdbusinterprocesslock.h include/KF5/KDBusAddons/kdbusservice.h include/KF5/KDBusAddons/kdedmodule.h include/KF5/KDBusAddons/kdeinitinterface.h include/KF5/kdbusaddons_version.h lib/cmake/KF5DBusAddons/KF5DBusAddonsConfig.cmake lib/cmake/KF5DBusAddons/KF5DBusAddonsConfigVersion.cmake lib/cmake/KF5DBusAddons/KF5DBusAddonsTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5DBusAddons/KF5DBusAddonsTargets.cmake lib/libKF5DBusAddons.so lib/libKF5DBusAddons.so.5 lib/libKF5DBusAddons.so.%%KDE_FRAMEWORKS_VERSION%% %%QT_MKSPECDIR%%/modules/qt_KDBusAddons.pri share/locale/ar/LC_MESSAGES/kdbusaddons5_qt.qm share/locale/ast/LC_MESSAGES/kdbusaddons5_qt.qm share/locale/bs/LC_MESSAGES/kdbusaddons5_qt.qm share/locale/ca/LC_MESSAGES/kdbusaddons5_qt.qm share/locale/ca@valencia/LC_MESSAGES/kdbusaddons5_qt.qm share/locale/cs/LC_MESSAGES/kdbusaddons5_qt.qm share/locale/da/LC_MESSAGES/kdbusaddons5_qt.qm share/locale/de/LC_MESSAGES/kdbusaddons5_qt.qm share/locale/el/LC_MESSAGES/kdbusaddons5_qt.qm share/locale/en_GB/LC_MESSAGES/kdbusaddons5_qt.qm share/locale/es/LC_MESSAGES/kdbusaddons5_qt.qm share/locale/et/LC_MESSAGES/kdbusaddons5_qt.qm +share/locale/eu/LC_MESSAGES/kdbusaddons5_qt.qm share/locale/fi/LC_MESSAGES/kdbusaddons5_qt.qm share/locale/fr/LC_MESSAGES/kdbusaddons5_qt.qm share/locale/gd/LC_MESSAGES/kdbusaddons5_qt.qm share/locale/gl/LC_MESSAGES/kdbusaddons5_qt.qm share/locale/hu/LC_MESSAGES/kdbusaddons5_qt.qm share/locale/ia/LC_MESSAGES/kdbusaddons5_qt.qm share/locale/it/LC_MESSAGES/kdbusaddons5_qt.qm share/locale/ja/LC_MESSAGES/kdbusaddons5_qt.qm share/locale/ko/LC_MESSAGES/kdbusaddons5_qt.qm share/locale/lt/LC_MESSAGES/kdbusaddons5_qt.qm share/locale/nb/LC_MESSAGES/kdbusaddons5_qt.qm share/locale/nds/LC_MESSAGES/kdbusaddons5_qt.qm share/locale/nl/LC_MESSAGES/kdbusaddons5_qt.qm share/locale/nn/LC_MESSAGES/kdbusaddons5_qt.qm share/locale/pa/LC_MESSAGES/kdbusaddons5_qt.qm share/locale/pl/LC_MESSAGES/kdbusaddons5_qt.qm share/locale/pt/LC_MESSAGES/kdbusaddons5_qt.qm share/locale/pt_BR/LC_MESSAGES/kdbusaddons5_qt.qm share/locale/ro/LC_MESSAGES/kdbusaddons5_qt.qm share/locale/ru/LC_MESSAGES/kdbusaddons5_qt.qm share/locale/se/LC_MESSAGES/kdbusaddons5_qt.qm share/locale/sk/LC_MESSAGES/kdbusaddons5_qt.qm share/locale/sl/LC_MESSAGES/kdbusaddons5_qt.qm share/locale/sr/LC_MESSAGES/kdbusaddons5_qt.qm share/locale/sr@ijekavian/LC_MESSAGES/kdbusaddons5_qt.qm share/locale/sr@ijekavianlatin/LC_MESSAGES/kdbusaddons5_qt.qm share/locale/sr@latin/LC_MESSAGES/kdbusaddons5_qt.qm share/locale/sv/LC_MESSAGES/kdbusaddons5_qt.qm share/locale/tr/LC_MESSAGES/kdbusaddons5_qt.qm share/locale/uk/LC_MESSAGES/kdbusaddons5_qt.qm share/locale/zh_CN/LC_MESSAGES/kdbusaddons5_qt.qm share/locale/zh_TW/LC_MESSAGES/kdbusaddons5_qt.qm Index: head/devel/kf5-kdeclarative/Makefile =================================================================== --- head/devel/kf5-kdeclarative/Makefile (revision 450055) +++ head/devel/kf5-kdeclarative/Makefile (revision 450056) @@ -1,22 +1,21 @@ # Created by: tcberner # $FreeBSD$ PORTNAME= kdeclarative PORTVERSION= ${KDE_FRAMEWORKS_VERSION} -PORTREVISION= 1 CATEGORIES= devel kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 library providing integration of QML and KDE Frameworks LIB_DEPENDS= libepoxy.so:graphics/libepoxy USES= cmake:outsource compiler:c++11-lib gettext kde:5 pkgconfig \ tar:xz USE_KDE= completion config coreaddons globalaccel guiaddons i18n \ iconthemes jobwidgets kio package service widgetsaddons \ windowsystem USE_QT5= buildtools_build core dbus gui network qmake_build qml \ quick testlib widgets xml .include Index: head/devel/kf5-kdeclarative/distinfo =================================================================== --- head/devel/kf5-kdeclarative/distinfo (revision 450055) +++ head/devel/kf5-kdeclarative/distinfo (revision 450056) @@ -1,3 +1,3 @@ -TIMESTAMP = 1502086005 -SHA256 (KDE/frameworks/5.37.0/kdeclarative-5.37.0.tar.xz) = f2bdd7e1c6d0f39b4e1573b11078317e9ec72803c63ce4acc4d7de26aa2150c7 -SIZE (KDE/frameworks/5.37.0/kdeclarative-5.37.0.tar.xz) = 169808 +TIMESTAMP = 1504433747 +SHA256 (KDE/frameworks/5.38.0/kdeclarative-5.38.0.tar.xz) = 8b38aba552f06596a47d52d364f7a21784e741cfb0c7f23815f1cf067fd7c6a4 +SIZE (KDE/frameworks/5.38.0/kdeclarative-5.38.0.tar.xz) = 169840 Index: head/devel/kf5-kdoctools/Makefile =================================================================== --- head/devel/kf5-kdoctools/Makefile (revision 450055) +++ head/devel/kf5-kdoctools/Makefile (revision 450056) @@ -1,23 +1,22 @@ # Created by: tcberner # $FreeBSD$ PORTNAME= kdoctools PORTVERSION= ${KDE_FRAMEWORKS_VERSION} -PORTREVISION= 1 CATEGORIES= devel kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 documentation generation from docbook BUILD_DEPENDS= ${LOCALBASE}/share/xsl/docbook/html/docbook.xsl:textproc/docbook-xsl \ docbook-xml>0:textproc/docbook-xml \ p5-URI>=0:net/p5-URI RUN_DEPENDS= ${LOCALBASE}/share/xsl/docbook/html/docbook.xsl:textproc/docbook-xsl \ docbook-xml>0:textproc/docbook-xml USES= cmake:outsource compiler:c++11-lib gettext kde:5 tar:xz USE_GNOME= libxml2 libxslt USE_KDE= archive ecm i18n USE_QT5= buildtools_build core qmake_build .include Index: head/devel/kf5-kdoctools/distinfo =================================================================== --- head/devel/kf5-kdoctools/distinfo (revision 450055) +++ head/devel/kf5-kdoctools/distinfo (revision 450056) @@ -1,3 +1,3 @@ -TIMESTAMP = 1502086006 -SHA256 (KDE/frameworks/5.37.0/kdoctools-5.37.0.tar.xz) = f4031fccb1e7c6017456840daee1589d2e6b7d36ee263a371446981a312e6c3d -SIZE (KDE/frameworks/5.37.0/kdoctools-5.37.0.tar.xz) = 416840 +TIMESTAMP = 1504433747 +SHA256 (KDE/frameworks/5.38.0/kdoctools-5.38.0.tar.xz) = c95f7e604bd16c3ef97b3fc0320a5656ef1ea3b3c75b7d4d22348391423c7b39 +SIZE (KDE/frameworks/5.38.0/kdoctools-5.38.0.tar.xz) = 421276 Index: head/devel/kf5-kdoctools/pkg-plist =================================================================== --- head/devel/kf5-kdoctools/pkg-plist (revision 450055) +++ head/devel/kf5-kdoctools/pkg-plist (revision 450056) @@ -1,1095 +1,1098 @@ bin/checkXML5 bin/meinproc5 include/KF5/KDocTools/docbookxslt.h include/KF5/KDocTools/kdoctools_export.h lib/cmake/KF5DocTools/KF5DocToolsConfig.cmake lib/cmake/KF5DocTools/KF5DocToolsConfigVersion.cmake lib/cmake/KF5DocTools/KF5DocToolsMacros.cmake lib/cmake/KF5DocTools/KF5DocToolsTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5DocTools/KF5DocToolsTargets.cmake lib/libKF5DocTools.so lib/libKF5DocTools.so.5 lib/libKF5DocTools.so.%%KDE_FRAMEWORKS_VERSION%% man/ca/man1/checkXML5.1.gz man/ca/man7/kf5options.7.gz man/ca/man7/qt5options.7.gz man/ca/man1/meinproc5.1.gz man/de/man1/checkXML5.1.gz man/de/man7/kf5options.7.gz man/de/man7/qt5options.7.gz man/de/man1/meinproc5.1.gz man/es/man1/checkXML5.1.gz man/es/man7/kf5options.7.gz man/es/man7/qt5options.7.gz man/es/man1/meinproc5.1.gz man/it/man1/checkXML5.1.gz man/it/man7/kf5options.7.gz man/it/man7/qt5options.7.gz man/it/man1/meinproc5.1.gz man/man1/checkXML5.1.gz man/man7/kf5options.7.gz man/man7/qt5options.7.gz man/man1/meinproc5.1.gz man/nl/man1/checkXML5.1.gz man/nl/man7/kf5options.7.gz man/nl/man7/qt5options.7.gz man/nl/man1/meinproc5.1.gz man/pt/man1/checkXML5.1.gz man/pt/man7/kf5options.7.gz man/pt/man7/qt5options.7.gz man/pt/man1/meinproc5.1.gz man/pt_BR/man1/checkXML5.1.gz man/pt_BR/man7/kf5options.7.gz man/pt_BR/man7/qt5options.7.gz man/pt_BR/man1/meinproc5.1.gz man/ru/man1/checkXML5.1.gz man/ru/man7/qt5options.7.gz man/sv/man1/checkXML5.1.gz man/sv/man7/kf5options.7.gz man/sv/man7/qt5options.7.gz man/sv/man1/meinproc5.1.gz man/uk/man1/checkXML5.1.gz man/uk/man7/kf5options.7.gz man/uk/man7/qt5options.7.gz man/uk/man1/meinproc5.1.gz share/doc/HTML/af/kdoctools5-common/kde-localised.css share/doc/HTML/ca/kdoctools5-common/kde-localised.css share/doc/HTML/cs/kdoctools5-common/kde-localised.css share/doc/HTML/da/kdoctools5-common/kde-localised.css share/doc/HTML/de/kdoctools5-common/fdl-translated.html share/doc/HTML/de/kdoctools5-common/gpl-translated.html share/doc/HTML/de/kdoctools5-common/kde-localised.css share/doc/HTML/de/kdoctools5-common/lgpl-translated.html share/doc/HTML/el/kdoctools5-common/kde-localised.css share/doc/HTML/en/kdoctools5-common/artistic-license.html share/doc/HTML/en/kdoctools5-common/block_title_bottom.png share/doc/HTML/en/kdoctools5-common/block_title_mid.png share/doc/HTML/en/kdoctools5-common/block_title_top.png share/doc/HTML/en/kdoctools5-common/bsd-license.html +share/doc/HTML/en/kdoctools5-common/ccbysa4-license.html share/doc/HTML/en/kdoctools5-common/fdl-license.html share/doc/HTML/en/kdoctools5-common/fdl-notice.html share/doc/HTML/en/kdoctools5-common/fdl-translated.html share/doc/HTML/en/kdoctools5-common/gpl-license.html share/doc/HTML/en/kdoctools5-common/gpl-translated.html share/doc/HTML/en/kdoctools5-common/kde-default.css share/doc/HTML/en/kdoctools5-common/kde-docs.css share/doc/HTML/en/kdoctools5-common/kde_logo.png share/doc/HTML/en/kdoctools5-common/kde_logo_bg.png share/doc/HTML/en/kdoctools5-common/kmenu.png share/doc/HTML/en/kdoctools5-common/lgpl-license.html share/doc/HTML/en/kdoctools5-common/lgpl-translated.html share/doc/HTML/en/kdoctools5-common/part_of_the_kde_family_horizontal_190.png share/doc/HTML/en/kdoctools5-common/qpl-license.html share/doc/HTML/en/kdoctools5-common/top-kde.jpg share/doc/HTML/en/kdoctools5-common/top-left.jpg share/doc/HTML/en/kdoctools5-common/top-right.jpg share/doc/HTML/en/kdoctools5-common/top.jpg share/doc/HTML/en/kdoctools5-common/x11-license.html share/doc/HTML/en/kdoctools5-common/xml.dcl share/doc/HTML/eo/kdoctools5-common/kde-localised.css share/doc/HTML/es/kdoctools5-common/kde-localised.css share/doc/HTML/et/kdoctools5-common/kde-localised.css share/doc/HTML/fr/kdoctools5-common/gpl-translated.html share/doc/HTML/fr/kdoctools5-common/kde-localised.css share/doc/HTML/gl/kdoctools5-common/kde-localised.css share/doc/HTML/he/kdoctools5-common/kde-localised.css share/doc/HTML/hu/kdoctools5-common/fdl-translated.html share/doc/HTML/hu/kdoctools5-common/gpl-translated.html share/doc/HTML/hu/kdoctools5-common/kde-localised.css share/doc/HTML/hu/kdoctools5-common/lgpl-translated.html share/doc/HTML/it/kdoctools5-common/gpl-translated.html share/doc/HTML/it/kdoctools5-common/kde-localised.css share/doc/HTML/ja/kdoctools5-common/kde-localised.css share/doc/HTML/ko/kdoctools5-common/fdl-translated.html share/doc/HTML/ko/kdoctools5-common/gpl-translated.html share/doc/HTML/ko/kdoctools5-common/kde-localised.css share/doc/HTML/lt/kdoctools5-common/kde-localised.css share/doc/HTML/nds/kdoctools5-common/kde-localised.css share/doc/HTML/nl/kdoctools5-common/fdl-translated.html share/doc/HTML/nl/kdoctools5-common/gpl-translated.html share/doc/HTML/nl/kdoctools5-common/kde-localised.css share/doc/HTML/nl/kdoctools5-common/lgpl-translated.html share/doc/HTML/nn/kdoctools5-common/kde-localised.css share/doc/HTML/pl/kdoctools5-common/gpl-translated.html share/doc/HTML/pl/kdoctools5-common/kde-localised.css share/doc/HTML/pt/kdoctools5-common/kde-localised.css share/doc/HTML/ro/kdoctools5-common/kde-localised.css share/doc/HTML/ru/kdoctools5-common/kde-localised.css share/doc/HTML/sl/kdoctools5-common/gpl-translated.html share/doc/HTML/sl/kdoctools5-common/kde-localised.css share/doc/HTML/sl/kdoctools5-common/lgpl-translated.html share/doc/HTML/sr/kdoctools5-common/kde-localised.css share/doc/HTML/sv/kdoctools5-common/kde-localised.css share/doc/HTML/tr/kdoctools5-common/gpl-translated.html share/doc/HTML/tr/kdoctools5-common/kde-localised.css share/doc/HTML/uk/kdoctools5-common/fdl-translated.html share/doc/HTML/uk/kdoctools5-common/gpl-translated.html share/doc/HTML/uk/kdoctools5-common/kde-localised.css share/doc/HTML/uk/kdoctools5-common/lgpl-translated.html share/doc/HTML/wa/kdoctools5-common/kde-localised.css share/doc/HTML/xh/kdoctools5-common/kde-localised.css share/kf5/kdoctools/customization/README share/kf5/kdoctools/customization/af/catalog.xml share/kf5/kdoctools/customization/af/entities/fdl-notice.docbook share/kf5/kdoctools/customization/af/entities/gpl-notice.docbook share/kf5/kdoctools/customization/af/entities/help-menu.docbook share/kf5/kdoctools/customization/af/entities/install-compile.docbook share/kf5/kdoctools/customization/af/entities/install-intro.docbook share/kf5/kdoctools/customization/af/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/af/entities/report-bugs.docbook share/kf5/kdoctools/customization/af/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/af/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/af/entities/underFDL.docbook share/kf5/kdoctools/customization/af/entities/underGPL.docbook share/kf5/kdoctools/customization/af/entities/underX11License.docbook share/kf5/kdoctools/customization/af/entities/update-doc.docbook share/kf5/kdoctools/customization/af/lang.entities share/kf5/kdoctools/customization/af/strings.entities share/kf5/kdoctools/customization/af/user.entities share/kf5/kdoctools/customization/bg/catalog.xml share/kf5/kdoctools/customization/bg/contributor.entities share/kf5/kdoctools/customization/bg/entities/fdl-notice.docbook share/kf5/kdoctools/customization/bg/entities/gpl-notice.docbook share/kf5/kdoctools/customization/bg/entities/help-menu.docbook share/kf5/kdoctools/customization/bg/entities/install-compile.docbook share/kf5/kdoctools/customization/bg/entities/install-intro.docbook share/kf5/kdoctools/customization/bg/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/bg/entities/report-bugs.docbook share/kf5/kdoctools/customization/bg/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/bg/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/bg/entities/underFDL.docbook share/kf5/kdoctools/customization/bg/entities/underGPL.docbook share/kf5/kdoctools/customization/bg/entities/underX11License.docbook share/kf5/kdoctools/customization/bg/entities/update-doc.docbook share/kf5/kdoctools/customization/bg/lang.entities share/kf5/kdoctools/customization/bg/strings.entities share/kf5/kdoctools/customization/bg/user.entities share/kf5/kdoctools/customization/ca/catalog.xml share/kf5/kdoctools/customization/ca/entities/fdl-notice.docbook share/kf5/kdoctools/customization/ca/entities/gpl-notice.docbook share/kf5/kdoctools/customization/ca/entities/help-menu.docbook share/kf5/kdoctools/customization/ca/entities/install-compile.docbook share/kf5/kdoctools/customization/ca/entities/install-intro.docbook share/kf5/kdoctools/customization/ca/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/ca/entities/report-bugs.docbook share/kf5/kdoctools/customization/ca/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/ca/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/ca/entities/underFDL.docbook share/kf5/kdoctools/customization/ca/entities/underGPL.docbook share/kf5/kdoctools/customization/ca/entities/underLGPL.docbook share/kf5/kdoctools/customization/ca/entities/underX11License.docbook share/kf5/kdoctools/customization/ca/entities/update-doc.docbook share/kf5/kdoctools/customization/ca/lang.entities share/kf5/kdoctools/customization/ca/strings.entities share/kf5/kdoctools/customization/ca/user.entities share/kf5/kdoctools/customization/catalog.xml share/kf5/kdoctools/customization/cs/catalog.xml share/kf5/kdoctools/customization/cs/entities/fdl-notice.docbook share/kf5/kdoctools/customization/cs/entities/gpl-notice.docbook share/kf5/kdoctools/customization/cs/entities/help-menu.docbook share/kf5/kdoctools/customization/cs/entities/install-compile.docbook share/kf5/kdoctools/customization/cs/entities/install-intro.docbook share/kf5/kdoctools/customization/cs/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/cs/entities/report-bugs.docbook share/kf5/kdoctools/customization/cs/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/cs/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/cs/entities/underFDL.docbook share/kf5/kdoctools/customization/cs/entities/underGPL.docbook share/kf5/kdoctools/customization/cs/entities/underX11License.docbook share/kf5/kdoctools/customization/cs/entities/update-doc.docbook share/kf5/kdoctools/customization/cs/lang.entities share/kf5/kdoctools/customization/cs/strings.entities share/kf5/kdoctools/customization/cs/user.entities share/kf5/kdoctools/customization/da/catalog.xml share/kf5/kdoctools/customization/da/entities/fdl-notice.docbook share/kf5/kdoctools/customization/da/entities/gpl-notice.docbook share/kf5/kdoctools/customization/da/entities/help-menu.docbook share/kf5/kdoctools/customization/da/entities/install-compile.docbook share/kf5/kdoctools/customization/da/entities/install-intro.docbook share/kf5/kdoctools/customization/da/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/da/entities/report-bugs.docbook share/kf5/kdoctools/customization/da/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/da/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/da/entities/underFDL.docbook share/kf5/kdoctools/customization/da/entities/underGPL.docbook share/kf5/kdoctools/customization/da/entities/underLGPL.docbook share/kf5/kdoctools/customization/da/entities/underX11License.docbook share/kf5/kdoctools/customization/da/entities/update-doc.docbook share/kf5/kdoctools/customization/da/lang.entities share/kf5/kdoctools/customization/da/strings.entities share/kf5/kdoctools/customization/da/user.entities share/kf5/kdoctools/customization/de/catalog.xml share/kf5/kdoctools/customization/de/entities/fdl-notice.docbook share/kf5/kdoctools/customization/de/entities/gpl-notice.docbook share/kf5/kdoctools/customization/de/entities/help-menu.docbook share/kf5/kdoctools/customization/de/entities/install-compile.docbook share/kf5/kdoctools/customization/de/entities/install-intro.docbook share/kf5/kdoctools/customization/de/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/de/entities/report-bugs.docbook share/kf5/kdoctools/customization/de/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/de/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/de/entities/underFDL.docbook share/kf5/kdoctools/customization/de/entities/underGPL.docbook share/kf5/kdoctools/customization/de/entities/underLGPL.docbook share/kf5/kdoctools/customization/de/entities/underX11License.docbook share/kf5/kdoctools/customization/de/entities/update-doc.docbook share/kf5/kdoctools/customization/de/lang.entities share/kf5/kdoctools/customization/de/strings.entities share/kf5/kdoctools/customization/de/user.entities share/kf5/kdoctools/customization/dtd/kdedbx45.dtd share/kf5/kdoctools/customization/dtd/modifications.elements share/kf5/kdoctools/customization/dtd/rdbhier2.elements share/kf5/kdoctools/customization/dtd/rdbpool.elements share/kf5/kdoctools/customization/el/catalog.xml share/kf5/kdoctools/customization/el/entities/fdl-notice.docbook share/kf5/kdoctools/customization/el/entities/gpl-notice.docbook share/kf5/kdoctools/customization/el/entities/help-menu.docbook share/kf5/kdoctools/customization/el/entities/install-compile.docbook share/kf5/kdoctools/customization/el/entities/install-intro.docbook share/kf5/kdoctools/customization/el/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/el/entities/report-bugs.docbook share/kf5/kdoctools/customization/el/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/el/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/el/entities/underFDL.docbook share/kf5/kdoctools/customization/el/entities/underGPL.docbook share/kf5/kdoctools/customization/el/entities/underX11License.docbook share/kf5/kdoctools/customization/el/entities/update-doc.docbook share/kf5/kdoctools/customization/el/lang.entities share/kf5/kdoctools/customization/el/strings.entities share/kf5/kdoctools/customization/el/user.entities share/kf5/kdoctools/customization/en-GB/catalog.xml share/kf5/kdoctools/customization/en-GB/entities/fdl-notice.docbook share/kf5/kdoctools/customization/en-GB/entities/gpl-notice.docbook share/kf5/kdoctools/customization/en-GB/entities/help-menu.docbook share/kf5/kdoctools/customization/en-GB/entities/install-compile.docbook share/kf5/kdoctools/customization/en-GB/entities/install-intro.docbook share/kf5/kdoctools/customization/en-GB/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/en-GB/entities/report-bugs.docbook share/kf5/kdoctools/customization/en-GB/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/en-GB/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/en-GB/entities/underFDL.docbook share/kf5/kdoctools/customization/en-GB/entities/underGPL.docbook share/kf5/kdoctools/customization/en-GB/entities/underX11License.docbook share/kf5/kdoctools/customization/en-GB/entities/update-doc.docbook share/kf5/kdoctools/customization/en-GB/lang.entities share/kf5/kdoctools/customization/en-GB/strings.entities share/kf5/kdoctools/customization/en-GB/user.entities share/kf5/kdoctools/customization/en/catalog.xml +share/kf5/kdoctools/customization/en/entities/ccbysa4-notice.docbook share/kf5/kdoctools/customization/en/entities/fdl-notice.docbook share/kf5/kdoctools/customization/en/entities/gpl-notice.docbook share/kf5/kdoctools/customization/en/entities/help-menu.docbook share/kf5/kdoctools/customization/en/entities/install-compile.docbook share/kf5/kdoctools/customization/en/entities/install-intro.docbook share/kf5/kdoctools/customization/en/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/en/entities/report-bugs.docbook share/kf5/kdoctools/customization/en/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/en/entities/underBSDLicense.docbook +share/kf5/kdoctools/customization/en/entities/underCCBYSA4.docbook share/kf5/kdoctools/customization/en/entities/underFDL.docbook share/kf5/kdoctools/customization/en/entities/underGPL.docbook share/kf5/kdoctools/customization/en/entities/underLGPL.docbook share/kf5/kdoctools/customization/en/entities/underX11License.docbook share/kf5/kdoctools/customization/en/entities/update-doc.docbook share/kf5/kdoctools/customization/en/lang.entities share/kf5/kdoctools/customization/en/strings.entities share/kf5/kdoctools/customization/en/user.entities share/kf5/kdoctools/customization/entities/contributor.entities share/kf5/kdoctools/customization/entities/general.entities share/kf5/kdoctools/customization/entities/l10n.entities share/kf5/kdoctools/customization/eo/catalog.xml share/kf5/kdoctools/customization/eo/entities/fdl-notice.docbook share/kf5/kdoctools/customization/eo/entities/gpl-notice.docbook share/kf5/kdoctools/customization/eo/entities/help-menu.docbook share/kf5/kdoctools/customization/eo/entities/install-compile.docbook share/kf5/kdoctools/customization/eo/entities/install-intro.docbook share/kf5/kdoctools/customization/eo/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/eo/entities/report-bugs.docbook share/kf5/kdoctools/customization/eo/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/eo/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/eo/entities/underFDL.docbook share/kf5/kdoctools/customization/eo/entities/underGPL.docbook share/kf5/kdoctools/customization/eo/entities/underX11License.docbook share/kf5/kdoctools/customization/eo/entities/update-doc.docbook share/kf5/kdoctools/customization/eo/lang.entities share/kf5/kdoctools/customization/eo/strings.entities share/kf5/kdoctools/customization/eo/user.entities share/kf5/kdoctools/customization/es/catalog.xml share/kf5/kdoctools/customization/es/entities/fdl-notice.docbook share/kf5/kdoctools/customization/es/entities/gpl-notice.docbook share/kf5/kdoctools/customization/es/entities/help-menu.docbook share/kf5/kdoctools/customization/es/entities/install-compile.docbook share/kf5/kdoctools/customization/es/entities/install-intro.docbook share/kf5/kdoctools/customization/es/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/es/entities/report-bugs.docbook share/kf5/kdoctools/customization/es/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/es/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/es/entities/underFDL.docbook share/kf5/kdoctools/customization/es/entities/underGPL.docbook share/kf5/kdoctools/customization/es/entities/underLGPL.docbook share/kf5/kdoctools/customization/es/entities/underX11License.docbook share/kf5/kdoctools/customization/es/entities/update-doc.docbook share/kf5/kdoctools/customization/es/lang.entities share/kf5/kdoctools/customization/es/strings.entities share/kf5/kdoctools/customization/es/user.entities share/kf5/kdoctools/customization/et/catalog.xml share/kf5/kdoctools/customization/et/entities/fdl-notice.docbook share/kf5/kdoctools/customization/et/entities/gpl-notice.docbook share/kf5/kdoctools/customization/et/entities/help-menu.docbook share/kf5/kdoctools/customization/et/entities/install-compile.docbook share/kf5/kdoctools/customization/et/entities/install-intro.docbook share/kf5/kdoctools/customization/et/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/et/entities/report-bugs.docbook share/kf5/kdoctools/customization/et/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/et/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/et/entities/underFDL.docbook share/kf5/kdoctools/customization/et/entities/underGPL.docbook share/kf5/kdoctools/customization/et/entities/underLGPL.docbook share/kf5/kdoctools/customization/et/entities/underX11License.docbook share/kf5/kdoctools/customization/et/entities/update-doc.docbook share/kf5/kdoctools/customization/et/lang.entities share/kf5/kdoctools/customization/et/strings.entities share/kf5/kdoctools/customization/et/user.entities share/kf5/kdoctools/customization/fi/catalog.xml share/kf5/kdoctools/customization/fi/entities/fdl-notice.docbook share/kf5/kdoctools/customization/fi/entities/gpl-notice.docbook share/kf5/kdoctools/customization/fi/entities/help-menu.docbook share/kf5/kdoctools/customization/fi/entities/install-compile.docbook share/kf5/kdoctools/customization/fi/entities/install-intro.docbook share/kf5/kdoctools/customization/fi/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/fi/entities/report-bugs.docbook share/kf5/kdoctools/customization/fi/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/fi/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/fi/entities/underFDL.docbook share/kf5/kdoctools/customization/fi/entities/underGPL.docbook share/kf5/kdoctools/customization/fi/entities/underX11License.docbook share/kf5/kdoctools/customization/fi/entities/update-doc.docbook share/kf5/kdoctools/customization/fi/lang.entities share/kf5/kdoctools/customization/fi/strings.entities share/kf5/kdoctools/customization/fi/user.entities share/kf5/kdoctools/customization/fo/catalog.xml share/kf5/kdoctools/customization/fo/contributor.entities share/kf5/kdoctools/customization/fo/entities/fdl-notice.docbook share/kf5/kdoctools/customization/fo/entities/gpl-notice.docbook share/kf5/kdoctools/customization/fo/entities/help-menu.docbook share/kf5/kdoctools/customization/fo/entities/install-compile.docbook share/kf5/kdoctools/customization/fo/entities/install-intro.docbook share/kf5/kdoctools/customization/fo/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/fo/entities/report-bugs.docbook share/kf5/kdoctools/customization/fo/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/fo/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/fo/entities/underFDL.docbook share/kf5/kdoctools/customization/fo/entities/underGPL.docbook share/kf5/kdoctools/customization/fo/entities/underX11License.docbook share/kf5/kdoctools/customization/fo/entities/update-doc.docbook share/kf5/kdoctools/customization/fo/lang.entities share/kf5/kdoctools/customization/fo/strings.entities share/kf5/kdoctools/customization/fo/user.entities share/kf5/kdoctools/customization/fr/catalog.xml share/kf5/kdoctools/customization/fr/entities/fdl-notice.docbook share/kf5/kdoctools/customization/fr/entities/gpl-notice.docbook share/kf5/kdoctools/customization/fr/entities/help-menu.docbook share/kf5/kdoctools/customization/fr/entities/install-compile.docbook share/kf5/kdoctools/customization/fr/entities/install-intro.docbook share/kf5/kdoctools/customization/fr/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/fr/entities/report-bugs.docbook share/kf5/kdoctools/customization/fr/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/fr/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/fr/entities/underFDL.docbook share/kf5/kdoctools/customization/fr/entities/underGPL.docbook share/kf5/kdoctools/customization/fr/entities/underLGPL.docbook share/kf5/kdoctools/customization/fr/entities/underX11License.docbook share/kf5/kdoctools/customization/fr/entities/update-doc.docbook share/kf5/kdoctools/customization/fr/lang.entities share/kf5/kdoctools/customization/fr/strings.entities share/kf5/kdoctools/customization/fr/user.entities share/kf5/kdoctools/customization/gl/catalog.xml share/kf5/kdoctools/customization/gl/contributor.entities share/kf5/kdoctools/customization/gl/entities/fdl-notice.docbook share/kf5/kdoctools/customization/gl/entities/gpl-notice.docbook share/kf5/kdoctools/customization/gl/entities/help-menu.docbook share/kf5/kdoctools/customization/gl/entities/install-compile.docbook share/kf5/kdoctools/customization/gl/entities/install-intro.docbook share/kf5/kdoctools/customization/gl/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/gl/entities/report-bugs.docbook share/kf5/kdoctools/customization/gl/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/gl/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/gl/entities/underFDL.docbook share/kf5/kdoctools/customization/gl/entities/underGPL.docbook share/kf5/kdoctools/customization/gl/entities/underLGPL.docbook share/kf5/kdoctools/customization/gl/entities/underX11License.docbook share/kf5/kdoctools/customization/gl/entities/update-doc.docbook share/kf5/kdoctools/customization/gl/lang.entities share/kf5/kdoctools/customization/gl/strings.entities share/kf5/kdoctools/customization/gl/user.entities share/kf5/kdoctools/customization/he/catalog.xml share/kf5/kdoctools/customization/he/entities/fdl-notice.docbook share/kf5/kdoctools/customization/he/entities/gpl-notice.docbook share/kf5/kdoctools/customization/he/entities/help-menu.docbook share/kf5/kdoctools/customization/he/entities/install-compile.docbook share/kf5/kdoctools/customization/he/entities/install-intro.docbook share/kf5/kdoctools/customization/he/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/he/entities/report-bugs.docbook share/kf5/kdoctools/customization/he/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/he/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/he/entities/underFDL.docbook share/kf5/kdoctools/customization/he/entities/underGPL.docbook share/kf5/kdoctools/customization/he/entities/underX11License.docbook share/kf5/kdoctools/customization/he/entities/update-doc.docbook share/kf5/kdoctools/customization/he/lang.entities share/kf5/kdoctools/customization/he/strings.entities share/kf5/kdoctools/customization/he/user.entities share/kf5/kdoctools/customization/hu/catalog.xml share/kf5/kdoctools/customization/hu/entities/fdl-notice.docbook share/kf5/kdoctools/customization/hu/entities/gpl-notice.docbook share/kf5/kdoctools/customization/hu/entities/help-menu.docbook share/kf5/kdoctools/customization/hu/entities/install-compile.docbook share/kf5/kdoctools/customization/hu/entities/install-intro.docbook share/kf5/kdoctools/customization/hu/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/hu/entities/report-bugs.docbook share/kf5/kdoctools/customization/hu/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/hu/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/hu/entities/underFDL.docbook share/kf5/kdoctools/customization/hu/entities/underGPL.docbook share/kf5/kdoctools/customization/hu/entities/underX11License.docbook share/kf5/kdoctools/customization/hu/entities/update-doc.docbook share/kf5/kdoctools/customization/hu/lang.entities share/kf5/kdoctools/customization/hu/strings.entities share/kf5/kdoctools/customization/hu/user.entities share/kf5/kdoctools/customization/id/catalog.xml share/kf5/kdoctools/customization/id/entities/fdl-notice.docbook share/kf5/kdoctools/customization/id/entities/gpl-notice.docbook share/kf5/kdoctools/customization/id/entities/help-menu.docbook share/kf5/kdoctools/customization/id/entities/install-compile.docbook share/kf5/kdoctools/customization/id/entities/install-intro.docbook share/kf5/kdoctools/customization/id/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/id/entities/report-bugs.docbook share/kf5/kdoctools/customization/id/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/id/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/id/entities/underFDL.docbook share/kf5/kdoctools/customization/id/entities/underGPL.docbook share/kf5/kdoctools/customization/id/entities/underX11License.docbook share/kf5/kdoctools/customization/id/entities/update-doc.docbook share/kf5/kdoctools/customization/id/lang.entities share/kf5/kdoctools/customization/id/strings.entities share/kf5/kdoctools/customization/id/user.entities share/kf5/kdoctools/customization/it/catalog.xml share/kf5/kdoctools/customization/it/entities/fdl-notice.docbook share/kf5/kdoctools/customization/it/entities/gpl-notice.docbook share/kf5/kdoctools/customization/it/entities/help-menu.docbook share/kf5/kdoctools/customization/it/entities/install-compile.docbook share/kf5/kdoctools/customization/it/entities/install-intro.docbook share/kf5/kdoctools/customization/it/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/it/entities/report-bugs.docbook share/kf5/kdoctools/customization/it/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/it/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/it/entities/underFDL.docbook share/kf5/kdoctools/customization/it/entities/underGPL.docbook share/kf5/kdoctools/customization/it/entities/underLGPL.docbook share/kf5/kdoctools/customization/it/entities/underX11License.docbook share/kf5/kdoctools/customization/it/entities/update-doc.docbook share/kf5/kdoctools/customization/it/lang.entities share/kf5/kdoctools/customization/it/strings.entities share/kf5/kdoctools/customization/it/user.entities share/kf5/kdoctools/customization/ja/catalog.xml share/kf5/kdoctools/customization/ja/entities/fdl-notice.docbook share/kf5/kdoctools/customization/ja/entities/gpl-notice.docbook share/kf5/kdoctools/customization/ja/entities/help-menu.docbook share/kf5/kdoctools/customization/ja/entities/install-compile.docbook share/kf5/kdoctools/customization/ja/entities/install-intro.docbook share/kf5/kdoctools/customization/ja/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/ja/entities/report-bugs.docbook share/kf5/kdoctools/customization/ja/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/ja/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/ja/entities/underFDL.docbook share/kf5/kdoctools/customization/ja/entities/underGPL.docbook share/kf5/kdoctools/customization/ja/entities/underX11License.docbook share/kf5/kdoctools/customization/ja/entities/update-doc.docbook share/kf5/kdoctools/customization/ja/lang.entities share/kf5/kdoctools/customization/ja/strings.entities share/kf5/kdoctools/customization/ja/user.entities share/kf5/kdoctools/customization/kde-chunk-common.xsl share/kf5/kdoctools/customization/kde-chunk-online.xsl share/kf5/kdoctools/customization/kde-chunk.xsl share/kf5/kdoctools/customization/kde-include-common.xsl share/kf5/kdoctools/customization/kde-include-man.xsl share/kf5/kdoctools/customization/kde-navig-online.xsl share/kf5/kdoctools/customization/kde-navig.xsl share/kf5/kdoctools/customization/kde-nochunk.xsl share/kf5/kdoctools/customization/kde-style.xsl share/kf5/kdoctools/customization/kde-ttlpg-online.xsl share/kf5/kdoctools/customization/kde-ttlpg.xsl share/kf5/kdoctools/customization/kde-web-navig.xsl share/kf5/kdoctools/customization/kde-web.xsl share/kf5/kdoctools/customization/ko/catalog.xml share/kf5/kdoctools/customization/ko/entities/fdl-notice.docbook share/kf5/kdoctools/customization/ko/entities/gpl-notice.docbook share/kf5/kdoctools/customization/ko/entities/help-menu.docbook share/kf5/kdoctools/customization/ko/entities/install-compile.docbook share/kf5/kdoctools/customization/ko/entities/install-intro.docbook share/kf5/kdoctools/customization/ko/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/ko/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/ko/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/ko/entities/underFDL.docbook share/kf5/kdoctools/customization/ko/entities/underGPL.docbook share/kf5/kdoctools/customization/ko/entities/underLGPL.docbook share/kf5/kdoctools/customization/ko/entities/underX11License.docbook share/kf5/kdoctools/customization/ko/entities/update-doc.docbook share/kf5/kdoctools/customization/ko/lang.entities share/kf5/kdoctools/customization/ko/strings.entities share/kf5/kdoctools/customization/ko/user.entities share/kf5/kdoctools/customization/lt/catalog.xml share/kf5/kdoctools/customization/lt/contributor.entities share/kf5/kdoctools/customization/lt/entities/fdl-notice.docbook share/kf5/kdoctools/customization/lt/entities/gpl-notice.docbook share/kf5/kdoctools/customization/lt/entities/help-menu.docbook share/kf5/kdoctools/customization/lt/entities/install-compile.docbook share/kf5/kdoctools/customization/lt/entities/install-intro.docbook share/kf5/kdoctools/customization/lt/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/lt/entities/report-bugs.docbook share/kf5/kdoctools/customization/lt/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/lt/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/lt/entities/underFDL.docbook share/kf5/kdoctools/customization/lt/entities/underGPL.docbook share/kf5/kdoctools/customization/lt/entities/underLGPL.docbook share/kf5/kdoctools/customization/lt/entities/underX11License.docbook share/kf5/kdoctools/customization/lt/entities/update-doc.docbook share/kf5/kdoctools/customization/lt/lang.entities share/kf5/kdoctools/customization/lt/strings.entities share/kf5/kdoctools/customization/lt/user.entities share/kf5/kdoctools/customization/nds/catalog.xml share/kf5/kdoctools/customization/nds/entities/fdl-notice.docbook share/kf5/kdoctools/customization/nds/entities/gpl-notice.docbook share/kf5/kdoctools/customization/nds/entities/help-menu.docbook share/kf5/kdoctools/customization/nds/entities/install-compile.docbook share/kf5/kdoctools/customization/nds/entities/install-intro.docbook share/kf5/kdoctools/customization/nds/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/nds/entities/report-bugs.docbook share/kf5/kdoctools/customization/nds/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/nds/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/nds/entities/underFDL.docbook share/kf5/kdoctools/customization/nds/entities/underGPL.docbook share/kf5/kdoctools/customization/nds/entities/underLGPL.docbook share/kf5/kdoctools/customization/nds/entities/underX11License.docbook share/kf5/kdoctools/customization/nds/entities/update-doc.docbook share/kf5/kdoctools/customization/nds/lang.entities share/kf5/kdoctools/customization/nds/strings.entities share/kf5/kdoctools/customization/nds/user.entities share/kf5/kdoctools/customization/nl/catalog.xml share/kf5/kdoctools/customization/nl/entities/fdl-notice.docbook share/kf5/kdoctools/customization/nl/entities/gpl-notice.docbook share/kf5/kdoctools/customization/nl/entities/help-menu.docbook share/kf5/kdoctools/customization/nl/entities/install-compile.docbook share/kf5/kdoctools/customization/nl/entities/install-intro.docbook share/kf5/kdoctools/customization/nl/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/nl/entities/report-bugs.docbook share/kf5/kdoctools/customization/nl/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/nl/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/nl/entities/underFDL.docbook share/kf5/kdoctools/customization/nl/entities/underGPL.docbook share/kf5/kdoctools/customization/nl/entities/underLGPL.docbook share/kf5/kdoctools/customization/nl/entities/underX11License.docbook share/kf5/kdoctools/customization/nl/entities/update-doc.docbook share/kf5/kdoctools/customization/nl/lang.entities share/kf5/kdoctools/customization/nl/strings.entities share/kf5/kdoctools/customization/nl/user.entities share/kf5/kdoctools/customization/nn/catalog.xml share/kf5/kdoctools/customization/nn/entities/fdl-notice.docbook share/kf5/kdoctools/customization/nn/entities/gpl-notice.docbook share/kf5/kdoctools/customization/nn/entities/help-menu.docbook share/kf5/kdoctools/customization/nn/entities/install-compile.docbook share/kf5/kdoctools/customization/nn/entities/install-intro.docbook share/kf5/kdoctools/customization/nn/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/nn/entities/report-bugs.docbook share/kf5/kdoctools/customization/nn/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/nn/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/nn/entities/underFDL.docbook share/kf5/kdoctools/customization/nn/entities/underGPL.docbook share/kf5/kdoctools/customization/nn/entities/underX11License.docbook share/kf5/kdoctools/customization/nn/entities/update-doc.docbook share/kf5/kdoctools/customization/nn/lang.entities share/kf5/kdoctools/customization/nn/strings.entities share/kf5/kdoctools/customization/nn/user.entities share/kf5/kdoctools/customization/no/catalog.xml share/kf5/kdoctools/customization/no/entities/fdl-notice.docbook share/kf5/kdoctools/customization/no/entities/gpl-notice.docbook share/kf5/kdoctools/customization/no/entities/help-menu.docbook share/kf5/kdoctools/customization/no/entities/install-compile.docbook share/kf5/kdoctools/customization/no/entities/install-intro.docbook share/kf5/kdoctools/customization/no/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/no/entities/report-bugs.docbook share/kf5/kdoctools/customization/no/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/no/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/no/entities/underFDL.docbook share/kf5/kdoctools/customization/no/entities/underGPL.docbook share/kf5/kdoctools/customization/no/entities/underX11License.docbook share/kf5/kdoctools/customization/no/entities/update-doc.docbook share/kf5/kdoctools/customization/no/lang.entities share/kf5/kdoctools/customization/no/strings.entities share/kf5/kdoctools/customization/no/user.entities share/kf5/kdoctools/customization/pl/catalog.xml share/kf5/kdoctools/customization/pl/entities/fdl-notice.docbook share/kf5/kdoctools/customization/pl/entities/gpl-notice.docbook share/kf5/kdoctools/customization/pl/entities/help-menu.docbook share/kf5/kdoctools/customization/pl/entities/install-compile.docbook share/kf5/kdoctools/customization/pl/entities/install-intro.docbook share/kf5/kdoctools/customization/pl/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/pl/entities/report-bugs.docbook share/kf5/kdoctools/customization/pl/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/pl/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/pl/entities/underFDL.docbook share/kf5/kdoctools/customization/pl/entities/underGPL.docbook share/kf5/kdoctools/customization/pl/entities/underLGPL.docbook share/kf5/kdoctools/customization/pl/entities/underX11License.docbook share/kf5/kdoctools/customization/pl/entities/update-doc.docbook share/kf5/kdoctools/customization/pl/lang.entities share/kf5/kdoctools/customization/pl/strings.entities share/kf5/kdoctools/customization/pl/user.entities share/kf5/kdoctools/customization/pt-BR/catalog.xml share/kf5/kdoctools/customization/pt-BR/contributor.entities share/kf5/kdoctools/customization/pt-BR/entities/fdl-notice.docbook share/kf5/kdoctools/customization/pt-BR/entities/gpl-notice.docbook share/kf5/kdoctools/customization/pt-BR/entities/help-menu.docbook share/kf5/kdoctools/customization/pt-BR/entities/install-compile.docbook share/kf5/kdoctools/customization/pt-BR/entities/install-intro.docbook share/kf5/kdoctools/customization/pt-BR/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/pt-BR/entities/report-bugs.docbook share/kf5/kdoctools/customization/pt-BR/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/pt-BR/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/pt-BR/entities/underFDL.docbook share/kf5/kdoctools/customization/pt-BR/entities/underGPL.docbook share/kf5/kdoctools/customization/pt-BR/entities/underLGPL.docbook share/kf5/kdoctools/customization/pt-BR/entities/underX11License.docbook share/kf5/kdoctools/customization/pt-BR/entities/update-doc.docbook share/kf5/kdoctools/customization/pt-BR/lang.entities share/kf5/kdoctools/customization/pt-BR/strings.entities share/kf5/kdoctools/customization/pt-BR/user.entities share/kf5/kdoctools/customization/pt/catalog.xml share/kf5/kdoctools/customization/pt/contributor.entities share/kf5/kdoctools/customization/pt/entities/fdl-notice.docbook share/kf5/kdoctools/customization/pt/entities/gpl-notice.docbook share/kf5/kdoctools/customization/pt/entities/help-menu.docbook share/kf5/kdoctools/customization/pt/entities/install-compile.docbook share/kf5/kdoctools/customization/pt/entities/install-intro.docbook share/kf5/kdoctools/customization/pt/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/pt/entities/report-bugs.docbook share/kf5/kdoctools/customization/pt/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/pt/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/pt/entities/underFDL.docbook share/kf5/kdoctools/customization/pt/entities/underGPL.docbook share/kf5/kdoctools/customization/pt/entities/underLGPL.docbook share/kf5/kdoctools/customization/pt/entities/underX11License.docbook share/kf5/kdoctools/customization/pt/entities/update-doc.docbook share/kf5/kdoctools/customization/pt/lang.entities share/kf5/kdoctools/customization/pt/strings.entities share/kf5/kdoctools/customization/pt/user.entities share/kf5/kdoctools/customization/ro/catalog.xml share/kf5/kdoctools/customization/ro/entities/fdl-notice.docbook share/kf5/kdoctools/customization/ro/entities/gpl-notice.docbook share/kf5/kdoctools/customization/ro/entities/help-menu.docbook share/kf5/kdoctools/customization/ro/entities/install-compile.docbook share/kf5/kdoctools/customization/ro/entities/install-intro.docbook share/kf5/kdoctools/customization/ro/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/ro/entities/report-bugs.docbook share/kf5/kdoctools/customization/ro/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/ro/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/ro/entities/underFDL.docbook share/kf5/kdoctools/customization/ro/entities/underGPL.docbook share/kf5/kdoctools/customization/ro/entities/underLGPL.docbook share/kf5/kdoctools/customization/ro/entities/underX11License.docbook share/kf5/kdoctools/customization/ro/entities/update-doc.docbook share/kf5/kdoctools/customization/ro/lang.entities share/kf5/kdoctools/customization/ro/strings.entities share/kf5/kdoctools/customization/ro/user.entities share/kf5/kdoctools/customization/ru/catalog.xml share/kf5/kdoctools/customization/ru/entities/fdl-notice.docbook share/kf5/kdoctools/customization/ru/entities/gpl-notice.docbook share/kf5/kdoctools/customization/ru/entities/help-menu.docbook share/kf5/kdoctools/customization/ru/entities/install-compile.docbook share/kf5/kdoctools/customization/ru/entities/install-intro.docbook share/kf5/kdoctools/customization/ru/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/ru/entities/report-bugs.docbook share/kf5/kdoctools/customization/ru/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/ru/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/ru/entities/underFDL.docbook share/kf5/kdoctools/customization/ru/entities/underGPL.docbook share/kf5/kdoctools/customization/ru/entities/underLGPL.docbook share/kf5/kdoctools/customization/ru/entities/underX11License.docbook share/kf5/kdoctools/customization/ru/entities/update-doc.docbook share/kf5/kdoctools/customization/ru/lang.entities share/kf5/kdoctools/customization/ru/strings.entities share/kf5/kdoctools/customization/ru/user.entities share/kf5/kdoctools/customization/sk/catalog.xml share/kf5/kdoctools/customization/sk/entities/fdl-notice.docbook share/kf5/kdoctools/customization/sk/entities/gpl-notice.docbook share/kf5/kdoctools/customization/sk/entities/help-menu.docbook share/kf5/kdoctools/customization/sk/entities/install-compile.docbook share/kf5/kdoctools/customization/sk/entities/install-intro.docbook share/kf5/kdoctools/customization/sk/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/sk/entities/report-bugs.docbook share/kf5/kdoctools/customization/sk/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/sk/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/sk/entities/underFDL.docbook share/kf5/kdoctools/customization/sk/entities/underGPL.docbook share/kf5/kdoctools/customization/sk/entities/underX11License.docbook share/kf5/kdoctools/customization/sk/entities/update-doc.docbook share/kf5/kdoctools/customization/sk/lang.entities share/kf5/kdoctools/customization/sk/strings.entities share/kf5/kdoctools/customization/sk/user.entities share/kf5/kdoctools/customization/sl/catalog.xml share/kf5/kdoctools/customization/sl/entities/fdl-notice.docbook share/kf5/kdoctools/customization/sl/entities/gpl-notice.docbook share/kf5/kdoctools/customization/sl/entities/help-menu.docbook share/kf5/kdoctools/customization/sl/entities/install-compile.docbook share/kf5/kdoctools/customization/sl/entities/install-intro.docbook share/kf5/kdoctools/customization/sl/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/sl/entities/report-bugs.docbook share/kf5/kdoctools/customization/sl/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/sl/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/sl/entities/underFDL.docbook share/kf5/kdoctools/customization/sl/entities/underGPL.docbook share/kf5/kdoctools/customization/sl/entities/underX11License.docbook share/kf5/kdoctools/customization/sl/entities/update-doc.docbook share/kf5/kdoctools/customization/sl/lang.entities share/kf5/kdoctools/customization/sl/strings.entities share/kf5/kdoctools/customization/sl/user.entities share/kf5/kdoctools/customization/sr/catalog.xml share/kf5/kdoctools/customization/sr/entities/fdl-notice.docbook share/kf5/kdoctools/customization/sr/entities/gpl-notice.docbook share/kf5/kdoctools/customization/sr/entities/help-menu.docbook share/kf5/kdoctools/customization/sr/entities/install-compile.docbook share/kf5/kdoctools/customization/sr/entities/install-intro.docbook share/kf5/kdoctools/customization/sr/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/sr/entities/report-bugs.docbook share/kf5/kdoctools/customization/sr/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/sr/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/sr/entities/underFDL.docbook share/kf5/kdoctools/customization/sr/entities/underGPL.docbook share/kf5/kdoctools/customization/sr/entities/underLGPL.docbook share/kf5/kdoctools/customization/sr/entities/underX11License.docbook share/kf5/kdoctools/customization/sr/entities/update-doc.docbook share/kf5/kdoctools/customization/sr/lang.entities share/kf5/kdoctools/customization/sr/strings.entities share/kf5/kdoctools/customization/sr/user.entities share/kf5/kdoctools/customization/sr@ijekavian/catalog.xml share/kf5/kdoctools/customization/sr@ijekavian/entities/fdl-notice.docbook share/kf5/kdoctools/customization/sr@ijekavian/entities/gpl-notice.docbook share/kf5/kdoctools/customization/sr@ijekavian/entities/help-menu.docbook share/kf5/kdoctools/customization/sr@ijekavian/entities/install-compile.docbook share/kf5/kdoctools/customization/sr@ijekavian/entities/install-intro.docbook share/kf5/kdoctools/customization/sr@ijekavian/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/sr@ijekavian/entities/report-bugs.docbook share/kf5/kdoctools/customization/sr@ijekavian/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/sr@ijekavian/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/sr@ijekavian/entities/underFDL.docbook share/kf5/kdoctools/customization/sr@ijekavian/entities/underGPL.docbook share/kf5/kdoctools/customization/sr@ijekavian/entities/underLGPL.docbook share/kf5/kdoctools/customization/sr@ijekavian/entities/underX11License.docbook share/kf5/kdoctools/customization/sr@ijekavian/entities/update-doc.docbook share/kf5/kdoctools/customization/sr@ijekavian/lang.entities share/kf5/kdoctools/customization/sr@ijekavian/strings.entities share/kf5/kdoctools/customization/sr@ijekavian/user.entities share/kf5/kdoctools/customization/sr@ijekavianlatin/catalog.xml share/kf5/kdoctools/customization/sr@ijekavianlatin/entities/fdl-notice.docbook share/kf5/kdoctools/customization/sr@ijekavianlatin/entities/gpl-notice.docbook share/kf5/kdoctools/customization/sr@ijekavianlatin/entities/help-menu.docbook share/kf5/kdoctools/customization/sr@ijekavianlatin/entities/install-compile.docbook share/kf5/kdoctools/customization/sr@ijekavianlatin/entities/install-intro.docbook share/kf5/kdoctools/customization/sr@ijekavianlatin/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/sr@ijekavianlatin/entities/report-bugs.docbook share/kf5/kdoctools/customization/sr@ijekavianlatin/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/sr@ijekavianlatin/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/sr@ijekavianlatin/entities/underFDL.docbook share/kf5/kdoctools/customization/sr@ijekavianlatin/entities/underGPL.docbook share/kf5/kdoctools/customization/sr@ijekavianlatin/entities/underLGPL.docbook share/kf5/kdoctools/customization/sr@ijekavianlatin/entities/underX11License.docbook share/kf5/kdoctools/customization/sr@ijekavianlatin/entities/update-doc.docbook share/kf5/kdoctools/customization/sr@ijekavianlatin/lang.entities share/kf5/kdoctools/customization/sr@ijekavianlatin/strings.entities share/kf5/kdoctools/customization/sr@ijekavianlatin/user.entities share/kf5/kdoctools/customization/sr@latin/catalog.xml share/kf5/kdoctools/customization/sr@latin/entities/fdl-notice.docbook share/kf5/kdoctools/customization/sr@latin/entities/gpl-notice.docbook share/kf5/kdoctools/customization/sr@latin/entities/help-menu.docbook share/kf5/kdoctools/customization/sr@latin/entities/install-compile.docbook share/kf5/kdoctools/customization/sr@latin/entities/install-intro.docbook share/kf5/kdoctools/customization/sr@latin/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/sr@latin/entities/report-bugs.docbook share/kf5/kdoctools/customization/sr@latin/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/sr@latin/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/sr@latin/entities/underFDL.docbook share/kf5/kdoctools/customization/sr@latin/entities/underGPL.docbook share/kf5/kdoctools/customization/sr@latin/entities/underLGPL.docbook share/kf5/kdoctools/customization/sr@latin/entities/underX11License.docbook share/kf5/kdoctools/customization/sr@latin/entities/update-doc.docbook share/kf5/kdoctools/customization/sr@latin/lang.entities share/kf5/kdoctools/customization/sr@latin/strings.entities share/kf5/kdoctools/customization/sr@latin/user.entities share/kf5/kdoctools/customization/sv/catalog.xml share/kf5/kdoctools/customization/sv/entities/fdl-notice.docbook share/kf5/kdoctools/customization/sv/entities/gpl-notice.docbook share/kf5/kdoctools/customization/sv/entities/help-menu.docbook share/kf5/kdoctools/customization/sv/entities/install-compile.docbook share/kf5/kdoctools/customization/sv/entities/install-intro.docbook share/kf5/kdoctools/customization/sv/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/sv/entities/report-bugs.docbook share/kf5/kdoctools/customization/sv/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/sv/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/sv/entities/underFDL.docbook share/kf5/kdoctools/customization/sv/entities/underGPL.docbook share/kf5/kdoctools/customization/sv/entities/underLGPL.docbook share/kf5/kdoctools/customization/sv/entities/underX11License.docbook share/kf5/kdoctools/customization/sv/entities/update-doc.docbook share/kf5/kdoctools/customization/sv/lang.entities share/kf5/kdoctools/customization/sv/strings.entities share/kf5/kdoctools/customization/sv/user.entities share/kf5/kdoctools/customization/th/catalog.xml share/kf5/kdoctools/customization/th/entities/fdl-notice.docbook share/kf5/kdoctools/customization/th/entities/gpl-notice.docbook share/kf5/kdoctools/customization/th/entities/help-menu.docbook share/kf5/kdoctools/customization/th/entities/install-compile.docbook share/kf5/kdoctools/customization/th/entities/install-intro.docbook share/kf5/kdoctools/customization/th/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/th/entities/report-bugs.docbook share/kf5/kdoctools/customization/th/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/th/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/th/entities/underFDL.docbook share/kf5/kdoctools/customization/th/entities/underGPL.docbook share/kf5/kdoctools/customization/th/entities/underLGPL.docbook share/kf5/kdoctools/customization/th/entities/underX11License.docbook share/kf5/kdoctools/customization/th/entities/update-doc.docbook share/kf5/kdoctools/customization/th/lang.entities share/kf5/kdoctools/customization/th/strings.entities share/kf5/kdoctools/customization/th/user.entities share/kf5/kdoctools/customization/tr/catalog.xml share/kf5/kdoctools/customization/tr/entities/fdl-notice.docbook share/kf5/kdoctools/customization/tr/entities/gpl-notice.docbook share/kf5/kdoctools/customization/tr/entities/help-menu.docbook share/kf5/kdoctools/customization/tr/entities/install-compile.docbook share/kf5/kdoctools/customization/tr/entities/install-intro.docbook share/kf5/kdoctools/customization/tr/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/tr/entities/report-bugs.docbook share/kf5/kdoctools/customization/tr/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/tr/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/tr/entities/underFDL.docbook share/kf5/kdoctools/customization/tr/entities/underGPL.docbook share/kf5/kdoctools/customization/tr/entities/underX11License.docbook share/kf5/kdoctools/customization/tr/entities/update-doc.docbook share/kf5/kdoctools/customization/tr/lang.entities share/kf5/kdoctools/customization/tr/strings.entities share/kf5/kdoctools/customization/tr/user.entities share/kf5/kdoctools/customization/uk/catalog.xml share/kf5/kdoctools/customization/uk/entities/fdl-notice.docbook share/kf5/kdoctools/customization/uk/entities/gpl-notice.docbook share/kf5/kdoctools/customization/uk/entities/help-menu.docbook share/kf5/kdoctools/customization/uk/entities/install-compile.docbook share/kf5/kdoctools/customization/uk/entities/install-intro.docbook share/kf5/kdoctools/customization/uk/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/uk/entities/report-bugs.docbook share/kf5/kdoctools/customization/uk/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/uk/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/uk/entities/underFDL.docbook share/kf5/kdoctools/customization/uk/entities/underGPL.docbook share/kf5/kdoctools/customization/uk/entities/underLGPL.docbook share/kf5/kdoctools/customization/uk/entities/underX11License.docbook share/kf5/kdoctools/customization/uk/entities/update-doc.docbook share/kf5/kdoctools/customization/uk/lang.entities share/kf5/kdoctools/customization/uk/strings.entities share/kf5/kdoctools/customization/uk/user.entities share/kf5/kdoctools/customization/wa/catalog.xml share/kf5/kdoctools/customization/wa/contributor.entities share/kf5/kdoctools/customization/wa/entities/fdl-notice.docbook share/kf5/kdoctools/customization/wa/entities/gpl-notice.docbook share/kf5/kdoctools/customization/wa/entities/help-menu.docbook share/kf5/kdoctools/customization/wa/entities/install-compile.docbook share/kf5/kdoctools/customization/wa/entities/install-intro.docbook share/kf5/kdoctools/customization/wa/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/wa/entities/report-bugs.docbook share/kf5/kdoctools/customization/wa/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/wa/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/wa/entities/underFDL.docbook share/kf5/kdoctools/customization/wa/entities/underGPL.docbook share/kf5/kdoctools/customization/wa/entities/underX11License.docbook share/kf5/kdoctools/customization/wa/entities/update-doc.docbook share/kf5/kdoctools/customization/wa/lang.entities share/kf5/kdoctools/customization/wa/strings.entities share/kf5/kdoctools/customization/wa/user.entities share/kf5/kdoctools/customization/xh/catalog.xml share/kf5/kdoctools/customization/xh/contributor.entities share/kf5/kdoctools/customization/xh/entities/fdl-notice.docbook share/kf5/kdoctools/customization/xh/entities/gpl-notice.docbook share/kf5/kdoctools/customization/xh/entities/help-menu.docbook share/kf5/kdoctools/customization/xh/entities/install-compile.docbook share/kf5/kdoctools/customization/xh/entities/install-intro.docbook share/kf5/kdoctools/customization/xh/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/xh/entities/report-bugs.docbook share/kf5/kdoctools/customization/xh/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/xh/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/xh/entities/underFDL.docbook share/kf5/kdoctools/customization/xh/entities/underGPL.docbook share/kf5/kdoctools/customization/xh/entities/underX11License.docbook share/kf5/kdoctools/customization/xh/entities/update-doc.docbook share/kf5/kdoctools/customization/xh/lang.entities share/kf5/kdoctools/customization/xh/strings.entities share/kf5/kdoctools/customization/xh/user.entities share/kf5/kdoctools/customization/xsl/README share/kf5/kdoctools/customization/xsl/all-l10n.xml share/kf5/kdoctools/customization/xsl/ca.xml share/kf5/kdoctools/customization/xsl/cs.xml share/kf5/kdoctools/customization/xsl/de.xml share/kf5/kdoctools/customization/xsl/el.xml share/kf5/kdoctools/customization/xsl/en.xml share/kf5/kdoctools/customization/xsl/es.xml share/kf5/kdoctools/customization/xsl/et.xml share/kf5/kdoctools/customization/xsl/fr.xml share/kf5/kdoctools/customization/xsl/gl.xml share/kf5/kdoctools/customization/xsl/hu.xml share/kf5/kdoctools/customization/xsl/it.xml share/kf5/kdoctools/customization/xsl/lt.xml share/kf5/kdoctools/customization/xsl/nds.xml share/kf5/kdoctools/customization/xsl/nl.xml share/kf5/kdoctools/customization/xsl/nn.xml share/kf5/kdoctools/customization/xsl/pl.xml share/kf5/kdoctools/customization/xsl/pt.xml share/kf5/kdoctools/customization/xsl/pt_br.xml share/kf5/kdoctools/customization/xsl/ru.xml share/kf5/kdoctools/customization/xsl/sl.xml share/kf5/kdoctools/customization/xsl/sr.xml share/kf5/kdoctools/customization/xsl/sr_ijekavian.xml share/kf5/kdoctools/customization/xsl/sr_ijekavianlatin.xml share/kf5/kdoctools/customization/xsl/sr_latin.xml share/kf5/kdoctools/customization/xsl/sv.xml share/kf5/kdoctools/customization/xsl/tr.xml share/kf5/kdoctools/customization/xsl/uk.xml share/kf5/kdoctools/customization/xx/catalog.xml share/kf5/kdoctools/customization/xx/contributor.entities share/kf5/kdoctools/customization/xx/entities/fdl-notice.docbook share/kf5/kdoctools/customization/xx/entities/gpl-notice.docbook share/kf5/kdoctools/customization/xx/entities/help-menu.docbook share/kf5/kdoctools/customization/xx/entities/install-compile.docbook share/kf5/kdoctools/customization/xx/entities/install-intro.docbook share/kf5/kdoctools/customization/xx/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/xx/entities/report-bugs.docbook share/kf5/kdoctools/customization/xx/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/xx/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/xx/entities/underFDL.docbook share/kf5/kdoctools/customization/xx/entities/underGPL.docbook share/kf5/kdoctools/customization/xx/entities/underX11License.docbook share/kf5/kdoctools/customization/xx/entities/update-doc.docbook share/kf5/kdoctools/customization/xx/lang.entities share/kf5/kdoctools/customization/xx/strings.entities share/kf5/kdoctools/customization/xx/user.entities share/kf5/kdoctools/customization/zh-CN/catalog.xml share/kf5/kdoctools/customization/zh-CN/entities/fdl-notice.docbook share/kf5/kdoctools/customization/zh-CN/entities/gpl-notice.docbook share/kf5/kdoctools/customization/zh-CN/entities/help-menu.docbook share/kf5/kdoctools/customization/zh-CN/entities/install-compile.docbook share/kf5/kdoctools/customization/zh-CN/entities/install-intro.docbook share/kf5/kdoctools/customization/zh-CN/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/zh-CN/entities/report-bugs.docbook share/kf5/kdoctools/customization/zh-CN/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/zh-CN/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/zh-CN/entities/underFDL.docbook share/kf5/kdoctools/customization/zh-CN/entities/underGPL.docbook share/kf5/kdoctools/customization/zh-CN/entities/underLGPL.docbook share/kf5/kdoctools/customization/zh-CN/entities/underX11License.docbook share/kf5/kdoctools/customization/zh-CN/entities/update-doc.docbook share/kf5/kdoctools/customization/zh-CN/lang.entities share/kf5/kdoctools/customization/zh-CN/strings.entities share/kf5/kdoctools/customization/zh-CN/user.entities share/kf5/kdoctools/customization/zh-TW/catalog.xml share/kf5/kdoctools/customization/zh-TW/entities/fdl-notice.docbook share/kf5/kdoctools/customization/zh-TW/entities/gpl-notice.docbook share/kf5/kdoctools/customization/zh-TW/entities/help-menu.docbook share/kf5/kdoctools/customization/zh-TW/entities/install-compile.docbook share/kf5/kdoctools/customization/zh-TW/entities/install-intro.docbook share/kf5/kdoctools/customization/zh-TW/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/zh-TW/entities/report-bugs.docbook share/kf5/kdoctools/customization/zh-TW/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/zh-TW/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/zh-TW/entities/underFDL.docbook share/kf5/kdoctools/customization/zh-TW/entities/underGPL.docbook share/kf5/kdoctools/customization/zh-TW/entities/underX11License.docbook share/kf5/kdoctools/customization/zh-TW/entities/update-doc.docbook share/kf5/kdoctools/customization/zh-TW/lang.entities share/kf5/kdoctools/customization/zh-TW/strings.entities share/kf5/kdoctools/customization/zh-TW/user.entities share/locale/af/LC_MESSAGES/kdoctools5.mo share/locale/ar/LC_MESSAGES/kdoctools5.mo share/locale/ast/LC_MESSAGES/kdoctools5.mo share/locale/be/LC_MESSAGES/kdoctools5.mo share/locale/bg/LC_MESSAGES/kdoctools5.mo share/locale/bn/LC_MESSAGES/kdoctools5.mo share/locale/br/LC_MESSAGES/kdoctools5.mo share/locale/bs/LC_MESSAGES/kdoctools5.mo share/locale/ca/LC_MESSAGES/kdoctools5.mo share/locale/ca@valencia/LC_MESSAGES/kdoctools5.mo share/locale/cs/LC_MESSAGES/kdoctools5.mo share/locale/csb/LC_MESSAGES/kdoctools5.mo share/locale/cy/LC_MESSAGES/kdoctools5.mo share/locale/da/LC_MESSAGES/kdoctools5.mo share/locale/de/LC_MESSAGES/kdoctools5.mo share/locale/el/LC_MESSAGES/kdoctools5.mo share/locale/en_GB/LC_MESSAGES/kdoctools5.mo share/locale/eo/LC_MESSAGES/kdoctools5.mo share/locale/es/LC_MESSAGES/kdoctools5.mo share/locale/et/LC_MESSAGES/kdoctools5.mo share/locale/eu/LC_MESSAGES/kdoctools5.mo share/locale/fa/LC_MESSAGES/kdoctools5.mo share/locale/fi/LC_MESSAGES/kdoctools5.mo share/locale/fr/LC_MESSAGES/kdoctools5.mo share/locale/fy/LC_MESSAGES/kdoctools5.mo share/locale/ga/LC_MESSAGES/kdoctools5.mo share/locale/gd/LC_MESSAGES/kdoctools5.mo share/locale/gl/LC_MESSAGES/kdoctools5.mo share/locale/gu/LC_MESSAGES/kdoctools5.mo share/locale/he/LC_MESSAGES/kdoctools5.mo share/locale/hi/LC_MESSAGES/kdoctools5.mo share/locale/hr/LC_MESSAGES/kdoctools5.mo share/locale/hsb/LC_MESSAGES/kdoctools5.mo share/locale/hu/LC_MESSAGES/kdoctools5.mo share/locale/ia/LC_MESSAGES/kdoctools5.mo share/locale/is/LC_MESSAGES/kdoctools5.mo share/locale/it/LC_MESSAGES/kdoctools5.mo share/locale/ja/LC_MESSAGES/kdoctools5.mo share/locale/kk/LC_MESSAGES/kdoctools5.mo share/locale/km/LC_MESSAGES/kdoctools5.mo share/locale/kn/LC_MESSAGES/kdoctools5.mo share/locale/ko/LC_MESSAGES/kdoctools5.mo share/locale/ku/LC_MESSAGES/kdoctools5.mo share/locale/lt/LC_MESSAGES/kdoctools5.mo share/locale/lv/LC_MESSAGES/kdoctools5.mo share/locale/mai/LC_MESSAGES/kdoctools5.mo share/locale/mk/LC_MESSAGES/kdoctools5.mo share/locale/mr/LC_MESSAGES/kdoctools5.mo share/locale/ms/LC_MESSAGES/kdoctools5.mo share/locale/nb/LC_MESSAGES/kdoctools5.mo share/locale/nds/LC_MESSAGES/kdoctools5.mo share/locale/ne/LC_MESSAGES/kdoctools5.mo share/locale/nl/LC_MESSAGES/kdoctools5.mo share/locale/nn/LC_MESSAGES/kdoctools5.mo share/locale/oc/LC_MESSAGES/kdoctools5.mo share/locale/pa/LC_MESSAGES/kdoctools5.mo share/locale/pl/LC_MESSAGES/kdoctools5.mo share/locale/pt/LC_MESSAGES/kdoctools5.mo share/locale/pt_BR/LC_MESSAGES/kdoctools5.mo share/locale/ro/LC_MESSAGES/kdoctools5.mo share/locale/ru/LC_MESSAGES/kdoctools5.mo share/locale/se/LC_MESSAGES/kdoctools5.mo share/locale/sk/LC_MESSAGES/kdoctools5.mo share/locale/sl/LC_MESSAGES/kdoctools5.mo share/locale/sq/LC_MESSAGES/kdoctools5.mo share/locale/sr/LC_MESSAGES/kdoctools5.mo share/locale/sr@ijekavian/LC_MESSAGES/kdoctools5.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kdoctools5.mo share/locale/sr@latin/LC_MESSAGES/kdoctools5.mo share/locale/sv/LC_MESSAGES/kdoctools5.mo share/locale/ta/LC_MESSAGES/kdoctools5.mo share/locale/tg/LC_MESSAGES/kdoctools5.mo share/locale/th/LC_MESSAGES/kdoctools5.mo share/locale/tr/LC_MESSAGES/kdoctools5.mo share/locale/ug/LC_MESSAGES/kdoctools5.mo share/locale/uk/LC_MESSAGES/kdoctools5.mo share/locale/uz/LC_MESSAGES/kdoctools5.mo share/locale/uz@cyrillic/LC_MESSAGES/kdoctools5.mo share/locale/vi/LC_MESSAGES/kdoctools5.mo share/locale/zh_CN/LC_MESSAGES/kdoctools5.mo share/locale/zh_TW/LC_MESSAGES/kdoctools5.mo Index: head/devel/kf5-kfilemetadata/Makefile =================================================================== --- head/devel/kf5-kfilemetadata/Makefile (revision 450055) +++ head/devel/kf5-kfilemetadata/Makefile (revision 450056) @@ -1,28 +1,27 @@ # Created by: tcberner # $FreeBSD$ PORTNAME= kfilemetadata PORTVERSION= ${KDE_FRAMEWORKS_VERSION} -PORTREVISION= 2 CATEGORIES= devel kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 library for extracting file metadata LIB_DEPENDS= libavutil.so:multimedia/ffmpeg \ libepub.so:textproc/ebook-tools \ libexiv2.so:graphics/exiv2 \ libpoppler-qt5.so:graphics/poppler-qt5 \ libtag.so:audio/taglib # TODO: maybe depend on textproc/catdoc USES= cmake:outsource compiler:c++11-lib gettext kde:5 pkgconfig \ tar:xz USE_KDE= archive ecm i18n USE_QT5= buildtools_build core qmake_build xml # Frameworks ports install localization files that conflict with some # KDE4 localization ports CONFLICTS_INSTALL= kde4-l10n-* .include Index: head/devel/kf5-kfilemetadata/distinfo =================================================================== --- head/devel/kf5-kfilemetadata/distinfo (revision 450055) +++ head/devel/kf5-kfilemetadata/distinfo (revision 450056) @@ -1,3 +1,3 @@ -TIMESTAMP = 1502086006 -SHA256 (KDE/frameworks/5.37.0/kfilemetadata-5.37.0.tar.xz) = 17e12d5e8d033e638ec727639ed3ebb0af3cfc71fd632167304c99d8aea9ab9e -SIZE (KDE/frameworks/5.37.0/kfilemetadata-5.37.0.tar.xz) = 218252 +TIMESTAMP = 1504433748 +SHA256 (KDE/frameworks/5.38.0/kfilemetadata-5.38.0.tar.xz) = 95ce8b047895d4b1efd34e841035147e282f03996e1d33d79f09a6d469ca25a0 +SIZE (KDE/frameworks/5.38.0/kfilemetadata-5.38.0.tar.xz) = 219736 Index: head/devel/kf5-kfilemetadata/pkg-plist =================================================================== --- head/devel/kf5-kfilemetadata/pkg-plist (revision 450055) +++ head/devel/kf5-kfilemetadata/pkg-plist (revision 450056) @@ -1,91 +1,92 @@ include/KF5/KFileMetaData/KFileMetaData/ExtractionResult include/KF5/KFileMetaData/KFileMetaData/Extractor include/KF5/KFileMetaData/KFileMetaData/ExtractorCollection include/KF5/KFileMetaData/KFileMetaData/ExtractorPlugin include/KF5/KFileMetaData/KFileMetaData/Properties include/KF5/KFileMetaData/KFileMetaData/PropertyInfo include/KF5/KFileMetaData/KFileMetaData/SimpleExtractionResult include/KF5/KFileMetaData/KFileMetaData/TypeInfo include/KF5/KFileMetaData/KFileMetaData/Types include/KF5/KFileMetaData/KFileMetaData/UserMetaData include/KF5/KFileMetaData/KFileMetaData/WriteData include/KF5/KFileMetaData/KFileMetaData/Writer include/KF5/KFileMetaData/KFileMetaData/WriterCollection include/KF5/KFileMetaData/KFileMetaData/WriterPlugin include/KF5/KFileMetaData/kfilemetadata/extractionresult.h include/KF5/KFileMetaData/kfilemetadata/extractor.h include/KF5/KFileMetaData/kfilemetadata/extractorcollection.h include/KF5/KFileMetaData/kfilemetadata/extractorplugin.h include/KF5/KFileMetaData/kfilemetadata/kfilemetadata_export.h include/KF5/KFileMetaData/kfilemetadata/properties.h include/KF5/KFileMetaData/kfilemetadata/propertyinfo.h include/KF5/KFileMetaData/kfilemetadata/simpleextractionresult.h include/KF5/KFileMetaData/kfilemetadata/typeinfo.h include/KF5/KFileMetaData/kfilemetadata/types.h include/KF5/KFileMetaData/kfilemetadata/usermetadata.h include/KF5/KFileMetaData/kfilemetadata/writedata.h include/KF5/KFileMetaData/kfilemetadata/writer.h include/KF5/KFileMetaData/kfilemetadata/writercollection.h include/KF5/KFileMetaData/kfilemetadata/writerplugin.h lib/cmake/KF5FileMetaData/KF5FileMetaDataConfig.cmake lib/cmake/KF5FileMetaData/KF5FileMetaDataConfigVersion.cmake lib/cmake/KF5FileMetaData/KF5FileMetaDataTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5FileMetaData/KF5FileMetaDataTargets.cmake lib/libKF5FileMetaData.so lib/libKF5FileMetaData.so.3 lib/libKF5FileMetaData.so.%%KDE_FRAMEWORKS_VERSION%% %%QT_PLUGINDIR%%/kf5/kfilemetadata/kfilemetadata_epubextractor.so %%QT_PLUGINDIR%%/kf5/kfilemetadata/kfilemetadata_exiv2extractor.so %%QT_PLUGINDIR%%/kf5/kfilemetadata/kfilemetadata_ffmpegextractor.so %%QT_PLUGINDIR%%/kf5/kfilemetadata/kfilemetadata_odfextractor.so %%QT_PLUGINDIR%%/kf5/kfilemetadata/kfilemetadata_office2007extractor.so %%QT_PLUGINDIR%%/kf5/kfilemetadata/kfilemetadata_officeextractor.so %%QT_PLUGINDIR%%/kf5/kfilemetadata/kfilemetadata_plaintextextractor.so %%QT_PLUGINDIR%%/kf5/kfilemetadata/kfilemetadata_poextractor.so %%QT_PLUGINDIR%%/kf5/kfilemetadata/kfilemetadata_popplerextractor.so %%QT_PLUGINDIR%%/kf5/kfilemetadata/kfilemetadata_taglibextractor.so %%QT_PLUGINDIR%%/kf5/kfilemetadata/writers/kfilemetadata_taglibwriter.so share/locale/ar/LC_MESSAGES/kfilemetadata5.mo share/locale/ast/LC_MESSAGES/kfilemetadata5.mo share/locale/bg/LC_MESSAGES/kfilemetadata5.mo share/locale/bs/LC_MESSAGES/kfilemetadata5.mo share/locale/ca/LC_MESSAGES/kfilemetadata5.mo share/locale/ca@valencia/LC_MESSAGES/kfilemetadata5.mo share/locale/cs/LC_MESSAGES/kfilemetadata5.mo share/locale/da/LC_MESSAGES/kfilemetadata5.mo share/locale/de/LC_MESSAGES/kfilemetadata5.mo share/locale/el/LC_MESSAGES/kfilemetadata5.mo share/locale/en_GB/LC_MESSAGES/kfilemetadata5.mo share/locale/es/LC_MESSAGES/kfilemetadata5.mo share/locale/et/LC_MESSAGES/kfilemetadata5.mo +share/locale/eu/LC_MESSAGES/kfilemetadata5.mo share/locale/fi/LC_MESSAGES/kfilemetadata5.mo share/locale/fr/LC_MESSAGES/kfilemetadata5.mo share/locale/gd/LC_MESSAGES/kfilemetadata5.mo share/locale/gl/LC_MESSAGES/kfilemetadata5.mo share/locale/hu/LC_MESSAGES/kfilemetadata5.mo share/locale/ia/LC_MESSAGES/kfilemetadata5.mo share/locale/it/LC_MESSAGES/kfilemetadata5.mo share/locale/ja/LC_MESSAGES/kfilemetadata5.mo share/locale/ko/LC_MESSAGES/kfilemetadata5.mo share/locale/lt/LC_MESSAGES/kfilemetadata5.mo share/locale/nb/LC_MESSAGES/kfilemetadata5.mo share/locale/nds/LC_MESSAGES/kfilemetadata5.mo share/locale/nn/LC_MESSAGES/kfilemetadata5.mo share/locale/nl/LC_MESSAGES/kfilemetadata5.mo share/locale/pa/LC_MESSAGES/kfilemetadata5.mo share/locale/pl/LC_MESSAGES/kfilemetadata5.mo share/locale/pt/LC_MESSAGES/kfilemetadata5.mo share/locale/pt_BR/LC_MESSAGES/kfilemetadata5.mo share/locale/ro/LC_MESSAGES/kfilemetadata5.mo share/locale/ru/LC_MESSAGES/kfilemetadata5.mo share/locale/sk/LC_MESSAGES/kfilemetadata5.mo share/locale/sl/LC_MESSAGES/kfilemetadata5.mo share/locale/sr/LC_MESSAGES/kfilemetadata5.mo share/locale/sr@ijekavian/LC_MESSAGES/kfilemetadata5.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kfilemetadata5.mo share/locale/sr@latin/LC_MESSAGES/kfilemetadata5.mo share/locale/sv/LC_MESSAGES/kfilemetadata5.mo share/locale/tr/LC_MESSAGES/kfilemetadata5.mo share/locale/uk/LC_MESSAGES/kfilemetadata5.mo share/locale/zh_CN/LC_MESSAGES/kfilemetadata5.mo share/locale/zh_TW/LC_MESSAGES/kfilemetadata5.mo Index: head/devel/kf5-ki18n/Makefile =================================================================== --- head/devel/kf5-ki18n/Makefile (revision 450055) +++ head/devel/kf5-ki18n/Makefile (revision 450056) @@ -1,17 +1,16 @@ # Created by: tcberner # $FreeBSD$ PORTNAME= ki18n PORTVERSION= ${KDE_FRAMEWORKS_VERSION} -PORTREVISION= 1 CATEGORIES= devel kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 advanced internationalization framework USES= cmake:outsource compiler:c++11-lib gettext-runtime \ gettext-tools:build,run kde:5 tar:xz USE_KDE= ecm USE_QT5= buildtools_build concurrent core qmake_build qml script testlib .include Index: head/devel/kf5-ki18n/distinfo =================================================================== --- head/devel/kf5-ki18n/distinfo (revision 450055) +++ head/devel/kf5-ki18n/distinfo (revision 450056) @@ -1,3 +1,3 @@ -TIMESTAMP = 1502086006 -SHA256 (KDE/frameworks/5.37.0/ki18n-5.37.0.tar.xz) = 4d94f4f676161507149886c6f9c4a16a17556bcb4b9c24b4549a53b82ef13ab0 -SIZE (KDE/frameworks/5.37.0/ki18n-5.37.0.tar.xz) = 586720 +TIMESTAMP = 1504433748 +SHA256 (KDE/frameworks/5.38.0/ki18n-5.38.0.tar.xz) = 240ccf22a65cf85da900c88afceac8bedc40b71a4d19bad526c03aa285cc2a7d +SIZE (KDE/frameworks/5.38.0/ki18n-5.38.0.tar.xz) = 586828 Index: head/devel/kf5-kidletime/Makefile =================================================================== --- head/devel/kf5-kidletime/Makefile (revision 450055) +++ head/devel/kf5-kidletime/Makefile (revision 450056) @@ -1,17 +1,16 @@ # Created by: tcberner # $FreeBSD$ PORTNAME= kidletime PORTVERSION= ${KDE_FRAMEWORKS_VERSION} -PORTREVISION= 1 CATEGORIES= devel kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 library for monitoring user activity USES= cmake:outsource compiler:c++11-lib kde:5 pkgconfig tar:xz USE_KDE= ecm USE_QT5= buildtools_build core dbus gui qmake_build widgets x11extras USE_XORG= ice sm x11 xext xcb xscrnsaver .include Index: head/devel/kf5-kidletime/distinfo =================================================================== --- head/devel/kf5-kidletime/distinfo (revision 450055) +++ head/devel/kf5-kidletime/distinfo (revision 450056) @@ -1,3 +1,3 @@ -TIMESTAMP = 1502086006 -SHA256 (KDE/frameworks/5.37.0/kidletime-5.37.0.tar.xz) = 3a472778722f38e5175ac55ff71a5e464ec98ecfd2ec759b7003612fe8c0a406 -SIZE (KDE/frameworks/5.37.0/kidletime-5.37.0.tar.xz) = 26608 +TIMESTAMP = 1504433749 +SHA256 (KDE/frameworks/5.38.0/kidletime-5.38.0.tar.xz) = 5bd30a316ea72a44ed4e4f7f11533e5aa74fc817f360f471b2658ac560e221c5 +SIZE (KDE/frameworks/5.38.0/kidletime-5.38.0.tar.xz) = 26620 Index: head/devel/kf5-kio/Makefile =================================================================== --- head/devel/kf5-kio/Makefile (revision 450055) +++ head/devel/kf5-kio/Makefile (revision 450056) @@ -1,23 +1,22 @@ # Created by: tcberner # $FreeBSD$ PORTNAME= kio PORTVERSION= ${KDE_FRAMEWORKS_VERSION} -PORTREVISION= 1 CATEGORIES= devel kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 resource and network access abstraction USES= cmake:outsource compiler:c++11-lib desktop-file-utils \ gettext kde:5 ssl tar:xz USE_GNOME= libxml2 libxslt USE_KDE= archive auth bookmarks codecs completion config \ configwidgets coreaddons dbusaddons doctools ecm \ i18n iconthemes itemviews jobwidgets \ notifications service solid sonnet textwidgets wallet \ widgetsaddons windowsystem xmlgui USE_QT5= buildtools_build concurrent core dbus gui network \ qmake_build script widgets x11extras xml .include Index: head/devel/kf5-kio/distinfo =================================================================== --- head/devel/kf5-kio/distinfo (revision 450055) +++ head/devel/kf5-kio/distinfo (revision 450056) @@ -1,3 +1,3 @@ -TIMESTAMP = 1502086006 -SHA256 (KDE/frameworks/5.37.0/kio-5.37.0.tar.xz) = 49448ebcfe182805f8f9cd40c1e2c8e686578cc2e7fa3688204d5ca4e182ac5b -SIZE (KDE/frameworks/5.37.0/kio-5.37.0.tar.xz) = 3084204 +TIMESTAMP = 1504433749 +SHA256 (KDE/frameworks/5.38.0/kio-5.38.0.tar.xz) = f43ab29c0ab51c78bd323e57fa6bba4aedf2d26d70df973b7ef7c80c9fc81597 +SIZE (KDE/frameworks/5.38.0/kio-5.38.0.tar.xz) = 3086436 Index: head/devel/kf5-kio/pkg-plist =================================================================== --- head/devel/kf5-kio/pkg-plist (revision 450055) +++ head/devel/kf5-kio/pkg-plist (revision 450056) @@ -1,1036 +1,1031 @@ bin/kcookiejar5 bin/ktelnetservice5 bin/ktrash5 bin/protocoltojson etc/xdg/accept-languages.codes etc/xdg/kshorturifilterrc include/KF5/KIOCore/KACL include/KF5/KIOCore/KCoreDirLister include/KF5/KIOCore/KDirNotify include/KF5/KIOCore/KDiskFreeSpaceInfo include/KF5/KIOCore/KFileItem include/KF5/KIOCore/KFileItemListProperties include/KF5/KIOCore/KIO/AuthInfo include/KF5/KIOCore/KIO/ChmodJob include/KF5/KIOCore/KIO/ConnectionServer include/KF5/KIOCore/KIO/CopyJob include/KF5/KIOCore/KIO/DavJob include/KF5/KIOCore/KIO/DeleteJob include/KF5/KIOCore/KIO/DesktopExecParser include/KF5/KIOCore/KIO/DirectorySizeJob include/KF5/KIOCore/KIO/EmptyTrashJob include/KF5/KIOCore/KIO/FileCopyJob include/KF5/KIOCore/KIO/FileJob include/KF5/KIOCore/KIO/FileSystemFreeSpaceJob include/KF5/KIOCore/KIO/ForwardingSlaveBase include/KF5/KIOCore/KIO/Global include/KF5/KIOCore/KIO/HostInfo include/KF5/KIOCore/KIO/IdleSlave include/KF5/KIOCore/KIO/Job include/KF5/KIOCore/KIO/JobTracker include/KF5/KIOCore/KIO/JobUiDelegateExtension include/KF5/KIOCore/KIO/JobUiDelegateFactory include/KF5/KIOCore/KIO/ListJob include/KF5/KIOCore/KIO/MetaData include/KF5/KIOCore/KIO/MimetypeJob include/KF5/KIOCore/KIO/MkdirJob include/KF5/KIOCore/KIO/MkpathJob include/KF5/KIOCore/KIO/MultiGetJob include/KF5/KIOCore/KIO/RestoreJob include/KF5/KIOCore/KIO/Scheduler include/KF5/KIOCore/KIO/SimpleJob include/KF5/KIOCore/KIO/Slave include/KF5/KIOCore/KIO/SlaveBase include/KF5/KIOCore/KIO/SlaveConfig include/KF5/KIOCore/KIO/SlaveInterface include/KF5/KIOCore/KIO/SpecialJob include/KF5/KIOCore/KIO/StatJob include/KF5/KIOCore/KIO/StoredTransferJob include/KF5/KIOCore/KIO/TCPSlaveBase include/KF5/KIOCore/KIO/TransferJob include/KF5/KIOCore/KIO/UDSEntry include/KF5/KIOCore/KMountPoint include/KF5/KIOCore/KNFSShare include/KF5/KIOCore/KPasswdServerClient include/KF5/KIOCore/KProtocolInfo include/KF5/KIOCore/KProtocolManager include/KF5/KIOCore/KRecentDocument include/KF5/KIOCore/KRemoteEncoding include/KF5/KIOCore/KSSLSettings include/KF5/KIOCore/KSambaShare include/KF5/KIOCore/KSambaShareData include/KF5/KIOCore/KSslCertificateManager include/KF5/KIOCore/KTcpSocket include/KF5/KIOCore/KUrlAuthorized include/KF5/KIOCore/kacl.h include/KF5/KIOCore/kcoredirlister.h include/KF5/KIOCore/kdirnotify.h include/KF5/KIOCore/kdiskfreespaceinfo.h include/KF5/KIOCore/kfileitem.h include/KF5/KIOCore/kfileitemlistproperties.h include/KF5/KIOCore/kio/authinfo.h include/KF5/KIOCore/kio/chmodjob.h include/KF5/KIOCore/kio/connectionserver.h include/KF5/KIOCore/kio/copyjob.h include/KF5/KIOCore/kio/davjob.h include/KF5/KIOCore/kio/deletejob.h include/KF5/KIOCore/kio/desktopexecparser.h include/KF5/KIOCore/kio/directorysizejob.h include/KF5/KIOCore/kio/emptytrashjob.h include/KF5/KIOCore/kio/filecopyjob.h include/KF5/KIOCore/kio/filejob.h include/KF5/KIOCore/kio/filesystemfreespacejob.h include/KF5/KIOCore/kio/forwardingslavebase.h include/KF5/KIOCore/kio/global.h include/KF5/KIOCore/kio/hostinfo.h include/KF5/KIOCore/kio/http_slave_defaults.h include/KF5/KIOCore/kio/idleslave.h include/KF5/KIOCore/kio/ioslave_defaults.h include/KF5/KIOCore/kio/job.h include/KF5/KIOCore/kio/job_base.h include/KF5/KIOCore/kio/jobclasses.h include/KF5/KIOCore/kio/jobtracker.h include/KF5/KIOCore/kio/jobuidelegateextension.h include/KF5/KIOCore/kio/jobuidelegatefactory.h include/KF5/KIOCore/kio/listjob.h include/KF5/KIOCore/kio/metadata.h include/KF5/KIOCore/kio/mimetypejob.h include/KF5/KIOCore/kio/mkdirjob.h include/KF5/KIOCore/kio/mkpathjob.h include/KF5/KIOCore/kio/multigetjob.h include/KF5/KIOCore/kio/restorejob.h include/KF5/KIOCore/kio/scheduler.h include/KF5/KIOCore/kio/simplejob.h include/KF5/KIOCore/kio/slave.h include/KF5/KIOCore/kio/slavebase.h include/KF5/KIOCore/kio/slaveconfig.h include/KF5/KIOCore/kio/slaveinterface.h include/KF5/KIOCore/kio/specialjob.h include/KF5/KIOCore/kio/statjob.h include/KF5/KIOCore/kio/storedtransferjob.h include/KF5/KIOCore/kio/tcpslavebase.h include/KF5/KIOCore/kio/transferjob.h include/KF5/KIOCore/kio/udsentry.h include/KF5/KIOCore/kiocore_export.h include/KF5/KIOCore/kmountpoint.h include/KF5/KIOCore/knfsshare.h include/KF5/KIOCore/kpasswdserverclient.h include/KF5/KIOCore/kprotocolinfo.h include/KF5/KIOCore/kprotocolmanager.h include/KF5/KIOCore/krecentdocument.h include/KF5/KIOCore/kremoteencoding.h include/KF5/KIOCore/ksambashare.h include/KF5/KIOCore/ksambasharedata.h include/KF5/KIOCore/ksslcertificatemanager.h include/KF5/KIOCore/ksslcertificatemanager_p.h include/KF5/KIOCore/ksslsettings.h include/KF5/KIOCore/ktcpsocket.h include/KF5/KIOCore/kurlauthorized.h include/KF5/KIOFileWidgets/KAbstractViewAdapter include/KF5/KIOFileWidgets/KDirOperator include/KF5/KIOFileWidgets/KDirSortFilterProxyModel include/KF5/KIOFileWidgets/KEncodingFileDialog include/KF5/KIOFileWidgets/KFileCopyToMenu include/KF5/KIOFileWidgets/KFileFilterCombo include/KF5/KIOFileWidgets/KFilePlacesModel include/KF5/KIOFileWidgets/KFilePlacesView include/KF5/KIOFileWidgets/KFilePreviewGenerator include/KF5/KIOFileWidgets/KFileWidget include/KF5/KIOFileWidgets/KImageFilePreview include/KF5/KIOFileWidgets/KNameAndUrlInputDialog include/KF5/KIOFileWidgets/KNewFileMenu include/KF5/KIOFileWidgets/KPreviewWidgetBase include/KF5/KIOFileWidgets/KRecentDirs include/KF5/KIOFileWidgets/KStatusBarOfflineIndicator include/KF5/KIOFileWidgets/KUrlNavigator include/KF5/KIOFileWidgets/kabstractviewadapter.h include/KF5/KIOFileWidgets/kdiroperator.h include/KF5/KIOFileWidgets/kdirsortfilterproxymodel.h include/KF5/KIOFileWidgets/kencodingfiledialog.h include/KF5/KIOFileWidgets/kfilecopytomenu.h include/KF5/KIOFileWidgets/kfilefiltercombo.h include/KF5/KIOFileWidgets/kfileplacesmodel.h include/KF5/KIOFileWidgets/kfileplacesview.h include/KF5/KIOFileWidgets/kfilepreviewgenerator.h include/KF5/KIOFileWidgets/kfilewidget.h include/KF5/KIOFileWidgets/kimagefilepreview.h include/KF5/KIOFileWidgets/kiofilewidgets_export.h include/KF5/KIOFileWidgets/knameandurlinputdialog.h include/KF5/KIOFileWidgets/knewfilemenu.h include/KF5/KIOFileWidgets/kpreviewwidgetbase.h include/KF5/KIOFileWidgets/krecentdirs.h include/KF5/KIOFileWidgets/kstatusbarofflineindicator.h include/KF5/KIOFileWidgets/kurlnavigator.h include/KF5/KIOGui/KIO/FavIconRequestJob include/KF5/KIOGui/kio/faviconrequestjob.h include/KF5/KIOGui/kiogui_export.h include/KF5/KIOWidgets/KAbstractFileItemActionPlugin include/KF5/KIOWidgets/KAutoMount include/KF5/KIOWidgets/KBuildSycocaProgressDialog include/KF5/KIOWidgets/KDesktopFileActions include/KF5/KIOWidgets/KDirLister include/KF5/KIOWidgets/KDirModel include/KF5/KIOWidgets/KFile include/KF5/KIOWidgets/KFileItemActions include/KF5/KIOWidgets/KFileItemDelegate include/KF5/KIOWidgets/KIO/AccessManager include/KF5/KIOWidgets/KIO/DndPopupMenuPlugin include/KF5/KIOWidgets/KIO/DropJob include/KF5/KIOWidgets/KIO/FileUndoManager include/KF5/KIOWidgets/KIO/JobUiDelegate include/KF5/KIOWidgets/KIO/KUriFilterSearchProviderActions include/KF5/KIOWidgets/KIO/OpenFileManagerWindowJob include/KF5/KIOWidgets/KIO/Paste include/KF5/KIOWidgets/KIO/PasteJob include/KF5/KIOWidgets/KIO/PixmapLoader include/KF5/KIOWidgets/KIO/PreviewJob include/KF5/KIOWidgets/KIO/RenameDialog include/KF5/KIOWidgets/KIO/SkipDialog include/KF5/KIOWidgets/KIO/SslUi include/KF5/KIOWidgets/KIO/ThumbCreator include/KF5/KIOWidgets/KIO/ThumbSequenceCreator include/KF5/KIOWidgets/KOpenWithDialog include/KF5/KIOWidgets/KOverlayIconPlugin include/KF5/KIOWidgets/KPropertiesDialog include/KF5/KIOWidgets/KRun include/KF5/KIOWidgets/KShellCompletion include/KF5/KIOWidgets/KSslCertificateBox include/KF5/KIOWidgets/KSslInfoDialog include/KF5/KIOWidgets/KUriFilter include/KF5/KIOWidgets/KUrlComboBox include/KF5/KIOWidgets/KUrlCompletion include/KF5/KIOWidgets/KUrlPixmapProvider include/KF5/KIOWidgets/KUrlRequester include/KF5/KIOWidgets/KUrlRequesterDialog include/KF5/KIOWidgets/kabstractfileitemactionplugin.h include/KF5/KIOWidgets/kautomount.h include/KF5/KIOWidgets/kbuildsycocaprogressdialog.h include/KF5/KIOWidgets/kdesktopfileactions.h include/KF5/KIOWidgets/kdirlister.h include/KF5/KIOWidgets/kdirmodel.h include/KF5/KIOWidgets/kfile.h include/KF5/KIOWidgets/kfileitemactions.h include/KF5/KIOWidgets/kfileitemdelegate.h include/KF5/KIOWidgets/kio/accessmanager.h include/KF5/KIOWidgets/kio/dndpopupmenuplugin.h include/KF5/KIOWidgets/kio/dropjob.h include/KF5/KIOWidgets/kio/fileundomanager.h include/KF5/KIOWidgets/kio/jobuidelegate.h include/KF5/KIOWidgets/kio/kurifiltersearchprovideractions.h include/KF5/KIOWidgets/kio/openfilemanagerwindowjob.h include/KF5/KIOWidgets/kio/paste.h include/KF5/KIOWidgets/kio/pastejob.h include/KF5/KIOWidgets/kio/pixmaploader.h include/KF5/KIOWidgets/kio/previewjob.h include/KF5/KIOWidgets/kio/renamedialog.h include/KF5/KIOWidgets/kio/skipdialog.h include/KF5/KIOWidgets/kio/sslui.h include/KF5/KIOWidgets/kio/thumbcreator.h include/KF5/KIOWidgets/kio/thumbsequencecreator.h include/KF5/KIOWidgets/kiowidgets_export.h include/KF5/KIOWidgets/kopenwithdialog.h include/KF5/KIOWidgets/koverlayiconplugin.h include/KF5/KIOWidgets/kpropertiesdialog.h include/KF5/KIOWidgets/krun.h include/KF5/KIOWidgets/kshellcompletion.h include/KF5/KIOWidgets/ksslcertificatebox.h include/KF5/KIOWidgets/ksslinfodialog.h include/KF5/KIOWidgets/kurifilter.h include/KF5/KIOWidgets/kurlcombobox.h include/KF5/KIOWidgets/kurlcompletion.h include/KF5/KIOWidgets/kurlpixmapprovider.h include/KF5/KIOWidgets/kurlrequester.h include/KF5/KIOWidgets/kurlrequesterdialog.h include/KF5/kio/kntlm.h include/KF5/kio/kntlm_export.h include/KF5/kio_version.h lib/cmake/KF5KIO/KF5KIOConfig.cmake lib/cmake/KF5KIO/KF5KIOConfigVersion.cmake lib/cmake/KF5KIO/KF5KIOTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5KIO/KF5KIOTargets.cmake lib/libKF5KIOCore.so lib/libKF5KIOCore.so.5 lib/libKF5KIOCore.so.%%KDE_FRAMEWORKS_VERSION%% lib/libKF5KIOFileWidgets.so lib/libKF5KIOFileWidgets.so.5 lib/libKF5KIOFileWidgets.so.%%KDE_FRAMEWORKS_VERSION%% lib/libKF5KIOGui.so lib/libKF5KIOGui.so.5 lib/libKF5KIOGui.so.%%KDE_FRAMEWORKS_VERSION%% lib/libKF5KIONTLM.so lib/libKF5KIONTLM.so.5 lib/libKF5KIONTLM.so.%%KDE_FRAMEWORKS_VERSION%% lib/libKF5KIOWidgets.so lib/libKF5KIOWidgets.so.5 lib/libKF5KIOWidgets.so.%%KDE_FRAMEWORKS_VERSION%% lib/libexec/kf5/kio_http_cache_cleaner lib/libexec/kf5/kiod5 lib/libexec/kf5/kioexec lib/libexec/kf5/kioslave lib/libexec/kf5/kpac_dhcp_helper %%QT_MKSPECDIR%%/modules/qt_KIOCore.pri %%QT_MKSPECDIR%%/modules/qt_KIOFileWidgets.pri %%QT_MKSPECDIR%%/modules/qt_KIOGui.pri %%QT_MKSPECDIR%%/modules/qt_KIOWidgets.pri %%QT_MKSPECDIR%%/modules/qt_KNTLM.pri %%QT_PLUGINDIR%%/kcm_kio.so %%QT_PLUGINDIR%%/kcm_trash.so %%QT_PLUGINDIR%%/kcm_webshortcuts.so %%QT_PLUGINDIR%%/kf5/kded/kcookiejar.so %%QT_PLUGINDIR%%/kf5/kded/proxyscout.so %%QT_PLUGINDIR%%/kf5/kded/remotenotifier.so %%QT_PLUGINDIR%%/kf5/kio/file.so %%QT_PLUGINDIR%%/kf5/kio/ftp.so %%QT_PLUGINDIR%%/kf5/kio/ghelp.so %%QT_PLUGINDIR%%/kf5/kio/help.so %%QT_PLUGINDIR%%/kf5/kio/http.so %%QT_PLUGINDIR%%/kf5/kio/remote.so %%QT_PLUGINDIR%%/kf5/kio/trash.so %%QT_PLUGINDIR%%/kf5/kiod/kioexecd.so %%QT_PLUGINDIR%%/kf5/kiod/kpasswdserver.so %%QT_PLUGINDIR%%/kf5/kiod/kssld.so %%QT_PLUGINDIR%%/kf5/urifilters/fixhosturifilter.so %%QT_PLUGINDIR%%/kf5/urifilters/kshorturifilter.so %%QT_PLUGINDIR%%/kf5/urifilters/kuriikwsfilter.so %%QT_PLUGINDIR%%/kf5/urifilters/kurisearchfilter.so %%QT_PLUGINDIR%%/kf5/urifilters/localdomainurifilter.so man/ca/man8/kcookiejar5.8.gz man/de/man8/kcookiejar5.8.gz man/es/man8/kcookiejar5.8.gz man/it/man8/kcookiejar5.8.gz man/man8/kcookiejar5.8.gz man/nl/man8/kcookiejar5.8.gz man/pt/man8/kcookiejar5.8.gz man/pt_BR/man8/kcookiejar5.8.gz man/sv/man8/kcookiejar5.8.gz man/uk/man8/kcookiejar5.8.gz share/applications/ktelnetservice5.desktop share/dbus-1/interfaces/kf5_org.kde.KCookieServer.xml share/dbus-1/interfaces/kf5_org.kde.KDirNotify.xml share/dbus-1/interfaces/kf5_org.kde.KPasswdServer.xml share/dbus-1/interfaces/kf5_org.kde.KSlaveLauncher.xml share/dbus-1/interfaces/kf5_org.kde.kio.FileUndoManager.xml share/dbus-1/services/org.kde.kcookiejar5.service share/dbus-1/services/org.kde.kiod5.service share/dbus-1/services/org.kde.kioexecd.service share/dbus-1/services/org.kde.kpasswdserver.service share/dbus-1/services/org.kde.kssld5.service share/doc/HTML/ca/kcontrol5/cache/index.cache.bz2 share/doc/HTML/ca/kcontrol5/cache/index.docbook share/doc/HTML/ca/kcontrol5/cookies/index.cache.bz2 share/doc/HTML/ca/kcontrol5/cookies/index.docbook share/doc/HTML/ca/kcontrol5/netpref/index.cache.bz2 share/doc/HTML/ca/kcontrol5/netpref/index.docbook share/doc/HTML/ca/kcontrol5/proxy/index.cache.bz2 share/doc/HTML/ca/kcontrol5/proxy/index.docbook share/doc/HTML/ca/kcontrol5/smb/index.cache.bz2 share/doc/HTML/ca/kcontrol5/smb/index.docbook share/doc/HTML/ca/kcontrol5/trash/index.cache.bz2 share/doc/HTML/ca/kcontrol5/trash/index.docbook share/doc/HTML/ca/kcontrol5/useragent/index.cache.bz2 share/doc/HTML/ca/kcontrol5/useragent/index.docbook share/doc/HTML/ca/kcontrol5/webshortcuts/index.cache.bz2 share/doc/HTML/ca/kcontrol5/webshortcuts/index.docbook share/doc/HTML/ca/kioslave5/data/index.cache.bz2 share/doc/HTML/ca/kioslave5/data/index.docbook share/doc/HTML/ca/kioslave5/file/index.cache.bz2 share/doc/HTML/ca/kioslave5/file/index.docbook share/doc/HTML/ca/kioslave5/ftp/index.cache.bz2 share/doc/HTML/ca/kioslave5/ftp/index.docbook share/doc/HTML/ca/kioslave5/help/documentationnotfound/index.cache.bz2 share/doc/HTML/ca/kioslave5/help/documentationnotfound/index.docbook share/doc/HTML/ca/kioslave5/help/index.cache.bz2 share/doc/HTML/ca/kioslave5/help/index.docbook share/doc/HTML/ca/kioslave5/http/index.cache.bz2 share/doc/HTML/ca/kioslave5/http/index.docbook share/doc/HTML/ca/kioslave5/mailto/index.cache.bz2 share/doc/HTML/ca/kioslave5/mailto/index.docbook share/doc/HTML/ca/kioslave5/telnet/index.cache.bz2 share/doc/HTML/ca/kioslave5/telnet/index.docbook share/doc/HTML/ca/kioslave5/webdav/index.cache.bz2 share/doc/HTML/ca/kioslave5/webdav/index.docbook share/doc/HTML/de/kcontrol5/cache/index.cache.bz2 share/doc/HTML/de/kcontrol5/cache/index.docbook share/doc/HTML/de/kcontrol5/cookies/index.cache.bz2 share/doc/HTML/de/kcontrol5/cookies/index.docbook share/doc/HTML/de/kcontrol5/netpref/index.cache.bz2 share/doc/HTML/de/kcontrol5/netpref/index.docbook share/doc/HTML/de/kcontrol5/proxy/index.cache.bz2 share/doc/HTML/de/kcontrol5/proxy/index.docbook share/doc/HTML/de/kcontrol5/smb/index.cache.bz2 share/doc/HTML/de/kcontrol5/smb/index.docbook share/doc/HTML/de/kcontrol5/trash/index.cache.bz2 share/doc/HTML/de/kcontrol5/trash/index.docbook share/doc/HTML/de/kcontrol5/useragent/index.cache.bz2 share/doc/HTML/de/kcontrol5/useragent/index.docbook share/doc/HTML/de/kcontrol5/webshortcuts/index.cache.bz2 share/doc/HTML/de/kcontrol5/webshortcuts/index.docbook share/doc/HTML/de/kioslave5/data/index.cache.bz2 share/doc/HTML/de/kioslave5/data/index.docbook share/doc/HTML/de/kioslave5/file/index.cache.bz2 share/doc/HTML/de/kioslave5/file/index.docbook share/doc/HTML/de/kioslave5/ftp/index.cache.bz2 share/doc/HTML/de/kioslave5/ftp/index.docbook share/doc/HTML/de/kioslave5/help/documentationnotfound/index.cache.bz2 share/doc/HTML/de/kioslave5/help/documentationnotfound/index.docbook share/doc/HTML/de/kioslave5/help/index.cache.bz2 share/doc/HTML/de/kioslave5/help/index.docbook share/doc/HTML/de/kioslave5/http/index.cache.bz2 share/doc/HTML/de/kioslave5/http/index.docbook share/doc/HTML/de/kioslave5/mailto/index.cache.bz2 share/doc/HTML/de/kioslave5/mailto/index.docbook share/doc/HTML/de/kioslave5/telnet/index.cache.bz2 share/doc/HTML/de/kioslave5/telnet/index.docbook share/doc/HTML/de/kioslave5/webdav/index.cache.bz2 share/doc/HTML/de/kioslave5/webdav/index.docbook share/doc/HTML/en/kcontrol5/cache/index.cache.bz2 share/doc/HTML/en/kcontrol5/cache/index.docbook share/doc/HTML/en/kcontrol5/cookies/index.cache.bz2 share/doc/HTML/en/kcontrol5/cookies/index.docbook share/doc/HTML/en/kcontrol5/netpref/index.cache.bz2 share/doc/HTML/en/kcontrol5/netpref/index.docbook share/doc/HTML/en/kcontrol5/proxy/index.cache.bz2 share/doc/HTML/en/kcontrol5/proxy/index.docbook share/doc/HTML/en/kcontrol5/smb/index.cache.bz2 share/doc/HTML/en/kcontrol5/smb/index.docbook share/doc/HTML/en/kcontrol5/trash/index.cache.bz2 share/doc/HTML/en/kcontrol5/trash/index.docbook share/doc/HTML/en/kcontrol5/useragent/index.cache.bz2 share/doc/HTML/en/kcontrol5/useragent/index.docbook share/doc/HTML/en/kcontrol5/webshortcuts/index.cache.bz2 share/doc/HTML/en/kcontrol5/webshortcuts/index.docbook share/doc/HTML/en/kioslave5/data/index.cache.bz2 share/doc/HTML/en/kioslave5/data/index.docbook share/doc/HTML/en/kioslave5/file/index.cache.bz2 share/doc/HTML/en/kioslave5/file/index.docbook share/doc/HTML/en/kioslave5/ftp/index.cache.bz2 share/doc/HTML/en/kioslave5/ftp/index.docbook share/doc/HTML/en/kioslave5/help/documentationnotfound/index.cache.bz2 share/doc/HTML/en/kioslave5/help/documentationnotfound/index.docbook share/doc/HTML/en/kioslave5/help/index.cache.bz2 share/doc/HTML/en/kioslave5/help/index.docbook share/doc/HTML/en/kioslave5/http/index.cache.bz2 share/doc/HTML/en/kioslave5/http/index.docbook share/doc/HTML/en/kioslave5/mailto/index.cache.bz2 share/doc/HTML/en/kioslave5/mailto/index.docbook share/doc/HTML/en/kioslave5/telnet/index.cache.bz2 share/doc/HTML/en/kioslave5/telnet/index.docbook share/doc/HTML/en/kioslave5/webdav/index.cache.bz2 share/doc/HTML/en/kioslave5/webdav/index.docbook share/doc/HTML/es/kcontrol5/cache/index.cache.bz2 share/doc/HTML/es/kcontrol5/cache/index.docbook share/doc/HTML/es/kcontrol5/cookies/index.cache.bz2 share/doc/HTML/es/kcontrol5/cookies/index.docbook share/doc/HTML/es/kcontrol5/netpref/index.cache.bz2 share/doc/HTML/es/kcontrol5/netpref/index.docbook share/doc/HTML/es/kcontrol5/proxy/index.cache.bz2 share/doc/HTML/es/kcontrol5/proxy/index.docbook share/doc/HTML/es/kcontrol5/smb/index.cache.bz2 share/doc/HTML/es/kcontrol5/smb/index.docbook share/doc/HTML/es/kcontrol5/trash/index.cache.bz2 share/doc/HTML/es/kcontrol5/trash/index.docbook share/doc/HTML/es/kcontrol5/useragent/index.cache.bz2 share/doc/HTML/es/kcontrol5/useragent/index.docbook share/doc/HTML/es/kcontrol5/webshortcuts/index.cache.bz2 share/doc/HTML/es/kcontrol5/webshortcuts/index.docbook share/doc/HTML/es/kioslave5/data/index.cache.bz2 share/doc/HTML/es/kioslave5/data/index.docbook share/doc/HTML/es/kioslave5/file/index.cache.bz2 share/doc/HTML/es/kioslave5/file/index.docbook share/doc/HTML/es/kioslave5/ftp/index.cache.bz2 share/doc/HTML/es/kioslave5/ftp/index.docbook share/doc/HTML/es/kioslave5/help/documentationnotfound/index.cache.bz2 share/doc/HTML/es/kioslave5/help/documentationnotfound/index.docbook share/doc/HTML/es/kioslave5/help/index.cache.bz2 share/doc/HTML/es/kioslave5/help/index.docbook share/doc/HTML/es/kioslave5/http/index.cache.bz2 share/doc/HTML/es/kioslave5/http/index.docbook share/doc/HTML/es/kioslave5/mailto/index.cache.bz2 share/doc/HTML/es/kioslave5/mailto/index.docbook share/doc/HTML/es/kioslave5/telnet/index.cache.bz2 share/doc/HTML/es/kioslave5/telnet/index.docbook share/doc/HTML/es/kioslave5/webdav/index.cache.bz2 share/doc/HTML/es/kioslave5/webdav/index.docbook share/doc/HTML/et/kioslave5/data/index.cache.bz2 share/doc/HTML/et/kioslave5/data/index.docbook share/doc/HTML/et/kioslave5/file/index.cache.bz2 share/doc/HTML/et/kioslave5/file/index.docbook share/doc/HTML/et/kioslave5/ftp/index.cache.bz2 share/doc/HTML/et/kioslave5/ftp/index.docbook share/doc/HTML/et/kioslave5/help/index.cache.bz2 share/doc/HTML/et/kioslave5/help/index.docbook share/doc/HTML/et/kioslave5/http/index.cache.bz2 share/doc/HTML/et/kioslave5/http/index.docbook share/doc/HTML/et/kioslave5/mailto/index.cache.bz2 share/doc/HTML/et/kioslave5/mailto/index.docbook share/doc/HTML/et/kioslave5/telnet/index.cache.bz2 share/doc/HTML/et/kioslave5/telnet/index.docbook share/doc/HTML/et/kioslave5/webdav/index.cache.bz2 share/doc/HTML/et/kioslave5/webdav/index.docbook share/doc/HTML/it/kcontrol5/cache/index.cache.bz2 share/doc/HTML/it/kcontrol5/cache/index.docbook share/doc/HTML/it/kcontrol5/cookies/index.cache.bz2 share/doc/HTML/it/kcontrol5/cookies/index.docbook share/doc/HTML/it/kcontrol5/netpref/index.cache.bz2 share/doc/HTML/it/kcontrol5/netpref/index.docbook share/doc/HTML/it/kcontrol5/proxy/index.cache.bz2 share/doc/HTML/it/kcontrol5/proxy/index.docbook share/doc/HTML/it/kcontrol5/smb/index.cache.bz2 share/doc/HTML/it/kcontrol5/smb/index.docbook share/doc/HTML/it/kcontrol5/trash/index.cache.bz2 share/doc/HTML/it/kcontrol5/trash/index.docbook share/doc/HTML/it/kcontrol5/useragent/index.cache.bz2 share/doc/HTML/it/kcontrol5/useragent/index.docbook share/doc/HTML/it/kcontrol5/webshortcuts/index.cache.bz2 share/doc/HTML/it/kcontrol5/webshortcuts/index.docbook share/doc/HTML/it/kioslave5/data/index.cache.bz2 share/doc/HTML/it/kioslave5/data/index.docbook share/doc/HTML/it/kioslave5/file/index.cache.bz2 share/doc/HTML/it/kioslave5/file/index.docbook share/doc/HTML/it/kioslave5/ftp/index.cache.bz2 share/doc/HTML/it/kioslave5/ftp/index.docbook share/doc/HTML/it/kioslave5/help/documentationnotfound/index.cache.bz2 share/doc/HTML/it/kioslave5/help/documentationnotfound/index.docbook share/doc/HTML/it/kioslave5/help/index.cache.bz2 share/doc/HTML/it/kioslave5/help/index.docbook share/doc/HTML/it/kioslave5/http/index.cache.bz2 share/doc/HTML/it/kioslave5/http/index.docbook share/doc/HTML/it/kioslave5/mailto/index.cache.bz2 share/doc/HTML/it/kioslave5/mailto/index.docbook share/doc/HTML/it/kioslave5/telnet/index.cache.bz2 share/doc/HTML/it/kioslave5/telnet/index.docbook share/doc/HTML/it/kioslave5/webdav/index.cache.bz2 share/doc/HTML/it/kioslave5/webdav/index.docbook share/doc/HTML/nb/kcontrol5/trash/index.cache.bz2 share/doc/HTML/nb/kcontrol5/trash/index.docbook share/doc/HTML/nl/kcontrol5/cache/index.cache.bz2 share/doc/HTML/nl/kcontrol5/cache/index.docbook share/doc/HTML/nl/kcontrol5/cookies/index.cache.bz2 share/doc/HTML/nl/kcontrol5/cookies/index.docbook share/doc/HTML/nl/kcontrol5/netpref/index.cache.bz2 share/doc/HTML/nl/kcontrol5/netpref/index.docbook share/doc/HTML/nl/kcontrol5/proxy/index.cache.bz2 share/doc/HTML/nl/kcontrol5/proxy/index.docbook share/doc/HTML/nl/kcontrol5/smb/index.cache.bz2 share/doc/HTML/nl/kcontrol5/smb/index.docbook share/doc/HTML/nl/kcontrol5/trash/index.cache.bz2 share/doc/HTML/nl/kcontrol5/trash/index.docbook share/doc/HTML/nl/kcontrol5/useragent/index.cache.bz2 share/doc/HTML/nl/kcontrol5/useragent/index.docbook share/doc/HTML/nl/kcontrol5/webshortcuts/index.cache.bz2 share/doc/HTML/nl/kcontrol5/webshortcuts/index.docbook share/doc/HTML/nl/kioslave5/data/index.cache.bz2 share/doc/HTML/nl/kioslave5/data/index.docbook share/doc/HTML/nl/kioslave5/file/index.cache.bz2 share/doc/HTML/nl/kioslave5/file/index.docbook share/doc/HTML/nl/kioslave5/ftp/index.cache.bz2 share/doc/HTML/nl/kioslave5/ftp/index.docbook share/doc/HTML/nl/kioslave5/help/documentationnotfound/index.cache.bz2 share/doc/HTML/nl/kioslave5/help/documentationnotfound/index.docbook share/doc/HTML/nl/kioslave5/help/index.cache.bz2 share/doc/HTML/nl/kioslave5/help/index.docbook share/doc/HTML/nl/kioslave5/http/index.cache.bz2 share/doc/HTML/nl/kioslave5/http/index.docbook share/doc/HTML/nl/kioslave5/mailto/index.cache.bz2 share/doc/HTML/nl/kioslave5/mailto/index.docbook share/doc/HTML/nl/kioslave5/telnet/index.cache.bz2 share/doc/HTML/nl/kioslave5/telnet/index.docbook share/doc/HTML/nl/kioslave5/webdav/index.cache.bz2 share/doc/HTML/nl/kioslave5/webdav/index.docbook share/doc/HTML/pt/kcontrol5/cache/index.cache.bz2 share/doc/HTML/pt/kcontrol5/cache/index.docbook share/doc/HTML/pt/kcontrol5/cookies/index.cache.bz2 share/doc/HTML/pt/kcontrol5/cookies/index.docbook share/doc/HTML/pt/kcontrol5/netpref/index.cache.bz2 share/doc/HTML/pt/kcontrol5/netpref/index.docbook share/doc/HTML/pt/kcontrol5/proxy/index.cache.bz2 share/doc/HTML/pt/kcontrol5/proxy/index.docbook share/doc/HTML/pt/kcontrol5/smb/index.cache.bz2 share/doc/HTML/pt/kcontrol5/smb/index.docbook share/doc/HTML/pt/kcontrol5/trash/index.cache.bz2 share/doc/HTML/pt/kcontrol5/trash/index.docbook share/doc/HTML/pt/kcontrol5/useragent/index.cache.bz2 share/doc/HTML/pt/kcontrol5/useragent/index.docbook share/doc/HTML/pt/kcontrol5/webshortcuts/index.cache.bz2 share/doc/HTML/pt/kcontrol5/webshortcuts/index.docbook share/doc/HTML/pt/kioslave5/data/index.cache.bz2 share/doc/HTML/pt/kioslave5/data/index.docbook share/doc/HTML/pt/kioslave5/file/index.cache.bz2 share/doc/HTML/pt/kioslave5/file/index.docbook share/doc/HTML/pt/kioslave5/ftp/index.cache.bz2 share/doc/HTML/pt/kioslave5/ftp/index.docbook share/doc/HTML/pt/kioslave5/help/documentationnotfound/index.cache.bz2 share/doc/HTML/pt/kioslave5/help/documentationnotfound/index.docbook share/doc/HTML/pt/kioslave5/help/index.cache.bz2 share/doc/HTML/pt/kioslave5/help/index.docbook share/doc/HTML/pt/kioslave5/http/index.cache.bz2 share/doc/HTML/pt/kioslave5/http/index.docbook share/doc/HTML/pt/kioslave5/mailto/index.cache.bz2 share/doc/HTML/pt/kioslave5/mailto/index.docbook share/doc/HTML/pt/kioslave5/telnet/index.cache.bz2 share/doc/HTML/pt/kioslave5/telnet/index.docbook share/doc/HTML/pt/kioslave5/webdav/index.cache.bz2 share/doc/HTML/pt/kioslave5/webdav/index.docbook share/doc/HTML/pt_BR/kcontrol5/cache/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol5/cache/index.docbook share/doc/HTML/pt_BR/kcontrol5/cookies/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol5/cookies/index.docbook share/doc/HTML/pt_BR/kcontrol5/netpref/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol5/netpref/index.docbook share/doc/HTML/pt_BR/kcontrol5/proxy/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol5/proxy/index.docbook share/doc/HTML/pt_BR/kcontrol5/smb/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol5/smb/index.docbook share/doc/HTML/pt_BR/kcontrol5/trash/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol5/trash/index.docbook share/doc/HTML/pt_BR/kcontrol5/useragent/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol5/useragent/index.docbook share/doc/HTML/pt_BR/kcontrol5/webshortcuts/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol5/webshortcuts/index.docbook share/doc/HTML/pt_BR/kioslave5/data/index.cache.bz2 share/doc/HTML/pt_BR/kioslave5/data/index.docbook share/doc/HTML/pt_BR/kioslave5/file/index.cache.bz2 share/doc/HTML/pt_BR/kioslave5/file/index.docbook share/doc/HTML/pt_BR/kioslave5/ftp/index.cache.bz2 share/doc/HTML/pt_BR/kioslave5/ftp/index.docbook share/doc/HTML/pt_BR/kioslave5/help/documentationnotfound/index.cache.bz2 share/doc/HTML/pt_BR/kioslave5/help/documentationnotfound/index.docbook share/doc/HTML/pt_BR/kioslave5/help/index.cache.bz2 share/doc/HTML/pt_BR/kioslave5/help/index.docbook share/doc/HTML/pt_BR/kioslave5/http/index.cache.bz2 share/doc/HTML/pt_BR/kioslave5/http/index.docbook share/doc/HTML/pt_BR/kioslave5/mailto/index.cache.bz2 share/doc/HTML/pt_BR/kioslave5/mailto/index.docbook share/doc/HTML/pt_BR/kioslave5/telnet/index.cache.bz2 share/doc/HTML/pt_BR/kioslave5/telnet/index.docbook share/doc/HTML/pt_BR/kioslave5/webdav/index.cache.bz2 share/doc/HTML/pt_BR/kioslave5/webdav/index.docbook share/doc/HTML/ru/kioslave5/data/index.cache.bz2 share/doc/HTML/ru/kioslave5/data/index.docbook share/doc/HTML/ru/kioslave5/file/index.cache.bz2 share/doc/HTML/ru/kioslave5/file/index.docbook share/doc/HTML/ru/kioslave5/ftp/index.cache.bz2 share/doc/HTML/ru/kioslave5/ftp/index.docbook share/doc/HTML/ru/kioslave5/help/index.cache.bz2 share/doc/HTML/ru/kioslave5/help/index.docbook share/doc/HTML/ru/kioslave5/telnet/index.cache.bz2 share/doc/HTML/ru/kioslave5/telnet/index.docbook share/doc/HTML/ru/kioslave5/webdav/index.cache.bz2 share/doc/HTML/ru/kioslave5/webdav/index.docbook share/doc/HTML/sr/kcontrol5/cache/index.cache.bz2 share/doc/HTML/sr/kcontrol5/cache/index.docbook share/doc/HTML/sr/kcontrol5/cookies/index.cache.bz2 share/doc/HTML/sr/kcontrol5/cookies/index.docbook share/doc/HTML/sr/kcontrol5/netpref/index.cache.bz2 share/doc/HTML/sr/kcontrol5/netpref/index.docbook share/doc/HTML/sr/kcontrol5/proxy/index.cache.bz2 share/doc/HTML/sr/kcontrol5/proxy/index.docbook share/doc/HTML/sr/kcontrol5/smb/index.cache.bz2 share/doc/HTML/sr/kcontrol5/smb/index.docbook share/doc/HTML/sr/kcontrol5/useragent/index.cache.bz2 share/doc/HTML/sr/kcontrol5/useragent/index.docbook share/doc/HTML/sr/kcontrol5/webshortcuts/index.cache.bz2 share/doc/HTML/sr/kcontrol5/webshortcuts/index.docbook share/doc/HTML/sr/kioslave5/data/index.cache.bz2 share/doc/HTML/sr/kioslave5/data/index.docbook share/doc/HTML/sr/kioslave5/file/index.cache.bz2 share/doc/HTML/sr/kioslave5/file/index.docbook share/doc/HTML/sr/kioslave5/ftp/index.cache.bz2 share/doc/HTML/sr/kioslave5/ftp/index.docbook share/doc/HTML/sr/kioslave5/help/documentationnotfound/index.cache.bz2 share/doc/HTML/sr/kioslave5/help/documentationnotfound/index.docbook share/doc/HTML/sr/kioslave5/help/index.cache.bz2 share/doc/HTML/sr/kioslave5/help/index.docbook share/doc/HTML/sr/kioslave5/http/index.cache.bz2 share/doc/HTML/sr/kioslave5/http/index.docbook share/doc/HTML/sr/kioslave5/mailto/index.cache.bz2 share/doc/HTML/sr/kioslave5/mailto/index.docbook share/doc/HTML/sr/kioslave5/telnet/index.cache.bz2 share/doc/HTML/sr/kioslave5/telnet/index.docbook share/doc/HTML/sr/kioslave5/webdav/index.cache.bz2 share/doc/HTML/sr/kioslave5/webdav/index.docbook share/doc/HTML/sr@latin/kcontrol5/cache/index.cache.bz2 share/doc/HTML/sr@latin/kcontrol5/cache/index.docbook share/doc/HTML/sr@latin/kcontrol5/cookies/index.cache.bz2 share/doc/HTML/sr@latin/kcontrol5/cookies/index.docbook share/doc/HTML/sr@latin/kcontrol5/netpref/index.cache.bz2 share/doc/HTML/sr@latin/kcontrol5/netpref/index.docbook share/doc/HTML/sr@latin/kcontrol5/proxy/index.cache.bz2 share/doc/HTML/sr@latin/kcontrol5/proxy/index.docbook share/doc/HTML/sr@latin/kcontrol5/smb/index.cache.bz2 share/doc/HTML/sr@latin/kcontrol5/smb/index.docbook share/doc/HTML/sr@latin/kcontrol5/useragent/index.cache.bz2 share/doc/HTML/sr@latin/kcontrol5/useragent/index.docbook share/doc/HTML/sr@latin/kcontrol5/webshortcuts/index.cache.bz2 share/doc/HTML/sr@latin/kcontrol5/webshortcuts/index.docbook share/doc/HTML/sr@latin/kioslave5/data/index.cache.bz2 share/doc/HTML/sr@latin/kioslave5/data/index.docbook share/doc/HTML/sr@latin/kioslave5/file/index.cache.bz2 share/doc/HTML/sr@latin/kioslave5/file/index.docbook share/doc/HTML/sr@latin/kioslave5/ftp/index.cache.bz2 share/doc/HTML/sr@latin/kioslave5/ftp/index.docbook share/doc/HTML/sr@latin/kioslave5/help/documentationnotfound/index.cache.bz2 share/doc/HTML/sr@latin/kioslave5/help/documentationnotfound/index.docbook share/doc/HTML/sr@latin/kioslave5/help/index.cache.bz2 share/doc/HTML/sr@latin/kioslave5/help/index.docbook share/doc/HTML/sr@latin/kioslave5/http/index.cache.bz2 share/doc/HTML/sr@latin/kioslave5/http/index.docbook share/doc/HTML/sr@latin/kioslave5/mailto/index.cache.bz2 share/doc/HTML/sr@latin/kioslave5/mailto/index.docbook share/doc/HTML/sr@latin/kioslave5/telnet/index.cache.bz2 share/doc/HTML/sr@latin/kioslave5/telnet/index.docbook share/doc/HTML/sr@latin/kioslave5/webdav/index.cache.bz2 share/doc/HTML/sr@latin/kioslave5/webdav/index.docbook share/doc/HTML/sv/kcontrol5/cache/index.cache.bz2 share/doc/HTML/sv/kcontrol5/cache/index.docbook share/doc/HTML/sv/kcontrol5/cookies/index.cache.bz2 share/doc/HTML/sv/kcontrol5/cookies/index.docbook share/doc/HTML/sv/kcontrol5/netpref/index.cache.bz2 share/doc/HTML/sv/kcontrol5/netpref/index.docbook share/doc/HTML/sv/kcontrol5/proxy/index.cache.bz2 share/doc/HTML/sv/kcontrol5/proxy/index.docbook share/doc/HTML/sv/kcontrol5/smb/index.cache.bz2 share/doc/HTML/sv/kcontrol5/smb/index.docbook share/doc/HTML/sv/kcontrol5/trash/index.cache.bz2 share/doc/HTML/sv/kcontrol5/trash/index.docbook share/doc/HTML/sv/kcontrol5/useragent/index.cache.bz2 share/doc/HTML/sv/kcontrol5/useragent/index.docbook share/doc/HTML/sv/kcontrol5/webshortcuts/index.cache.bz2 share/doc/HTML/sv/kcontrol5/webshortcuts/index.docbook share/doc/HTML/sv/kioslave5/data/index.cache.bz2 share/doc/HTML/sv/kioslave5/data/index.docbook share/doc/HTML/sv/kioslave5/file/index.cache.bz2 share/doc/HTML/sv/kioslave5/file/index.docbook share/doc/HTML/sv/kioslave5/ftp/index.cache.bz2 share/doc/HTML/sv/kioslave5/ftp/index.docbook share/doc/HTML/sv/kioslave5/help/documentationnotfound/index.cache.bz2 share/doc/HTML/sv/kioslave5/help/documentationnotfound/index.docbook share/doc/HTML/sv/kioslave5/help/index.cache.bz2 share/doc/HTML/sv/kioslave5/help/index.docbook share/doc/HTML/sv/kioslave5/http/index.cache.bz2 share/doc/HTML/sv/kioslave5/http/index.docbook share/doc/HTML/sv/kioslave5/mailto/index.cache.bz2 share/doc/HTML/sv/kioslave5/mailto/index.docbook share/doc/HTML/sv/kioslave5/telnet/index.cache.bz2 share/doc/HTML/sv/kioslave5/telnet/index.docbook share/doc/HTML/sv/kioslave5/webdav/index.cache.bz2 share/doc/HTML/sv/kioslave5/webdav/index.docbook share/doc/HTML/uk/kcontrol5/cache/index.cache.bz2 share/doc/HTML/uk/kcontrol5/cache/index.docbook share/doc/HTML/uk/kcontrol5/cookies/index.cache.bz2 share/doc/HTML/uk/kcontrol5/cookies/index.docbook share/doc/HTML/uk/kcontrol5/netpref/index.cache.bz2 share/doc/HTML/uk/kcontrol5/netpref/index.docbook share/doc/HTML/uk/kcontrol5/proxy/index.cache.bz2 share/doc/HTML/uk/kcontrol5/proxy/index.docbook share/doc/HTML/uk/kcontrol5/smb/index.cache.bz2 share/doc/HTML/uk/kcontrol5/smb/index.docbook share/doc/HTML/uk/kcontrol5/trash/index.cache.bz2 share/doc/HTML/uk/kcontrol5/trash/index.docbook share/doc/HTML/uk/kcontrol5/useragent/index.cache.bz2 share/doc/HTML/uk/kcontrol5/useragent/index.docbook share/doc/HTML/uk/kcontrol5/webshortcuts/index.cache.bz2 share/doc/HTML/uk/kcontrol5/webshortcuts/index.docbook share/doc/HTML/uk/kioslave5/data/index.cache.bz2 share/doc/HTML/uk/kioslave5/data/index.docbook share/doc/HTML/uk/kioslave5/file/index.cache.bz2 share/doc/HTML/uk/kioslave5/file/index.docbook share/doc/HTML/uk/kioslave5/ftp/index.cache.bz2 share/doc/HTML/uk/kioslave5/ftp/index.docbook share/doc/HTML/uk/kioslave5/help/documentationnotfound/index.cache.bz2 share/doc/HTML/uk/kioslave5/help/documentationnotfound/index.docbook share/doc/HTML/uk/kioslave5/help/index.cache.bz2 share/doc/HTML/uk/kioslave5/help/index.docbook share/doc/HTML/uk/kioslave5/http/index.cache.bz2 share/doc/HTML/uk/kioslave5/http/index.docbook share/doc/HTML/uk/kioslave5/mailto/index.cache.bz2 share/doc/HTML/uk/kioslave5/mailto/index.docbook share/doc/HTML/uk/kioslave5/telnet/index.cache.bz2 share/doc/HTML/uk/kioslave5/telnet/index.docbook share/doc/HTML/uk/kioslave5/webdav/index.cache.bz2 share/doc/HTML/uk/kioslave5/webdav/index.docbook share/kf5/kcookiejar/domain_info share/knotifications5/proxyscout.notifyrc share/kservices5/cache.desktop share/kservices5/cookies.desktop share/kservices5/data.protocol -share/kservices5/fixhosturifilter.desktop share/kservices5/http_cache_cleaner.desktop share/kservices5/kcmtrash.desktop -share/kservices5/kshorturifilter.desktop -share/kservices5/kuriikwsfilter.desktop -share/kservices5/kurisearchfilter.desktop -share/kservices5/localdomainurifilter.desktop share/kservices5/mms.protocol share/kservices5/mmst.protocol share/kservices5/mmsu.protocol share/kservices5/netpref.desktop share/kservices5/pnm.protocol share/kservices5/proxy.desktop share/kservices5/rtsp.protocol share/kservices5/rtspt.protocol share/kservices5/rtspu.protocol share/kservices5/searchproviders/7digital.desktop share/kservices5/searchproviders/acronym.desktop share/kservices5/searchproviders/amazon.desktop share/kservices5/searchproviders/amazon_mp3.desktop share/kservices5/searchproviders/amg.desktop share/kservices5/searchproviders/archpkg.desktop share/kservices5/searchproviders/backports.desktop share/kservices5/searchproviders/baidu.desktop share/kservices5/searchproviders/beolingus.desktop share/kservices5/searchproviders/bing.desktop share/kservices5/searchproviders/blip.desktop share/kservices5/searchproviders/bugft.desktop share/kservices5/searchproviders/bugno.desktop share/kservices5/searchproviders/call.desktop share/kservices5/searchproviders/cia.desktop share/kservices5/searchproviders/citeseer.desktop share/kservices5/searchproviders/cpan.desktop share/kservices5/searchproviders/ctan.desktop share/kservices5/searchproviders/ctan_cat.desktop share/kservices5/searchproviders/dbug.desktop share/kservices5/searchproviders/de2en.desktop share/kservices5/searchproviders/de2fr.desktop share/kservices5/searchproviders/deb.desktop share/kservices5/searchproviders/dictfr.desktop share/kservices5/searchproviders/dmoz.desktop share/kservices5/searchproviders/docbook.desktop share/kservices5/searchproviders/doi.desktop share/kservices5/searchproviders/duckduckgo.desktop share/kservices5/searchproviders/duckduckgo_info.desktop share/kservices5/searchproviders/duckduckgo_shopping.desktop share/kservices5/searchproviders/ecosia.desktop share/kservices5/searchproviders/en2de.desktop share/kservices5/searchproviders/en2es.desktop share/kservices5/searchproviders/en2fr.desktop share/kservices5/searchproviders/en2it.desktop share/kservices5/searchproviders/es2en.desktop share/kservices5/searchproviders/ethicle.desktop share/kservices5/searchproviders/facebook.desktop share/kservices5/searchproviders/feedster.desktop share/kservices5/searchproviders/flickr.desktop share/kservices5/searchproviders/flickrcc.desktop share/kservices5/searchproviders/foldoc.desktop share/kservices5/searchproviders/fr2de.desktop share/kservices5/searchproviders/fr2en.desktop share/kservices5/searchproviders/freecode.desktop share/kservices5/searchproviders/freedb.desktop share/kservices5/searchproviders/fsd.desktop share/kservices5/searchproviders/github.desktop share/kservices5/searchproviders/gitorious.desktop share/kservices5/searchproviders/google.desktop share/kservices5/searchproviders/google_advanced.desktop share/kservices5/searchproviders/google_code.desktop share/kservices5/searchproviders/google_groups.desktop share/kservices5/searchproviders/google_images.desktop share/kservices5/searchproviders/google_lucky.desktop share/kservices5/searchproviders/google_maps.desktop share/kservices5/searchproviders/google_movie.desktop share/kservices5/searchproviders/google_news.desktop share/kservices5/searchproviders/google_shopping.desktop share/kservices5/searchproviders/grec.desktop share/kservices5/searchproviders/hyperdictionary.desktop share/kservices5/searchproviders/hyperdictionary_thesaurus.desktop share/kservices5/searchproviders/ibl.desktop share/kservices5/searchproviders/identica_groups.desktop share/kservices5/searchproviders/identica_notices.desktop share/kservices5/searchproviders/identica_people.desktop share/kservices5/searchproviders/imdb.desktop share/kservices5/searchproviders/it2en.desktop share/kservices5/searchproviders/jamendo.desktop share/kservices5/searchproviders/jeeves.desktop share/kservices5/searchproviders/kde.desktop share/kservices5/searchproviders/kde_apps.desktop share/kservices5/searchproviders/kde_forums.desktop share/kservices5/searchproviders/kde_look.desktop share/kservices5/searchproviders/kde_projects.desktop share/kservices5/searchproviders/kde_techbase.desktop share/kservices5/searchproviders/kde_userbase.desktop share/kservices5/searchproviders/leo.desktop share/kservices5/searchproviders/magnatune.desktop share/kservices5/searchproviders/metacrawler.desktop share/kservices5/searchproviders/msdn.desktop share/kservices5/searchproviders/multitran-deru.desktop share/kservices5/searchproviders/multitran-enru.desktop share/kservices5/searchproviders/multitran-esru.desktop share/kservices5/searchproviders/multitran-frru.desktop share/kservices5/searchproviders/multitran-itru.desktop share/kservices5/searchproviders/multitran-nlru.desktop share/kservices5/searchproviders/netcraft.desktop share/kservices5/searchproviders/nl-telephone.desktop share/kservices5/searchproviders/nl-teletekst.desktop share/kservices5/searchproviders/opendesktop.desktop share/kservices5/searchproviders/pgpkeys.desktop share/kservices5/searchproviders/php.desktop share/kservices5/searchproviders/python.desktop share/kservices5/searchproviders/qt.desktop share/kservices5/searchproviders/qt4.desktop share/kservices5/searchproviders/qwant.desktop share/kservices5/searchproviders/qwant_images.desktop share/kservices5/searchproviders/qwant_news.desktop share/kservices5/searchproviders/qwant_shopping.desktop share/kservices5/searchproviders/qwant_social.desktop share/kservices5/searchproviders/qwant_videos.desktop share/kservices5/searchproviders/rae.desktop share/kservices5/searchproviders/rag.desktop share/kservices5/searchproviders/rfc.desktop share/kservices5/searchproviders/rpmfind.desktop share/kservices5/searchproviders/ruby_application_archive.desktop share/kservices5/searchproviders/soundcloud.desktop share/kservices5/searchproviders/sourceforge.desktop share/kservices5/searchproviders/technorati.desktop share/kservices5/searchproviders/technoratitags.desktop share/kservices5/searchproviders/thesaurus.desktop share/kservices5/searchproviders/tvtome.desktop share/kservices5/searchproviders/urbandictionary.desktop share/kservices5/searchproviders/uspto.desktop share/kservices5/searchproviders/vimeo.desktop share/kservices5/searchproviders/voila.desktop share/kservices5/searchproviders/webster.desktop share/kservices5/searchproviders/wikia.desktop share/kservices5/searchproviders/wikipedia.desktop share/kservices5/searchproviders/wiktionary.desktop share/kservices5/searchproviders/wolfram_alpha.desktop share/kservices5/searchproviders/wordref.desktop share/kservices5/searchproviders/yahoo.desktop share/kservices5/searchproviders/yahoo_image.desktop share/kservices5/searchproviders/yahoo_local.desktop share/kservices5/searchproviders/yahoo_shopping.desktop share/kservices5/searchproviders/yahoo_video.desktop share/kservices5/searchproviders/youtube.desktop share/kservices5/smb.desktop share/kservices5/useragent.desktop share/kservices5/useragentstrings/android10.desktop share/kservices5/useragentstrings/chrome10onwinnt51.desktop share/kservices5/useragentstrings/chrome22oncurrent.desktop share/kservices5/useragentstrings/chrome23oncurrent.desktop share/kservices5/useragentstrings/chrome24oncurrent.desktop share/kservices5/useragentstrings/chrome50oncurrent.desktop share/kservices5/useragentstrings/chrome570oncurrent.desktop share/kservices5/useragentstrings/firefox15oncurrent.desktop share/kservices5/useragentstrings/firefox16oncurrent.desktop share/kservices5/useragentstrings/firefox20oncurrent.desktop share/kservices5/useragentstrings/firefox30oncurrent.desktop share/kservices5/useragentstrings/firefox36oncurrent.desktop share/kservices5/useragentstrings/firefox520oncurrent.desktop share/kservices5/useragentstrings/googlebot.desktop share/kservices5/useragentstrings/ie401onwinnt4.desktop share/kservices5/useragentstrings/ie50onppc.desktop share/kservices5/useragentstrings/ie55onwinnt5.desktop share/kservices5/useragentstrings/ie60oncurrent.desktop share/kservices5/useragentstrings/ie60onwinnt51.desktop share/kservices5/useragentstrings/ie70onwinnt51.desktop share/kservices5/useragentstrings/ie80onwinnt60.desktop share/kservices5/useragentstrings/ie90onwinnt71.desktop share/kservices5/useragentstrings/lynxoncurrent.desktop share/kservices5/useragentstrings/nn301oncurrent.desktop share/kservices5/useragentstrings/nn475oncurrent.desktop share/kservices5/useragentstrings/nn475onwin95.desktop share/kservices5/useragentstrings/ns71oncurrent.desktop share/kservices5/useragentstrings/ns71onwinnt51.desktop share/kservices5/useragentstrings/op1162oncurrent.desktop share/kservices5/useragentstrings/op1202oncurrent.desktop share/kservices5/useragentstrings/op403onwinnt4.desktop share/kservices5/useragentstrings/op85oncurrent.desktop share/kservices5/useragentstrings/op90oncurrent.desktop share/kservices5/useragentstrings/op962oncurrent.desktop share/kservices5/useragentstrings/safari20.desktop share/kservices5/useragentstrings/safari30oniphone.desktop share/kservices5/useragentstrings/safari32.desktop share/kservices5/useragentstrings/safari40.desktop share/kservices5/useragentstrings/safari517.desktop share/kservices5/useragentstrings/safari60.desktop share/kservices5/useragentstrings/w3moncurrent.desktop share/kservices5/useragentstrings/wgetoncurrent.desktop share/kservices5/webshortcuts.desktop share/kservicetypes5/kfileitemactionplugin.desktop share/kservicetypes5/kiodndpopupmenuplugin.desktop share/kservicetypes5/konqpopupmenuplugin.desktop share/kservicetypes5/kpropertiesdialogplugin.desktop share/kservicetypes5/kurifilterplugin.desktop share/kservicetypes5/searchprovider.desktop share/kservicetypes5/uasprovider.desktop share/locale/af/LC_MESSAGES/kio5.mo share/locale/ar/LC_MESSAGES/kio5.mo share/locale/ast/LC_MESSAGES/kio5.mo share/locale/be/LC_MESSAGES/kio5.mo share/locale/be@latin/LC_MESSAGES/kio5.mo share/locale/bg/LC_MESSAGES/kio5.mo share/locale/bn/LC_MESSAGES/kio5.mo share/locale/br/LC_MESSAGES/kio5.mo share/locale/bs/LC_MESSAGES/kio5.mo share/locale/ca/LC_MESSAGES/kio5.mo share/locale/ca@valencia/LC_MESSAGES/kio5.mo share/locale/cs/LC_MESSAGES/kio5.mo share/locale/csb/LC_MESSAGES/kio5.mo share/locale/cy/LC_MESSAGES/kio5.mo share/locale/da/LC_MESSAGES/kio5.mo share/locale/de/LC_MESSAGES/kio5.mo share/locale/el/LC_MESSAGES/kio5.mo share/locale/en_GB/LC_MESSAGES/kio5.mo share/locale/eo/LC_MESSAGES/kio5.mo share/locale/es/LC_MESSAGES/kio5.mo share/locale/et/LC_MESSAGES/kio5.mo share/locale/eu/LC_MESSAGES/kio5.mo share/locale/fa/LC_MESSAGES/kio5.mo share/locale/fi/LC_MESSAGES/kio5.mo share/locale/fr/LC_MESSAGES/kio5.mo share/locale/fy/LC_MESSAGES/kio5.mo share/locale/ga/LC_MESSAGES/kio5.mo share/locale/gl/LC_MESSAGES/kio5.mo share/locale/gu/LC_MESSAGES/kio5.mo share/locale/he/LC_MESSAGES/kio5.mo share/locale/hi/LC_MESSAGES/kio5.mo share/locale/hr/LC_MESSAGES/kio5.mo share/locale/hsb/LC_MESSAGES/kio5.mo share/locale/hu/LC_MESSAGES/kio5.mo share/locale/ia/LC_MESSAGES/kio5.mo share/locale/is/LC_MESSAGES/kio5.mo share/locale/it/LC_MESSAGES/kio5.mo share/locale/ja/LC_MESSAGES/kio5.mo share/locale/kk/LC_MESSAGES/kio5.mo share/locale/km/LC_MESSAGES/kio5.mo share/locale/ko/LC_MESSAGES/kio5.mo share/locale/ku/LC_MESSAGES/kio5.mo share/locale/lt/LC_MESSAGES/kio5.mo share/locale/lv/LC_MESSAGES/kio5.mo share/locale/mai/LC_MESSAGES/kio5.mo share/locale/mk/LC_MESSAGES/kio5.mo share/locale/ml/LC_MESSAGES/kio5.mo share/locale/mr/LC_MESSAGES/kio5.mo share/locale/ms/LC_MESSAGES/kio5.mo share/locale/nb/LC_MESSAGES/kio5.mo share/locale/nds/LC_MESSAGES/kio5.mo share/locale/ne/LC_MESSAGES/kio5.mo share/locale/nl/LC_MESSAGES/kio5.mo share/locale/nn/LC_MESSAGES/kio5.mo share/locale/oc/LC_MESSAGES/kio5.mo share/locale/pa/LC_MESSAGES/kio5.mo share/locale/pl/LC_MESSAGES/kio5.mo share/locale/pt/LC_MESSAGES/kio5.mo share/locale/pt_BR/LC_MESSAGES/kio5.mo share/locale/ro/LC_MESSAGES/kio5.mo share/locale/ru/LC_MESSAGES/kio5.mo share/locale/se/LC_MESSAGES/kio5.mo share/locale/sk/LC_MESSAGES/kio5.mo share/locale/sl/LC_MESSAGES/kio5.mo share/locale/sq/LC_MESSAGES/kio5.mo share/locale/sr/LC_MESSAGES/kio5.mo share/locale/sr@ijekavian/LC_MESSAGES/kio5.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kio5.mo share/locale/sr@latin/LC_MESSAGES/kio5.mo share/locale/sv/LC_MESSAGES/kio5.mo share/locale/ta/LC_MESSAGES/kio5.mo share/locale/tg/LC_MESSAGES/kio5.mo share/locale/th/LC_MESSAGES/kio5.mo share/locale/tr/LC_MESSAGES/kio5.mo share/locale/ug/LC_MESSAGES/kio5.mo share/locale/uk/LC_MESSAGES/kio5.mo share/locale/uz/LC_MESSAGES/kio5.mo share/locale/uz@cyrillic/LC_MESSAGES/kio5.mo share/locale/vi/LC_MESSAGES/kio5.mo share/locale/wa/LC_MESSAGES/kio5.mo share/locale/xh/LC_MESSAGES/kio5.mo share/locale/zh_CN/LC_MESSAGES/kio5.mo share/locale/zh_TW/LC_MESSAGES/kio5.mo Index: head/devel/kf5-kitemmodels/Makefile =================================================================== --- head/devel/kf5-kitemmodels/Makefile (revision 450055) +++ head/devel/kf5-kitemmodels/Makefile (revision 450056) @@ -1,16 +1,15 @@ # Created by: tcberner # $FreeBSD$ PORTNAME= kitemmodels PORTVERSION= ${KDE_FRAMEWORKS_VERSION} -PORTREVISION= 1 CATEGORIES= devel kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 models for Qt Model/View system USES= cmake:outsource compiler:c++11-lib kde:5 tar:xz USE_KDE= ecm USE_QT5= buildtools_build core qmake_build testlib_build .include Index: head/devel/kf5-kitemmodels/distinfo =================================================================== --- head/devel/kf5-kitemmodels/distinfo (revision 450055) +++ head/devel/kf5-kitemmodels/distinfo (revision 450056) @@ -1,3 +1,3 @@ -TIMESTAMP = 1502086007 -SHA256 (KDE/frameworks/5.37.0/kitemmodels-5.37.0.tar.xz) = 39ffbf6aacbcc20417fe6b228c16621d4ab828b13c4371c377f0814aeeff97da -SIZE (KDE/frameworks/5.37.0/kitemmodels-5.37.0.tar.xz) = 389648 +TIMESTAMP = 1504433750 +SHA256 (KDE/frameworks/5.38.0/kitemmodels-5.38.0.tar.xz) = 4cfa7661b6d3c1e242b92c9200383400398af1db341dbbd2de573429898d4068 +SIZE (KDE/frameworks/5.38.0/kitemmodels-5.38.0.tar.xz) = 389664 Index: head/devel/kf5-knewstuff/Makefile =================================================================== --- head/devel/kf5-knewstuff/Makefile (revision 450055) +++ head/devel/kf5-knewstuff/Makefile (revision 450056) @@ -1,20 +1,19 @@ # Created by: tcberner # $FreeBSD$ PORTNAME= knewstuff PORTVERSION= ${KDE_FRAMEWORKS_VERSION} -PORTREVISION= 1 CATEGORIES= devel kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 library for downloading application assets from the network USES= cmake:outsource compiler:c++11-lib gettext kde:5 tar:xz USE_KDE= archive attica5 auth codecs completion config \ configwidgets coreaddons ecm i18n iconthemes itemviews \ jobwidgets kio service sonnet textwidgets widgetsaddons \ xmlgui USE_QT5= buildtools_build core dbus gui network qmake_build \ quick widgets xml .include Index: head/devel/kf5-knewstuff/distinfo =================================================================== --- head/devel/kf5-knewstuff/distinfo (revision 450055) +++ head/devel/kf5-knewstuff/distinfo (revision 450056) @@ -1,3 +1,3 @@ -TIMESTAMP = 1502086007 -SHA256 (KDE/frameworks/5.37.0/knewstuff-5.37.0.tar.xz) = dea2875aa1787525545e789fcafef75ddd0cc02e1175432b27123dd23bec96e9 -SIZE (KDE/frameworks/5.37.0/knewstuff-5.37.0.tar.xz) = 890948 +TIMESTAMP = 1504433751 +SHA256 (KDE/frameworks/5.38.0/knewstuff-5.38.0.tar.xz) = 4052f0ac27bc32de02493494816809261e762eeb2e906168d9e749aa99ab8cd0 +SIZE (KDE/frameworks/5.38.0/knewstuff-5.38.0.tar.xz) = 892220 Index: head/devel/kf5-knotifications/Makefile =================================================================== --- head/devel/kf5-knotifications/Makefile (revision 450055) +++ head/devel/kf5-knotifications/Makefile (revision 450056) @@ -1,20 +1,19 @@ # Created by: tcberner # $FreeBSD$ PORTNAME= knotifications PORTVERSION= ${KDE_FRAMEWORKS_VERSION} -PORTREVISION= 1 CATEGORIES= devel kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 abstraction for system notifications LIB_DEPENDS= libdbusmenu-qt5.so:devel/libdbusmenu-qt5 USES= cmake:outsource compiler:c++11-lib gettext kde:5 tar:xz USE_KDE= codecs config coreaddons ecm windowsystem USE_QT5= buildtools_build core dbus gui linguisttools phonon4 \ qmake_build widgets x11extras USE_XORG= x11 .include Index: head/devel/kf5-knotifications/distinfo =================================================================== --- head/devel/kf5-knotifications/distinfo (revision 450055) +++ head/devel/kf5-knotifications/distinfo (revision 450056) @@ -1,3 +1,3 @@ -TIMESTAMP = 1502086007 -SHA256 (KDE/frameworks/5.37.0/knotifications-5.37.0.tar.xz) = 66cdfddaa31f773a538d429026d0117e60f8a0a7f2a90c861f95d84395347b3f -SIZE (KDE/frameworks/5.37.0/knotifications-5.37.0.tar.xz) = 100004 +TIMESTAMP = 1504433751 +SHA256 (KDE/frameworks/5.38.0/knotifications-5.38.0.tar.xz) = ed7d33414840c8b25ce0f7fc446516bd85458b4e349825da026eb511a1d875cb +SIZE (KDE/frameworks/5.38.0/knotifications-5.38.0.tar.xz) = 99904 Index: head/devel/kf5-knotifyconfig/Makefile =================================================================== --- head/devel/kf5-knotifyconfig/Makefile (revision 450055) +++ head/devel/kf5-knotifyconfig/Makefile (revision 450056) @@ -1,18 +1,17 @@ # Created by: tcberner # $FreeBSD$ PORTNAME= knotifyconfig PORTVERSION= ${KDE_FRAMEWORKS_VERSION} -PORTREVISION= 1 CATEGORIES= devel kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 configuration system for KNotify USES= cmake:outsource compiler:c++11-lib gettext kde:5 tar:xz USE_KDE= completion config coreaddons ecm i18n jobwidgets kio \ service widgetsaddons USE_QT5= buildtools_build core dbus gui network phonon4 \ qmake_build widgets .include Index: head/devel/kf5-knotifyconfig/distinfo =================================================================== --- head/devel/kf5-knotifyconfig/distinfo (revision 450055) +++ head/devel/kf5-knotifyconfig/distinfo (revision 450056) @@ -1,3 +1,3 @@ -TIMESTAMP = 1502086007 -SHA256 (KDE/frameworks/5.37.0/knotifyconfig-5.37.0.tar.xz) = 65c695561bf26dc5899e28a35604afb3da39283a459e704b00687f6dfd647292 -SIZE (KDE/frameworks/5.37.0/knotifyconfig-5.37.0.tar.xz) = 83444 +TIMESTAMP = 1504433751 +SHA256 (KDE/frameworks/5.38.0/knotifyconfig-5.38.0.tar.xz) = d333e83fb372b93493092084418af9fa5557e017c30c923bbd6a5d6f2a7d0f16 +SIZE (KDE/frameworks/5.38.0/knotifyconfig-5.38.0.tar.xz) = 83464 Index: head/devel/kf5-kpackage/Makefile =================================================================== --- head/devel/kf5-kpackage/Makefile (revision 450055) +++ head/devel/kf5-kpackage/Makefile (revision 450056) @@ -1,16 +1,15 @@ # Created by: tcberner # $FreeBSD$ PORTNAME= kpackage PORTVERSION= ${KDE_FRAMEWORKS_VERSION} -PORTREVISION= 1 CATEGORIES= devel kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 library to load and install packages USES= cmake:outsource compiler:c++11-lib gettext kde:5 tar:xz USE_KDE= archive config coreaddons doctools ecm i18n USE_QT5= buildtools_build core qmake_build xml .include Index: head/devel/kf5-kpackage/distinfo =================================================================== --- head/devel/kf5-kpackage/distinfo (revision 450055) +++ head/devel/kf5-kpackage/distinfo (revision 450056) @@ -1,3 +1,3 @@ -TIMESTAMP = 1502086007 -SHA256 (KDE/frameworks/5.37.0/kpackage-5.37.0.tar.xz) = fac4d94dc33760aa71078f869fa0fc090c25a7aaf9547cc1a91bcd2b70296ec6 -SIZE (KDE/frameworks/5.37.0/kpackage-5.37.0.tar.xz) = 122824 +TIMESTAMP = 1504433752 +SHA256 (KDE/frameworks/5.38.0/kpackage-5.38.0.tar.xz) = b6eb027aa8fbb0a45d87b026ae7117f14c08385628b5da5ba55994f7f01c926c +SIZE (KDE/frameworks/5.38.0/kpackage-5.38.0.tar.xz) = 125104 Index: head/devel/kf5-kpackage/pkg-plist =================================================================== --- head/devel/kf5-kpackage/pkg-plist (revision 450055) +++ head/devel/kf5-kpackage/pkg-plist (revision 450056) @@ -1,77 +1,78 @@ bin/kpackagetool5 include/KF5/KPackage/KPackage/Package include/KF5/KPackage/KPackage/PackageLoader include/KF5/KPackage/KPackage/PackageStructure include/KF5/KPackage/kpackage/package.h include/KF5/KPackage/kpackage/package_export.h include/KF5/KPackage/kpackage/packageloader.h include/KF5/KPackage/kpackage/packagestructure.h include/KF5/KPackage/kpackage/version.h include/KF5/kpackage_version.h lib/cmake/KF5Package/KF5PackageConfig.cmake lib/cmake/KF5Package/KF5PackageConfigVersion.cmake lib/cmake/KF5Package/KF5PackageMacros.cmake lib/cmake/KF5Package/KF5PackageTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5Package/KF5PackageTargets.cmake lib/libKF5Package.so lib/libKF5Package.so.5 lib/libKF5Package.so.%%KDE_FRAMEWORKS_VERSION%% man/ca/man1/kpackagetool5.1.gz man/de/man1/kpackagetool5.1.gz man/es/man1/kpackagetool5.1.gz man/it/man1/kpackagetool5.1.gz man/man1/kpackagetool5.1.gz man/nl/man1/kpackagetool5.1.gz man/pt/man1/kpackagetool5.1.gz man/pt_BR/man1/kpackagetool5.1.gz man/sv/man1/kpackagetool5.1.gz man/uk/man1/kpackagetool5.1.gz share/kservicetypes5/kpackage-generic.desktop share/kservicetypes5/kpackage-genericqml.desktop share/kservicetypes5/kpackage-packagestructure.desktop share/locale/ar/LC_MESSAGES/libkpackage5.mo share/locale/ast/LC_MESSAGES/libkpackage5.mo share/locale/bs/LC_MESSAGES/libkpackage5.mo share/locale/ca/LC_MESSAGES/libkpackage5.mo share/locale/ca@valencia/LC_MESSAGES/libkpackage5.mo share/locale/cs/LC_MESSAGES/libkpackage5.mo share/locale/da/LC_MESSAGES/libkpackage5.mo share/locale/de/LC_MESSAGES/libkpackage5.mo share/locale/el/LC_MESSAGES/libkpackage5.mo share/locale/en_GB/LC_MESSAGES/libkpackage5.mo share/locale/es/LC_MESSAGES/libkpackage5.mo share/locale/et/LC_MESSAGES/libkpackage5.mo +share/locale/eu/LC_MESSAGES/libkpackage5.mo share/locale/fi/LC_MESSAGES/libkpackage5.mo share/locale/fr/LC_MESSAGES/libkpackage5.mo share/locale/gd/LC_MESSAGES/libkpackage5.mo share/locale/gl/LC_MESSAGES/libkpackage5.mo share/locale/he/LC_MESSAGES/libkpackage5.mo share/locale/hu/LC_MESSAGES/libkpackage5.mo share/locale/ia/LC_MESSAGES/libkpackage5.mo share/locale/it/LC_MESSAGES/libkpackage5.mo share/locale/ja/LC_MESSAGES/libkpackage5.mo share/locale/ko/LC_MESSAGES/libkpackage5.mo share/locale/lt/LC_MESSAGES/libkpackage5.mo share/locale/mr/LC_MESSAGES/libkpackage5.mo share/locale/nb/LC_MESSAGES/libkpackage5.mo share/locale/nds/LC_MESSAGES/libkpackage5.mo share/locale/nl/LC_MESSAGES/libkpackage5.mo share/locale/nn/LC_MESSAGES/libkpackage5.mo share/locale/pa/LC_MESSAGES/libkpackage5.mo share/locale/pl/LC_MESSAGES/libkpackage5.mo share/locale/pt/LC_MESSAGES/libkpackage5.mo share/locale/pt_BR/LC_MESSAGES/libkpackage5.mo share/locale/ro/LC_MESSAGES/libkpackage5.mo share/locale/ru/LC_MESSAGES/libkpackage5.mo share/locale/sk/LC_MESSAGES/libkpackage5.mo share/locale/sl/LC_MESSAGES/libkpackage5.mo share/locale/sr/LC_MESSAGES/libkpackage5.mo share/locale/sr@ijekavian/LC_MESSAGES/libkpackage5.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/libkpackage5.mo share/locale/sr@latin/LC_MESSAGES/libkpackage5.mo share/locale/sv/LC_MESSAGES/libkpackage5.mo share/locale/tr/LC_MESSAGES/libkpackage5.mo share/locale/ug/LC_MESSAGES/libkpackage5.mo share/locale/uk/LC_MESSAGES/libkpackage5.mo share/locale/zh_CN/LC_MESSAGES/libkpackage5.mo share/locale/zh_TW/LC_MESSAGES/libkpackage5.mo Index: head/devel/kf5-kparts/Makefile =================================================================== --- head/devel/kf5-kparts/Makefile (revision 450055) +++ head/devel/kf5-kparts/Makefile (revision 450056) @@ -1,19 +1,18 @@ # Created by: tcberner # $FreeBSD$ PORTNAME= kparts PORTVERSION= ${KDE_FRAMEWORKS_VERSION} -PORTREVISION= 1 CATEGORIES= devel kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 document centric plugin system USES= cmake:outsource compiler:c++11-lib gettext kde:5 tar:xz USE_KDE= auth codecs completion config configwidgets coreaddons \ i18n iconthemes jobwidgets kio notifications service \ sonnet textwidgets widgetsaddons xmlgui USE_QT5= buildtools_build core dbus gui network qmake_build widgets \ xml .include Index: head/devel/kf5-kparts/distinfo =================================================================== --- head/devel/kf5-kparts/distinfo (revision 450055) +++ head/devel/kf5-kparts/distinfo (revision 450056) @@ -1,3 +1,3 @@ -TIMESTAMP = 1502086008 -SHA256 (KDE/frameworks/5.37.0/kparts-5.37.0.tar.xz) = b050a342ca377c37c5fdb94a5532d9f159ac7d46eef12c549bd0a23f5b442d4b -SIZE (KDE/frameworks/5.37.0/kparts-5.37.0.tar.xz) = 175340 +TIMESTAMP = 1504433752 +SHA256 (KDE/frameworks/5.38.0/kparts-5.38.0.tar.xz) = f7a701a02d89c5555d92047760314c64fd51beb13ed393ebee67597e13396aa5 +SIZE (KDE/frameworks/5.38.0/kparts-5.38.0.tar.xz) = 175592 Index: head/devel/kf5-kpeople/Makefile =================================================================== --- head/devel/kf5-kpeople/Makefile (revision 450055) +++ head/devel/kf5-kpeople/Makefile (revision 450056) @@ -1,17 +1,16 @@ # Created by: tcberner # $FreeBSD$ PORTNAME= kpeople PORTVERSION= ${KDE_FRAMEWORKS_VERSION} -PORTREVISION= 1 CATEGORIES= devel kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 library providing access to contacts USES= cmake:outsource compiler:c++11-lib gettext kde:5 tar:xz USE_KDE= config coreaddons ecm i18n itemviews service widgetsaddons USE_QT5= buildtools_build core dbus gui network qmake_build qml \ sql widgets .include Index: head/devel/kf5-kpeople/distinfo =================================================================== --- head/devel/kf5-kpeople/distinfo (revision 450055) +++ head/devel/kf5-kpeople/distinfo (revision 450056) @@ -1,3 +1,3 @@ -TIMESTAMP = 1502086008 -SHA256 (KDE/frameworks/5.37.0/kpeople-5.37.0.tar.xz) = 4e6353c80dd9b7c3a21a6ccacc278fb90936e6d6772a9e6a60aaa0743127f7e1 -SIZE (KDE/frameworks/5.37.0/kpeople-5.37.0.tar.xz) = 59356 +TIMESTAMP = 1504433752 +SHA256 (KDE/frameworks/5.38.0/kpeople-5.38.0.tar.xz) = 1d78459d0c7da5674d64d6ef421fcd3598823a44c3a62ca534dcbd650649a279 +SIZE (KDE/frameworks/5.38.0/kpeople-5.38.0.tar.xz) = 59584 Index: head/devel/kf5-kpeople/pkg-plist =================================================================== --- head/devel/kf5-kpeople/pkg-plist (revision 450055) +++ head/devel/kf5-kpeople/pkg-plist (revision 450056) @@ -1,92 +1,93 @@ include/KF5/KPeople/KPeople/Global include/KF5/KPeople/KPeople/PersonData include/KF5/KPeople/KPeople/PersonsModel include/KF5/KPeople/KPeople/Widgets/AbstractFieldWidgetFactory include/KF5/KPeople/KPeople/Widgets/Actions include/KF5/KPeople/KPeople/Widgets/MergeDialog include/KF5/KPeople/KPeople/Widgets/PersonDetailsDialog include/KF5/KPeople/KPeople/Widgets/PersonDetailsView include/KF5/KPeople/KPeopleBackend/AbstractContact include/KF5/KPeople/KPeopleBackend/AbstractPersonAction include/KF5/KPeople/KPeopleBackend/AllContactsMonitor include/KF5/KPeople/KPeopleBackend/BasePersonsDataSource include/KF5/KPeople/KPeopleBackend/ContactMonitor include/KF5/KPeople/kpeople/global.h include/KF5/KPeople/kpeople/kpeople_export.h include/KF5/KPeople/kpeople/persondata.h include/KF5/KPeople/kpeople/personsmodel.h include/KF5/KPeople/kpeople/widgets/abstractfieldwidgetfactory.h include/KF5/KPeople/kpeople/widgets/actions.h include/KF5/KPeople/kpeople/widgets/kpeoplewidgets_export.h include/KF5/KPeople/kpeople/widgets/mergedialog.h include/KF5/KPeople/kpeople/widgets/persondetailsdialog.h include/KF5/KPeople/kpeople/widgets/persondetailsview.h include/KF5/KPeople/kpeoplebackend/abstractcontact.h include/KF5/KPeople/kpeoplebackend/abstractpersonaction.h include/KF5/KPeople/kpeoplebackend/allcontactsmonitor.h include/KF5/KPeople/kpeoplebackend/basepersonsdatasource.h include/KF5/KPeople/kpeoplebackend/contactmonitor.h include/KF5/KPeople/kpeoplebackend/kpeoplebackend_export.h lib/cmake/KF5People/KF5PeopleConfig.cmake lib/cmake/KF5People/KF5PeopleConfigVersion.cmake lib/cmake/KF5People/KPeopleTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5People/KPeopleTargets.cmake lib/libKF5People.so lib/libKF5People.so.5 lib/libKF5People.so.%%KDE_FRAMEWORKS_VERSION%% lib/libKF5PeopleBackend.so lib/libKF5PeopleBackend.so.5 lib/libKF5PeopleBackend.so.%%KDE_FRAMEWORKS_VERSION%% lib/libKF5PeopleWidgets.so lib/libKF5PeopleWidgets.so.5 lib/libKF5PeopleWidgets.so.%%KDE_FRAMEWORKS_VERSION%% %%QT_QMLDIR%%/org/kde/people/libKF5PeopleDeclarative.so %%QT_QMLDIR%%/org/kde/people/qmldir %%QT_MKSPECDIR%%/modules/qt_KPeople.pri %%QT_MKSPECDIR%%/modules/qt_KPeopleWidgets.pri share/kf5/kpeople/dummy_avatar.png share/kservicetypes5/kpeople_data_source.desktop share/kservicetypes5/kpeople_plugin.desktop share/kservicetypes5/persondetailsplugin.desktop share/locale/ar/LC_MESSAGES/kpeople5.mo share/locale/ast/LC_MESSAGES/kpeople5.mo share/locale/bs/LC_MESSAGES/kpeople5.mo share/locale/ca/LC_MESSAGES/kpeople5.mo share/locale/ca@valencia/LC_MESSAGES/kpeople5.mo share/locale/cs/LC_MESSAGES/kpeople5.mo share/locale/da/LC_MESSAGES/kpeople5.mo share/locale/de/LC_MESSAGES/kpeople5.mo share/locale/el/LC_MESSAGES/kpeople5.mo share/locale/en_GB/LC_MESSAGES/kpeople5.mo share/locale/es/LC_MESSAGES/kpeople5.mo share/locale/et/LC_MESSAGES/kpeople5.mo +share/locale/eu/LC_MESSAGES/kpeople5.mo share/locale/fi/LC_MESSAGES/kpeople5.mo share/locale/fr/LC_MESSAGES/kpeople5.mo share/locale/gd/LC_MESSAGES/kpeople5.mo share/locale/gl/LC_MESSAGES/kpeople5.mo share/locale/he/LC_MESSAGES/kpeople5.mo share/locale/hu/LC_MESSAGES/kpeople5.mo share/locale/ia/LC_MESSAGES/kpeople5.mo share/locale/it/LC_MESSAGES/kpeople5.mo share/locale/ja/LC_MESSAGES/kpeople5.mo share/locale/ko/LC_MESSAGES/kpeople5.mo share/locale/lt/LC_MESSAGES/kpeople5.mo share/locale/nb/LC_MESSAGES/kpeople5.mo share/locale/nl/LC_MESSAGES/kpeople5.mo share/locale/nn/LC_MESSAGES/kpeople5.mo share/locale/pl/LC_MESSAGES/kpeople5.mo share/locale/pt/LC_MESSAGES/kpeople5.mo share/locale/pt_BR/LC_MESSAGES/kpeople5.mo share/locale/ro/LC_MESSAGES/kpeople5.mo share/locale/ru/LC_MESSAGES/kpeople5.mo share/locale/sk/LC_MESSAGES/kpeople5.mo share/locale/sl/LC_MESSAGES/kpeople5.mo share/locale/sr/LC_MESSAGES/kpeople5.mo share/locale/sr@ijekavian/LC_MESSAGES/kpeople5.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kpeople5.mo share/locale/sr@latin/LC_MESSAGES/kpeople5.mo share/locale/sv/LC_MESSAGES/kpeople5.mo share/locale/tr/LC_MESSAGES/kpeople5.mo share/locale/uk/LC_MESSAGES/kpeople5.mo share/locale/zh_CN/LC_MESSAGES/kpeople5.mo share/locale/zh_TW/LC_MESSAGES/kpeople5.mo Index: head/devel/kf5-kpty/Makefile =================================================================== --- head/devel/kf5-kpty/Makefile (revision 450055) +++ head/devel/kf5-kpty/Makefile (revision 450056) @@ -1,16 +1,15 @@ # Created by: tcberner # $FreeBSD$ PORTNAME= kpty PORTVERSION= ${KDE_FRAMEWORKS_VERSION} -PORTREVISION= 1 CATEGORIES= devel kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 pty abstraction USES= cmake:outsource compiler:c++11-lib gettext kde:5 tar:xz USE_KDE= coreaddons ecm i18n USE_QT5= buildtools_build core qmake_build .include Index: head/devel/kf5-kpty/distinfo =================================================================== --- head/devel/kf5-kpty/distinfo (revision 450055) +++ head/devel/kf5-kpty/distinfo (revision 450056) @@ -1,3 +1,3 @@ -TIMESTAMP = 1502086008 -SHA256 (KDE/frameworks/5.37.0/kpty-5.37.0.tar.xz) = aab4ff0a6025e6dab859ce74a5cbf7031c52fe8674740c7408f1311ff2386871 -SIZE (KDE/frameworks/5.37.0/kpty-5.37.0.tar.xz) = 58204 +TIMESTAMP = 1504433753 +SHA256 (KDE/frameworks/5.38.0/kpty-5.38.0.tar.xz) = de98c5e8c13135aee4038b53b7656d8dad88e6a652140390608fdedc2344f031 +SIZE (KDE/frameworks/5.38.0/kpty-5.38.0.tar.xz) = 58200 Index: head/devel/kf5-kservice/Makefile =================================================================== --- head/devel/kf5-kservice/Makefile (revision 450055) +++ head/devel/kf5-kservice/Makefile (revision 450056) @@ -1,20 +1,19 @@ # Created by: tcberner # $FreeBSD$ PORTNAME= kservice PORTVERSION= ${KDE_FRAMEWORKS_VERSION} -PORTREVISION= 1 CATEGORIES= devel kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 advanced plugin and service introspection USES= bison cmake:outsource compiler:c++11-lib gettext kde:5 tar:xz USE_KDE= archive config coreaddons crash dbusaddons \ doctools ecm i18n USE_QT5= buildtools_build core dbus gui qmake_build xml # Make the applications.menu file not conflict with KDE4. CMAKE_ARGS= -DAPPLICATIONS_MENU_NAME:STRING="kf5-applications.menu" .include Index: head/devel/kf5-kservice/distinfo =================================================================== --- head/devel/kf5-kservice/distinfo (revision 450055) +++ head/devel/kf5-kservice/distinfo (revision 450056) @@ -1,3 +1,3 @@ -TIMESTAMP = 1502086008 -SHA256 (KDE/frameworks/5.37.0/kservice-5.37.0.tar.xz) = 196e9bdbdb28bfda75120cf1f7d49f68bc345f248cdca8f718bee6d1be2fbaff -SIZE (KDE/frameworks/5.37.0/kservice-5.37.0.tar.xz) = 249748 +TIMESTAMP = 1504433753 +SHA256 (KDE/frameworks/5.38.0/kservice-5.38.0.tar.xz) = 2d31c96d8fad235aa2bfc96258ac03d7ec064184fe6a54856f9d7407fbae4a7d +SIZE (KDE/frameworks/5.38.0/kservice-5.38.0.tar.xz) = 250000 Index: head/devel/kf5-ktexteditor/Makefile =================================================================== --- head/devel/kf5-ktexteditor/Makefile (revision 450055) +++ head/devel/kf5-ktexteditor/Makefile (revision 450056) @@ -1,22 +1,21 @@ # Created by: tcberner # $FreeBSD$ PORTNAME= ktexteditor PORTVERSION= ${KDE_FRAMEWORKS_VERSION} -PORTREVISION= 1 CATEGORIES= devel kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 advanced embeddable text editor LIB_DEPENDS= libgit2.so:devel/libgit2 USES= cmake:outsource compiler:c++11-lib gettext kde:5 pkgconfig tar:xz USE_KDE= archive auth codecs completion config configwidgets \ coreaddons ecm guiaddons i18n iconthemes itemviews \ jobwidgets kio parts service sonnet syntaxhighlighting \ textwidgets widgetsaddons xmlgui USE_QT5= buildtools_build core dbus gui network printsupport \ qmake_build script widgets xml xmlpatterns .include Index: head/devel/kf5-ktexteditor/distinfo =================================================================== --- head/devel/kf5-ktexteditor/distinfo (revision 450055) +++ head/devel/kf5-ktexteditor/distinfo (revision 450056) @@ -1,3 +1,3 @@ -TIMESTAMP = 1502086008 -SHA256 (KDE/frameworks/5.37.0/ktexteditor-5.37.0.tar.xz) = 7ae65ca215a53dc4e35877069004c748d8a8b504aecbeaa3b916b8c96dd00478 -SIZE (KDE/frameworks/5.37.0/ktexteditor-5.37.0.tar.xz) = 2285796 +TIMESTAMP = 1504433754 +SHA256 (KDE/frameworks/5.38.0/ktexteditor-5.38.0.tar.xz) = 31e7b3118a2cb56176d85538ef43f41842add3ef5c881786a7db7122c37ebea4 +SIZE (KDE/frameworks/5.38.0/ktexteditor-5.38.0.tar.xz) = 2288404 Index: head/devel/kf5-kunitconversion/Makefile =================================================================== --- head/devel/kf5-kunitconversion/Makefile (revision 450055) +++ head/devel/kf5-kunitconversion/Makefile (revision 450056) @@ -1,16 +1,15 @@ # Created by: tcberner # $FreeBSD$ PORTNAME= kunitconversion PORTVERSION= ${KDE_FRAMEWORKS_VERSION} -PORTREVISION= 1 CATEGORIES= devel kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 library for unit conversion USES= cmake:outsource compiler:c++11-lib gettext kde:5 pkgconfig tar:xz USE_KDE= ecm i18n USE_QT5= buildtools_build core network qmake_build xml .include Index: head/devel/kf5-kunitconversion/distinfo =================================================================== --- head/devel/kf5-kunitconversion/distinfo (revision 450055) +++ head/devel/kf5-kunitconversion/distinfo (revision 450056) @@ -1,3 +1,3 @@ -TIMESTAMP = 1502086008 -SHA256 (KDE/frameworks/5.37.0/kunitconversion-5.37.0.tar.xz) = 514b768a1077ad35454859aa8897511dc4aa4ee7b297d86c91caa6bd743078e3 -SIZE (KDE/frameworks/5.37.0/kunitconversion-5.37.0.tar.xz) = 771032 +TIMESTAMP = 1504433754 +SHA256 (KDE/frameworks/5.38.0/kunitconversion-5.38.0.tar.xz) = 6c538b35e727f75e90178b6b5b17d299a3ce797bd82a6adb0af4e41096eb6082 +SIZE (KDE/frameworks/5.38.0/kunitconversion-5.38.0.tar.xz) = 770796 Index: head/devel/kf5-solid/Makefile =================================================================== --- head/devel/kf5-solid/Makefile (revision 450055) +++ head/devel/kf5-solid/Makefile (revision 450056) @@ -1,22 +1,21 @@ # Created by: tcberner # $FreeBSD$ PORTNAME= solid PORTVERSION= ${KDE_FRAMEWORKS_VERSION} -PORTREVISION= 1 CATEGORIES= devel kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 hardware integration and detection USES= bison cmake:outsource compiler:c++11-lib kde:5 tar:xz USE_KDE= ecm USE_QT5= buildtools_build concurrent core dbus gui linguisttools \ network qmake_build qml testlib widgets xml OPTIONS_DEFINE= BSDISKS BSDISKS_DESC= Use bsdisks instead of hald to mount drives BSDISKS_CMAKE_BOOL= EXPERIMENTAL_BSDISKS BSDISKS_RUN_DEPENDS= bsdisks:sysutils/bsdisks .include Index: head/devel/kf5-solid/distinfo =================================================================== --- head/devel/kf5-solid/distinfo (revision 450055) +++ head/devel/kf5-solid/distinfo (revision 450056) @@ -1,3 +1,3 @@ -TIMESTAMP = 1502086009 -SHA256 (KDE/frameworks/5.37.0/solid-5.37.0.tar.xz) = 14bd7b814f3fb87ea7d26338a05966380b1703d6679d44972a380415ae7d69bd -SIZE (KDE/frameworks/5.37.0/solid-5.37.0.tar.xz) = 248120 +TIMESTAMP = 1504433754 +SHA256 (KDE/frameworks/5.38.0/solid-5.38.0.tar.xz) = 1052830aaed16391563dc35fe0e01bba2813acf2e0c70fa2223d54d2732b6cac +SIZE (KDE/frameworks/5.38.0/solid-5.38.0.tar.xz) = 248172 Index: head/devel/kf5-threadweaver/Makefile =================================================================== --- head/devel/kf5-threadweaver/Makefile (revision 450055) +++ head/devel/kf5-threadweaver/Makefile (revision 450056) @@ -1,16 +1,15 @@ # Created by: tcberner # $FreeBSD$ PORTNAME= threadweaver PORTVERSION= ${KDE_FRAMEWORKS_VERSION} -PORTREVISION= 1 CATEGORIES= devel kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 addons to QtDBus USES= cmake:outsource compiler:c++11-lib kde:5 tar:xz USE_KDE= ecm USE_QT5= buildtools_build core network qmake_build testlib widgets xml .include Index: head/devel/kf5-threadweaver/distinfo =================================================================== --- head/devel/kf5-threadweaver/distinfo (revision 450055) +++ head/devel/kf5-threadweaver/distinfo (revision 450056) @@ -1,3 +1,3 @@ -TIMESTAMP = 1502086009 -SHA256 (KDE/frameworks/5.37.0/threadweaver-5.37.0.tar.xz) = a4f79b937020f4a7b44e8fc1a6339828cccea6d306a11084f46bfd90833863c1 -SIZE (KDE/frameworks/5.37.0/threadweaver-5.37.0.tar.xz) = 1409680 +TIMESTAMP = 1504433755 +SHA256 (KDE/frameworks/5.38.0/threadweaver-5.38.0.tar.xz) = db6dca72315a376fa8852f0059113a5880a002e311e5f4591138303b69a209b5 +SIZE (KDE/frameworks/5.38.0/threadweaver-5.38.0.tar.xz) = 1409464 Index: head/dns/kf5-kdnssd/Makefile =================================================================== --- head/dns/kf5-kdnssd/Makefile (revision 450055) +++ head/dns/kf5-kdnssd/Makefile (revision 450056) @@ -1,26 +1,25 @@ # Created by: tcberner # $FreeBSD$ PORTNAME= kdnssd PORTVERSION= ${KDE_FRAMEWORKS_VERSION} -PORTREVISION= 1 CATEGORIES= dns kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 abstraction to system DNSSD features OPTIONS_DEFAULT=AVAHI OPTIONS_RADIO=ZEROCONF OPTIONS_RADIO_ZEROCONF=AVAHI MDNSRESPONDER ZEROCONF_DESC= Zeroconf (Bonjour) support AVAHI_CLAGS+= -I${LOCALBASE}/include/avahi-compat-libdns_sd AVAHI_LIB_DEPENDS= libdns_sd.so:net/avahi-libdns MDNSRESPONDER_LIB_DEPENDS= libdns_sd.so:net/mDNSResponder # TODO: options to depend on avahi and/or dnssd USES= cmake:outsource compiler:c++11-lib kde:5 pkgconfig tar:xz USE_KDE= ecm USE_QT5= buildtools_build core dbus linguisttools network qmake_build .include Index: head/dns/kf5-kdnssd/distinfo =================================================================== --- head/dns/kf5-kdnssd/distinfo (revision 450055) +++ head/dns/kf5-kdnssd/distinfo (revision 450056) @@ -1,3 +1,3 @@ -TIMESTAMP = 1502086009 -SHA256 (KDE/frameworks/5.37.0/kdnssd-5.37.0.tar.xz) = bf30e680be8e1a00fde32a97517c368045cfa91e60ad51896d966361ed372d0f -SIZE (KDE/frameworks/5.37.0/kdnssd-5.37.0.tar.xz) = 56560 +TIMESTAMP = 1504433755 +SHA256 (KDE/frameworks/5.38.0/kdnssd-5.38.0.tar.xz) = 1d70cc194e45fe12e09005948fb794a3deb1e2d58d0269bef3a30a9cfbf32f80 +SIZE (KDE/frameworks/5.38.0/kdnssd-5.38.0.tar.xz) = 56544 Index: head/graphics/kf5-kimageformats/Makefile =================================================================== --- head/graphics/kf5-kimageformats/Makefile (revision 450055) +++ head/graphics/kf5-kimageformats/Makefile (revision 450056) @@ -1,19 +1,18 @@ # Created by: tcberner # $FreeBSD$ PORTNAME= kimageformats PORTVERSION= ${KDE_FRAMEWORKS_VERSION} -PORTREVISION= 1 CATEGORIES= graphics kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 library providing support for additional image formats LIB_DEPENDS= libIlmImf.so:graphics/OpenEXR \ libHalf.so:graphics/ilmbase USES= cmake:outsource compiler:c++11-lib kde:5 pkgconfig tar:xz USE_KDE= archive ecm USE_QT5= buildtools_build core gui printsupport qmake_build widgets .include Index: head/graphics/kf5-kimageformats/distinfo =================================================================== --- head/graphics/kf5-kimageformats/distinfo (revision 450055) +++ head/graphics/kf5-kimageformats/distinfo (revision 450056) @@ -1,3 +1,3 @@ -TIMESTAMP = 1502086009 -SHA256 (KDE/frameworks/5.37.0/kimageformats-5.37.0.tar.xz) = 6fb26812cd971dd23676f10096a097e2c1f1be8dee7249a7dd40cb2fb951d0ce -SIZE (KDE/frameworks/5.37.0/kimageformats-5.37.0.tar.xz) = 204336 +TIMESTAMP = 1504433756 +SHA256 (KDE/frameworks/5.38.0/kimageformats-5.38.0.tar.xz) = 97ca8eaa52f296e7fddde25abfe6c7707070b075e92e487da9edb3c719d4e860 +SIZE (KDE/frameworks/5.38.0/kimageformats-5.38.0.tar.xz) = 204624 Index: head/graphics/kf5-kplotting/Makefile =================================================================== --- head/graphics/kf5-kplotting/Makefile (revision 450055) +++ head/graphics/kf5-kplotting/Makefile (revision 450056) @@ -1,16 +1,15 @@ # Created by: tcberner # $FreeBSD$ PORTNAME= kplotting PORTVERSION= ${KDE_FRAMEWORKS_VERSION} -PORTREVISION= 1 CATEGORIES= graphics kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 lightweight plotting framework USES= cmake:outsource compiler:c++11-lib kde:5 tar:xz USE_KDE= ecm USE_QT5= buildtools_build core gui qmake_build testlib widgets .include Index: head/graphics/kf5-kplotting/distinfo =================================================================== --- head/graphics/kf5-kplotting/distinfo (revision 450055) +++ head/graphics/kf5-kplotting/distinfo (revision 450056) @@ -1,3 +1,3 @@ -TIMESTAMP = 1502086009 -SHA256 (KDE/frameworks/5.37.0/kplotting-5.37.0.tar.xz) = fc837e0f21a6acbcff6b44d1c8b2143737bdc813839af0ea0a30550937069a4c -SIZE (KDE/frameworks/5.37.0/kplotting-5.37.0.tar.xz) = 29668 +TIMESTAMP = 1504433756 +SHA256 (KDE/frameworks/5.38.0/kplotting-5.38.0.tar.xz) = e2d8ef624735a56f3998c88af6f06209221af5f27ef05096d65ebb124dc56ec3 +SIZE (KDE/frameworks/5.38.0/kplotting-5.38.0.tar.xz) = 29680 Index: head/graphics/kf5-prison/Makefile =================================================================== --- head/graphics/kf5-prison/Makefile (revision 450055) +++ head/graphics/kf5-prison/Makefile (revision 450056) @@ -1,19 +1,18 @@ # Created by: tcberner # $FreeBSD$ PORTNAME= prison PORTVERSION= ${KDE_FRAMEWORKS_VERSION} -PORTREVISION= 1 CATEGORIES= graphics kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= API to prodcue barcodes LIB_DEPENDS= libdmtx.so:graphics/libdmtx \ libqrencode.so:graphics/libqrencode USES= cmake:outsource compiler:c++11-lang kde:5 tar:xz USE_KDE= ecm USE_QT5= buildtools_build core gui qmake_build testlib widgets .include Index: head/graphics/kf5-prison/distinfo =================================================================== --- head/graphics/kf5-prison/distinfo (revision 450055) +++ head/graphics/kf5-prison/distinfo (revision 450056) @@ -1,3 +1,3 @@ -TIMESTAMP = 1502086010 -SHA256 (KDE/frameworks/5.37.0/prison-5.37.0.tar.xz) = 67f1e0520670a57f39939c3a09a10a48c38fd5b94fbcd45165fa1fe8788e9ac5 -SIZE (KDE/frameworks/5.37.0/prison-5.37.0.tar.xz) = 13880 +TIMESTAMP = 1504433757 +SHA256 (KDE/frameworks/5.38.0/prison-5.38.0.tar.xz) = 95bc65c9164b8ed8cace08be7dfdf12cc9a398a42e2b4c66852faaa1cd1f325f +SIZE (KDE/frameworks/5.38.0/prison-5.38.0.tar.xz) = 13860 Index: head/lang/kf5-kross/Makefile =================================================================== --- head/lang/kf5-kross/Makefile (revision 450055) +++ head/lang/kf5-kross/Makefile (revision 450056) @@ -1,20 +1,19 @@ # Created by: tcberner # $FreeBSD$ PORTNAME= kross PORTVERSION= ${KDE_FRAMEWORKS_VERSION} -PORTREVISION= 1 CATEGORIES= lang kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 multi-language application scripting USES= cmake:outsource compiler:c++11-lib gettext kde:5 tar:xz USE_KDE= auth bookmarks codecs completion config configwidgets \ coreaddons doctools ecm i18n iconthemes itemviews \ jobwidgets kio parts service solid sonnet textwidgets \ widgetsaddons xmlgui USE_QT5= buildtools_build core dbus gui network qmake_build \ script uiplugin uitools widgets xml .include Index: head/lang/kf5-kross/distinfo =================================================================== --- head/lang/kf5-kross/distinfo (revision 450055) +++ head/lang/kf5-kross/distinfo (revision 450056) @@ -1,3 +1,3 @@ -TIMESTAMP = 1502086071 -SHA256 (KDE/frameworks/5.37.0/kross-5.37.0.tar.xz) = 611279d67a599d86e864980e50585eece994cb9d70569d533fed0ab48d33f31a -SIZE (KDE/frameworks/5.37.0/kross-5.37.0.tar.xz) = 127792 +TIMESTAMP = 1504433757 +SHA256 (KDE/frameworks/5.38.0/kross-5.38.0.tar.xz) = 670dc18d258e8f821fcd64ba30c587ac3afaecbc54d968edb0fe624682788cb5 +SIZE (KDE/frameworks/5.38.0/kross-5.38.0.tar.xz) = 127820 Index: head/multimedia/kf5-kmediaplayer/Makefile =================================================================== --- head/multimedia/kf5-kmediaplayer/Makefile (revision 450055) +++ head/multimedia/kf5-kmediaplayer/Makefile (revision 450056) @@ -1,19 +1,18 @@ # Created by: tcberner # $FreeBSD$ PORTNAME= kmediaplayer PORTVERSION= ${KDE_FRAMEWORKS_VERSION} -PORTREVISION= 1 CATEGORIES= multimedia kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 plugin interface for media player features USES= cmake:outsource compiler:c++11-lib gettext kde:5 tar:xz USE_KDE= auth codecs completion config configwidgets coreaddons \ ecm i18n jobwidgets kio parts service sonnet textwidgets \ widgetsaddons xmlgui USE_QT5= buildtools_build core dbus gui network qmake_build \ testlib widgets xml .include Index: head/multimedia/kf5-kmediaplayer/distinfo =================================================================== --- head/multimedia/kf5-kmediaplayer/distinfo (revision 450055) +++ head/multimedia/kf5-kmediaplayer/distinfo (revision 450056) @@ -1,3 +1,3 @@ -TIMESTAMP = 1502086071 -SHA256 (KDE/frameworks/5.37.0/kmediaplayer-5.37.0.tar.xz) = 5712f0c69f77a2bdbb698c9187b54cd7591d693201a7aef40fe17dced9cc1d3b -SIZE (KDE/frameworks/5.37.0/kmediaplayer-5.37.0.tar.xz) = 9568 +TIMESTAMP = 1504433758 +SHA256 (KDE/frameworks/5.38.0/kmediaplayer-5.38.0.tar.xz) = 669c07be42c2412212a183ca86e7500e11a49f4a52cc26221aee8583247a62e1 +SIZE (KDE/frameworks/5.38.0/kmediaplayer-5.38.0.tar.xz) = 9572 Index: head/net/kf5-kxmlrpcclient/Makefile =================================================================== --- head/net/kf5-kxmlrpcclient/Makefile (revision 450055) +++ head/net/kf5-kxmlrpcclient/Makefile (revision 450056) @@ -1,16 +1,15 @@ # Created by: tcberner # $FreeBSD$ PORTNAME= kxmlrpcclient PORTVERSION= ${KDE_FRAMEWORKS_VERSION} -PORTREVISION= 1 CATEGORIES= net kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 interaction with XMLRPC services USES= cmake:outsource compiler:c++11-lib gettext kde:5 tar:xz USE_KDE= config coreaddons ecm doctools i18n kio service USE_QT5= buildtools_build core gui qmake_build xml .include Index: head/net/kf5-kxmlrpcclient/distinfo =================================================================== --- head/net/kf5-kxmlrpcclient/distinfo (revision 450055) +++ head/net/kf5-kxmlrpcclient/distinfo (revision 450056) @@ -1,3 +1,3 @@ -TIMESTAMP = 1502086071 -SHA256 (KDE/frameworks/5.37.0/kxmlrpcclient-5.37.0.tar.xz) = 78bfc409af7d71f0387973cabe8b520627f5eca5e66ad6181ea4bbdb0cdac9ca -SIZE (KDE/frameworks/5.37.0/kxmlrpcclient-5.37.0.tar.xz) = 29076 +TIMESTAMP = 1504433758 +SHA256 (KDE/frameworks/5.38.0/kxmlrpcclient-5.38.0.tar.xz) = 4a79382406f247bd9ace01859cb92948e74e48c7abb94b9e47066f0453812a3d +SIZE (KDE/frameworks/5.38.0/kxmlrpcclient-5.38.0.tar.xz) = 29276 Index: head/net/kf5-kxmlrpcclient/pkg-plist =================================================================== --- head/net/kf5-kxmlrpcclient/pkg-plist (revision 450055) +++ head/net/kf5-kxmlrpcclient/pkg-plist (revision 450056) @@ -1,69 +1,70 @@ include/KF5/KXmlRpcClient/KXmlRpcClient/Client include/KF5/KXmlRpcClient/kxmlrpcclient/client.h include/KF5/KXmlRpcClient/kxmlrpcclient/kxmlrpcclient_export.h include/KF5/kxmlrpcclient_version.h lib/cmake/KF5XmlRpcClient/KF5XmlRpcClientConfig.cmake lib/cmake/KF5XmlRpcClient/KF5XmlRpcClientConfigVersion.cmake lib/cmake/KF5XmlRpcClient/KF5XmlRpcClientTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5XmlRpcClient/KF5XmlRpcClientTargets.cmake lib/libKF5XmlRpcClient.so lib/libKF5XmlRpcClient.so.5 lib/libKF5XmlRpcClient.so.%%KDE_FRAMEWORKS_VERSION%% %%QT_MKSPECDIR%%/modules/qt_KXmlRpcClient.pri share/locale/ar/LC_MESSAGES/libkxmlrpcclient5.mo share/locale/ast/LC_MESSAGES/libkxmlrpcclient5.mo share/locale/be/LC_MESSAGES/libkxmlrpcclient5.mo share/locale/bg/LC_MESSAGES/libkxmlrpcclient5.mo share/locale/bs/LC_MESSAGES/libkxmlrpcclient5.mo share/locale/ca/LC_MESSAGES/libkxmlrpcclient5.mo share/locale/ca@valencia/LC_MESSAGES/libkxmlrpcclient5.mo share/locale/cs/LC_MESSAGES/libkxmlrpcclient5.mo share/locale/da/LC_MESSAGES/libkxmlrpcclient5.mo share/locale/de/LC_MESSAGES/libkxmlrpcclient5.mo share/locale/el/LC_MESSAGES/libkxmlrpcclient5.mo share/locale/en_GB/LC_MESSAGES/libkxmlrpcclient5.mo share/locale/eo/LC_MESSAGES/libkxmlrpcclient5.mo share/locale/es/LC_MESSAGES/libkxmlrpcclient5.mo share/locale/et/LC_MESSAGES/libkxmlrpcclient5.mo +share/locale/eu/LC_MESSAGES/libkxmlrpcclient5.mo share/locale/fi/LC_MESSAGES/libkxmlrpcclient5.mo share/locale/fr/LC_MESSAGES/libkxmlrpcclient5.mo share/locale/ga/LC_MESSAGES/libkxmlrpcclient5.mo share/locale/gd/LC_MESSAGES/libkxmlrpcclient5.mo share/locale/gl/LC_MESSAGES/libkxmlrpcclient5.mo share/locale/he/LC_MESSAGES/libkxmlrpcclient5.mo share/locale/hi/LC_MESSAGES/libkxmlrpcclient5.mo share/locale/hne/LC_MESSAGES/libkxmlrpcclient5.mo share/locale/hu/LC_MESSAGES/libkxmlrpcclient5.mo share/locale/ia/LC_MESSAGES/libkxmlrpcclient5.mo share/locale/it/LC_MESSAGES/libkxmlrpcclient5.mo share/locale/ja/LC_MESSAGES/libkxmlrpcclient5.mo share/locale/kk/LC_MESSAGES/libkxmlrpcclient5.mo share/locale/km/LC_MESSAGES/libkxmlrpcclient5.mo share/locale/ko/LC_MESSAGES/libkxmlrpcclient5.mo share/locale/lt/LC_MESSAGES/libkxmlrpcclient5.mo share/locale/lv/LC_MESSAGES/libkxmlrpcclient5.mo share/locale/mr/LC_MESSAGES/libkxmlrpcclient5.mo share/locale/nb/LC_MESSAGES/libkxmlrpcclient5.mo share/locale/nds/LC_MESSAGES/libkxmlrpcclient5.mo share/locale/nl/LC_MESSAGES/libkxmlrpcclient5.mo share/locale/nn/LC_MESSAGES/libkxmlrpcclient5.mo share/locale/pa/LC_MESSAGES/libkxmlrpcclient5.mo share/locale/pl/LC_MESSAGES/libkxmlrpcclient5.mo share/locale/pt/LC_MESSAGES/libkxmlrpcclient5.mo share/locale/pt_BR/LC_MESSAGES/libkxmlrpcclient5.mo share/locale/ro/LC_MESSAGES/libkxmlrpcclient5.mo share/locale/ru/LC_MESSAGES/libkxmlrpcclient5.mo share/locale/se/LC_MESSAGES/libkxmlrpcclient5.mo share/locale/sk/LC_MESSAGES/libkxmlrpcclient5.mo share/locale/sl/LC_MESSAGES/libkxmlrpcclient5.mo share/locale/sq/LC_MESSAGES/libkxmlrpcclient5.mo share/locale/sr/LC_MESSAGES/libkxmlrpcclient5.mo share/locale/sr@ijekavian/LC_MESSAGES/libkxmlrpcclient5.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/libkxmlrpcclient5.mo share/locale/sr@latin/LC_MESSAGES/libkxmlrpcclient5.mo share/locale/sv/LC_MESSAGES/libkxmlrpcclient5.mo share/locale/tr/LC_MESSAGES/libkxmlrpcclient5.mo share/locale/ug/LC_MESSAGES/libkxmlrpcclient5.mo share/locale/uk/LC_MESSAGES/libkxmlrpcclient5.mo share/locale/zh_CN/LC_MESSAGES/libkxmlrpcclient5.mo share/locale/zh_TW/LC_MESSAGES/libkxmlrpcclient5.mo Index: head/security/kf5-kdesu/Makefile =================================================================== --- head/security/kf5-kdesu/Makefile (revision 450055) +++ head/security/kf5-kdesu/Makefile (revision 450056) @@ -1,17 +1,16 @@ # Created by: tcberner # $FreeBSD$ PORTNAME= kdesu PORTVERSION= ${KDE_FRAMEWORKS_VERSION} -PORTREVISION= 1 CATEGORIES= security kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 integration with su for elevated privileges USES= cmake:outsource compiler:c++11-lib gettext kde:5 tar:xz USE_KDE= config coreaddons dbusaddons ecm i18n pty service USE_QT5= buildtools_build core dbus qmake_build xml USE_XORG= ice sm x11 xext .include Index: head/security/kf5-kdesu/distinfo =================================================================== --- head/security/kf5-kdesu/distinfo (revision 450055) +++ head/security/kf5-kdesu/distinfo (revision 450056) @@ -1,3 +1,3 @@ -TIMESTAMP = 1502086071 -SHA256 (KDE/frameworks/5.37.0/kdesu-5.37.0.tar.xz) = ea37e8517ab376f86c9d7df726f0f8f143fac198c6a3a6a26f2e276ae69fd0e1 -SIZE (KDE/frameworks/5.37.0/kdesu-5.37.0.tar.xz) = 44660 +TIMESTAMP = 1504433758 +SHA256 (KDE/frameworks/5.38.0/kdesu-5.38.0.tar.xz) = 25b35914fa9cab6f70d09970324385d7ea14f3edb6ff1908bc12e403e31732b1 +SIZE (KDE/frameworks/5.38.0/kdesu-5.38.0.tar.xz) = 44928 Index: head/security/kf5-kdesu/pkg-plist =================================================================== --- head/security/kf5-kdesu/pkg-plist (revision 450055) +++ head/security/kf5-kdesu/pkg-plist (revision 450056) @@ -1,71 +1,72 @@ include/KF5/KDESu/KDESu/Client include/KF5/KDESu/KDESu/PtyProcess include/KF5/KDESu/KDESu/SshProcess include/KF5/KDESu/KDESu/StubProcess include/KF5/KDESu/KDESu/SuProcess include/KF5/KDESu/kdesu/client.h include/KF5/KDESu/kdesu/defaults.h include/KF5/KDESu/kdesu/kdesu_export.h include/KF5/KDESu/kdesu/process.h include/KF5/KDESu/kdesu/ptyprocess.h include/KF5/KDESu/kdesu/ssh.h include/KF5/KDESu/kdesu/sshprocess.h include/KF5/KDESu/kdesu/stub.h include/KF5/KDESu/kdesu/stubprocess.h include/KF5/KDESu/kdesu/su.h include/KF5/KDESu/kdesu/suprocess.h include/KF5/kdesu_version.h lib/cmake/KF5Su/KF5SuConfig.cmake lib/cmake/KF5Su/KF5SuConfigVersion.cmake lib/cmake/KF5Su/KF5SuTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5Su/KF5SuTargets.cmake lib/libKF5Su.so lib/libKF5Su.so.5 lib/libKF5Su.so.%%KDE_FRAMEWORKS_VERSION%% lib/libexec/kf5/kdesu_stub lib/libexec/kf5/kdesud %%QT_MKSPECDIR%%/modules/qt_KDESu.pri share/locale/ar/LC_MESSAGES/kdesud5.mo share/locale/ast/LC_MESSAGES/kdesud5.mo share/locale/bs/LC_MESSAGES/kdesud5.mo share/locale/ca/LC_MESSAGES/kdesud5.mo share/locale/ca@valencia/LC_MESSAGES/kdesud5.mo share/locale/cs/LC_MESSAGES/kdesud5.mo share/locale/da/LC_MESSAGES/kdesud5.mo share/locale/de/LC_MESSAGES/kdesud5.mo share/locale/el/LC_MESSAGES/kdesud5.mo share/locale/en_GB/LC_MESSAGES/kdesud5.mo share/locale/es/LC_MESSAGES/kdesud5.mo share/locale/et/LC_MESSAGES/kdesud5.mo +share/locale/eu/LC_MESSAGES/kdesud5.mo share/locale/fi/LC_MESSAGES/kdesud5.mo share/locale/fr/LC_MESSAGES/kdesud5.mo share/locale/gd/LC_MESSAGES/kdesud5.mo share/locale/gl/LC_MESSAGES/kdesud5.mo share/locale/hu/LC_MESSAGES/kdesud5.mo share/locale/ia/LC_MESSAGES/kdesud5.mo share/locale/it/LC_MESSAGES/kdesud5.mo share/locale/ja/LC_MESSAGES/kdesud5.mo share/locale/ko/LC_MESSAGES/kdesud5.mo share/locale/lt/LC_MESSAGES/kdesud5.mo share/locale/nb/LC_MESSAGES/kdesud5.mo share/locale/nds/LC_MESSAGES/kdesud5.mo share/locale/nl/LC_MESSAGES/kdesud5.mo share/locale/nn/LC_MESSAGES/kdesud5.mo share/locale/pa/LC_MESSAGES/kdesud5.mo share/locale/pl/LC_MESSAGES/kdesud5.mo share/locale/pt/LC_MESSAGES/kdesud5.mo share/locale/pt_BR/LC_MESSAGES/kdesud5.mo share/locale/ro/LC_MESSAGES/kdesud5.mo share/locale/ru/LC_MESSAGES/kdesud5.mo share/locale/se/LC_MESSAGES/kdesud5.mo share/locale/sk/LC_MESSAGES/kdesud5.mo share/locale/sl/LC_MESSAGES/kdesud5.mo share/locale/sr/LC_MESSAGES/kdesud5.mo share/locale/sr@ijekavian/LC_MESSAGES/kdesud5.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kdesud5.mo share/locale/sr@latin/LC_MESSAGES/kdesud5.mo share/locale/sv/LC_MESSAGES/kdesud5.mo share/locale/tr/LC_MESSAGES/kdesud5.mo share/locale/uk/LC_MESSAGES/kdesud5.mo share/locale/zh_CN/LC_MESSAGES/kdesud5.mo share/locale/zh_TW/LC_MESSAGES/kdesud5.mo Index: head/sysutils/kf5-baloo/Makefile =================================================================== --- head/sysutils/kf5-baloo/Makefile (revision 450055) +++ head/sysutils/kf5-baloo/Makefile (revision 450056) @@ -1,27 +1,26 @@ # Created by: tcberner # $FreeBSD$ PORTNAME= baloo PORTVERSION= ${KDE_FRAMEWORKS_VERSION} -PORTREVISION= 1 CATEGORIES= sysutils kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 Framework for searching and managing user metadata LIB_DEPENDS= liblmdb.so:databases/lmdb \ libinotify.so:devel/libinotify USES= cmake:outsource compiler:c++11-lib gettext kde:5 pathfix tar:xz USE_KDE= auth completion config coreaddons crash dbusaddons \ filemetadata5 i18n idletime jobwidgets kio service \ solid widgetsaddons USE_QT5= buildtools_build core dbus gui network qmake_build \ qml quick testlib widgets # Frameworks ports install localization files that conflict with some # KDE4 localization ports CONFLICTS_INSTALL= baloo-4.* \ kde4-l10n-* .include Index: head/sysutils/kf5-baloo/distinfo =================================================================== --- head/sysutils/kf5-baloo/distinfo (revision 450055) +++ head/sysutils/kf5-baloo/distinfo (revision 450056) @@ -1,3 +1,3 @@ -TIMESTAMP = 1502086072 -SHA256 (KDE/frameworks/5.37.0/baloo-5.37.0.tar.xz) = e9706ed75af26a234108bda3b4dca308bcfabe3294a3e83620316709e90154a7 -SIZE (KDE/frameworks/5.37.0/baloo-5.37.0.tar.xz) = 197656 +TIMESTAMP = 1504433759 +SHA256 (KDE/frameworks/5.38.0/baloo-5.38.0.tar.xz) = 31e954b94078c9a6a6ab134adc7c84299614552fe6d2e528a366bceea712a290 +SIZE (KDE/frameworks/5.38.0/baloo-5.38.0.tar.xz) = 197792 Index: head/sysutils/kf5-baloo/pkg-plist =================================================================== --- head/sysutils/kf5-baloo/pkg-plist (revision 450055) +++ head/sysutils/kf5-baloo/pkg-plist (revision 450056) @@ -1,434 +1,437 @@ bin/baloo_file bin/baloo_file_extractor bin/balooctl bin/baloosearch bin/balooshow etc/xdg/autostart/baloo_file.desktop include/KF5/Baloo/Baloo/File include/KF5/Baloo/Baloo/FileMonitor include/KF5/Baloo/Baloo/IndexerConfig include/KF5/Baloo/Baloo/Query include/KF5/Baloo/Baloo/QueryRunnable include/KF5/Baloo/Baloo/ResultIterator include/KF5/Baloo/Baloo/TagListJob include/KF5/Baloo/baloo/core_export.h include/KF5/Baloo/baloo/file.h include/KF5/Baloo/baloo/filemonitor.h include/KF5/Baloo/baloo/indexerconfig.h include/KF5/Baloo/baloo/query.h include/KF5/Baloo/baloo/queryrunnable.h include/KF5/Baloo/baloo/resultiterator.h include/KF5/Baloo/baloo/taglistjob.h include/KF5/baloo_version.h lib/cmake/KF5Baloo/KF5BalooConfig.cmake lib/cmake/KF5Baloo/KF5BalooConfigVersion.cmake lib/cmake/KF5Baloo/KF5BalooTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5Baloo/KF5BalooTargets.cmake lib/libKF5Baloo.so lib/libKF5Baloo.so.5 lib/libKF5Baloo.so.%%KDE_FRAMEWORKS_VERSION%% lib/libKF5BalooEngine.so.5 lib/libKF5BalooEngine.so.%%KDE_FRAMEWORKS_VERSION%% %%QT_PLUGINDIR%%/kf5/kded/baloosearchmodule.so %%QT_PLUGINDIR%%/kf5/kio/baloosearch.so %%QT_PLUGINDIR%%/kf5/kio/tags.so %%QT_PLUGINDIR%%/kf5/kio/timeline.so %%QT_QMLDIR%%/org/kde/baloo/experimental/libbaloomonitorplugin.so %%QT_QMLDIR%%/org/kde/baloo/experimental/qmldir %%QT_QMLDIR%%/org/kde/baloo/libbalooplugin.so %%QT_QMLDIR%%/org/kde/baloo/qmldir libdata/pkgconfig/Baloo.pc share/dbus-1/interfaces/org.kde.baloo.file.indexer.xml share/dbus-1/interfaces/org.kde.baloo.fileindexer.xml share/dbus-1/interfaces/org.kde.baloo.main.xml share/dbus-1/interfaces/org.kde.baloo.scheduler.xml share/icons/hicolor/128x128/apps/baloo.png share/kservices5/baloosearch.protocol share/kservices5/tags.protocol share/kservices5/timeline.protocol share/locale/ar/LC_MESSAGES/baloo_file5.mo share/locale/ar/LC_MESSAGES/baloo_file_extractor5.mo share/locale/ar/LC_MESSAGES/balooctl5.mo share/locale/ar/LC_MESSAGES/baloomonitorplugin.mo share/locale/ar/LC_MESSAGES/baloosearch5.mo share/locale/ar/LC_MESSAGES/balooshow5.mo share/locale/ar/LC_MESSAGES/kio5_baloosearch.mo share/locale/ar/LC_MESSAGES/kio5_timeline.mo share/locale/ast/LC_MESSAGES/baloo_file5.mo share/locale/ast/LC_MESSAGES/baloo_file_extractor5.mo share/locale/ast/LC_MESSAGES/balooctl5.mo share/locale/ast/LC_MESSAGES/baloomonitorplugin.mo share/locale/ast/LC_MESSAGES/baloosearch5.mo share/locale/ast/LC_MESSAGES/balooshow5.mo share/locale/ast/LC_MESSAGES/kio5_baloosearch.mo share/locale/ast/LC_MESSAGES/kio5_tags.mo share/locale/ast/LC_MESSAGES/kio5_timeline.mo share/locale/bg/LC_MESSAGES/baloo_file5.mo share/locale/bg/LC_MESSAGES/baloosearch5.mo share/locale/bg/LC_MESSAGES/balooshow5.mo share/locale/bs/LC_MESSAGES/baloo_file5.mo share/locale/bs/LC_MESSAGES/balooctl5.mo share/locale/bs/LC_MESSAGES/baloosearch5.mo share/locale/bs/LC_MESSAGES/balooshow5.mo share/locale/bs/LC_MESSAGES/kio5_baloosearch.mo share/locale/bs/LC_MESSAGES/kio5_tags.mo share/locale/bs/LC_MESSAGES/kio5_timeline.mo share/locale/ca/LC_MESSAGES/baloo_file5.mo share/locale/ca/LC_MESSAGES/baloo_file_extractor5.mo share/locale/ca/LC_MESSAGES/balooctl5.mo share/locale/ca/LC_MESSAGES/baloomonitorplugin.mo share/locale/ca/LC_MESSAGES/baloosearch5.mo share/locale/ca/LC_MESSAGES/balooshow5.mo share/locale/ca/LC_MESSAGES/kio5_baloosearch.mo share/locale/ca/LC_MESSAGES/kio5_tags.mo share/locale/ca/LC_MESSAGES/kio5_timeline.mo share/locale/ca@valencia/LC_MESSAGES/baloo_file5.mo share/locale/ca@valencia/LC_MESSAGES/baloo_file_extractor5.mo share/locale/ca@valencia/LC_MESSAGES/balooctl5.mo share/locale/ca@valencia/LC_MESSAGES/baloomonitorplugin.mo share/locale/ca@valencia/LC_MESSAGES/baloosearch5.mo share/locale/ca@valencia/LC_MESSAGES/balooshow5.mo share/locale/ca@valencia/LC_MESSAGES/kio5_baloosearch.mo share/locale/ca@valencia/LC_MESSAGES/kio5_tags.mo share/locale/ca@valencia/LC_MESSAGES/kio5_timeline.mo share/locale/cs/LC_MESSAGES/baloo_file5.mo share/locale/cs/LC_MESSAGES/baloo_file_extractor5.mo share/locale/cs/LC_MESSAGES/balooctl5.mo share/locale/cs/LC_MESSAGES/baloomonitorplugin.mo share/locale/cs/LC_MESSAGES/baloosearch5.mo share/locale/cs/LC_MESSAGES/balooshow5.mo share/locale/cs/LC_MESSAGES/kio5_baloosearch.mo share/locale/cs/LC_MESSAGES/kio5_tags.mo share/locale/cs/LC_MESSAGES/kio5_timeline.mo share/locale/da/LC_MESSAGES/baloo_file5.mo share/locale/da/LC_MESSAGES/baloo_file_extractor5.mo share/locale/da/LC_MESSAGES/balooctl5.mo share/locale/da/LC_MESSAGES/baloomonitorplugin.mo share/locale/da/LC_MESSAGES/baloosearch5.mo share/locale/da/LC_MESSAGES/balooshow5.mo share/locale/da/LC_MESSAGES/kio5_baloosearch.mo share/locale/da/LC_MESSAGES/kio5_tags.mo share/locale/da/LC_MESSAGES/kio5_timeline.mo share/locale/de/LC_MESSAGES/baloo_file5.mo share/locale/de/LC_MESSAGES/baloo_file_extractor5.mo share/locale/de/LC_MESSAGES/balooctl5.mo share/locale/de/LC_MESSAGES/baloomonitorplugin.mo share/locale/de/LC_MESSAGES/baloosearch5.mo share/locale/de/LC_MESSAGES/balooshow5.mo share/locale/de/LC_MESSAGES/kio5_baloosearch.mo share/locale/de/LC_MESSAGES/kio5_tags.mo share/locale/de/LC_MESSAGES/kio5_timeline.mo share/locale/el/LC_MESSAGES/baloo_file5.mo share/locale/el/LC_MESSAGES/baloo_file_extractor5.mo share/locale/el/LC_MESSAGES/balooctl5.mo share/locale/el/LC_MESSAGES/baloomonitorplugin.mo share/locale/el/LC_MESSAGES/baloosearch5.mo share/locale/el/LC_MESSAGES/balooshow5.mo share/locale/el/LC_MESSAGES/kio5_baloosearch.mo share/locale/el/LC_MESSAGES/kio5_tags.mo share/locale/el/LC_MESSAGES/kio5_timeline.mo share/locale/en_GB/LC_MESSAGES/baloo_file5.mo share/locale/en_GB/LC_MESSAGES/baloo_file_extractor5.mo share/locale/en_GB/LC_MESSAGES/balooctl5.mo share/locale/en_GB/LC_MESSAGES/baloomonitorplugin.mo share/locale/en_GB/LC_MESSAGES/baloosearch5.mo share/locale/en_GB/LC_MESSAGES/balooshow5.mo share/locale/en_GB/LC_MESSAGES/kio5_baloosearch.mo share/locale/en_GB/LC_MESSAGES/kio5_tags.mo share/locale/en_GB/LC_MESSAGES/kio5_timeline.mo share/locale/es/LC_MESSAGES/baloo_file5.mo share/locale/es/LC_MESSAGES/baloo_file_extractor5.mo share/locale/es/LC_MESSAGES/balooctl5.mo share/locale/es/LC_MESSAGES/baloomonitorplugin.mo share/locale/es/LC_MESSAGES/baloosearch5.mo share/locale/es/LC_MESSAGES/balooshow5.mo share/locale/es/LC_MESSAGES/kio5_baloosearch.mo share/locale/es/LC_MESSAGES/kio5_tags.mo share/locale/es/LC_MESSAGES/kio5_timeline.mo share/locale/et/LC_MESSAGES/baloo_file5.mo share/locale/et/LC_MESSAGES/baloo_file_extractor5.mo share/locale/et/LC_MESSAGES/balooctl5.mo share/locale/et/LC_MESSAGES/baloomonitorplugin.mo share/locale/et/LC_MESSAGES/baloosearch5.mo share/locale/et/LC_MESSAGES/balooshow5.mo share/locale/et/LC_MESSAGES/kio5_baloosearch.mo share/locale/et/LC_MESSAGES/kio5_tags.mo share/locale/et/LC_MESSAGES/kio5_timeline.mo share/locale/eu/LC_MESSAGES/baloo_file5.mo share/locale/eu/LC_MESSAGES/baloo_file_extractor5.mo share/locale/eu/LC_MESSAGES/balooctl5.mo share/locale/eu/LC_MESSAGES/baloomonitorplugin.mo share/locale/eu/LC_MESSAGES/baloosearch5.mo share/locale/eu/LC_MESSAGES/balooshow5.mo +share/locale/eu/LC_MESSAGES/kio5_baloosearch.mo +share/locale/eu/LC_MESSAGES/kio5_tags.mo +share/locale/eu/LC_MESSAGES/kio5_timeline.mo share/locale/fi/LC_MESSAGES/baloo_file5.mo share/locale/fi/LC_MESSAGES/baloo_file_extractor5.mo share/locale/fi/LC_MESSAGES/balooctl5.mo share/locale/fi/LC_MESSAGES/baloomonitorplugin.mo share/locale/fi/LC_MESSAGES/baloosearch5.mo share/locale/fi/LC_MESSAGES/balooshow5.mo share/locale/fi/LC_MESSAGES/kio5_baloosearch.mo share/locale/fi/LC_MESSAGES/kio5_tags.mo share/locale/fi/LC_MESSAGES/kio5_timeline.mo share/locale/fr/LC_MESSAGES/baloo_file5.mo share/locale/fr/LC_MESSAGES/baloo_file_extractor5.mo share/locale/fr/LC_MESSAGES/balooctl5.mo share/locale/fr/LC_MESSAGES/baloomonitorplugin.mo share/locale/fr/LC_MESSAGES/baloosearch5.mo share/locale/fr/LC_MESSAGES/balooshow5.mo share/locale/fr/LC_MESSAGES/kio5_baloosearch.mo share/locale/fr/LC_MESSAGES/kio5_tags.mo share/locale/fr/LC_MESSAGES/kio5_timeline.mo share/locale/gd/LC_MESSAGES/baloo_file5.mo share/locale/gd/LC_MESSAGES/baloo_file_extractor5.mo share/locale/gd/LC_MESSAGES/balooctl5.mo share/locale/gd/LC_MESSAGES/baloomonitorplugin.mo share/locale/gd/LC_MESSAGES/baloosearch5.mo share/locale/gd/LC_MESSAGES/balooshow5.mo share/locale/gd/LC_MESSAGES/kio5_baloosearch.mo share/locale/gd/LC_MESSAGES/kio5_tags.mo share/locale/gd/LC_MESSAGES/kio5_timeline.mo share/locale/gl/LC_MESSAGES/baloo_file5.mo share/locale/gl/LC_MESSAGES/baloo_file_extractor5.mo share/locale/gl/LC_MESSAGES/balooctl5.mo share/locale/gl/LC_MESSAGES/baloomonitorplugin.mo share/locale/gl/LC_MESSAGES/baloosearch5.mo share/locale/gl/LC_MESSAGES/balooshow5.mo share/locale/gl/LC_MESSAGES/kio5_baloosearch.mo share/locale/gl/LC_MESSAGES/kio5_tags.mo share/locale/gl/LC_MESSAGES/kio5_timeline.mo share/locale/he/LC_MESSAGES/baloo_file5.mo share/locale/he/LC_MESSAGES/kio5_baloosearch.mo share/locale/he/LC_MESSAGES/kio5_timeline.mo share/locale/hu/LC_MESSAGES/baloo_file5.mo share/locale/hu/LC_MESSAGES/baloo_file_extractor5.mo share/locale/hu/LC_MESSAGES/balooctl5.mo share/locale/hu/LC_MESSAGES/baloosearch5.mo share/locale/hu/LC_MESSAGES/balooshow5.mo share/locale/hu/LC_MESSAGES/kio5_baloosearch.mo share/locale/hu/LC_MESSAGES/kio5_tags.mo share/locale/hu/LC_MESSAGES/kio5_timeline.mo share/locale/ia/LC_MESSAGES/baloo_file5.mo share/locale/ia/LC_MESSAGES/baloo_file_extractor5.mo share/locale/ia/LC_MESSAGES/balooctl5.mo share/locale/ia/LC_MESSAGES/baloomonitorplugin.mo share/locale/ia/LC_MESSAGES/baloosearch5.mo share/locale/ia/LC_MESSAGES/balooshow5.mo share/locale/ia/LC_MESSAGES/kio5_baloosearch.mo share/locale/ia/LC_MESSAGES/kio5_tags.mo share/locale/ia/LC_MESSAGES/kio5_timeline.mo share/locale/it/LC_MESSAGES/baloo_file5.mo share/locale/it/LC_MESSAGES/baloo_file_extractor5.mo share/locale/it/LC_MESSAGES/balooctl5.mo share/locale/it/LC_MESSAGES/baloomonitorplugin.mo share/locale/it/LC_MESSAGES/baloosearch5.mo share/locale/it/LC_MESSAGES/balooshow5.mo share/locale/it/LC_MESSAGES/kio5_baloosearch.mo share/locale/it/LC_MESSAGES/kio5_tags.mo share/locale/it/LC_MESSAGES/kio5_timeline.mo share/locale/ja/LC_MESSAGES/baloo_file5.mo share/locale/ja/LC_MESSAGES/baloo_file_extractor5.mo share/locale/ja/LC_MESSAGES/balooctl5.mo share/locale/ja/LC_MESSAGES/baloomonitorplugin.mo share/locale/ja/LC_MESSAGES/baloosearch5.mo share/locale/ja/LC_MESSAGES/balooshow5.mo share/locale/ja/LC_MESSAGES/kio5_baloosearch.mo share/locale/ja/LC_MESSAGES/kio5_tags.mo share/locale/ja/LC_MESSAGES/kio5_timeline.mo share/locale/ko/LC_MESSAGES/baloo_file5.mo share/locale/ko/LC_MESSAGES/balooctl5.mo share/locale/ko/LC_MESSAGES/baloomonitorplugin.mo share/locale/ko/LC_MESSAGES/baloosearch5.mo share/locale/ko/LC_MESSAGES/balooshow5.mo share/locale/ko/LC_MESSAGES/kio5_baloosearch.mo share/locale/ko/LC_MESSAGES/kio5_tags.mo share/locale/ko/LC_MESSAGES/kio5_timeline.mo share/locale/lt/LC_MESSAGES/baloo_file5.mo share/locale/lt/LC_MESSAGES/baloo_file_extractor5.mo share/locale/lt/LC_MESSAGES/balooctl5.mo share/locale/lt/LC_MESSAGES/baloosearch5.mo share/locale/lt/LC_MESSAGES/balooshow5.mo share/locale/lt/LC_MESSAGES/kio5_baloosearch.mo share/locale/lt/LC_MESSAGES/kio5_tags.mo share/locale/lt/LC_MESSAGES/kio5_timeline.mo share/locale/nb/LC_MESSAGES/baloo_file5.mo share/locale/nb/LC_MESSAGES/baloo_file_extractor5.mo share/locale/nb/LC_MESSAGES/balooctl5.mo share/locale/nb/LC_MESSAGES/baloosearch5.mo share/locale/nb/LC_MESSAGES/balooshow5.mo share/locale/nb/LC_MESSAGES/kio5_baloosearch.mo share/locale/nb/LC_MESSAGES/kio5_tags.mo share/locale/nb/LC_MESSAGES/kio5_timeline.mo share/locale/nds/LC_MESSAGES/baloo_file5.mo share/locale/nds/LC_MESSAGES/balooctl5.mo share/locale/nds/LC_MESSAGES/baloosearch5.mo share/locale/nds/LC_MESSAGES/balooshow5.mo share/locale/nds/LC_MESSAGES/kio5_baloosearch.mo share/locale/nds/LC_MESSAGES/kio5_tags.mo share/locale/nds/LC_MESSAGES/kio5_timeline.mo share/locale/nl/LC_MESSAGES/baloo_file5.mo share/locale/nl/LC_MESSAGES/baloo_file_extractor5.mo share/locale/nl/LC_MESSAGES/balooctl5.mo share/locale/nl/LC_MESSAGES/baloomonitorplugin.mo share/locale/nl/LC_MESSAGES/baloosearch5.mo share/locale/nl/LC_MESSAGES/balooshow5.mo share/locale/nl/LC_MESSAGES/kio5_baloosearch.mo share/locale/nl/LC_MESSAGES/kio5_tags.mo share/locale/nl/LC_MESSAGES/kio5_timeline.mo share/locale/nn/LC_MESSAGES/baloo_file5.mo share/locale/nn/LC_MESSAGES/baloo_file_extractor5.mo share/locale/nn/LC_MESSAGES/balooctl5.mo share/locale/nn/LC_MESSAGES/baloomonitorplugin.mo share/locale/nn/LC_MESSAGES/baloosearch5.mo share/locale/nn/LC_MESSAGES/balooshow5.mo share/locale/nn/LC_MESSAGES/kio5_baloosearch.mo share/locale/nn/LC_MESSAGES/kio5_tags.mo share/locale/nn/LC_MESSAGES/kio5_timeline.mo share/locale/pa/LC_MESSAGES/baloo_file5.mo share/locale/pa/LC_MESSAGES/balooctl5.mo share/locale/pa/LC_MESSAGES/baloosearch5.mo share/locale/pa/LC_MESSAGES/balooshow5.mo share/locale/pa/LC_MESSAGES/kio5_baloosearch.mo share/locale/pa/LC_MESSAGES/kio5_tags.mo share/locale/pa/LC_MESSAGES/kio5_timeline.mo share/locale/pl/LC_MESSAGES/baloo_file5.mo share/locale/pl/LC_MESSAGES/baloo_file_extractor5.mo share/locale/pl/LC_MESSAGES/balooctl5.mo share/locale/pl/LC_MESSAGES/baloomonitorplugin.mo share/locale/pl/LC_MESSAGES/baloosearch5.mo share/locale/pl/LC_MESSAGES/balooshow5.mo share/locale/pl/LC_MESSAGES/kio5_baloosearch.mo share/locale/pl/LC_MESSAGES/kio5_tags.mo share/locale/pl/LC_MESSAGES/kio5_timeline.mo share/locale/pt/LC_MESSAGES/baloo_file5.mo share/locale/pt/LC_MESSAGES/baloo_file_extractor5.mo share/locale/pt/LC_MESSAGES/balooctl5.mo share/locale/pt/LC_MESSAGES/baloomonitorplugin.mo share/locale/pt/LC_MESSAGES/baloosearch5.mo share/locale/pt/LC_MESSAGES/balooshow5.mo share/locale/pt/LC_MESSAGES/kio5_baloosearch.mo share/locale/pt/LC_MESSAGES/kio5_tags.mo share/locale/pt/LC_MESSAGES/kio5_timeline.mo share/locale/pt_BR/LC_MESSAGES/baloo_file5.mo share/locale/pt_BR/LC_MESSAGES/baloo_file_extractor5.mo share/locale/pt_BR/LC_MESSAGES/balooctl5.mo share/locale/pt_BR/LC_MESSAGES/baloomonitorplugin.mo share/locale/pt_BR/LC_MESSAGES/baloosearch5.mo share/locale/pt_BR/LC_MESSAGES/balooshow5.mo share/locale/pt_BR/LC_MESSAGES/kio5_baloosearch.mo share/locale/pt_BR/LC_MESSAGES/kio5_tags.mo share/locale/pt_BR/LC_MESSAGES/kio5_timeline.mo share/locale/ro/LC_MESSAGES/baloo_file5.mo share/locale/ro/LC_MESSAGES/balooctl5.mo share/locale/ro/LC_MESSAGES/baloosearch5.mo share/locale/ro/LC_MESSAGES/balooshow5.mo share/locale/ro/LC_MESSAGES/kio5_baloosearch.mo share/locale/ro/LC_MESSAGES/kio5_tags.mo share/locale/ro/LC_MESSAGES/kio5_timeline.mo share/locale/ru/LC_MESSAGES/baloo_file5.mo share/locale/ru/LC_MESSAGES/baloo_file_extractor5.mo share/locale/ru/LC_MESSAGES/balooctl5.mo share/locale/ru/LC_MESSAGES/baloomonitorplugin.mo share/locale/ru/LC_MESSAGES/baloosearch5.mo share/locale/ru/LC_MESSAGES/balooshow5.mo share/locale/ru/LC_MESSAGES/kio5_baloosearch.mo share/locale/ru/LC_MESSAGES/kio5_tags.mo share/locale/ru/LC_MESSAGES/kio5_timeline.mo share/locale/sk/LC_MESSAGES/baloo_file5.mo share/locale/sk/LC_MESSAGES/baloo_file_extractor5.mo share/locale/sk/LC_MESSAGES/balooctl5.mo share/locale/sk/LC_MESSAGES/baloomonitorplugin.mo share/locale/sk/LC_MESSAGES/baloosearch5.mo share/locale/sk/LC_MESSAGES/balooshow5.mo share/locale/sk/LC_MESSAGES/kio5_baloosearch.mo share/locale/sk/LC_MESSAGES/kio5_tags.mo share/locale/sk/LC_MESSAGES/kio5_timeline.mo share/locale/sl/LC_MESSAGES/baloo_file5.mo share/locale/sl/LC_MESSAGES/baloo_file_extractor5.mo share/locale/sl/LC_MESSAGES/balooctl5.mo share/locale/sl/LC_MESSAGES/baloomonitorplugin.mo share/locale/sl/LC_MESSAGES/baloosearch5.mo share/locale/sl/LC_MESSAGES/balooshow5.mo share/locale/sl/LC_MESSAGES/kio5_baloosearch.mo share/locale/sl/LC_MESSAGES/kio5_tags.mo share/locale/sl/LC_MESSAGES/kio5_timeline.mo share/locale/sr/LC_MESSAGES/baloo_file5.mo share/locale/sr/LC_MESSAGES/baloo_file_extractor5.mo share/locale/sr/LC_MESSAGES/balooctl5.mo share/locale/sr/LC_MESSAGES/baloomonitorplugin.mo share/locale/sr/LC_MESSAGES/baloosearch5.mo share/locale/sr/LC_MESSAGES/balooshow5.mo share/locale/sr/LC_MESSAGES/kio5_baloosearch.mo share/locale/sr/LC_MESSAGES/kio5_tags.mo share/locale/sr/LC_MESSAGES/kio5_timeline.mo share/locale/sr@ijekavian/LC_MESSAGES/baloo_file5.mo share/locale/sr@ijekavian/LC_MESSAGES/baloo_file_extractor5.mo share/locale/sr@ijekavian/LC_MESSAGES/balooctl5.mo share/locale/sr@ijekavian/LC_MESSAGES/baloomonitorplugin.mo share/locale/sr@ijekavian/LC_MESSAGES/baloosearch5.mo share/locale/sr@ijekavian/LC_MESSAGES/balooshow5.mo share/locale/sr@ijekavian/LC_MESSAGES/kio5_baloosearch.mo share/locale/sr@ijekavian/LC_MESSAGES/kio5_tags.mo share/locale/sr@ijekavian/LC_MESSAGES/kio5_timeline.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/baloo_file5.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/baloo_file_extractor5.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/balooctl5.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/baloomonitorplugin.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/baloosearch5.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/balooshow5.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kio5_baloosearch.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kio5_tags.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kio5_timeline.mo share/locale/sr@latin/LC_MESSAGES/baloo_file5.mo share/locale/sr@latin/LC_MESSAGES/baloo_file_extractor5.mo share/locale/sr@latin/LC_MESSAGES/balooctl5.mo share/locale/sr@latin/LC_MESSAGES/baloomonitorplugin.mo share/locale/sr@latin/LC_MESSAGES/baloosearch5.mo share/locale/sr@latin/LC_MESSAGES/balooshow5.mo share/locale/sr@latin/LC_MESSAGES/kio5_baloosearch.mo share/locale/sr@latin/LC_MESSAGES/kio5_tags.mo share/locale/sr@latin/LC_MESSAGES/kio5_timeline.mo share/locale/sv/LC_MESSAGES/baloo_file5.mo share/locale/sv/LC_MESSAGES/baloo_file_extractor5.mo share/locale/sv/LC_MESSAGES/balooctl5.mo share/locale/sv/LC_MESSAGES/baloomonitorplugin.mo share/locale/sv/LC_MESSAGES/baloosearch5.mo share/locale/sv/LC_MESSAGES/balooshow5.mo share/locale/sv/LC_MESSAGES/kio5_baloosearch.mo share/locale/sv/LC_MESSAGES/kio5_tags.mo share/locale/sv/LC_MESSAGES/kio5_timeline.mo share/locale/tr/LC_MESSAGES/baloo_file5.mo share/locale/tr/LC_MESSAGES/baloo_file_extractor5.mo share/locale/tr/LC_MESSAGES/balooctl5.mo share/locale/tr/LC_MESSAGES/baloomonitorplugin.mo share/locale/tr/LC_MESSAGES/baloosearch5.mo share/locale/tr/LC_MESSAGES/balooshow5.mo share/locale/tr/LC_MESSAGES/kio5_baloosearch.mo share/locale/tr/LC_MESSAGES/kio5_tags.mo share/locale/tr/LC_MESSAGES/kio5_timeline.mo share/locale/uk/LC_MESSAGES/baloo_file5.mo share/locale/uk/LC_MESSAGES/baloo_file_extractor5.mo share/locale/uk/LC_MESSAGES/balooctl5.mo share/locale/uk/LC_MESSAGES/baloomonitorplugin.mo share/locale/uk/LC_MESSAGES/baloosearch5.mo share/locale/uk/LC_MESSAGES/balooshow5.mo share/locale/uk/LC_MESSAGES/kio5_baloosearch.mo share/locale/uk/LC_MESSAGES/kio5_tags.mo share/locale/uk/LC_MESSAGES/kio5_timeline.mo share/locale/zh_CN/LC_MESSAGES/baloo_file5.mo share/locale/zh_CN/LC_MESSAGES/baloo_file_extractor5.mo share/locale/zh_CN/LC_MESSAGES/balooctl5.mo share/locale/zh_CN/LC_MESSAGES/baloomonitorplugin.mo share/locale/zh_CN/LC_MESSAGES/baloosearch5.mo share/locale/zh_CN/LC_MESSAGES/balooshow5.mo share/locale/zh_CN/LC_MESSAGES/kio5_baloosearch.mo share/locale/zh_CN/LC_MESSAGES/kio5_tags.mo share/locale/zh_CN/LC_MESSAGES/kio5_timeline.mo share/locale/zh_TW/LC_MESSAGES/baloo_file5.mo share/locale/zh_TW/LC_MESSAGES/baloo_file_extractor5.mo share/locale/zh_TW/LC_MESSAGES/balooctl5.mo share/locale/zh_TW/LC_MESSAGES/baloomonitorplugin.mo share/locale/zh_TW/LC_MESSAGES/baloosearch5.mo share/locale/zh_TW/LC_MESSAGES/balooshow5.mo share/locale/zh_TW/LC_MESSAGES/kio5_baloosearch.mo share/locale/zh_TW/LC_MESSAGES/kio5_tags.mo share/locale/zh_TW/LC_MESSAGES/kio5_timeline.mo Index: head/sysutils/kf5-kwallet/Makefile =================================================================== --- head/sysutils/kf5-kwallet/Makefile (revision 450055) +++ head/sysutils/kf5-kwallet/Makefile (revision 450056) @@ -1,26 +1,25 @@ # Created by: tcberner # $FreeBSD$ PORTNAME= kwallet PORTVERSION= ${KDE_FRAMEWORKS_VERSION} -PORTREVISION= 1 CATEGORIES= sysutils kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 secure and unified container for user passwords LIB_DEPENDS= libassuan.so:security/libassuan \ libboost_system.so:devel/boost-libs \ libgcrypt.so:security/libgcrypt \ libgpg-error.so:security/libgpg-error \ libgpgme.so:security/gpgme \ libqgpgme.so:security/gpgme-qt5 \ libgpgmepp.so:security/gpgme-cpp USES= cmake:outsource compiler:c++11-lib gettext kde:5 tar:xz USE_KDE= auth codecs config configwidgets coreaddons dbusaddons \ doctools ecm i18n iconthemes notifications service \ widgetsaddons windowsystem USE_QT5= buildtools_build core dbus gui qmake_build widgets xml .include Index: head/sysutils/kf5-kwallet/distinfo =================================================================== --- head/sysutils/kf5-kwallet/distinfo (revision 450055) +++ head/sysutils/kf5-kwallet/distinfo (revision 450056) @@ -1,3 +1,3 @@ -TIMESTAMP = 1502086072 -SHA256 (KDE/frameworks/5.37.0/kwallet-5.37.0.tar.xz) = 5fc368410da498dcd9eb9d5b7119f37c87f3a6b9859bbb2ce4a2ff0cfca0f2d0 -SIZE (KDE/frameworks/5.37.0/kwallet-5.37.0.tar.xz) = 303728 +TIMESTAMP = 1504433759 +SHA256 (KDE/frameworks/5.38.0/kwallet-5.38.0.tar.xz) = dc06fe8917cf5ea61251e42e9c7e9e5662eb223aace1bf8ee4becf6a896cdae3 +SIZE (KDE/frameworks/5.38.0/kwallet-5.38.0.tar.xz) = 303756 Index: head/textproc/kf5-kcodecs/Makefile =================================================================== --- head/textproc/kf5-kcodecs/Makefile (revision 450055) +++ head/textproc/kf5-kcodecs/Makefile (revision 450056) @@ -1,16 +1,15 @@ # Created by: tcberner # $FreeBSD$ PORTNAME= kcodecs PORTVERSION= ${KDE_FRAMEWORKS_VERSION} -PORTREVISION= 1 CATEGORIES= textproc kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 library for string manipulation USES= cmake:outsource compiler:c++11-lib gperf kde:5 tar:xz USE_KDE= ecm USE_QT5= buildtools_build core linguisttools qmake_build .include Index: head/textproc/kf5-kcodecs/distinfo =================================================================== --- head/textproc/kf5-kcodecs/distinfo (revision 450055) +++ head/textproc/kf5-kcodecs/distinfo (revision 450056) @@ -1,3 +1,3 @@ -TIMESTAMP = 1502086072 -SHA256 (KDE/frameworks/5.37.0/kcodecs-5.37.0.tar.xz) = 6a2fe7e8e5d82490373f973c50dcac484d75081daff22efb58deae5dd649b34e -SIZE (KDE/frameworks/5.37.0/kcodecs-5.37.0.tar.xz) = 218388 +TIMESTAMP = 1504433759 +SHA256 (KDE/frameworks/5.38.0/kcodecs-5.38.0.tar.xz) = 31a22d37da33d86d492b4bf5e439566d8f6a0783f74382931cee4c59a482dd32 +SIZE (KDE/frameworks/5.38.0/kcodecs-5.38.0.tar.xz) = 218920 Index: head/textproc/kf5-sonnet/Makefile =================================================================== --- head/textproc/kf5-sonnet/Makefile (revision 450055) +++ head/textproc/kf5-sonnet/Makefile (revision 450056) @@ -1,20 +1,19 @@ # Created by: tcberner # $FreeBSD$ PORTNAME= sonnet PORTVERSION= ${KDE_FRAMEWORKS_VERSION} -PORTREVISION= 1 CATEGORIES= textproc kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 plugin-based spell checking library LIB_DEPENDS= libaspell.so:textproc/aspell \ libhunspell-1.6.so:textproc/hunspell USES= cmake:outsource compiler:c++11-lib kde:5 tar:xz USE_KDE= ecm USE_QT5= buildtools_build core gui linguisttools qmake_build \ testlib widgets .include Index: head/textproc/kf5-sonnet/distinfo =================================================================== --- head/textproc/kf5-sonnet/distinfo (revision 450055) +++ head/textproc/kf5-sonnet/distinfo (revision 450056) @@ -1,3 +1,3 @@ -TIMESTAMP = 1502086072 -SHA256 (KDE/frameworks/5.37.0/sonnet-5.37.0.tar.xz) = 60cee18889475a20327c3b7fad431579ab6efc06d28e83c57a4dc54c0c896669 -SIZE (KDE/frameworks/5.37.0/sonnet-5.37.0.tar.xz) = 285036 +TIMESTAMP = 1504433760 +SHA256 (KDE/frameworks/5.38.0/sonnet-5.38.0.tar.xz) = aa73bb8a599f7b2ed14c043726ffe2d6399f1fd9a3daa51f12685aae11baa58c +SIZE (KDE/frameworks/5.38.0/sonnet-5.38.0.tar.xz) = 284256 Index: head/textproc/kf5-syntax-highlighting/Makefile =================================================================== --- head/textproc/kf5-syntax-highlighting/Makefile (revision 450055) +++ head/textproc/kf5-syntax-highlighting/Makefile (revision 450056) @@ -1,17 +1,16 @@ # Created by: tcberner # $FreeBSD$ PORTNAME= syntax-highlighting PORTVERSION= ${KDE_FRAMEWORKS_VERSION} -PORTREVISION= 1 CATEGORIES= textproc kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 syntax highlighting engine for structured text and code USES= cmake:outsource compiler:c++11-lib kde:5 perl5 tar:xz USE_KDE= ecm USE_QT5= buildtools_build core gui linguisttools_build \ network testlib qmake_build .include Index: head/textproc/kf5-syntax-highlighting/distinfo =================================================================== --- head/textproc/kf5-syntax-highlighting/distinfo (revision 450055) +++ head/textproc/kf5-syntax-highlighting/distinfo (revision 450056) @@ -1,3 +1,3 @@ -TIMESTAMP = 1502086072 -SHA256 (KDE/frameworks/5.37.0/syntax-highlighting-5.37.0.tar.xz) = e2d075482bc5409646db40374c6caa0b055276e1a5cd8e30065e9f4fd0baa6d0 -SIZE (KDE/frameworks/5.37.0/syntax-highlighting-5.37.0.tar.xz) = 1050660 +TIMESTAMP = 1504433760 +SHA256 (KDE/frameworks/5.38.0/syntax-highlighting-5.38.0.tar.xz) = d4b887e2b4c0bb0d0c723325b11897d1ab38a644e3276d57eae8393928783680 +SIZE (KDE/frameworks/5.38.0/syntax-highlighting-5.38.0.tar.xz) = 1090228 Index: head/www/kf5-kdewebkit/Makefile =================================================================== --- head/www/kf5-kdewebkit/Makefile (revision 450055) +++ head/www/kf5-kdewebkit/Makefile (revision 450056) @@ -1,19 +1,18 @@ # Created by: tcberner # $FreeBSD$ PORTNAME= kdewebkit PORTVERSION= ${KDE_FRAMEWORKS_VERSION} -PORTREVISION= 1 CATEGORIES= www kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 library providing integration of QtWebKit USES= cmake:outsource compiler:c++11-lib gettext kde:5 tar:xz USE_KDE= auth codecs completion config configwidgets coreaddons \ ecm i18n jobwidgets kio parts service sonnet textwidgets \ wallet widgetsaddons xmlgui USE_QT5= buildtools_build core dbus gui network qmake_build webkit \ widgets xml .include Index: head/www/kf5-kdewebkit/distinfo =================================================================== --- head/www/kf5-kdewebkit/distinfo (revision 450055) +++ head/www/kf5-kdewebkit/distinfo (revision 450056) @@ -1,3 +1,3 @@ -TIMESTAMP = 1502086073 -SHA256 (KDE/frameworks/5.37.0/kdewebkit-5.37.0.tar.xz) = e1c1a1f6514126a07e4ef7fbd4258c4a9ca068774b26b6748582f4c8415103de -SIZE (KDE/frameworks/5.37.0/kdewebkit-5.37.0.tar.xz) = 29328 +TIMESTAMP = 1504433761 +SHA256 (KDE/frameworks/5.38.0/kdewebkit-5.38.0.tar.xz) = ee8375464179fbdc167209608595792bf188618258fe383adf36affca65cccb2 +SIZE (KDE/frameworks/5.38.0/kdewebkit-5.38.0.tar.xz) = 29336 Index: head/www/kf5-khtml/Makefile =================================================================== --- head/www/kf5-khtml/Makefile (revision 450055) +++ head/www/kf5-khtml/Makefile (revision 450056) @@ -1,25 +1,24 @@ # Created by: tcberner # $FreeBSD$ PORTNAME= khtml PORTVERSION= ${KDE_FRAMEWORKS_VERSION} -PORTREVISION= 1 CATEGORIES= www kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 KTHML rendering engine LIB_DEPENDS= libgif.so:graphics/giflib \ libpng16.so:graphics/png USES= cmake:outsource compiler:c++11-lib gettext gperf jpeg kde:5 \ tar:xz USE_KDE= archive auth bookmarks codecs completion config \ configwidgets coreaddons ecm globalaccel i18n iconthemes \ jobwidgets js kio notifications parts service sonnet \ textwidgets wallet widgetsaddons windowsystem xmlgui USE_QT5= buildtools_build core dbus gui network phonon4 \ printsupport qmake_build widgets x11extras xml USE_XORG= ice sm x11 xext .include Index: head/www/kf5-khtml/distinfo =================================================================== --- head/www/kf5-khtml/distinfo (revision 450055) +++ head/www/kf5-khtml/distinfo (revision 450056) @@ -1,3 +1,3 @@ -TIMESTAMP = 1502086073 -SHA256 (KDE/frameworks/5.37.0/khtml-5.37.0.tar.xz) = 02aa4260f078f97b9299fdf1acef85ed28158c9de3a3023774aed8e4bbe815d8 -SIZE (KDE/frameworks/5.37.0/khtml-5.37.0.tar.xz) = 2081460 +TIMESTAMP = 1504433761 +SHA256 (KDE/frameworks/5.38.0/khtml-5.38.0.tar.xz) = fe35153e0d89ca984fe6609ce2365a94eb21849e9d69e201a195af36d40e4639 +SIZE (KDE/frameworks/5.38.0/khtml-5.38.0.tar.xz) = 2081760 Index: head/www/kf5-kjs/Makefile =================================================================== --- head/www/kf5-kjs/Makefile (revision 450055) +++ head/www/kf5-kjs/Makefile (revision 450056) @@ -1,18 +1,17 @@ # Created by: tcberner # $FreeBSD$ PORTNAME= kjs PORTVERSION= ${KDE_FRAMEWORKS_VERSION} -PORTREVISION= 1 CATEGORIES= www kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 library providing an ECMAScript interpreter LIB_DEPENDS= libpcre.so:devel/pcre USES= cmake:outsource compiler:c++11-lib kde:5 pkgconfig tar:xz USE_KDE= ecm doctools USE_QT5= buildtools_build core qmake_build .include Index: head/www/kf5-kjs/distinfo =================================================================== --- head/www/kf5-kjs/distinfo (revision 450055) +++ head/www/kf5-kjs/distinfo (revision 450056) @@ -1,3 +1,3 @@ -TIMESTAMP = 1502086073 -SHA256 (KDE/frameworks/5.37.0/kjs-5.37.0.tar.xz) = 2be1dd4e8a6b0914d3f1c7bc4ee0d2666b8166430adb576e17d7441225f2d010 -SIZE (KDE/frameworks/5.37.0/kjs-5.37.0.tar.xz) = 294908 +TIMESTAMP = 1504433762 +SHA256 (KDE/frameworks/5.38.0/kjs-5.38.0.tar.xz) = c173775230d93ef9da043e2664c71d0bd84c6dc4b05b881730dbcf32012a3c36 +SIZE (KDE/frameworks/5.38.0/kjs-5.38.0.tar.xz) = 294828 Index: head/www/kf5-kjsembed/Makefile =================================================================== --- head/www/kf5-kjsembed/Makefile (revision 450055) +++ head/www/kf5-kjsembed/Makefile (revision 450056) @@ -1,17 +1,16 @@ # Created by: tcberner # $FreeBSD$ PORTNAME= kjsembed PORTVERSION= ${KDE_FRAMEWORKS_VERSION} -PORTREVISION= 1 CATEGORIES= www kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 library for binding JavaScript objects to QObjects USES= cmake:outsource compiler:c++11-lib gettext kde:5 tar:xz USE_KDE= archive doctools ecm i18n js USE_QT5= buildtools_build core gui qmake_build svg \ uiplugin uitools widgets xml .include Index: head/www/kf5-kjsembed/distinfo =================================================================== --- head/www/kf5-kjsembed/distinfo (revision 450055) +++ head/www/kf5-kjsembed/distinfo (revision 450056) @@ -1,3 +1,3 @@ -TIMESTAMP = 1502086073 -SHA256 (KDE/frameworks/5.37.0/kjsembed-5.37.0.tar.xz) = 202f8377abbdf4ad564ca0b11e74eaa6001a5863406254562b6405f755995c70 -SIZE (KDE/frameworks/5.37.0/kjsembed-5.37.0.tar.xz) = 169532 +TIMESTAMP = 1504433762 +SHA256 (KDE/frameworks/5.38.0/kjsembed-5.38.0.tar.xz) = 0afdf41564f2f00e98c13cb160e9405ac40c11836dc0f354b50f01418a3d6059 +SIZE (KDE/frameworks/5.38.0/kjsembed-5.38.0.tar.xz) = 169576 Index: head/x11/kf5-frameworkintegration/Makefile =================================================================== --- head/x11/kf5-frameworkintegration/Makefile (revision 450055) +++ head/x11/kf5-frameworkintegration/Makefile (revision 450056) @@ -1,20 +1,19 @@ # Created by: tcberner # $FreeBSD$ PORTNAME= frameworkintegration PORTVERSION= ${KDE_FRAMEWORKS_VERSION} -PORTREVISION= 1 CATEGORIES= x11 kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 workspace and cross-framework integration plugins USES= cmake:outsource compiler:c++11-lib gettext kde:5 pkgconfig \ tar:xz USE_KDE= auth codecs config configwidgets coreaddons ecm i18n \ iconthemes kio newstuff notifications package widgetsaddons USE_QT5= buildtools_build core dbus gui qmake_build widgets \ x11extras xml USE_XORG= xcb xcursor .include Index: head/x11/kf5-frameworkintegration/distinfo =================================================================== --- head/x11/kf5-frameworkintegration/distinfo (revision 450055) +++ head/x11/kf5-frameworkintegration/distinfo (revision 450056) @@ -1,3 +1,3 @@ -TIMESTAMP = 1502086078 -SHA256 (KDE/frameworks/5.37.0/frameworkintegration-5.37.0.tar.xz) = aa8ca045ba97899b739077e07a961b9e402520a0abfcee8be90baa85251c9e5d -SIZE (KDE/frameworks/5.37.0/frameworkintegration-5.37.0.tar.xz) = 1752004 +TIMESTAMP = 1504433768 +SHA256 (KDE/frameworks/5.38.0/frameworkintegration-5.38.0.tar.xz) = 08cb88ef7c7ceb7cd43cbc7f3040daf7128d22bb75f8eb3956d55afd3e1b3670 +SIZE (KDE/frameworks/5.38.0/frameworkintegration-5.38.0.tar.xz) = 1752696 Index: head/x11/kf5-kactivities/Makefile =================================================================== --- head/x11/kf5-kactivities/Makefile (revision 450055) +++ head/x11/kf5-kactivities/Makefile (revision 450056) @@ -1,21 +1,20 @@ # Created by: tcberner # $FreeBSD$ PORTNAME= kactivities PORTVERSION= ${KDE_FRAMEWORKS_VERSION} -PORTREVISION= 1 CATEGORIES= x11 kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 runtime and library to organize work in separate activities LIB_DEPENDS= libboost_system.so:devel/boost-libs USES= cmake:outsource compiler:c++11-lib gettext kde:5 pathfix tar:xz USE_KDE= bookmarks config configwidgets coreaddons dbusaddons ecm \ globalaccel i18n kcmutils kdeclarative kio package \ service widgetsaddons windowsystem xmlgui USE_QT5= buildtools_build core dbus gui network qmake_build qml \ quick sql widgets .include Index: head/x11/kf5-kactivities/distinfo =================================================================== --- head/x11/kf5-kactivities/distinfo (revision 450055) +++ head/x11/kf5-kactivities/distinfo (revision 450056) @@ -1,3 +1,3 @@ -TIMESTAMP = 1502086078 -SHA256 (KDE/frameworks/5.37.0/kactivities-5.37.0.tar.xz) = db8857d062bb084f882731189ef66e59648b1f66f0192ea8667c4f10eedfbd00 -SIZE (KDE/frameworks/5.37.0/kactivities-5.37.0.tar.xz) = 61288 +TIMESTAMP = 1504433768 +SHA256 (KDE/frameworks/5.38.0/kactivities-5.38.0.tar.xz) = 289d25367515e8d4668f460e3274b68ed6322a7f1c6228602c0f20462303353f +SIZE (KDE/frameworks/5.38.0/kactivities-5.38.0.tar.xz) = 61264 Index: head/x11/kf5-kded/Makefile =================================================================== --- head/x11/kf5-kded/Makefile (revision 450055) +++ head/x11/kf5-kded/Makefile (revision 450056) @@ -1,17 +1,16 @@ # Created by: tcberner # $FreeBSD$ PORTNAME= kded PORTVERSION= ${KDE_FRAMEWORKS_VERSION} -PORTREVISION= 1 CATEGORIES= x11 kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 extensible deamon for providing system level services USES= cmake:outsource compiler:c++11-lib kde:5 tar:xz USE_KDE= config coreaddons crash dbusaddons doctools ecm \ init service USE_QT5= buildtools_build core dbus gui qmake_build widgets .include Index: head/x11/kf5-kded/distinfo =================================================================== --- head/x11/kf5-kded/distinfo (revision 450055) +++ head/x11/kf5-kded/distinfo (revision 450056) @@ -1,3 +1,3 @@ -TIMESTAMP = 1502086079 -SHA256 (KDE/frameworks/5.37.0/kded-5.37.0.tar.xz) = fea1c5e9fb1444be0988455c1e51fb2a8cc846db522297108a0b2c2c3a2e5a98 -SIZE (KDE/frameworks/5.37.0/kded-5.37.0.tar.xz) = 38020 +TIMESTAMP = 1504433769 +SHA256 (KDE/frameworks/5.38.0/kded-5.38.0.tar.xz) = 8b96b50313783b5edcf5bb8a0bc4873a844cb1ca662feb0ace9a932e8bfc5277 +SIZE (KDE/frameworks/5.38.0/kded-5.38.0.tar.xz) = 38112 Index: head/x11/kf5-kdelibs4support/Makefile =================================================================== --- head/x11/kf5-kdelibs4support/Makefile (revision 450055) +++ head/x11/kf5-kdelibs4support/Makefile (revision 450056) @@ -1,30 +1,29 @@ # Created by: tcberner # $FreeBSD$ PORTNAME= kdelibs4support PORTVERSION= ${KDE_FRAMEWORKS_VERSION} -PORTREVISION= 1 CATEGORIES= x11 kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 porting aid from KDELibs4 BUILD_DEPENDS= p5-URI>=0:net/p5-URI USES= cmake:outsource compiler:c++11-lib gettext kde:5 shebangfix \ tar:xz USE_KDE= auth bookmarks codecs completion config configwidgets \ coreaddons crash dbusaddons doctools emoticons globalaccel guiaddons \ i18n iconthemes itemviews jobwidgets kded kio notifications \ parts service solid sonnet textwidgets unitconversion \ widgetsaddons windowsystem xmlgui \ designerplugin_build designerplugin_run \ itemmodels_run USE_QT5= buildtools_build core dbus designer gui network \ printsupport qmake_build svg testlib widgets \ x11extras xml USE_XORG= ice sm x11 xext SHEBANG_FILES= src/kio/fileshareset .include Index: head/x11/kf5-kdelibs4support/distinfo =================================================================== --- head/x11/kf5-kdelibs4support/distinfo (revision 450055) +++ head/x11/kf5-kdelibs4support/distinfo (revision 450056) @@ -1,3 +1,3 @@ -TIMESTAMP = 1502086079 -SHA256 (KDE/frameworks/5.37.0/kdelibs4support-5.37.0.tar.xz) = 09d2a7817dbfd0aec82886fb2c5a83321d8b535a438013ed78d5611d2a00e1ff -SIZE (KDE/frameworks/5.37.0/kdelibs4support-5.37.0.tar.xz) = 3339044 +TIMESTAMP = 1504433769 +SHA256 (KDE/frameworks/5.38.0/kdelibs4support-5.38.0.tar.xz) = f72aac163070bd116a112b7918a71d9dc79f945b19e5f449e55704e1e37f741b +SIZE (KDE/frameworks/5.38.0/kdelibs4support-5.38.0.tar.xz) = 3340048 Index: head/x11/kf5-kglobalaccel/Makefile =================================================================== --- head/x11/kf5-kglobalaccel/Makefile (revision 450055) +++ head/x11/kf5-kglobalaccel/Makefile (revision 450056) @@ -1,21 +1,20 @@ # Created by: tcberner # $FreeBSD$ PORTNAME= kglobalaccel PORTVERSION= ${KDE_FRAMEWORKS_VERSION} -PORTREVISION= 1 CATEGORIES= x11 kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 library to add support for global workspace shortcuts LIB_DEPENDS= libxcb-keysyms.so:x11/xcb-util-keysyms USES= cmake:outsource compiler:c++11-lib kde:5 tar:xz USE_KDE= ecm config coreaddons crash dbusaddons i18n service \ windowsystem USE_QT5= buildtools_build core dbus gui linguisttools qmake_build \ testlib widgets x11extras USE_XORG= xcb .include Index: head/x11/kf5-kglobalaccel/distinfo =================================================================== --- head/x11/kf5-kglobalaccel/distinfo (revision 450055) +++ head/x11/kf5-kglobalaccel/distinfo (revision 450056) @@ -1,3 +1,3 @@ -TIMESTAMP = 1502086079 -SHA256 (KDE/frameworks/5.37.0/kglobalaccel-5.37.0.tar.xz) = 4b373660976ba8c5e0fed74ddfc61dd8629757a849a5ea29a3c2166cf2c004b5 -SIZE (KDE/frameworks/5.37.0/kglobalaccel-5.37.0.tar.xz) = 83840 +TIMESTAMP = 1504433769 +SHA256 (KDE/frameworks/5.38.0/kglobalaccel-5.38.0.tar.xz) = ba0a9084bd456fe4b9b9e308a0105ea744cf980bf4b5fcb0b1cd0a302a7cb5e7 +SIZE (KDE/frameworks/5.38.0/kglobalaccel-5.38.0.tar.xz) = 83484 Index: head/x11/kf5-kinit/Makefile =================================================================== --- head/x11/kf5-kinit/Makefile (revision 450055) +++ head/x11/kf5-kinit/Makefile (revision 450056) @@ -1,18 +1,17 @@ # Created by: tcberner # $FreeBSD$ PORTNAME= kinit PORTVERSION= ${KDE_FRAMEWORKS_VERSION} -PORTREVISION= 1 CATEGORIES= x11 kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 process launcher to speed up launching KDE applications USES= cmake:outsource compiler:c++11-lib gettext kde:5 tar:xz USE_KDE= completion config coreaddons crash doctools ecm i18n \ jobwidgets kio service widgetsaddons windowsystem USE_QT5= buildtools_build core dbus gui network qmake_build widgets USE_XORG= x11 xcb .include Index: head/x11/kf5-kinit/distinfo =================================================================== --- head/x11/kf5-kinit/distinfo (revision 450055) +++ head/x11/kf5-kinit/distinfo (revision 450056) @@ -1,3 +1,3 @@ -TIMESTAMP = 1502086079 -SHA256 (KDE/frameworks/5.37.0/kinit-5.37.0.tar.xz) = b9686968cb277a027169bc48ff37a25f44691b1d828af7cee4c6790c89f7ed2c -SIZE (KDE/frameworks/5.37.0/kinit-5.37.0.tar.xz) = 121296 +TIMESTAMP = 1504433769 +SHA256 (KDE/frameworks/5.38.0/kinit-5.38.0.tar.xz) = ae49e0a3cf8a86868afb57bfd820c65be60939e4a79d39e54608fcc9f307914c +SIZE (KDE/frameworks/5.38.0/kinit-5.38.0.tar.xz) = 121368 Index: head/x11/kf5-krunner/Makefile =================================================================== --- head/x11/kf5-krunner/Makefile (revision 450055) +++ head/x11/kf5-krunner/Makefile (revision 450056) @@ -1,18 +1,17 @@ # Created by: tcberner # $FreeBSD$ PORTNAME= krunner PORTVERSION= ${KDE_FRAMEWORKS_VERSION} -PORTREVISION= 1 CATEGORIES= x11 kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 parallelized query system USES= cmake:outsource compiler:c++11-lib gettext kde:5 tar:xz USE_KDE= config coreaddons ecm i18n kio package plasma-framework \ service solid threadweaver USE_QT5= buildtools_build core gui network qmake_build qml \ quick widgets .include Index: head/x11/kf5-krunner/distinfo =================================================================== --- head/x11/kf5-krunner/distinfo (revision 450055) +++ head/x11/kf5-krunner/distinfo (revision 450056) @@ -1,3 +1,3 @@ -TIMESTAMP = 1502086079 -SHA256 (KDE/frameworks/5.37.0/krunner-5.37.0.tar.xz) = 8d12150cf48ec7eb36ccdacc0d7de2e1481e79b98754e7d813f46b1f325c389c -SIZE (KDE/frameworks/5.37.0/krunner-5.37.0.tar.xz) = 68020 +TIMESTAMP = 1504433769 +SHA256 (KDE/frameworks/5.38.0/krunner-5.38.0.tar.xz) = 95bd2ed35f25d369bc2c613cbad87f78083bffde6ade3ad0ec9e69547fa1d099 +SIZE (KDE/frameworks/5.38.0/krunner-5.38.0.tar.xz) = 71388 Index: head/x11/kf5-krunner/pkg-plist =================================================================== --- head/x11/kf5-krunner/pkg-plist (revision 450055) +++ head/x11/kf5-krunner/pkg-plist (revision 450056) @@ -1,24 +1,25 @@ include/KF5/KRunner/KRunner/AbstractRunner include/KF5/KRunner/KRunner/QueryMatch include/KF5/KRunner/KRunner/RunnerContext include/KF5/KRunner/KRunner/RunnerManager include/KF5/KRunner/KRunner/RunnerSyntax include/KF5/KRunner/krunner/abstractrunner.h include/KF5/KRunner/krunner/krunner_export.h include/KF5/KRunner/krunner/querymatch.h include/KF5/KRunner/krunner/runnercontext.h include/KF5/KRunner/krunner/runnermanager.h include/KF5/KRunner/krunner/runnersyntax.h include/KF5/krunner_version.h lib/cmake/KF5Runner/KF5RunnerConfig.cmake lib/cmake/KF5Runner/KF5RunnerConfigVersion.cmake lib/cmake/KF5Runner/KF5RunnerTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5Runner/KF5RunnerTargets.cmake lib/libKF5Runner.so lib/libKF5Runner.so.5 lib/libKF5Runner.so.%%KDE_FRAMEWORKS_VERSION%% %%QT_QMLDIR%%/org/kde/runnermodel/librunnermodelplugin.so %%QT_QMLDIR%%/org/kde/runnermodel/qmldir %%QT_MKSPECDIR%%/modules/qt_KRunner.pri +share/dbus-1/interfaces/kf5_org.kde.krunner1.xml share/kdevappwizard/templates/runner.tar.bz2 share/kservicetypes5/plasma-runner.desktop Index: head/x11/kf5-kwayland/Makefile =================================================================== --- head/x11/kf5-kwayland/Makefile (revision 450055) +++ head/x11/kf5-kwayland/Makefile (revision 450056) @@ -1,21 +1,20 @@ # Created by: tcberner # $FreeBSD$ PORTNAME= kwayland PORTVERSION= ${KDE_FRAMEWORKS_VERSION} -PORTREVISION= 1 CATEGORIES= x11 kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 Client and Server library wrapper for the Wayland libraries BUILD_DEPENDS= ${LOCALBASE}/include/linux/input.h:multimedia/v4l_compat LIB_DEPENDS= libwayland-client.so:graphics/wayland USES= cmake:outsource compiler:c++11-lib gettext kde:5 pkgconfig \ tar:xz USE_GL= egl USE_KDE= ecm USE_QT5= buildtools_build concurrent core gui qmake_build testlib .include Index: head/x11/kf5-kwayland/distinfo =================================================================== --- head/x11/kf5-kwayland/distinfo (revision 450055) +++ head/x11/kf5-kwayland/distinfo (revision 450056) @@ -1,3 +1,3 @@ -TIMESTAMP = 1502086079 -SHA256 (KDE/frameworks/5.37.0/kwayland-5.37.0.tar.xz) = d9479985f50533b0578097dfc793e7617051b086c1d13fc791efa23111458c34 -SIZE (KDE/frameworks/5.37.0/kwayland-5.37.0.tar.xz) = 262412 +TIMESTAMP = 1504433770 +SHA256 (KDE/frameworks/5.38.0/kwayland-5.38.0.tar.xz) = 404aaf11e144a42b2422a5a47aaf04fb629c4a468689bd8f543c0de6b745a53d +SIZE (KDE/frameworks/5.38.0/kwayland-5.38.0.tar.xz) = 262828 Index: head/x11/kf5-kwindowsystem/Makefile =================================================================== --- head/x11/kf5-kwindowsystem/Makefile (revision 450055) +++ head/x11/kf5-kwindowsystem/Makefile (revision 450056) @@ -1,20 +1,19 @@ # Created by: tcberner # $FreeBSD$ PORTNAME= kwindowsystem PORTVERSION= ${KDE_FRAMEWORKS_VERSION} -PORTREVISION= 1 CATEGORIES= x11 kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 library for access to the windowing system LIB_DEPENDS= libxcb-keysyms.so:x11/xcb-util-keysyms USES= cmake:outsource compiler:c++11-lib kde:5 pkgconfig tar:xz USE_KDE= ecm USE_QT5= buildtools_build core gui linguisttools qmake_build \ testlib widgets x11extras USE_XORG= ice sm x11 xcb xext xfixes xrender .include Index: head/x11/kf5-kwindowsystem/distinfo =================================================================== --- head/x11/kf5-kwindowsystem/distinfo (revision 450055) +++ head/x11/kf5-kwindowsystem/distinfo (revision 450056) @@ -1,3 +1,3 @@ -TIMESTAMP = 1502086080 -SHA256 (KDE/frameworks/5.37.0/kwindowsystem-5.37.0.tar.xz) = 628a1e6512e89ef1eec2b0c50ea879e340656bbc8c57e2f8e961b75b24b0a25d -SIZE (KDE/frameworks/5.37.0/kwindowsystem-5.37.0.tar.xz) = 167936 +TIMESTAMP = 1504433770 +SHA256 (KDE/frameworks/5.38.0/kwindowsystem-5.38.0.tar.xz) = 2c16eb635714ff122b9348c0cc880be60d08c817c98026029f78434d918db90b +SIZE (KDE/frameworks/5.38.0/kwindowsystem-5.38.0.tar.xz) = 168852 Index: head/x11/kf5-plasma-framework/Makefile =================================================================== --- head/x11/kf5-plasma-framework/Makefile (revision 450055) +++ head/x11/kf5-plasma-framework/Makefile (revision 450056) @@ -1,23 +1,22 @@ # Created by: tcberner # $FreeBSD$ PORTNAME= plasma-framework PORTVERSION= ${KDE_FRAMEWORKS_VERSION} -PORTREVISION= 1 CATEGORIES= x11 kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 plugin based UI runtime used to write user interfaces USES= cmake:outsource compiler:c++11-lib gettext kde:5 pkgconfig tar:xz USE_GL= egl gl USE_KDE= activities archive auth codecs completion config \ configwidgets coreaddons dbusaddons doctools globalaccel \ guiaddons i18n iconthemes jobwidgets kio package \ notifications service wayland windowsystem xmlgui kdeclarative \ widgetsaddons USE_QT5= buildtools_build core dbus gui network qmake_build qml \ quick script sql svg widgets x11extras xml USE_XORG= ice sm x11 xcb xext xrandr .include Index: head/x11/kf5-plasma-framework/distinfo =================================================================== --- head/x11/kf5-plasma-framework/distinfo (revision 450055) +++ head/x11/kf5-plasma-framework/distinfo (revision 450056) @@ -1,3 +1,3 @@ -TIMESTAMP = 1502086080 -SHA256 (KDE/frameworks/5.37.0/plasma-framework-5.37.0.tar.xz) = 7099b0cbccf59b6be0f85f515e9e4c1f324c1910735c06acaea3affc5ddf554d -SIZE (KDE/frameworks/5.37.0/plasma-framework-5.37.0.tar.xz) = 4606020 +TIMESTAMP = 1504433770 +SHA256 (KDE/frameworks/5.38.0/plasma-framework-5.38.0.tar.xz) = 4f23f37de0c404dc07809538fd531fa557780e99c854203980846c32a2c370b7 +SIZE (KDE/frameworks/5.38.0/plasma-framework-5.38.0.tar.xz) = 4606372 Index: head/x11/kf5-plasma-framework/pkg-plist =================================================================== --- head/x11/kf5-plasma-framework/pkg-plist (revision 450055) +++ head/x11/kf5-plasma-framework/pkg-plist (revision 450056) @@ -1,600 +1,605 @@ bin/plasmapkg2 include/KF5/Plasma/Applet include/KF5/Plasma/Containment include/KF5/Plasma/ContainmentActions include/KF5/Plasma/Corona include/KF5/Plasma/DataContainer include/KF5/Plasma/DataEngine include/KF5/Plasma/DataEngineConsumer include/KF5/Plasma/FrameSvg include/KF5/Plasma/Package include/KF5/Plasma/PackageStructure include/KF5/Plasma/Plasma include/KF5/Plasma/PluginLoader include/KF5/Plasma/Service include/KF5/Plasma/ServiceJob include/KF5/Plasma/Svg include/KF5/Plasma/Theme include/KF5/PlasmaQuick/AppletQuickItem include/KF5/PlasmaQuick/ConfigModel include/KF5/PlasmaQuick/ConfigView include/KF5/PlasmaQuick/ContainmentView include/KF5/PlasmaQuick/Dialog include/KF5/plasma/applet.h include/KF5/plasma/containment.h include/KF5/plasma/containmentactions.h include/KF5/plasma/corona.h include/KF5/plasma/datacontainer.h include/KF5/plasma/dataengine.h include/KF5/plasma/dataengineconsumer.h include/KF5/plasma/framesvg.h include/KF5/plasma/package.h include/KF5/plasma/packagestructure.h include/KF5/plasma/plasma.h include/KF5/plasma/plasma_export.h include/KF5/plasma/pluginloader.h include/KF5/plasma/scripting/appletscript.h include/KF5/plasma/scripting/dataenginescript.h include/KF5/plasma/scripting/scriptengine.h include/KF5/plasma/service.h include/KF5/plasma/servicejob.h include/KF5/plasma/svg.h include/KF5/plasma/theme.h include/KF5/plasma/version.h include/KF5/plasma_version.h include/KF5/plasmaquick/appletquickitem.h include/KF5/plasmaquick/configmodel.h include/KF5/plasmaquick/configview.h include/KF5/plasmaquick/containmentview.h include/KF5/plasmaquick/dialog.h include/KF5/plasmaquick/packageurlinterceptor.h include/KF5/plasmaquick/plasmaquick_export.h lib/cmake/KF5Plasma/KF5PlasmaConfig.cmake lib/cmake/KF5Plasma/KF5PlasmaConfigVersion.cmake lib/cmake/KF5Plasma/KF5PlasmaMacros.cmake lib/cmake/KF5Plasma/KF5PlasmaTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5Plasma/KF5PlasmaTargets.cmake lib/cmake/KF5PlasmaQuick/KF5PlasmaQuickConfig.cmake lib/cmake/KF5PlasmaQuick/KF5PlasmaQuickConfigVersion.cmake lib/cmake/KF5PlasmaQuick/KF5PlasmaQuickTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5PlasmaQuick/KF5PlasmaQuickTargets.cmake lib/libKF5Plasma.so lib/libKF5Plasma.so.5 lib/libKF5Plasma.so.%%KDE_FRAMEWORKS_VERSION%% lib/libKF5PlasmaQuick.so lib/libKF5PlasmaQuick.so.5 lib/libKF5PlasmaQuick.so.%%KDE_FRAMEWORKS_VERSION%% %%QT_PLUGINDIR%%/kpackage/packagestructure/containmentactions_packagestructure.so %%QT_PLUGINDIR%%/kpackage/packagestructure/dataengine_packagestructure.so %%QT_PLUGINDIR%%/kpackage/packagestructure/plasmageneric_packagestructure.so %%QT_PLUGINDIR%%/kpackage/packagestructure/plasmatheme_packagestructure.so %%QT_PLUGINDIR%%/kpackage/packagestructure/plasmoid_packagestructure.so %%QT_PLUGINDIR%%/plasma/scriptengines/plasma_appletscript_declarative.so %%QT_PLUGINDIR%%/plasma_engine_testengine.so %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/BusyIndicator.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/Button.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/CheckBox.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/CheckDelegate.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/CheckIndicator.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/ComboBox.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/Container.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/Control.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/Dial.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/Dialog.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/DialogButtonBox.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/Drawer.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/Frame.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/GroupBox.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/ItemDelegate.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/Label.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/Menu.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/MenuItem.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/Popup.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/ProgressBar.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/RadioButton.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/RadioDelegate.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/RadioIndicator.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/RangeSlider.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/ScrollBar.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/Slider.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/SpinBox.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/Switch.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/SwitchDelegate.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/SwitchIndicator.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/TabBar.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/TabButton.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/TextArea.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/TextField.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/ToolBar.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/ToolButton.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/ToolTip.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/private/ButtonShadow.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/private/DefaultListItemBackground.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/private/RoundShadow.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/private/TextFieldFocus.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Plasma/ApplicationWindowStyle.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Plasma/BusyIndicatorStyle.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Plasma/ButtonStyle.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Plasma/CalendarStyle.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Plasma/CheckBoxStyle.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Plasma/ComboBoxStyle.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Plasma/CursorDelegate.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Plasma/CursorHandleStyle.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Plasma/EditMenuTouch.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Plasma/FocusFrameStyle.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Plasma/GroupBoxStyle.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Plasma/MenuBarStyle.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Plasma/MenuStyle.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Plasma/ProgressBarStyle.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Plasma/RadioButtonStyle.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Plasma/ScrollViewStyle.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Plasma/SelectionHandleStyle.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Plasma/SliderStyle.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Plasma/SpinBoxStyle.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Plasma/StatusBarStyle.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Plasma/SwitchStyle.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Plasma/TabViewStyle.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Plasma/TableViewStyle.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Plasma/TextAreaStyle.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Plasma/TextFieldStyle.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Plasma/ToolBarStyle.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Plasma/ToolButtonStyle.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Plasma/private/ButtonShadow.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Plasma/private/RoundShadow.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Plasma/private/TextFieldFocus.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Plasma/private/Util.js %%QT_QMLDIR%%/QtQuick/Controls/Styles/Plasma/qmldir %%QT_QMLDIR%%/org/kde/plasma/accessdenied/qmldir %%QT_QMLDIR%%/org/kde/plasma/calendar/CalendarToolbar.qml %%QT_QMLDIR%%/org/kde/plasma/calendar/DayDelegate.qml %%QT_QMLDIR%%/org/kde/plasma/calendar/DaysCalendar.qml %%QT_QMLDIR%%/org/kde/plasma/calendar/MonthMenu.qml %%QT_QMLDIR%%/org/kde/plasma/calendar/MonthView.qml %%QT_QMLDIR%%/org/kde/plasma/calendar/libcalendarplugin.so %%QT_QMLDIR%%/org/kde/plasma/calendar/plugins.qmltypes %%QT_QMLDIR%%/org/kde/plasma/calendar/qmldir %%QT_QMLDIR%%/org/kde/plasma/components.3/BusyIndicator.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/Button.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/CheckBox.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/CheckDelegate.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/CheckIndicator.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/ComboBox.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/Container.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/Control.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/Dial.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/Frame.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/GroupBox.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/ItemDelegate.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/Label.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/ProgressBar.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/RadioButton.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/RadioDelegate.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/RadioIndicator.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/RangeSlider.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/ScrollBar.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/Slider.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/SpinBox.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/TabBar.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/TabButton.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/TextArea.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/TextField.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/ToolBar.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/ToolButton.qml +%%QT_QMLDIR%%/org/kde/plasma/components.3/private/ButtonShadow.qml +%%QT_QMLDIR%%/org/kde/plasma/components.3/private/DefaultListItemBackground.qml +%%QT_QMLDIR%%/org/kde/plasma/components.3/private/RoundShadow.qml +%%QT_QMLDIR%%/org/kde/plasma/components.3/private/TextFieldFocus.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/qmldir %%QT_QMLDIR%%/org/kde/plasma/components/BusyIndicator.qml %%QT_QMLDIR%%/org/kde/plasma/components/Button.qml %%QT_QMLDIR%%/org/kde/plasma/components/ButtonColumn.qml %%QT_QMLDIR%%/org/kde/plasma/components/ButtonGroup.js %%QT_QMLDIR%%/org/kde/plasma/components/ButtonRow.qml %%QT_QMLDIR%%/org/kde/plasma/components/CheckBox.qml %%QT_QMLDIR%%/org/kde/plasma/components/ComboBox.qml %%QT_QMLDIR%%/org/kde/plasma/components/CommonDialog.qml %%QT_QMLDIR%%/org/kde/plasma/components/ContextMenu.qml %%QT_QMLDIR%%/org/kde/plasma/components/Dialog.qml %%QT_QMLDIR%%/org/kde/plasma/components/Highlight.qml %%QT_QMLDIR%%/org/kde/plasma/components/Label.qml %%QT_QMLDIR%%/org/kde/plasma/components/ListItem.qml %%QT_QMLDIR%%/org/kde/plasma/components/ModelContextMenu.qml %%QT_QMLDIR%%/org/kde/plasma/components/Page.qml %%QT_QMLDIR%%/org/kde/plasma/components/PageStack.qml %%QT_QMLDIR%%/org/kde/plasma/components/ProgressBar.qml %%QT_QMLDIR%%/org/kde/plasma/components/QueryDialog.qml %%QT_QMLDIR%%/org/kde/plasma/components/RadioButton.qml %%QT_QMLDIR%%/org/kde/plasma/components/ScrollBar.qml %%QT_QMLDIR%%/org/kde/plasma/components/SectionScroller.qml %%QT_QMLDIR%%/org/kde/plasma/components/SelectionDialog.qml %%QT_QMLDIR%%/org/kde/plasma/components/Sheet.qml %%QT_QMLDIR%%/org/kde/plasma/components/Slider.qml %%QT_QMLDIR%%/org/kde/plasma/components/Switch.qml %%QT_QMLDIR%%/org/kde/plasma/components/TabBar.qml %%QT_QMLDIR%%/org/kde/plasma/components/TabButton.qml %%QT_QMLDIR%%/org/kde/plasma/components/TabGroup.qml %%QT_QMLDIR%%/org/kde/plasma/components/TextArea.qml %%QT_QMLDIR%%/org/kde/plasma/components/TextField.qml %%QT_QMLDIR%%/org/kde/plasma/components/ToolBar.qml %%QT_QMLDIR%%/org/kde/plasma/components/ToolBarLayout.qml %%QT_QMLDIR%%/org/kde/plasma/components/ToolButton.qml %%QT_QMLDIR%%/org/kde/plasma/components/libplasmacomponentsplugin.so %%QT_QMLDIR%%/org/kde/plasma/components/plugins.qmltypes %%QT_QMLDIR%%/org/kde/plasma/components/private/AppManager.js %%QT_QMLDIR%%/org/kde/plasma/components/private/DualStateButton.qml %%QT_QMLDIR%%/org/kde/plasma/components/private/InlineDialog.qml %%QT_QMLDIR%%/org/kde/plasma/components/private/PageStack.js %%QT_QMLDIR%%/org/kde/plasma/components/private/ScrollBarDelegate.qml %%QT_QMLDIR%%/org/kde/plasma/components/private/ScrollDecoratorDelegate.qml %%QT_QMLDIR%%/org/kde/plasma/components/private/SectionScroller.js %%QT_QMLDIR%%/org/kde/plasma/components/private/TabBarLayout.qml %%QT_QMLDIR%%/org/kde/plasma/components/private/TabGroup.js %%QT_QMLDIR%%/org/kde/plasma/components/qmldir %%QT_QMLDIR%%/org/kde/plasma/core/libcorebindingsplugin.so %%QT_QMLDIR%%/org/kde/plasma/core/plugins.qmltypes %%QT_QMLDIR%%/org/kde/plasma/core/private/DefaultToolTip.qml %%QT_QMLDIR%%/org/kde/plasma/core/qmldir %%QT_QMLDIR%%/org/kde/plasma/extras/App.qml %%QT_QMLDIR%%/org/kde/plasma/extras/ConditionalLoader.qml %%QT_QMLDIR%%/org/kde/plasma/extras/Heading.qml %%QT_QMLDIR%%/org/kde/plasma/extras/PageRow.qml %%QT_QMLDIR%%/org/kde/plasma/extras/Paragraph.qml %%QT_QMLDIR%%/org/kde/plasma/extras/ScrollArea.qml %%QT_QMLDIR%%/org/kde/plasma/extras/Title.qml %%QT_QMLDIR%%/org/kde/plasma/extras/animations/ActivateAnimation.qml %%QT_QMLDIR%%/org/kde/plasma/extras/animations/AppearAnimation.qml %%QT_QMLDIR%%/org/kde/plasma/extras/animations/DisappearAnimation.qml %%QT_QMLDIR%%/org/kde/plasma/extras/animations/PressedAnimation.qml %%QT_QMLDIR%%/org/kde/plasma/extras/animations/ReleasedAnimation.qml %%QT_QMLDIR%%/org/kde/plasma/extras/libplasmaextracomponentsplugin.so %%QT_QMLDIR%%/org/kde/plasma/extras/plugins.qmltypes %%QT_QMLDIR%%/org/kde/plasma/extras/qmldir %%QT_QMLDIR%%/org/kde/plasma/platformcomponents/libplatformcomponentsplugin.so %%QT_QMLDIR%%/org/kde/plasma/platformcomponents/plugins.qmltypes %%QT_QMLDIR%%/org/kde/plasma/platformcomponents/qmldir man/ca/man1/plasmapkg2.1.gz man/de/man1/plasmapkg2.1.gz man/es/man1/plasmapkg2.1.gz man/it/man1/plasmapkg2.1.gz man/man1/plasmapkg2.1.gz man/nl/man1/plasmapkg2.1.gz man/pt/man1/plasmapkg2.1.gz man/pt_BR/man1/plasmapkg2.1.gz man/sv/man1/plasmapkg2.1.gz man/uk/man1/plasmapkg2.1.gz share/kdevappwizard/templates/cpp-plasmoid.tar.bz2 share/kdevappwizard/templates/plasma-wallpaper.tar.bz2 share/kdevappwizard/templates/qml-plasmoid.tar.bz2 share/kdevappwizard/templates/qml-plasmoid-with-qml-extension.tar.bz2 share/kservices5/plasma-dataengine-testengine.desktop share/kservices5/plasma-scriptengine-applet-declarative.desktop share/kservicetypes5/plasma-applet.desktop share/kservicetypes5/plasma-containment.desktop share/kservicetypes5/plasma-containmentactions.desktop share/kservicetypes5/plasma-dataengine.desktop share/kservicetypes5/plasma-generic.desktop share/kservicetypes5/plasma-lookandfeel.desktop share/kservicetypes5/plasma-packagestructure.desktop share/kservicetypes5/plasma-scriptengine.desktop share/kservicetypes5/plasma-service.desktop share/kservicetypes5/plasma-shell.desktop share/kservicetypes5/plasma-wallpaper.desktop share/locale/ar/LC_MESSAGES/libplasma5.mo share/locale/ast/LC_MESSAGES/libplasma5.mo share/locale/bs/LC_MESSAGES/libplasma5.mo share/locale/ca/LC_MESSAGES/libplasma5.mo share/locale/ca@valencia/LC_MESSAGES/libplasma5.mo share/locale/cs/LC_MESSAGES/libplasma5.mo share/locale/da/LC_MESSAGES/libplasma5.mo share/locale/de/LC_MESSAGES/libplasma5.mo share/locale/el/LC_MESSAGES/libplasma5.mo share/locale/en_GB/LC_MESSAGES/libplasma5.mo share/locale/es/LC_MESSAGES/libplasma5.mo share/locale/et/LC_MESSAGES/libplasma5.mo +share/locale/eu/LC_MESSAGES/libplasma5.mo share/locale/fi/LC_MESSAGES/libplasma5.mo share/locale/fr/LC_MESSAGES/libplasma5.mo share/locale/gd/LC_MESSAGES/libplasma5.mo share/locale/gl/LC_MESSAGES/libplasma5.mo share/locale/he/LC_MESSAGES/libplasma5.mo share/locale/hu/LC_MESSAGES/libplasma5.mo share/locale/ia/LC_MESSAGES/libplasma5.mo share/locale/it/LC_MESSAGES/libplasma5.mo share/locale/ja/LC_MESSAGES/libplasma5.mo share/locale/ko/LC_MESSAGES/libplasma5.mo share/locale/lt/LC_MESSAGES/libplasma5.mo share/locale/lt/LC_SCRIPTS/libplasma5/libplasma5.js share/locale/lt/LC_SCRIPTS/libplasma5/plasmoids.js share/locale/mr/LC_MESSAGES/libplasma5.mo share/locale/nb/LC_MESSAGES/libplasma5.mo share/locale/nds/LC_MESSAGES/libplasma5.mo share/locale/nl/LC_MESSAGES/libplasma5.mo share/locale/nn/LC_MESSAGES/libplasma5.mo share/locale/pa/LC_MESSAGES/libplasma5.mo share/locale/pl/LC_MESSAGES/libplasma5.mo share/locale/pt/LC_MESSAGES/libplasma5.mo share/locale/pt_BR/LC_MESSAGES/libplasma5.mo share/locale/ro/LC_MESSAGES/libplasma5.mo share/locale/ru/LC_MESSAGES/libplasma5.mo share/locale/sk/LC_MESSAGES/libplasma5.mo share/locale/sl/LC_MESSAGES/libplasma5.mo share/locale/sr/LC_MESSAGES/libplasma5.mo share/locale/sr@ijekavian/LC_MESSAGES/libplasma5.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/libplasma5.mo share/locale/sr@latin/LC_MESSAGES/libplasma5.mo share/locale/sv/LC_MESSAGES/libplasma5.mo share/locale/tr/LC_MESSAGES/libplasma5.mo share/locale/ug/LC_MESSAGES/libplasma5.mo share/locale/uk/LC_MESSAGES/libplasma5.mo share/locale/zh_CN/LC_MESSAGES/libplasma5.mo share/locale/zh_TW/LC_MESSAGES/libplasma5.mo share/plasma/desktoptheme/air/colors share/plasma/desktoptheme/air/dialogs/background.svgz share/plasma/desktoptheme/air/dialogs/kickoff.svgz share/plasma/desktoptheme/air/dialogs/krunner.svgz share/plasma/desktoptheme/air/icons/akonadi.svgz share/plasma/desktoptheme/air/icons/akregator.svgz share/plasma/desktoptheme/air/icons/amarok.svgz share/plasma/desktoptheme/air/icons/applications.svgz share/plasma/desktoptheme/air/icons/apport.svgz share/plasma/desktoptheme/air/icons/audio.svgz share/plasma/desktoptheme/air/icons/battery.svgz share/plasma/desktoptheme/air/icons/bookmarks.svgz share/plasma/desktoptheme/air/icons/computer.svgz share/plasma/desktoptheme/air/icons/configure.svgz share/plasma/desktoptheme/air/icons/device.svgz share/plasma/desktoptheme/air/icons/edit.svgz share/plasma/desktoptheme/air/icons/kdeconnect.svgz share/plasma/desktoptheme/air/icons/keyboard.svgz share/plasma/desktoptheme/air/icons/kget.svgz share/plasma/desktoptheme/air/icons/klipper.svgz share/plasma/desktoptheme/air/icons/konv_message.svgz share/plasma/desktoptheme/air/icons/konversation.svgz share/plasma/desktoptheme/air/icons/kopete.svgz share/plasma/desktoptheme/air/icons/korgac.svgz share/plasma/desktoptheme/air/icons/kpackagekit.svgz share/plasma/desktoptheme/air/icons/ktorrent.svgz share/plasma/desktoptheme/air/icons/nepomuk.svgz share/plasma/desktoptheme/air/icons/network.svgz share/plasma/desktoptheme/air/icons/notification.svgz share/plasma/desktoptheme/air/icons/preferences.svgz share/plasma/desktoptheme/air/icons/printer.svgz share/plasma/desktoptheme/air/icons/quassel.svgz share/plasma/desktoptheme/air/icons/slc.svgz share/plasma/desktoptheme/air/icons/start.svgz share/plasma/desktoptheme/air/icons/system.svgz share/plasma/desktoptheme/air/icons/view.svgz share/plasma/desktoptheme/air/icons/wallet.svgz share/plasma/desktoptheme/air/metadata.desktop share/plasma/desktoptheme/air/opaque/dialogs/background.svgz share/plasma/desktoptheme/air/opaque/dialogs/krunner.svgz share/plasma/desktoptheme/air/opaque/widgets/extender-background.svgz share/plasma/desktoptheme/air/opaque/widgets/panel-background.svgz share/plasma/desktoptheme/air/opaque/widgets/tooltip.svgz share/plasma/desktoptheme/air/translucent/dialogs/background.svgz share/plasma/desktoptheme/air/translucent/dialogs/krunner.svgz share/plasma/desktoptheme/air/translucent/widgets/extender-background.svgz share/plasma/desktoptheme/air/translucent/widgets/panel-background.svgz share/plasma/desktoptheme/air/translucent/widgets/tooltip.svgz share/plasma/desktoptheme/air/widgets/action-overlays.svgz share/plasma/desktoptheme/air/widgets/actionbutton.svgz share/plasma/desktoptheme/air/widgets/analog_meter.svgz share/plasma/desktoptheme/air/widgets/arrows.svgz share/plasma/desktoptheme/air/widgets/background.svgz share/plasma/desktoptheme/air/widgets/bar_meter_horizontal.svgz share/plasma/desktoptheme/air/widgets/bar_meter_vertical.svgz share/plasma/desktoptheme/air/widgets/branding.svgz share/plasma/desktoptheme/air/widgets/busywidget.svgz share/plasma/desktoptheme/air/widgets/button.svgz share/plasma/desktoptheme/air/widgets/calendar.svgz share/plasma/desktoptheme/air/widgets/checkmarks.svgz share/plasma/desktoptheme/air/widgets/clock.svgz share/plasma/desktoptheme/air/widgets/containment-controls.svgz share/plasma/desktoptheme/air/widgets/dragger.svgz share/plasma/desktoptheme/air/widgets/frame.svgz share/plasma/desktoptheme/air/widgets/glowbar.svgz share/plasma/desktoptheme/air/widgets/identiconshapes.svgz share/plasma/desktoptheme/air/widgets/identicontheme.svgz share/plasma/desktoptheme/air/widgets/labeltexture.svgz share/plasma/desktoptheme/air/widgets/line.svgz share/plasma/desktoptheme/air/widgets/lineedit.svgz share/plasma/desktoptheme/air/widgets/listitem.svgz share/plasma/desktoptheme/air/widgets/media-delegate.svgz share/plasma/desktoptheme/air/widgets/monitor.svgz share/plasma/desktoptheme/air/widgets/pager.svgz share/plasma/desktoptheme/air/widgets/panel-background.svgz share/plasma/desktoptheme/air/widgets/picker.svgz share/plasma/desktoptheme/air/widgets/plot-background.svgz share/plasma/desktoptheme/air/widgets/scrollbar.svgz share/plasma/desktoptheme/air/widgets/scrollwidget.svgz share/plasma/desktoptheme/air/widgets/slider.svgz share/plasma/desktoptheme/air/widgets/systemtray.svgz share/plasma/desktoptheme/air/widgets/tabbar.svgz share/plasma/desktoptheme/air/widgets/tasks.svgz share/plasma/desktoptheme/air/widgets/toolbar.svgz share/plasma/desktoptheme/air/widgets/toolbox.svgz share/plasma/desktoptheme/air/widgets/tooltip.svgz share/plasma/desktoptheme/air/widgets/translucentbackground.svgz share/plasma/desktoptheme/air/widgets/viewitem.svgz share/plasma/desktoptheme/breeze-dark/colors share/plasma/desktoptheme/breeze-dark/metadata.desktop share/plasma/desktoptheme/breeze-light/colors share/plasma/desktoptheme/breeze-light/metadata.desktop share/plasma/desktoptheme/default/dialogs/background.svgz share/plasma/desktoptheme/default/icons/akonadi.svgz share/plasma/desktoptheme/default/icons/akregator.svgz share/plasma/desktoptheme/default/icons/amarok.svgz share/plasma/desktoptheme/default/icons/applications.svgz share/plasma/desktoptheme/default/icons/apport.svgz share/plasma/desktoptheme/default/icons/audio.svgz share/plasma/desktoptheme/default/icons/battery.svgz share/plasma/desktoptheme/default/icons/bookmarks.svgz share/plasma/desktoptheme/default/icons/cantata.svgz share/plasma/desktoptheme/default/icons/computer.svgz share/plasma/desktoptheme/default/icons/configure.svgz share/plasma/desktoptheme/default/icons/device.svgz share/plasma/desktoptheme/default/icons/distribute.svgz share/plasma/desktoptheme/default/icons/document.svgz share/plasma/desktoptheme/default/icons/drive.svgz share/plasma/desktoptheme/default/icons/edit.svgz share/plasma/desktoptheme/default/icons/fcitx.svgz share/plasma/desktoptheme/default/icons/go.svgz share/plasma/desktoptheme/default/icons/ime.svgz share/plasma/desktoptheme/default/icons/input.svgz share/plasma/desktoptheme/default/icons/kalarm.svgz share/plasma/desktoptheme/default/icons/kdeconnect.svgz share/plasma/desktoptheme/default/icons/keyboard.svgz share/plasma/desktoptheme/default/icons/kget.svgz share/plasma/desktoptheme/default/icons/kgpg.svgz share/plasma/desktoptheme/default/icons/kleopatra.svgz share/plasma/desktoptheme/default/icons/klipper.svgz share/plasma/desktoptheme/default/icons/kmail.svgz share/plasma/desktoptheme/default/icons/konv_message.svgz share/plasma/desktoptheme/default/icons/konversation.svgz share/plasma/desktoptheme/default/icons/kopete.svgz share/plasma/desktoptheme/default/icons/korgac.svgz share/plasma/desktoptheme/default/icons/kpackagekit.svgz share/plasma/desktoptheme/default/icons/kruler.svgz share/plasma/desktoptheme/default/icons/kteatime.svgz share/plasma/desktoptheme/default/icons/ktorrent.svgz share/plasma/desktoptheme/default/icons/list.svgz share/plasma/desktoptheme/default/icons/mail.svgz share/plasma/desktoptheme/default/icons/media.svgz share/plasma/desktoptheme/default/icons/nepomuk.svgz share/plasma/desktoptheme/default/icons/network.svgz share/plasma/desktoptheme/default/icons/notification.svgz share/plasma/desktoptheme/default/icons/phone.svgz share/plasma/desktoptheme/default/icons/plasmavault.svgz share/plasma/desktoptheme/default/icons/plasmavault_error.svgz share/plasma/desktoptheme/default/icons/preferences.svgz share/plasma/desktoptheme/default/icons/printer.svgz share/plasma/desktoptheme/default/icons/quassel.svgz share/plasma/desktoptheme/default/icons/slc.svgz share/plasma/desktoptheme/default/icons/software.svgz share/plasma/desktoptheme/default/icons/start.svgz share/plasma/desktoptheme/default/icons/system.svgz share/plasma/desktoptheme/default/icons/touchpad.svgz share/plasma/desktoptheme/default/icons/user.svgz share/plasma/desktoptheme/default/icons/video.svgz share/plasma/desktoptheme/default/icons/view.svgz share/plasma/desktoptheme/default/icons/vlc.svgz share/plasma/desktoptheme/default/icons/wallet.svgz share/plasma/desktoptheme/default/icons/window.svgz share/plasma/desktoptheme/default/icons/zoom.svgz share/plasma/desktoptheme/default/metadata.desktop share/plasma/desktoptheme/default/opaque/dialogs/background.svgz share/plasma/desktoptheme/default/opaque/widgets/panel-background.svgz share/plasma/desktoptheme/default/opaque/widgets/tooltip.svgz share/plasma/desktoptheme/default/translucent/dialogs/background.svgz share/plasma/desktoptheme/default/translucent/widgets/panel-background.svgz share/plasma/desktoptheme/default/translucent/widgets/tooltip.svgz share/plasma/desktoptheme/default/widgets/action-overlays.svgz share/plasma/desktoptheme/default/widgets/actionbutton.svgz share/plasma/desktoptheme/default/widgets/analog_meter.svgz share/plasma/desktoptheme/default/widgets/arrows.svgz share/plasma/desktoptheme/default/widgets/background.svgz share/plasma/desktoptheme/default/widgets/bar_meter_horizontal.svgz share/plasma/desktoptheme/default/widgets/bar_meter_vertical.svgz share/plasma/desktoptheme/default/widgets/branding.svgz share/plasma/desktoptheme/default/widgets/busywidget.svgz share/plasma/desktoptheme/default/widgets/button.svgz share/plasma/desktoptheme/default/widgets/calendar.svgz share/plasma/desktoptheme/default/widgets/checkmarks.svgz share/plasma/desktoptheme/default/widgets/clock.svgz share/plasma/desktoptheme/default/widgets/configuration-icons.svgz share/plasma/desktoptheme/default/widgets/containment-controls.svgz share/plasma/desktoptheme/default/widgets/dragger.svgz share/plasma/desktoptheme/default/widgets/frame.svgz share/plasma/desktoptheme/default/widgets/glowbar.svgz share/plasma/desktoptheme/default/widgets/line.svgz share/plasma/desktoptheme/default/widgets/lineedit.svgz share/plasma/desktoptheme/default/widgets/listitem.svgz share/plasma/desktoptheme/default/widgets/media-delegate.svgz share/plasma/desktoptheme/default/widgets/monitor.svgz share/plasma/desktoptheme/default/widgets/notes.svgz share/plasma/desktoptheme/default/widgets/pager.svgz share/plasma/desktoptheme/default/widgets/panel-background.svgz share/plasma/desktoptheme/default/widgets/picker.svgz share/plasma/desktoptheme/default/widgets/plot-background.svgz share/plasma/desktoptheme/default/widgets/scrollbar.svgz share/plasma/desktoptheme/default/widgets/scrollwidget.svgz share/plasma/desktoptheme/default/widgets/slider.svgz share/plasma/desktoptheme/default/widgets/tabbar.svgz share/plasma/desktoptheme/default/widgets/tasks.svgz share/plasma/desktoptheme/default/widgets/toolbar.svgz share/plasma/desktoptheme/default/widgets/tooltip.svgz share/plasma/desktoptheme/default/widgets/translucentbackground.svgz share/plasma/desktoptheme/default/widgets/viewitem.svgz share/plasma/desktoptheme/oxygen/colors share/plasma/desktoptheme/oxygen/dialogs/background.svgz share/plasma/desktoptheme/oxygen/icons/akonadi.svgz share/plasma/desktoptheme/oxygen/icons/akregator.svgz share/plasma/desktoptheme/oxygen/icons/amarok.svgz share/plasma/desktoptheme/oxygen/icons/applications.svgz share/plasma/desktoptheme/oxygen/icons/apport.svgz share/plasma/desktoptheme/oxygen/icons/audio.svgz share/plasma/desktoptheme/oxygen/icons/battery.svgz share/plasma/desktoptheme/oxygen/icons/bookmarks.svgz share/plasma/desktoptheme/oxygen/icons/computer.svgz share/plasma/desktoptheme/oxygen/icons/configure.svgz share/plasma/desktoptheme/oxygen/icons/device.svgz share/plasma/desktoptheme/oxygen/icons/edit.svgz share/plasma/desktoptheme/oxygen/icons/kdeconnect.svgz share/plasma/desktoptheme/oxygen/icons/keyboard.svgz share/plasma/desktoptheme/oxygen/icons/kget.svgz share/plasma/desktoptheme/oxygen/icons/klipper.svgz share/plasma/desktoptheme/oxygen/icons/konv_message.svgz share/plasma/desktoptheme/oxygen/icons/konversation.svgz share/plasma/desktoptheme/oxygen/icons/kopete.svgz share/plasma/desktoptheme/oxygen/icons/korgac.svgz share/plasma/desktoptheme/oxygen/icons/kpackagekit.svgz share/plasma/desktoptheme/oxygen/icons/ktorrent.svgz share/plasma/desktoptheme/oxygen/icons/nepomuk.svgz share/plasma/desktoptheme/oxygen/icons/network.svgz share/plasma/desktoptheme/oxygen/icons/notification.svgz share/plasma/desktoptheme/oxygen/icons/preferences.svgz share/plasma/desktoptheme/oxygen/icons/printer.svgz share/plasma/desktoptheme/oxygen/icons/quassel.svgz share/plasma/desktoptheme/oxygen/icons/slc.svgz share/plasma/desktoptheme/oxygen/icons/start.svgz share/plasma/desktoptheme/oxygen/icons/system.svgz share/plasma/desktoptheme/oxygen/icons/view.svgz share/plasma/desktoptheme/oxygen/icons/wallet.svgz share/plasma/desktoptheme/oxygen/metadata.desktop share/plasma/desktoptheme/oxygen/opaque/dialogs/background.svgz share/plasma/desktoptheme/oxygen/opaque/dialogs/krunner.svgz share/plasma/desktoptheme/oxygen/opaque/widgets/extender-background.svgz share/plasma/desktoptheme/oxygen/opaque/widgets/panel-background.svgz share/plasma/desktoptheme/oxygen/opaque/widgets/tooltip.svgz share/plasma/desktoptheme/oxygen/widgets/action-overlays.svgz share/plasma/desktoptheme/oxygen/widgets/actionbutton.svgz share/plasma/desktoptheme/oxygen/widgets/analog_meter.svgz share/plasma/desktoptheme/oxygen/widgets/arrows.svgz share/plasma/desktoptheme/oxygen/widgets/background.svgz share/plasma/desktoptheme/oxygen/widgets/bar_meter_horizontal.svgz share/plasma/desktoptheme/oxygen/widgets/bar_meter_vertical.svgz share/plasma/desktoptheme/oxygen/widgets/branding.svgz share/plasma/desktoptheme/oxygen/widgets/busywidget.svgz share/plasma/desktoptheme/oxygen/widgets/button.svgz share/plasma/desktoptheme/oxygen/widgets/calendar.svgz share/plasma/desktoptheme/oxygen/widgets/clock.svgz share/plasma/desktoptheme/oxygen/widgets/containment-controls.svgz share/plasma/desktoptheme/oxygen/widgets/dragger.svgz share/plasma/desktoptheme/oxygen/widgets/extender-background.svgz share/plasma/desktoptheme/oxygen/widgets/extender-dragger.svgz share/plasma/desktoptheme/oxygen/widgets/frame.svgz share/plasma/desktoptheme/oxygen/widgets/glowbar.svgz share/plasma/desktoptheme/oxygen/widgets/line.svgz share/plasma/desktoptheme/oxygen/widgets/lineedit.svgz share/plasma/desktoptheme/oxygen/widgets/media-delegate.svgz share/plasma/desktoptheme/oxygen/widgets/monitor.svgz share/plasma/desktoptheme/oxygen/widgets/pager.svgz share/plasma/desktoptheme/oxygen/widgets/panel-background.svgz share/plasma/desktoptheme/oxygen/widgets/plot-background.svgz share/plasma/desktoptheme/oxygen/widgets/scrollbar.svgz share/plasma/desktoptheme/oxygen/widgets/scrollwidget.svgz share/plasma/desktoptheme/oxygen/widgets/slider.svgz share/plasma/desktoptheme/oxygen/widgets/tabbar.svgz share/plasma/desktoptheme/oxygen/widgets/tasks.svgz share/plasma/desktoptheme/oxygen/widgets/timer.svgz share/plasma/desktoptheme/oxygen/widgets/tooltip.svgz share/plasma/desktoptheme/oxygen/widgets/translucentbackground.svgz share/plasma/desktoptheme/oxygen/widgets/viewitem.svgz share/plasma/services/dataengineservice.operations share/plasma/services/plasmoidservice.operations share/plasma/services/storage.operations Index: head/x11-themes/kf5-breeze-icons/distinfo =================================================================== --- head/x11-themes/kf5-breeze-icons/distinfo (revision 450055) +++ head/x11-themes/kf5-breeze-icons/distinfo (revision 450056) @@ -1,3 +1,3 @@ -TIMESTAMP = 1502086073 -SHA256 (KDE/frameworks/5.37.0/breeze-icons-5.37.0.tar.xz) = bc2f466920bcd606f835e21733087b57cda8273881ee1713e9be5bd0e015d99e -SIZE (KDE/frameworks/5.37.0/breeze-icons-5.37.0.tar.xz) = 1498320 +TIMESTAMP = 1504433762 +SHA256 (KDE/frameworks/5.38.0/breeze-icons-5.38.0.tar.xz) = 89291dd396bd0f42e9b90eb92f46895fa461ebc2b420a58c663e0c4898894e25 +SIZE (KDE/frameworks/5.38.0/breeze-icons-5.38.0.tar.xz) = 1498388 Index: head/x11-themes/kf5-kemoticons/Makefile =================================================================== --- head/x11-themes/kf5-kemoticons/Makefile (revision 450055) +++ head/x11-themes/kf5-kemoticons/Makefile (revision 450056) @@ -1,16 +1,15 @@ # Created by: tcberner # $FreeBSD$ PORTNAME= kemoticons PORTVERSION= ${KDE_FRAMEWORKS_VERSION} -PORTREVISION= 1 CATEGORIES= x11-themes kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 library to convert emoticons USES= cmake:outsource compiler:c++11-lib kde:5 tar:xz USE_KDE= archive config coreaddons ecm service USE_QT5= buildtools_build core gui qmake_build widgets xml .include Index: head/x11-themes/kf5-kemoticons/distinfo =================================================================== --- head/x11-themes/kf5-kemoticons/distinfo (revision 450055) +++ head/x11-themes/kf5-kemoticons/distinfo (revision 450056) @@ -1,3 +1,3 @@ -TIMESTAMP = 1502086073 -SHA256 (KDE/frameworks/5.37.0/kemoticons-5.37.0.tar.xz) = d8c6bd991b04b85a6a7ab891132e6e3f46427467b67a45a00c7bd416343aa9b3 -SIZE (KDE/frameworks/5.37.0/kemoticons-5.37.0.tar.xz) = 1695528 +TIMESTAMP = 1504433762 +SHA256 (KDE/frameworks/5.38.0/kemoticons-5.38.0.tar.xz) = a5b54d48822055e409f04fe4a85bb057798c0b0c815a5f7c6ca24bd47c4809b0 +SIZE (KDE/frameworks/5.38.0/kemoticons-5.38.0.tar.xz) = 1695676 Index: head/x11-themes/kf5-kiconthemes/Makefile =================================================================== --- head/x11-themes/kf5-kiconthemes/Makefile (revision 450055) +++ head/x11-themes/kf5-kiconthemes/Makefile (revision 450056) @@ -1,18 +1,17 @@ # Created by: tcberner # $FreeBSD$ PORTNAME= kiconthemes PORTVERSION= ${KDE_FRAMEWORKS_VERSION} -PORTREVISION= 1 CATEGORIES= x11-themes kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 library for handling icons in applications USES= cmake:outsource compiler:c++11-lib gettext kde:5 tar:xz USE_KDE= archive auth codecs config configwidgets coreaddons ecm \ i18n itemviews widgetsaddons USE_QT5= buildtools_build concurrent core dbus gui qmake_build \ script svg widgets xml .include Index: head/x11-themes/kf5-kiconthemes/distinfo =================================================================== --- head/x11-themes/kf5-kiconthemes/distinfo (revision 450055) +++ head/x11-themes/kf5-kiconthemes/distinfo (revision 450056) @@ -1,3 +1,3 @@ -TIMESTAMP = 1502086074 -SHA256 (KDE/frameworks/5.37.0/kiconthemes-5.37.0.tar.xz) = b83bc856947134d4c7a97a6bf8f61045269fb614d6f7d482b344a8beb57bf5c8 -SIZE (KDE/frameworks/5.37.0/kiconthemes-5.37.0.tar.xz) = 204832 +TIMESTAMP = 1504433763 +SHA256 (KDE/frameworks/5.38.0/kiconthemes-5.38.0.tar.xz) = 2a7dc525c1e9eea8c8952ca4eeccc22c28bb37ea83895fd7166174263218aa07 +SIZE (KDE/frameworks/5.38.0/kiconthemes-5.38.0.tar.xz) = 204904 Index: head/x11-themes/kf5-oxygen-icons5/distinfo =================================================================== --- head/x11-themes/kf5-oxygen-icons5/distinfo (revision 450055) +++ head/x11-themes/kf5-oxygen-icons5/distinfo (revision 450056) @@ -1,3 +1,3 @@ -TIMESTAMP = 1502086076 -SHA256 (KDE/frameworks/5.37.0/oxygen-icons5-5.37.0.tar.xz) = 9004435ec6ba3be0313b25ab9230601b027f902ff9a81070b9782037923ddae6 -SIZE (KDE/frameworks/5.37.0/oxygen-icons5-5.37.0.tar.xz) = 234411868 +TIMESTAMP = 1504433765 +SHA256 (KDE/frameworks/5.38.0/oxygen-icons5-5.38.0.tar.xz) = 2dc6c1a481b1877739328aebc27661bdaa090b3de653e5ecc5be96bc463e693a +SIZE (KDE/frameworks/5.38.0/oxygen-icons5-5.38.0.tar.xz) = 234409056 Index: head/x11-toolkits/kf5-attica/Makefile =================================================================== --- head/x11-toolkits/kf5-attica/Makefile (revision 450055) +++ head/x11-toolkits/kf5-attica/Makefile (revision 450056) @@ -1,16 +1,15 @@ # Created by: tcberner # $FreeBSD$ PORTNAME= attica PORTVERSION= ${KDE_FRAMEWORKS_VERSION} -PORTREVISION= 1 CATEGORIES= x11-toolkits kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= Open Collaboration Services API library KDE5 version USES= cmake:outsource compiler:c++11-lib kde:5 pathfix tar:xz USE_KDE= ecm USE_QT5= buildtools_build core gui network qmake_build testlib_build widgets .include Index: head/x11-toolkits/kf5-attica/distinfo =================================================================== --- head/x11-toolkits/kf5-attica/distinfo (revision 450055) +++ head/x11-toolkits/kf5-attica/distinfo (revision 450056) @@ -1,3 +1,3 @@ -TIMESTAMP = 1502086076 -SHA256 (KDE/frameworks/5.37.0/attica-5.37.0.tar.xz) = 573c71704b4116e82a9866a86b90e375a1f5022563246b14bb0866963899588e -SIZE (KDE/frameworks/5.37.0/attica-5.37.0.tar.xz) = 60616 +TIMESTAMP = 1504433765 +SHA256 (KDE/frameworks/5.38.0/attica-5.38.0.tar.xz) = 26f124e686d4a1ff005798958d63ddccd0bc23a763ea0578c4d2337a1a6b558b +SIZE (KDE/frameworks/5.38.0/attica-5.38.0.tar.xz) = 60636 Index: head/x11-toolkits/kf5-kcompletion/Makefile =================================================================== --- head/x11-toolkits/kf5-kcompletion/Makefile (revision 450055) +++ head/x11-toolkits/kf5-kcompletion/Makefile (revision 450056) @@ -1,17 +1,16 @@ # Created by: tcberner # $FreeBSD$ PORTNAME= kcompletion PORTVERSION= ${KDE_FRAMEWORKS_VERSION} -PORTREVISION= 1 CATEGORIES= x11-toolkits kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 text completion helpers and widgets USES= cmake:outsource compiler:c++11-lib kde:5 tar:xz USE_KDE= config ecm widgetsaddons USE_QT5= buildtools_build core gui linguisttools qmake_build \ widgets xml .include Index: head/x11-toolkits/kf5-kcompletion/distinfo =================================================================== --- head/x11-toolkits/kf5-kcompletion/distinfo (revision 450055) +++ head/x11-toolkits/kf5-kcompletion/distinfo (revision 450056) @@ -1,3 +1,3 @@ -TIMESTAMP = 1502086076 -SHA256 (KDE/frameworks/5.37.0/kcompletion-5.37.0.tar.xz) = 5fd2b0a51fe87e3b2042b65069c7cfcd5d2eede3bde94f21285ecad02a9e1262 -SIZE (KDE/frameworks/5.37.0/kcompletion-5.37.0.tar.xz) = 118424 +TIMESTAMP = 1504433766 +SHA256 (KDE/frameworks/5.38.0/kcompletion-5.38.0.tar.xz) = 5c943799729e7ed8d101eb2e11a09a2616d6c13c33d3575b2e61667e0c2f2539 +SIZE (KDE/frameworks/5.38.0/kcompletion-5.38.0.tar.xz) = 118432 Index: head/x11-toolkits/kf5-kconfigwidgets/Makefile =================================================================== --- head/x11-toolkits/kf5-kconfigwidgets/Makefile (revision 450055) +++ head/x11-toolkits/kf5-kconfigwidgets/Makefile (revision 450056) @@ -1,19 +1,18 @@ # Created by: tcberner # $FreeBSD$ PORTNAME= kconfigwidgets PORTVERSION= ${KDE_FRAMEWORKS_VERSION} -PORTREVISION= 1 CATEGORIES= x11-toolkits kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 widgets for configuration dialogs USES= cmake:outsource compiler:c++11-lib gettext kde:5 shebangfix tar:xz USE_KDE= archive auth codecs config coreaddons doctools ecm guiaddons \ i18n widgetsaddons USE_QT5= buildtools_build core dbus gui qmake_build widgets xml SHEBANG_FILES= src/preparetips5 .include Index: head/x11-toolkits/kf5-kconfigwidgets/distinfo =================================================================== --- head/x11-toolkits/kf5-kconfigwidgets/distinfo (revision 450055) +++ head/x11-toolkits/kf5-kconfigwidgets/distinfo (revision 450056) @@ -1,3 +1,3 @@ -TIMESTAMP = 1502086076 -SHA256 (KDE/frameworks/5.37.0/kconfigwidgets-5.37.0.tar.xz) = 46af20c09871dd720f8bc46d3bf7ed5eaae2b7cd25549ec3a1b71b8ca40d2d00 -SIZE (KDE/frameworks/5.37.0/kconfigwidgets-5.37.0.tar.xz) = 375492 +TIMESTAMP = 1504433766 +SHA256 (KDE/frameworks/5.38.0/kconfigwidgets-5.38.0.tar.xz) = 1d70a761eefe60e6f7beb3517ed64edbb6266cfe85bbb65603c9764e524b6170 +SIZE (KDE/frameworks/5.38.0/kconfigwidgets-5.38.0.tar.xz) = 375300 Index: head/x11-toolkits/kf5-kdesignerplugin/Makefile =================================================================== --- head/x11-toolkits/kf5-kdesignerplugin/Makefile (revision 450055) +++ head/x11-toolkits/kf5-kdesignerplugin/Makefile (revision 450056) @@ -1,20 +1,19 @@ # Created by: tcberner # $FreeBSD$ PORTNAME= kdesignerplugin PORTVERSION= ${KDE_FRAMEWORKS_VERSION} -PORTREVISION= 1 CATEGORIES= x11-toolkits kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 integration of Frameworks widgets in Qt Designer/Creator USES= cmake:outsource compiler:c++11-lib gettext kde:5 tar:xz USE_KDE= auth bookmarks codecs completion config configwidgets \ coreaddons doctools ecm i18n iconthemes itemviews \ jobwidgets kdewebkit kio plotting service solid sonnet \ textwidgets widgetsaddons xmlgui USE_QT5= buildtools_build core dbus designer gui linguisttools \ network qmake_build webkit widgets xml .include Index: head/x11-toolkits/kf5-kdesignerplugin/distinfo =================================================================== --- head/x11-toolkits/kf5-kdesignerplugin/distinfo (revision 450055) +++ head/x11-toolkits/kf5-kdesignerplugin/distinfo (revision 450056) @@ -1,3 +1,3 @@ -TIMESTAMP = 1502086076 -SHA256 (KDE/frameworks/5.37.0/kdesignerplugin-5.37.0.tar.xz) = bc691bf91e4ea15323be728bf47c3eb02905adc85a2967acd7b731bc06002785 -SIZE (KDE/frameworks/5.37.0/kdesignerplugin-5.37.0.tar.xz) = 90656 +TIMESTAMP = 1504433766 +SHA256 (KDE/frameworks/5.38.0/kdesignerplugin-5.38.0.tar.xz) = c6038ac44f05083e6d1e7e2d8b950b31d493f1bf587f4b89984fefae5f973b66 +SIZE (KDE/frameworks/5.38.0/kdesignerplugin-5.38.0.tar.xz) = 90704 Index: head/x11-toolkits/kf5-kguiaddons/Makefile =================================================================== --- head/x11-toolkits/kf5-kguiaddons/Makefile (revision 450055) +++ head/x11-toolkits/kf5-kguiaddons/Makefile (revision 450056) @@ -1,17 +1,16 @@ # Created by: tcberner # $FreeBSD$ PORTNAME= kguiaddons PORTVERSION= ${KDE_FRAMEWORKS_VERSION} -PORTREVISION= 1 CATEGORIES= x11-toolkits kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 addons to QtGui USES= cmake:outsource compiler:c++11-lib kde:5 pkgconfig tar:xz USE_KDE= ecm USE_QT5= buildtools_build core gui qmake_build testlib widgets x11extras USE_XORG= ice sm x11 xcb xext .include Index: head/x11-toolkits/kf5-kguiaddons/distinfo =================================================================== --- head/x11-toolkits/kf5-kguiaddons/distinfo (revision 450055) +++ head/x11-toolkits/kf5-kguiaddons/distinfo (revision 450056) @@ -1,3 +1,3 @@ -TIMESTAMP = 1502086077 -SHA256 (KDE/frameworks/5.37.0/kguiaddons-5.37.0.tar.xz) = c56ef3b231b088ba6903e8319fc936ad438e3c6411b9f14d2c234c8738b5e68d -SIZE (KDE/frameworks/5.37.0/kguiaddons-5.37.0.tar.xz) = 40148 +TIMESTAMP = 1504433766 +SHA256 (KDE/frameworks/5.38.0/kguiaddons-5.38.0.tar.xz) = 01a6350be86f86fb11625393fdc2cb1fe70b7289d06140afa7b0186339047aca +SIZE (KDE/frameworks/5.38.0/kguiaddons-5.38.0.tar.xz) = 40140 Index: head/x11-toolkits/kf5-kirigami2/Makefile =================================================================== --- head/x11-toolkits/kf5-kirigami2/Makefile (revision 450055) +++ head/x11-toolkits/kf5-kirigami2/Makefile (revision 450056) @@ -1,17 +1,16 @@ # Created by: tcberner # $FreeBSD$ PORTNAME= kirigami2 PORTVERSION= ${KDE_FRAMEWORKS_VERSION} -PORTREVISION= 1 CATEGORIES= x11-toolkits kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= QtQuick based components set USES= cmake:outsource compiler:c++11-lib gettext kde:5 tar:xz USE_KDE= ecm kdeclarative plasma-framework USE_QT5= buildtools_build core gui linguisttools network qmake_build \ qml quick quickcontrols2 svg testlib widgets .include Index: head/x11-toolkits/kf5-kirigami2/distinfo =================================================================== --- head/x11-toolkits/kf5-kirigami2/distinfo (revision 450055) +++ head/x11-toolkits/kf5-kirigami2/distinfo (revision 450056) @@ -1,3 +1,3 @@ -TIMESTAMP = 1502393931 -SHA256 (KDE/frameworks/5.37.0/kirigami2-5.37.0.tar.xz) = ad252c1ff20060f1de5afd41fade9b86e046bc9a7da38af6ca507f8ba2ce82fc -SIZE (KDE/frameworks/5.37.0/kirigami2-5.37.0.tar.xz) = 278452 +TIMESTAMP = 1504433767 +SHA256 (KDE/frameworks/5.38.0/kirigami2-5.38.0.tar.xz) = 6c84eca0fdb7cd852aae36c45f40195dd16e17608aec2ce8fbf555198b0c64a2 +SIZE (KDE/frameworks/5.38.0/kirigami2-5.38.0.tar.xz) = 278672 Index: head/x11-toolkits/kf5-kirigami2/pkg-plist =================================================================== --- head/x11-toolkits/kf5-kirigami2/pkg-plist (revision 450055) +++ head/x11-toolkits/kf5-kirigami2/pkg-plist (revision 450056) @@ -1,99 +1,100 @@ lib/cmake/KF5Kirigami2/KF5Kirigami2Config.cmake lib/cmake/KF5Kirigami2/KF5Kirigami2ConfigVersion.cmake lib/cmake/KF5Kirigami2/KF5Kirigami2Macros.cmake %%QT_MKSPECDIR%%/modules/qt_Kirigami2.pri %%QT_QMLDIR%%/org/kde/kirigami.2/AbstractApplicationHeader.qml %%QT_QMLDIR%%/org/kde/kirigami.2/AbstractApplicationItem.qml %%QT_QMLDIR%%/org/kde/kirigami.2/AbstractApplicationWindow.qml %%QT_QMLDIR%%/org/kde/kirigami.2/AbstractItemViewHeader.qml %%QT_QMLDIR%%/org/kde/kirigami.2/AbstractListItem.qml %%QT_QMLDIR%%/org/kde/kirigami.2/Action.qml %%QT_QMLDIR%%/org/kde/kirigami.2/ApplicationHeader.qml %%QT_QMLDIR%%/org/kde/kirigami.2/ApplicationItem.qml %%QT_QMLDIR%%/org/kde/kirigami.2/ApplicationWindow.qml %%QT_QMLDIR%%/org/kde/kirigami.2/BasicListItem.qml %%QT_QMLDIR%%/org/kde/kirigami.2/ContextDrawer.qml %%QT_QMLDIR%%/org/kde/kirigami.2/GlobalDrawer.qml %%QT_QMLDIR%%/org/kde/kirigami.2/Heading.qml %%QT_QMLDIR%%/org/kde/kirigami.2/Icon.qml %%QT_QMLDIR%%/org/kde/kirigami.2/ItemViewHeader.qml %%QT_QMLDIR%%/org/kde/kirigami.2/Label.qml %%QT_QMLDIR%%/org/kde/kirigami.2/OverlayDrawer.qml %%QT_QMLDIR%%/org/kde/kirigami.2/OverlaySheet.qml %%QT_QMLDIR%%/org/kde/kirigami.2/Page.qml %%QT_QMLDIR%%/org/kde/kirigami.2/PageRow.qml %%QT_QMLDIR%%/org/kde/kirigami.2/ScrollablePage.qml %%QT_QMLDIR%%/org/kde/kirigami.2/Separator.qml %%QT_QMLDIR%%/org/kde/kirigami.2/SwipeListItem.qml %%QT_QMLDIR%%/org/kde/kirigami.2/Theme.qml %%QT_QMLDIR%%/org/kde/kirigami.2/ToolBarApplicationHeader.qml %%QT_QMLDIR%%/org/kde/kirigami.2/Units.qml %%QT_QMLDIR%%/org/kde/kirigami.2/libkirigamiplugin.so %%QT_QMLDIR%%/org/kde/kirigami.2/plugins.qmltypes %%QT_QMLDIR%%/org/kde/kirigami.2/private/ActionButton.qml %%QT_QMLDIR%%/org/kde/kirigami.2/private/CornerShadow.qml %%QT_QMLDIR%%/org/kde/kirigami.2/private/DefaultListItemBackground.qml %%QT_QMLDIR%%/org/kde/kirigami.2/private/EdgeShadow.qml %%QT_QMLDIR%%/org/kde/kirigami.2/private/PageActionPropertyGroup.qml %%QT_QMLDIR%%/org/kde/kirigami.2/private/PrivateActionToolButton.qml %%QT_QMLDIR%%/org/kde/kirigami.2/private/RefreshableScrollView.qml %%QT_QMLDIR%%/org/kde/kirigami.2/private/SwipeItemEventFilter.qml %%QT_QMLDIR%%/org/kde/kirigami.2/qmldir %%QT_QMLDIR%%/org/kde/kirigami.2/styles/Material/AbstractListItem.qml %%QT_QMLDIR%%/org/kde/kirigami.2/styles/Material/Label.qml %%QT_QMLDIR%%/org/kde/kirigami.2/styles/Material/SwipeListItem.qml %%QT_QMLDIR%%/org/kde/kirigami.2/styles/Material/Theme.qml %%QT_QMLDIR%%/org/kde/kirigami.2/styles/Plasma/Icon.qml %%QT_QMLDIR%%/org/kde/kirigami.2/styles/Plasma/Theme.qml %%QT_QMLDIR%%/org/kde/kirigami.2/styles/Plasma/Units.qml %%QT_QMLDIR%%/org/kde/kirigami.2/styles/org.kde.desktop.plasma/Units.qml %%QT_QMLDIR%%/org/kde/kirigami.2/styles/org.kde.desktop/AbstractApplicationHeader.qml %%QT_QMLDIR%%/org/kde/kirigami.2/styles/org.kde.desktop/AbstractListItem.qml %%QT_QMLDIR%%/org/kde/kirigami.2/styles/org.kde.desktop/ApplicationWindow.qml %%QT_QMLDIR%%/org/kde/kirigami.2/styles/org.kde.desktop/OverlayDrawer.qml %%QT_QMLDIR%%/org/kde/kirigami.2/styles/org.kde.desktop/SwipeListItem.qml %%QT_QMLDIR%%/org/kde/kirigami.2/styles/org.kde.desktop/Theme.qml %%QT_QMLDIR%%/org/kde/kirigami.2/styles/org.kde.desktop/Units.qml %%QT_QMLDIR%%/org/kde/kirigami.2/templates/AbstractApplicationHeader.qml %%QT_QMLDIR%%/org/kde/kirigami.2/templates/AbstractListItem.qml %%QT_QMLDIR%%/org/kde/kirigami.2/templates/ApplicationHeader.qml %%QT_QMLDIR%%/org/kde/kirigami.2/templates/OverlayDrawer.qml %%QT_QMLDIR%%/org/kde/kirigami.2/templates/OverlaySheet.qml %%QT_QMLDIR%%/org/kde/kirigami.2/templates/SwipeListItem.qml %%QT_QMLDIR%%/org/kde/kirigami.2/templates/private/BackButton.qml %%QT_QMLDIR%%/org/kde/kirigami.2/templates/private/ContextIcon.qml %%QT_QMLDIR%%/org/kde/kirigami.2/templates/private/MenuIcon.qml %%QT_QMLDIR%%/org/kde/kirigami.2/templates/private/PassiveNotification.qml %%QT_QMLDIR%%/org/kde/kirigami.2/templates/private/ScrollView.qml share/locale/ar/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/ast/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/ca/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/ca@valencia/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/cs/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/de/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/el/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/en_GB/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/es/LC_MESSAGES/libkirigami2plugin_qt.qm +share/locale/eu/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/fi/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/fr/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/gl/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/hu/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/ja/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/ko/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/nl/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/nn/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/pl/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/pt/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/pt_BR/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/ru/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/sk/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/sl/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/sr/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/sr@ijekavian/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/sr@ijekavianlatin/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/sr@latin/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/sv/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/tr/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/uk/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/zh_CN/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/zh_TW/LC_MESSAGES/libkirigami2plugin_qt.qm Index: head/x11-toolkits/kf5-kitemviews/Makefile =================================================================== --- head/x11-toolkits/kf5-kitemviews/Makefile (revision 450055) +++ head/x11-toolkits/kf5-kitemviews/Makefile (revision 450056) @@ -1,17 +1,16 @@ # Created by: tcberner # $FreeBSD$ PORTNAME= kitemviews PORTVERSION= ${KDE_FRAMEWORKS_VERSION} -PORTREVISION= 1 CATEGORIES= x11-toolkits kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 widget addons for Qt Model/View USES= cmake:outsource compiler:c++11-lib kde:5 tar:xz USE_KDE= ecm USE_QT5= buildtools_build core gui linguisttools qmake_build \ testlib widgets .include Index: head/x11-toolkits/kf5-kitemviews/distinfo =================================================================== --- head/x11-toolkits/kf5-kitemviews/distinfo (revision 450055) +++ head/x11-toolkits/kf5-kitemviews/distinfo (revision 450056) @@ -1,3 +1,3 @@ -TIMESTAMP = 1502086077 -SHA256 (KDE/frameworks/5.37.0/kitemviews-5.37.0.tar.xz) = 55737ee6cf018c86e2674d417a0c234b060bb58b8eac477e862ec6e8a9dd279f -SIZE (KDE/frameworks/5.37.0/kitemviews-5.37.0.tar.xz) = 74868 +TIMESTAMP = 1504433767 +SHA256 (KDE/frameworks/5.38.0/kitemviews-5.38.0.tar.xz) = 46df0b2a0fe436cac2e1984d9038ac894ac86d9650db5328fa7069a13f46b151 +SIZE (KDE/frameworks/5.38.0/kitemviews-5.38.0.tar.xz) = 74872 Index: head/x11-toolkits/kf5-kjobwidgets/Makefile =================================================================== --- head/x11-toolkits/kf5-kjobwidgets/Makefile (revision 450055) +++ head/x11-toolkits/kf5-kjobwidgets/Makefile (revision 450056) @@ -1,17 +1,16 @@ # Created by: tcberner # $FreeBSD$ PORTNAME= kjobwidgets PORTVERSION= ${KDE_FRAMEWORKS_VERSION} -PORTREVISION= 1 CATEGORIES= x11-toolkits kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 widgets for tracking KJob instance USES= cmake:outsource compiler:c++11-lib kde:5 tar:xz USE_KDE= coreaddons ecm widgetsaddons USE_QT5= buildtools_build core dbus gui linguisttools \ qmake_build widgets x11extras .include Index: head/x11-toolkits/kf5-kjobwidgets/distinfo =================================================================== --- head/x11-toolkits/kf5-kjobwidgets/distinfo (revision 450055) +++ head/x11-toolkits/kf5-kjobwidgets/distinfo (revision 450056) @@ -1,3 +1,3 @@ -TIMESTAMP = 1502086077 -SHA256 (KDE/frameworks/5.37.0/kjobwidgets-5.37.0.tar.xz) = 8b645c1dded5ec2c6628a6b8638804abe49eab02f7da324eb8a75d7d616fc284 -SIZE (KDE/frameworks/5.37.0/kjobwidgets-5.37.0.tar.xz) = 89892 +TIMESTAMP = 1504433767 +SHA256 (KDE/frameworks/5.38.0/kjobwidgets-5.38.0.tar.xz) = a5340df37ba44f6b5b82f8c6732aaaa42ffc6d9a829c15b345e824360eb3e66e +SIZE (KDE/frameworks/5.38.0/kjobwidgets-5.38.0.tar.xz) = 89988 Index: head/x11-toolkits/kf5-ktextwidgets/Makefile =================================================================== --- head/x11-toolkits/kf5-ktextwidgets/Makefile (revision 450055) +++ head/x11-toolkits/kf5-ktextwidgets/Makefile (revision 450056) @@ -1,19 +1,18 @@ # Created by: tcberner # $FreeBSD$ PORTNAME= ktextwidgets PORTVERSION= ${KDE_FRAMEWORKS_VERSION} -PORTREVISION= 1 CATEGORIES= x11-toolkits kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 advanced text editing widgets USES= cmake:outsource compiler:c++11-lib gettext kde:5 tar:xz USE_KDE= auth codecs completion config configwidgets \ coreaddons dbusaddons ecm guiaddons i18n \ iconthemes itemviews service sonnet \ widgetsaddons windowsystem USE_QT5= buildtools_build core dbus gui qmake_build widgets xml .include Index: head/x11-toolkits/kf5-ktextwidgets/distinfo =================================================================== --- head/x11-toolkits/kf5-ktextwidgets/distinfo (revision 450055) +++ head/x11-toolkits/kf5-ktextwidgets/distinfo (revision 450056) @@ -1,3 +1,3 @@ -TIMESTAMP = 1502086077 -SHA256 (KDE/frameworks/5.37.0/ktextwidgets-5.37.0.tar.xz) = 257f4feac67db2501fe81909ffe04ddfd29db0191d9aa09ba957d9a5cbd116dd -SIZE (KDE/frameworks/5.37.0/ktextwidgets-5.37.0.tar.xz) = 308452 +TIMESTAMP = 1504433767 +SHA256 (KDE/frameworks/5.38.0/ktextwidgets-5.38.0.tar.xz) = eef0847aa98489437784361a281a16cbd52b3ac8a1a83619c370078e96ea1288 +SIZE (KDE/frameworks/5.38.0/ktextwidgets-5.38.0.tar.xz) = 308460 Index: head/x11-toolkits/kf5-kwidgetsaddons/Makefile =================================================================== --- head/x11-toolkits/kf5-kwidgetsaddons/Makefile (revision 450055) +++ head/x11-toolkits/kf5-kwidgetsaddons/Makefile (revision 450056) @@ -1,17 +1,16 @@ # Created by: tcberner # $FreeBSD$ PORTNAME= kwidgetsaddons PORTVERSION= ${KDE_FRAMEWORKS_VERSION} -PORTREVISION= 1 CATEGORIES= x11-toolkits kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 addons to QtWidgets USES= cmake:outsource compiler:c++11-lib kde:5 pkgconfig tar:xz USE_KDE= ecm USE_QT5= buildtools_build core gui linguisttools \ qmake_build uiplugin uitools testlib widgets .include Index: head/x11-toolkits/kf5-kwidgetsaddons/distinfo =================================================================== --- head/x11-toolkits/kf5-kwidgetsaddons/distinfo (revision 450055) +++ head/x11-toolkits/kf5-kwidgetsaddons/distinfo (revision 450056) @@ -1,3 +1,3 @@ -TIMESTAMP = 1502086078 -SHA256 (KDE/frameworks/5.37.0/kwidgetsaddons-5.37.0.tar.xz) = a4c54b371a6fc748108f3e2ce2f40d422e8ef03210b243a3d091c090cf19b3ca -SIZE (KDE/frameworks/5.37.0/kwidgetsaddons-5.37.0.tar.xz) = 2175360 +TIMESTAMP = 1504433768 +SHA256 (KDE/frameworks/5.38.0/kwidgetsaddons-5.38.0.tar.xz) = 45ee4f81cd91e61e82306f757a06849644fde73e09650e0498797cdc3a4604fa +SIZE (KDE/frameworks/5.38.0/kwidgetsaddons-5.38.0.tar.xz) = 2175700 Index: head/x11-toolkits/kf5-kxmlgui/Makefile =================================================================== --- head/x11-toolkits/kf5-kxmlgui/Makefile (revision 450055) +++ head/x11-toolkits/kf5-kxmlgui/Makefile (revision 450056) @@ -1,19 +1,18 @@ # Created by: tcberner # $FreeBSD$ PORTNAME= kxmlgui PORTVERSION= ${KDE_FRAMEWORKS_VERSION} -PORTREVISION= 1 CATEGORIES= x11-toolkits kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 user configurable main windows USES= cmake:outsource compiler:c++11-lib gettext kde:5 tar:xz USE_KDE= attica5 auth codecs config configwidgets coreaddons ecm \ globalaccel i18n iconthemes itemviews sonnet textwidgets \ widgetsaddons windowsystem USE_QT5= buildtools_build core dbus gui network printsupport \ qmake_build widgets xml .include Index: head/x11-toolkits/kf5-kxmlgui/distinfo =================================================================== --- head/x11-toolkits/kf5-kxmlgui/distinfo (revision 450055) +++ head/x11-toolkits/kf5-kxmlgui/distinfo (revision 450056) @@ -1,3 +1,3 @@ -TIMESTAMP = 1502086078 -SHA256 (KDE/frameworks/5.37.0/kxmlgui-5.37.0.tar.xz) = e235367a31a38c1c114032123b13e7954a93a8e1423eb1829176a6373b953b4b -SIZE (KDE/frameworks/5.37.0/kxmlgui-5.37.0.tar.xz) = 883920 +TIMESTAMP = 1504433768 +SHA256 (KDE/frameworks/5.38.0/kxmlgui-5.38.0.tar.xz) = 64f73ada0b1e08c97db00cfe2967b0d8354b338cd85e76644f79da022af49589 +SIZE (KDE/frameworks/5.38.0/kxmlgui-5.38.0.tar.xz) = 884112