diff --git a/Mk/Uses/kde.mk b/Mk/Uses/kde.mk index e77f0fc06849..d1b5932a5dba 100644 --- a/Mk/Uses/kde.mk +++ b/Mk/Uses/kde.mk @@ -1,1069 +1,1070 @@ # Provides support for KDE and KF5-based ports. # # Feature: kde # Valid ARGS: 5 6 # # 5: Depend on KDE Frameworks 5 components and variables. # 6: Depend on KDE Frameworks 6 components and variables. # # Variables that can be set by a port: # # USE_KDE List of KF[56]/Plasma[56] components (other ports) that this # port depends on. # * foo:build Add a build-time dependency (BUILD_DEPENDS) # * foo:run Add a run-time dependency (RUN_DEPENDS) # * foo (default) Add both dependencies on component , or # a LIB_DEPENDS if applicable. # # To simplify the ports, also: # CATEGORIES If the port is part of one of the KDE Software distribution, # it can add, in addition to 'kde' one of the following: # kde-applications: part of applications release # kde-frameworks: part of frameworks release # kde-plasma: part of plasma release # this will then set default values for MASTER_SITES and DIST_SUBDIR # as well as CPE_VENDOR and LICENSE. # # option DOCS If the port is part of kde-applications (see CATEGORIES, # above) and has an option defined for DOCS then a dependency # for doctools:build is added. The option itself doesn't # have to do anything -- the dependency is always there. # # KDE_INVENT If the port does not have a regular release, and should # be fetched from KDE Invent (a GitLab instance) it can set # KDE_INVENT to 3 space-separated values: # * a full 40-character commit hash # * a category name inside KDE Invent # * a repository name inside KDE Invent # Default values for category and name are: # * the first item in CATEGORIES that is not "kde"; this # is useful when the FreeBSD ports category and the KDE # category are the same (which happens sometimes) # * PORTNAME, often the FreeBSD port name is the same # as the upstream name and it will not need to be specified. # Sometimes `KDE_INVENT=` will do and often # `KDE_INVENT= ` is enough. # # Setting KDE_INVENT is the equivalent of a handful of USE_GITLAB # and related settings. # # MAINTAINER: kde@FreeBSD.org .if !defined(_INCLUDE_USES_KDE_MK) _INCLUDE_USES_KDE_MK= yes _KDE_SUPPORTED= 5 6 . if empty(kde_ARGS) IGNORE= kde needs a version (${_KDE_SUPPORTED}) . endif . for ver in ${_KDE_SUPPORTED:O:u} . if ${kde_ARGS:M${ver}} . if !defined(_KDE_VERSION) _KDE_VERSION= ${ver} . else IGNORE?= cannot be installed: different KDE versions specified via kde:[${_KDE_SUPPORTED:S/ //g}] #' . endif . endif . endfor . if empty(_KDE_VERSION) IGNORE?= kde:[${_KDE_SUPPORTED:S/ //g}] needs an argument #' . else _KDE_RELNAME= KDE${_KDE_VERSION} # === VERSIONS OF THE DIFFERENT COMPONENTS ===================================== KDE_PLASMA_VERSION?= ${KDE_PLASMA${_KDE_VERSION}_VERSION} KDE_PLASMA_BRANCH?= ${KDE_PLASMA${_KDE_VERSION}_BRANCH} KDE_FRAMEWORKS_VERSION?= ${KDE_FRAMEWORKS${_KDE_VERSION}_VERSION} KDE_FRAMEWORKS_BRANCH?= ${KDE_FRAMEWORKS${_KDE_VERSION}_BRANCH} . if ${CATEGORIES:Mkde-devel} KDE_APPLICATIONS_BRANCH?= ${KDE_APPLICATIONS6_BRANCH} KDE_APPLICATIONS_VERSION?= ${KDE_APPLICATIONS6_VERSION} KDE_APPLICATIONS_SHLIB_VER?= ${KDE_APPLICATIONS6_SHLIB_VER} KDE_APPLICATIONS_SHLIB_G_VER?= ${KDE_APPLICATIONS6_SHLIB_G_VER} PKGNAMESUFFIX?= -devel . else KDE_APPLICATIONS_BRANCH?= ${KDE_APPLICATIONS5_BRANCH} KDE_APPLICATIONS_VERSION?= ${KDE_APPLICATIONS5_VERSION} KDE_APPLICATIONS_SHLIB_VER?= ${KDE_APPLICATIONS5_SHLIB_VER} KDE_APPLICATIONS_SHLIB_G_VER?= ${KDE_APPLICATIONS5_SHLIB_G_VER} . endif # Current KDE desktop. KDE_PLASMA5_VERSION?= 5.27.10 KDE_PLASMA5_BRANCH?= stable # Next KDE Plasma desktop KDE_PLASMA6_VERSION?= 5.92.0 KDE_PLASMA6_BRANCH?= unstable # Current KDE frameworks. KDE_FRAMEWORKS5_VERSION?= 5.114.0 KDE_FRAMEWORKS5_BRANCH?= stable # Next KDE Frameworks (Qt6 based) KDE_FRAMEWORKS6_VERSION?= 5.248.0 KDE_FRAMEWORKS6_BRANCH?= unstable # Current KDE applications. KDE_APPLICATIONS5_VERSION?= 23.08.4 KDE_APPLICATIONS5_SHLIB_VER?= 5.24.4 # G as in KDE Gear, and as in "don't make the variable name longer than required" KDE_APPLICATIONS5_SHLIB_G_VER?= 23.8.4 KDE_APPLICATIONS5_BRANCH?= stable # Next KDE applications. KDE_APPLICATIONS6_VERSION?= 24.01.90 KDE_APPLICATIONS6_SHLIB_VER?= 5.24.3 # G as in KDE Gear, and as in "don't make the variable name longer than required" KDE_APPLICATIONS6_SHLIB_G_VER?= 24.01.90 KDE_APPLICATIONS6_BRANCH?= unstable # Extended KDE universe applications. CALLIGRA_VERSION?= 2.9.11 CALLIGRA_BRANCH?= stable # ============================================================================== # === INSTALLATION PREFIXES AND HEADER LOCATION ================================ # Define unversioned prefix variable. KDE_PREFIX= ${LOCALBASE} # ============================================================================== # === CATEGORIES HANDLING -- SETTING DEFAULT VALUES ============================ # Doing MASTER_SITES magic based on the category of the port _KDE_CATEGORIES_SUPPORTED= kde-applications kde-frameworks kde-plasma kde-devel . for cat in ${_KDE_CATEGORIES_SUPPORTED:Nkde-devel} . if ${CATEGORIES:M${cat}} . if !defined(_KDE_CATEGORY) _KDE_CATEGORY= ${cat} . else IGNORE?= cannot be installed: multiple kde-<...> categories specified via CATEGORIES=${CATEGORIES} #' . endif . endif . endfor # Doing source-selection if the sources are on KDE invent . if defined(KDE_INVENT) _invent_hash= ${KDE_INVENT:[1]} _invent_category= ${KDE_INVENT:[2]} _invent_name= ${KDE_INVENT:[3]} # Fill in default values if bits are missing . if empty(_invent_category) _invent_category= ${CATEGORIES:Nkde:[1]} . endif . if empty(_invent_name) _invent_name= ${PORTNAME} . endif # If valid, use it for GitLab . if empty(_invent_hash) || empty(_invent_category) || empty(_invent_name) IGNORE?= invalid KDE_INVENT value '${KDE_INVENT}' . else USE_GITLAB= yes GL_SITE= https://invent.kde.org GL_ACCOUNT= ${_invent_category} GL_PROJECT= ${_invent_name} GL_TAGNAME= ${_invent_hash} . endif . endif . if defined(_KDE_CATEGORY) # KDE is normally licensed under the LGPL 2.0. LICENSE?= LGPL20 # Set CPE Vendor Information # As _KDE_CATEGORY is set we can assume it is port release by KDE and the # vendor is therefore kde. CPE_VENDOR?= kde . if ${_KDE_CATEGORY:Mkde-applications} PORTVERSION?= ${KDE_APPLICATIONS_VERSION} MASTER_SITES?= KDE/${KDE_APPLICATIONS_BRANCH}/release-service/${KDE_APPLICATIONS_VERSION}/src # Let bsd.port.mk create the plist-entries for the documentation. # KDE Applications ports install their documentation to # ${PREFIX}/share/doc. This is only done if the port # defines OPTION DOCS -- the _KDE_OPTIONS here is to # avoid make errors when there are no options defined at all. _KDE_OPTIONS= bogus ${OPTIONS_DEFINE} . if ${_KDE_OPTIONS:MDOCS} DOCSDIR= ${PREFIX}/share/doc PORTDOCS?= HTML/* USE_KDE+= doctools:build . endif KDE_MAN_PREFIX?= ${KDE_PREFIX}/share/man # Further pass along a SHLIB_VER PLIST_SUB PLIST_SUB+= KDE_APPLICATIONS_SHLIB_VER=${KDE_APPLICATIONS_SHLIB_VER} \ KDE_APPLICATIONS_VERSION_SHORT="${KDE_APPLICATIONS_VERSION:R:R}" DIST_SUBDIR?= KDE/release-service/${KDE_APPLICATIONS_VERSION} . elif ${_KDE_CATEGORY:Mkde-plasma} PORTVERSION?= ${KDE_PLASMA_VERSION} PKGNAMEPREFIX?= plasma${_KDE_VERSION}- MASTER_SITES?= KDE/${KDE_PLASMA_BRANCH}/plasma/${KDE_PLASMA_VERSION} KDE_MAN_PREFIX?= ${KDE_PREFIX}/share/man DIST_SUBDIR?= KDE/plasma/${KDE_PLASMA_VERSION} . if ${_KDE_VERSION:M6} DESCR= ${.CURDIR:H:H}/x11/plasma6-plasma/pkg-descr . endif . elif ${_KDE_CATEGORY:Mkde-frameworks} PORTVERSION?= ${KDE_FRAMEWORKS_VERSION} PKGNAMEPREFIX?= kf${_KDE_VERSION}- WWW?= https://api.kde.org/frameworks/${PORTNAME}/html/index.html # This is a slight duplication of _USE_FRAMEWORKS_PORTING -- it maybe would be # better to rely on ${_USE_FRAMEWORKS_PORTING:S/^/k/g} _PORTINGAIDS= kjs kjsembed kdelibs4support kdesignerplugin khtml kmediaplayer kross kxmlrpcclient . if ${_KDE_VERSION:M5} . if ${_PORTINGAIDS:M*${PORTNAME}*} MASTER_SITES?= KDE/${KDE_FRAMEWORKS_BRANCH}/frameworks/${KDE_FRAMEWORKS_VERSION:R}/portingAids . else MASTER_SITES?= KDE/${KDE_FRAMEWORKS_BRANCH}/frameworks/${KDE_FRAMEWORKS_VERSION:R} . endif . else MASTER_SITES?= KDE/${KDE_FRAMEWORKS_BRANCH}/frameworks/${KDE_FRAMEWORKS_VERSION} . endif DIST_SUBDIR?= KDE/frameworks/${KDE_FRAMEWORKS_VERSION} . if ${_KDE_VERSION:M6} DESCR= ${.CURDIR:H:H}/x11/kf6-frameworks/pkg-descr . endif +KDE_MAN_PREFIX?= ${KDE_PREFIX}/share/man . else IGNORE?= unknown CATEGORY value '${_KDE_CATEGORY}' #' . endif . endif #defined(_KDE_CATEGORY) # ============================================================================== # === SET UP LOCALE ENVIRONMENT ================================================= USE_LOCALE?= en_US.UTF-8 # === SET UP CMAKE ENVIRONMENT ================================================= # Help cmake to find files when testing ports with non-default PREFIX. CMAKE_ARGS+= -DCMAKE_PREFIX_PATH="${LOCALBASE}" # We set KDE_INSTALL_USE_QT_SYS_PATHS to install mkspecs files, plugins and # imports to the Qt 5 install directory. CMAKE_ARGS+= -DCMAKE_MODULE_PATH="${LOCALBASE};${KDE_PREFIX}" \ -DCMAKE_INSTALL_PREFIX="${KDE_PREFIX}" \ -DKDE_INSTALL_USE_QT_SYS_PATHS:BOOL=true # Set man-page installation prefix. # TODO: Remove the KDE_MAN_PREFIX knob once all kde ports are switched to use share/man KDE_MAN_PREFIX?= ${KDE_PREFIX}/man CMAKE_ARGS+= -DKDE_INSTALL_MANDIR:PATH="${KDE_MAN_PREFIX}" \ -DMAN_INSTALL_DIR:PATH="${KDE_MAN_PREFIX}" # Disable autotests unless TEST_TARGET is defined. . if !defined(TEST_TARGET) CMAKE_ARGS+= -DBUILD_TESTING:BOOL=false . endif # ============================================================================== # === SET UP PLIST_SUB ========================================================= # Prefix and include directory. PLIST_SUB+= KDE_PREFIX="${KDE_PREFIX}" # KDE Applications version. PLIST_SUB+= KDE_APPLICATIONS_VERSION="${KDE_APPLICATIONS_VERSION}" \ KDE_FRAMEWORKS_VERSION="${KDE_FRAMEWORKS_VERSION}" \ KDE_PLASMA_VERSION="${KDE_PLASMA_VERSION}" # ============================================================================== _USE_KDE_BOTH= akonadi attica libkcddb libkcompactdisc libkdcraw libkdegames \ libkeduvocdocument libkexiv2 libkipi libksane okular \ baloo baloo-widgets kate marble # List of components of the KDE Frameworks distribution. # The *_TIER variables are internal, primarily for checking # that our list of frameworks matches the structure offered upstream. _USE_FRAMEWORKS_TIER1= apidox archive attica5 breeze-icons codecs config \ coreaddons dbusaddons dnssd holidays i18n idletime itemmodels \ itemviews kirigami2 kquickcharts oxygen-icons5 plotting prison \ qqc2-desktop-style solid sonnet syntaxhighlighting \ threadweaver wayland widgetsaddons windowsystem # NOT LISTED TIER1: modemmanagerqt networkmanagerqt (not applicable) _USE_FRAMEWORKS_TIER2= auth completion crash doctools \ filemetadata kimageformats jobwidgets notifications \ package pty syndication unitconversion _USE_FRAMEWORKS_TIER3= activities activities-stats baloo5 bookmarks configwidgets \ designerplugin emoticons globalaccel guiaddons \ iconthemes init kcmutils kdav kdeclarative \ kded kdesu kio kpipewire newstuff notifyconfig parts \ people plasma-framework purpose runner service texteditor \ textwidgets wallet xmlgui xmlrpcclient _USE_FRAMEWORKS_TIER4= frameworkintegration calendarcore contacts # Porting Aids frameworks provide code and utilities to ease the transition from # kdelibs 4 to KDE Frameworks 5. Code should aim to port away from this framework, # new projects should avoid using these libraries. _USE_FRAMEWORKS_PORTING=js jsembed kdelibs4support khtml mediaplayer kross _USE_FRAMEWORKS5_ALL= ecm \ ${_USE_FRAMEWORKS_TIER1} \ ${_USE_FRAMEWORKS_TIER2} \ ${_USE_FRAMEWORKS_TIER3} \ ${_USE_FRAMEWORKS_TIER4} \ ${_USE_FRAMEWORKS_PORTING} \ ${_USE_FRAMEWORKS_EXTRA} \ kpublictransport kosm \ plasma-wayland-protocols # TODO: fix _USE_FRAMEWORKS6_ALL= ecm colorscheme \ svg \ statusnotifieritem \ plasma-wayland-protocols \ userfeedback \ ${_USE_FRAMEWORKS_TIER1:Noxygen-icons5:Nwayland} \ ${_USE_FRAMEWORKS_TIER2} \ ${_USE_FRAMEWORKS_TIER3:Nemoticons:Ndesignerplugin:Nactivities:Nactivities-stats:Ninit:Nplasma-framework:Nxmlrpcclient:Nkpipewire} \ ${_USE_FRAMEWORKS_TIER4} \ ${_USE_FRAMEWORKS_EXTRA} _USE_FRAMEWORKS_ALL= ${_USE_FRAMEWORKS${_KDE_VERSION}_ALL} # List of components of the KDE Plasma distribution. _USE_PLASMA_ALL= activitymanagerd breeze breeze-gtk \ decoration discover drkonqi hotkeys \ infocenter kde-cli-tools kde-gtk-config \ kdeplasma-addons kgamma5 kmenuedit kscreen \ kscreenlocker ksshaskpass ksysguard ksystemstats kwallet-pam \ kwayland-integration kwin kwrited layer-shell-qt libkscreen \ libksysguard milou oxygen oxygen-sounds plasma-browser-integration \ plasma-desktop plasma-disks plasma-integration plasma-pa \ plasma-sdk plasma-workspace plasma-workspace-wallpapers \ polkit-kde-agent-1 powerdevil systemsettings xdg-desktop-portal-kde \ kirigami-addons # List of components of the KDE PIM distribution (part of applications). _USE_KDEPIM5_ALL= akonadicontacts akonadiimportwizard akonadimime akonadinotes \ akonadicalendar akonadisearch \ calendarcore calendarsupport calendarutils \ contacts eventviews gapi grantleetheme \ gravatar identitymanagement imap \ incidenceeditor kdepim-addons \ kdepim-runtime5 kitinerary kontactinterface kpkpass \ ksmtp ldap libkdepim libkleo libksieve mailcommon \ mailimporter mailtransport mbox messagelib \ mime pimcommon pimtextedit tnef \ kalarm kontact kmail mbox-importer \ akonadiconsole akregator grantlee-editor kaddressbook \ kalarm kmail-account-wizard kmail knotes kontact \ korganizer pim-data-exporter ktextaddons _USE_PHONON_ALL= phonon phonon-backend _USE_KDE5_ALL= ${_USE_FRAMEWORKS_ALL} \ ${_USE_PLASMA_ALL} \ ${_USE_KDEPIM5_ALL} \ ${_USE_KDE_BOTH} \ ${_USE_PHONON_ALL} # TODO: fix _USE_KDE6_ALL= ecm colorscheme \ svg \ plasma-wayland-protocols \ mediaplayer \ ${_USE_FRAMEWORKS_ALL} \ ${_USE_PLASMA_ALL} \ plasma5support activities activities-stats kpipewire wayland globalacceld libplasma \ ${_USE_PHONON_ALL} # ====================== frameworks components ================================= kde-activities_PORT5= x11/kf${_KDE_VERSION}-kactivities kde-activities_PORT6= x11/plasma${_KDE_VERSION}-plasma-activities kde-activities_PORT= ${kde-activities_PORT${_KDE_VERSION}} kde-activities_LIB5= libKF${_KDE_VERSION}Activities.so kde-activities_LIB6= libPlasmaActivities.so kde-activities_LIB= ${kde-activities_LIB${_KDE_VERSION}} kde-activities-stats_PORT5= x11/kf${_KDE_VERSION}-kactivities-stats kde-activities-stats_PORT6= x11/plasma${_KDE_VERSION}-plasma-activities-stats kde-activities-stats_PORT= ${kde-activities-stats_PORT${_KDE_VERSION}} kde-activities-stats_LIB5= libKF${_KDE_VERSION}ActivitiesStats.so kde-activities-stats_LIB6= libPlasmaActivitiesStats.so kde-activities-stats_LIB= ${kde-activities-stats_LIB${_KDE_VERSION}} kde-apidox_PORT= devel/kf${_KDE_VERSION}-kapidox kde-apidox_PATH= ${KDE_PREFIX}/bin/kapidox-generate kde-apidox_TYPE= run kde-archive_PORT= archivers/kf${_KDE_VERSION}-karchive kde-archive_LIB= libKF${_KDE_VERSION}Archive.so kde-attica5_PORT= x11-toolkits/kf${_KDE_VERSION}-attica kde-attica5_LIB= libKF${_KDE_VERSION}Attica.so kde-auth_PORT= devel/kf${_KDE_VERSION}-kauth kde-auth_LIB= libKF${_KDE_VERSION}AuthCore.so kde-baloo5_PORT= sysutils/kf${_KDE_VERSION}-baloo kde-baloo5_LIB= libKF${_KDE_VERSION}Baloo.so kde-bookmarks_PORT= devel/kf${_KDE_VERSION}-kbookmarks kde-bookmarks_LIB= libKF${_KDE_VERSION}Bookmarks.so kde-breeze-icons_PORT= x11-themes/kf${_KDE_VERSION}-breeze-icons kde-breeze-icons_PATH= ${KDE_PREFIX}/share/icons/breeze/index.theme kde-breeze-icons_TYPE= run kde-codecs_PORT= textproc/kf${_KDE_VERSION}-kcodecs kde-codecs_LIB= libKF${_KDE_VERSION}Codecs.so kde-completion_PORT= x11-toolkits/kf${_KDE_VERSION}-kcompletion kde-completion_LIB= libKF${_KDE_VERSION}Completion.so kde-config_PORT= devel/kf${_KDE_VERSION}-kconfig kde-config_LIB= libKF${_KDE_VERSION}ConfigCore.so kde-configwidgets_PORT= x11-toolkits/kf${_KDE_VERSION}-kconfigwidgets kde-configwidgets_LIB= libKF${_KDE_VERSION}ConfigWidgets.so kde-coreaddons_PORT= devel/kf${_KDE_VERSION}-kcoreaddons kde-coreaddons_LIB= libKF${_KDE_VERSION}CoreAddons.so kde-crash_PORT= devel/kf${_KDE_VERSION}-kcrash kde-crash_LIB= libKF${_KDE_VERSION}Crash.so kde-dbusaddons_PORT= devel/kf${_KDE_VERSION}-kdbusaddons kde-dbusaddons_LIB= libKF${_KDE_VERSION}DBusAddons.so kde-designerplugin_PORT= x11-toolkits/kf${_KDE_VERSION}-kdesignerplugin kde-designerplugin_PATH= ${KDE_PREFIX}/bin/kgendesignerplugin kde-designerplugin_TYPE= run kde-dnssd_PORT= dns/kf${_KDE_VERSION}-kdnssd kde-dnssd_LIB= libKF${_KDE_VERSION}DNSSD.so kde-doctools_PORT= devel/kf${_KDE_VERSION}-kdoctools kde-doctools_PATH= ${KDE_PREFIX}/bin/meinproc${_KDE_VERSION} kde-ecm_PORT= devel/kf${_KDE_VERSION}-extra-cmake-modules kde-ecm_PATH= ${LOCALBASE}/share/ECM/cmake/ECMConfig.cmake kde-emoticons_PORT= x11-themes/kf${_KDE_VERSION}-kemoticons kde-emoticons_LIB= libKF${_KDE_VERSION}Emoticons.so kde-filemetadata_PORT= devel/kf${_KDE_VERSION}-kfilemetadata kde-filemetadata_LIB= libKF${_KDE_VERSION}FileMetaData.so kde-frameworkintegration_PORT= x11/kf${_KDE_VERSION}-frameworkintegration kde-frameworkintegration_LIB= libKF${_KDE_VERSION}Style.so kde-globalaccel_PORT= x11/kf${_KDE_VERSION}-kglobalaccel kde-globalaccel_LIB= libKF${_KDE_VERSION}GlobalAccel.so kde-guiaddons_PORT= x11-toolkits/kf${_KDE_VERSION}-kguiaddons kde-guiaddons_LIB= libKF${_KDE_VERSION}GuiAddons.so kde-holidays_PORT= net/kf${_KDE_VERSION}-kholidays kde-holidays_LIB= libKF${_KDE_VERSION}Holidays.so kde-i18n_PORT= devel/kf${_KDE_VERSION}-ki18n kde-i18n_LIB= libKF${_KDE_VERSION}I18n.so kde-iconthemes_PORT= x11-themes/kf${_KDE_VERSION}-kiconthemes kde-iconthemes_LIB= libKF${_KDE_VERSION}IconThemes.so kde-idletime_PORT= devel/kf${_KDE_VERSION}-kidletime kde-idletime_LIB= libKF${_KDE_VERSION}IdleTime.so kde-init_PORT= x11/kf${_KDE_VERSION}-kinit kde-init_PATH= ${KDE_PREFIX}/bin/kdeinit5 kde-itemmodels_PORT= devel/kf${_KDE_VERSION}-kitemmodels kde-itemmodels_LIB= libKF${_KDE_VERSION}ItemModels.so kde-itemviews_PORT= x11-toolkits/kf${_KDE_VERSION}-kitemviews kde-itemviews_LIB= libKF${_KDE_VERSION}ItemViews.so kde-jobwidgets_PORT= x11-toolkits/kf${_KDE_VERSION}-kjobwidgets kde-jobwidgets_LIB= libKF${_KDE_VERSION}JobWidgets.so kde-js_PORT= www/kf${_KDE_VERSION}-kjs kde-js_LIB= libKF${_KDE_VERSION}JS.so kde-jsembed_PORT= www/kf${_KDE_VERSION}-kjsembed kde-jsembed_LIB= libKF${_KDE_VERSION}JsEmbed.so kde-kcmutils_PORT= devel/kf${_KDE_VERSION}-kcmutils kde-kcmutils_LIB= libKF${_KDE_VERSION}KCMUtils.so kde-kdeclarative_PORT= devel/kf${_KDE_VERSION}-kdeclarative kde-kdeclarative_LIB5= libKF${_KDE_VERSION}Declarative.so kde-kdeclarative_LIB6= libKF${_KDE_VERSION}CalendarEvents.so kde-kdeclarative_LIB= ${kde-kdeclarative_LIB${_KDE_VERSION}} kde-kded_PORT= x11/kf${_KDE_VERSION}-kded kde-kded_PATH= ${KDE_PREFIX}/bin/kded${_KDE_VERSION} kde-kdelibs4support_PORT= x11/kf${_KDE_VERSION}-kdelibs4support kde-kdelibs4support_LIB= libKF${_KDE_VERSION}KDELibs4Support.so kde-kdesu_PORT= security/kf${_KDE_VERSION}-kdesu kde-kdesu_LIB= libKF${_KDE_VERSION}Su.so kde-khtml_PORT= www/kf${_KDE_VERSION}-khtml kde-khtml_LIB= libKF${_KDE_VERSION}KHtml.so kde-kimageformats_PORT= graphics/kf${_KDE_VERSION}-kimageformats kde-kimageformats_PATH= ${QT_PLUGINDIR}/imageformats/kimg_xcf.so kde-kimageformats_TYPE= run kde-kio_PORT= devel/kf${_KDE_VERSION}-kio kde-kio_LIB= libKF${_KDE_VERSION}KIOCore.so kde-kirigami2_PORT5= x11-toolkits/kf${_KDE_VERSION}-kirigami2 kde-kirigami2_PORT6= x11-toolkits/kf${_KDE_VERSION}-kirigami kde-kirigami2_PATH5= ${QT_QMLDIR}/org/kde/kirigami.2/libKirigamiPlugin.so kde-kirigami2_PATH6= ${QT_QMLDIR}/org/kde/kirigami/libKirigamiplugin.so kde-kirigami2_PORT= ${kde-kirigami2_PORT${_KDE_VERSION}} kde-kirigami2_PATH= ${kde-kirigami2_PATH${_KDE_VERSION}} kde-kquickcharts_PORT= graphics/kf${_KDE_VERSION}-kquickcharts kde-kquickcharts_PATH5= ${QT_QMLDIR}/org/kde/quickcharts/libQuickCharts.so kde-kquickcharts_PATH6= ${QT_QMLDIR}/org/kde/quickcharts/libQuickChartsplugin.so kde-kquickcharts_PATH= ${kde-kquickcharts_PATH${_KDE_VERSION}} kde-kross_PORT= lang/kf${_KDE_VERSION}-kross kde-kross_LIB= libKF${_KDE_VERSION}KrossCore.so kde-layer-shell-qt_PORT= x11/plasma${_KDE_VERSION}-layer-shell-qt kde-layer-shell-qt_LIB= libLayerShellQtInterface.so kde-mediaplayer_PORT= multimedia/kf${_KDE_VERSION}-kmediaplayer kde-mediaplayer_LIB= libKF${_KDE_VERSION}MediaPlayer.so.5 kde-newstuff_PORT= devel/kf${_KDE_VERSION}-knewstuff kde-newstuff_LIB= libKF${_KDE_VERSION}NewStuffCore.so kde-notifications_PORT= devel/kf${_KDE_VERSION}-knotifications kde-notifications_LIB= libKF${_KDE_VERSION}Notifications.so kde-notifyconfig_PORT= devel/kf${_KDE_VERSION}-knotifyconfig kde-notifyconfig_LIB= libKF${_KDE_VERSION}NotifyConfig.so kde-oxygen-icons5_PORT= x11-themes/kf${_KDE_VERSION}-oxygen-icons5 kde-oxygen-icons5_PATH= ${KDE_PREFIX}/share/icons/oxygen/index.theme kde-oxygen-icons5_TYPE= run kde-oxygen-sounds_PORT= audio/plasma${_KDE_VERSION}-oxygen-sounds kde-oxygen-sounds_PATH= ${KDE_PREFIX}/share/sounds/Oxygen-Sys-Log-In.ogg kde-oxygen-sounds_TYPE= run kde-package_PORT= devel/kf${_KDE_VERSION}-kpackage kde-package_LIB= libKF${_KDE_VERSION}Package.so kde-parts_PORT= devel/kf${_KDE_VERSION}-kparts kde-parts_LIB= libKF${_KDE_VERSION}Parts.so kde-people_PORT= devel/kf${_KDE_VERSION}-kpeople kde-people_LIB= libKF${_KDE_VERSION}People.so kde-plasma-framework_PORT= x11/kf${_KDE_VERSION}-plasma-framework kde-plasma-framework_LIB= libKF${_KDE_VERSION}Plasma.so kde-plasma-wayland-protocols_PORT= x11/plasma-wayland-protocols kde-plasma-wayland-protocols_PATH= ${KDE_PREFIX}/lib/cmake/PlasmaWaylandProtocols/PlasmaWaylandProtocolsConfig.cmake kde-plotting_PORT= graphics/kf${_KDE_VERSION}-kplotting kde-plotting_LIB= libKF${_KDE_VERSION}Plotting.so kde-prison_PORT= graphics/kf${_KDE_VERSION}-prison kde-prison_LIB= libKF${_KDE_VERSION}Prison.so kde-pty_PORT= devel/kf${_KDE_VERSION}-kpty kde-pty_LIB= libKF${_KDE_VERSION}Pty.so kde-purpose_PORT= misc/kf${_KDE_VERSION}-purpose kde-purpose_LIB= libKF${_KDE_VERSION}Purpose.so kde-qqc2-desktop-style_PORT= x11-themes/kf${_KDE_VERSION}-qqc2-desktop-style kde-qqc2-desktop-style_PATH5= ${QT_PLUGINDIR}/kf${_KDE_VERSION}/kirigami/org.kde.desktop.so kde-qqc2-desktop-style_PATH6= ${QT_QMLDIR}/org/kde/desktop/liborg_kde_desktop.so kde-qqc2-desktop-style_PATH= ${kde-qqc2-desktop-style_PATH${_KDE_VERSION}} kde-runner_PORT= x11/kf${_KDE_VERSION}-krunner kde-runner_LIB= libKF${_KDE_VERSION}Runner.so kde-service_PORT= devel/kf${_KDE_VERSION}-kservice kde-service_LIB= libKF${_KDE_VERSION}Service.so kde-solid_PORT= devel/kf${_KDE_VERSION}-solid kde-solid_LIB= libKF${_KDE_VERSION}Solid.so kde-sonnet_PORT= textproc/kf${_KDE_VERSION}-sonnet kde-sonnet_LIB= libKF${_KDE_VERSION}SonnetCore.so kde-syndication_PORT= net/kf${_KDE_VERSION}-syndication kde-syndication_LIB= libKF${_KDE_VERSION}Syndication.so kde-syntaxhighlighting_PORT= textproc/kf${_KDE_VERSION}-syntax-highlighting kde-syntaxhighlighting_LIB= libKF${_KDE_VERSION}SyntaxHighlighting.so kde-texteditor_PORT= devel/kf${_KDE_VERSION}-ktexteditor kde-texteditor_LIB= libKF${_KDE_VERSION}TextEditor.so kde-textwidgets_PORT= x11-toolkits/kf${_KDE_VERSION}-ktextwidgets kde-textwidgets_LIB= libKF${_KDE_VERSION}TextWidgets.so kde-threadweaver_PORT= devel/kf${_KDE_VERSION}-threadweaver kde-threadweaver_LIB= libKF${_KDE_VERSION}ThreadWeaver.so kde-unitconversion_PORT= devel/kf${_KDE_VERSION}-kunitconversion kde-unitconversion_LIB= libKF${_KDE_VERSION}UnitConversion.so kde-wallet_PORT= sysutils/kf${_KDE_VERSION}-kwallet kde-wallet_LIB= libKF${_KDE_VERSION}Wallet.so kde-wayland_PORT5= x11/kf${_KDE_VERSION}-kwayland kde-wayland_PORT6= x11/plasma${_KDE_VERSION}-kwayland kde-wayland_PORT= ${kde-wayland_PORT${_KDE_VERSION}} kde-wayland_LIB5= libKF${_KDE_VERSION}WaylandClient.so kde-wayland_LIB6= libKWaylandClient.so kde-wayland_LIB= ${kde-wayland_LIB${_KDE_VERSION}} kde-widgetsaddons_PORT= x11-toolkits/kf${_KDE_VERSION}-kwidgetsaddons kde-widgetsaddons_LIB= libKF${_KDE_VERSION}WidgetsAddons.so kde-windowsystem_PORT= x11/kf${_KDE_VERSION}-kwindowsystem kde-windowsystem_LIB= libKF${_KDE_VERSION}WindowSystem.so kde-xmlgui_PORT= x11-toolkits/kf${_KDE_VERSION}-kxmlgui kde-xmlgui_LIB= libKF${_KDE_VERSION}XmlGui.so kde-xmlrpcclient_PORT= net/kf${_KDE_VERSION}-kxmlrpcclient kde-xmlrpcclient_LIB= libKF${_KDE_VERSION}XmlRpcClient.so kde-calendarcore_PORT= net/kf${_KDE_VERSION}-kcalendarcore kde-calendarcore_LIB= libKF${_KDE_VERSION}CalendarCore.so kde-contacts_PORT= net/kf${_KDE_VERSION}-kcontacts kde-contacts_LIB= libKF${_KDE_VERSION}Contacts.so kde-kdav_PORT= net/kf${_KDE_VERSION}-kdav kde-kdav_LIB= libKF${_KDE_VERSION}DAV.so kde-colorscheme_PORT= x11-themes/kf${_KDE_VERSION}-kcolorscheme kde-colorscheme_LIB= libKF${_KDE_VERSION}ColorScheme.so kde-svg_PORT= graphics/kf${_KDE_VERSION}-ksvg kde-svg_LIB= libKF${_KDE_VERSION}Svg.so kde-statusnotifieritem_PORT= deskutils/kf6-kstatusnotifieritem kde-statusnotifieritem_LIB= libKF${_KDE_VERSION}StatusNotifierItem.so kde-userfeedback_PORT= sysutils/kf6-kuserfeedback kde-userfeedback_LIB= libKF${_KDE_VERSION}UserFeedbackCore.so # ====================== end of frameworks components ========================== # ====================== plasma components ===================================== kde-kpipewire_PORT= audio/plasma${_KDE_VERSION}-kpipewire kde-kpipewire_LIB= libKPipeWire.so kde-activitymanagerd_PORT= x11/plasma${_KDE_VERSION}-kactivitymanagerd kde-activitymanagerd_LIB= libkactivitymanagerd_plugin.so kde-breeze_PORT= x11-themes/plasma${_KDE_VERSION}-breeze kde-breeze_PATH= ${KDE_PREFIX}/share/QtCurve/Breeze.qtcurve kde-breeze-gtk_PORT= x11-themes/plasma${_KDE_VERSION}-breeze-gtk kde-breeze-gtk_PATH= ${KDE_PREFIX}/share/themes/Breeze/gtk-2.0/gtkrc kde-decoration_PORT= x11-wm/plasma${_KDE_VERSION}-kdecoration kde-decoration_LIB= libkdecorations2.so kde-discover_PORT= sysutils/plasma${_KDE_VERSION}-discover kde-discover_PATH= ${KDE_PREFIX}/bin/plasma-discover kde-drkonqi_PORT= sysutils/plasma${_KDE_VERSION}-drkonqi kde-drkonqi_PATH= ${KDE_PREFIX}/lib/libexec/drkonqi kde-hotkeys_PORT= devel/plasma${_KDE_VERSION}-khotkeys kde-hotkeys_LIB= libkhotkeysprivate.so.5 kde-infocenter_PORT= sysutils/plasma${_KDE_VERSION}-kinfocenter kde-infocenter_PATH= ${KDE_PREFIX}/bin/kinfocenter kde-kde-cli-tools_PORT= sysutils/plasma${_KDE_VERSION}-kde-cli-tools kde-kde-cli-tools_PATH= ${KDE_PREFIX}/bin/kde-open kde-kde-gtk-config_PORT= x11-themes/plasma${_KDE_VERSION}-kde-gtk-config kde-kde-gtk-config_PATH= ${KDE_PREFIX}/lib/kconf_update_bin/gtk_theme kde-kdeplasma-addons_PORT= x11-toolkits/plasma${_KDE_VERSION}-kdeplasma-addons kde-kdeplasma-addons_LIB= libplasmapotdprovidercore.so kde-kgamma5_PORT5= x11/plasma${_KDE_VERSION}-kgamma5 kde-kgamma5_PORT6= x11/plasma${_KDE_VERSION}-kgamma kde-kgamma5_PORT= ${kde-kgamma5_PORT${_KDE_VERSION}} kde-kgamma5_PATH5= ${QT_PLUGINDIR}/plasma/kcms/systemsettings/kcm_kgamma.so kde-kgamma5_PATH6= ${QT_PLUGINDIR}/plasma/kcms/systemsettings_qwidgets/kcm_kgamma.so kde-kgamma5_PATH= ${kde-kgamma5_PATH${_KDE_VERSION}} kde-kmenuedit_PORT= sysutils/plasma${_KDE_VERSION}-kmenuedit kde-kmenuedit_PATH= ${KDE_PREFIX}/bin/kmenuedit kde-kscreen_PORT= x11/plasma${_KDE_VERSION}-kscreen kde-kscreen_PATH= ${KDE_PREFIX}/bin/kscreen-console kde-kscreenlocker_PORT= security/plasma${_KDE_VERSION}-kscreenlocker kde-kscreenlocker_LIB= libKScreenLocker.so kde-ksshaskpass_PORT= security/plasma${_KDE_VERSION}-ksshaskpass kde-ksshaskpass_PATH= ${KDE_PREFIX}/bin/ksshaskpass kde-ksysguard_PORT= sysutils/plasma${_KDE_VERSION}-ksysguard kde-ksysguard_PATH= ${KDE_PREFIX}/bin/ksysguard kde-ksystemstats_PORT= sysutils/plasma${_KDE_VERSION}-ksystemstats kde-ksystemstats_PATH= ${KDE_PREFIX}/bin/ksystemstats kde-kwallet-pam_PORT= security/plasma${_KDE_VERSION}-kwallet-pam kde-kwallet-pam_PATH5= ${KDE_PREFIX}/lib/pam_kwallet5.so kde-kwallet-pam_PATH6= ${KDE_PREFIX}/lib/security/pam_kwallet5.so kde-kwallet-pam_PATH= ${kde-kwallet-pam_PATH${_KDE_VERSION}} kde-kwayland-integration_PORT= x11/plasma${_KDE_VERSION}-kwayland-integration kde-kwayland-integration_PATH= ${QT_PLUGINDIR}/kf${_KDE_VERSION}/kwindowsystem/KF5WindowSystemKWaylandPlugin.so kde-kwin_PORT= x11-wm/plasma${_KDE_VERSION}-kwin kde-kwin_PATH= ${KDE_PREFIX}/bin/kwin_x11 kde-kwrited_PORT= devel/plasma${_KDE_VERSION}-kwrited kde-kwrited_PATH= ${QT_PLUGINDIR}/kf${_KDE_VERSION}/kded/kwrited.so kde-libkscreen_PORT= x11/plasma${_KDE_VERSION}-libkscreen kde-libkscreen_LIB= libKF${_KDE_VERSION}Screen.so kde-libksysguard_PORT= sysutils/plasma${_KDE_VERSION}-libksysguard kde-libksysguard_LIB= libksgrd.so kde-milou_PORT= deskutils/plasma${_KDE_VERSION}-milou kde-milou_PATH5= ${KDE_PREFIX}/lib/libmilou.so.5 kde-milou_PATH6= ${QT_QMLDIR}/org/kde/milou/libmilouqmlplugin.so kde-milou_PATH= ${kde-milou_PATH${_KDE_VERSION}} kde-oxygen_PORT= x11-themes/plasma${_KDE_VERSION}-oxygen kde-oxygen_PATH5= ${QT_PLUGINDIR}/styles/oxygen.so kde-oxygen_PATH6= ${QT_PLUGINDIR}/kstyle_config/kstyle_oxygen_config.so kde-oxygen_PATH= ${kde-oxygen_PATH${_KDE_VERSION}} kde-plasma-browser-integration_PORT= www/plasma${_KDE_VERSION}-plasma-browser-integration kde-plasma-browser-integration_PATH= ${KDE_PREFIX}/bin/plasma-browser-integration-host kde-plasma-desktop_PORT= x11/plasma${_KDE_VERSION}-plasma-desktop kde-plasma-desktop_PATH= ${KDE_PREFIX}/bin/kaccess kde-plasma-disks_PORT= sysutils/plasma${_KDE_VERSION}-plasma-disks kde-plasma-disks_PATH5= ${KDE_PREFIX}/lib/libexec/kauth/kded-smart-helper kde-plasma-disks_PATH6= ${KDE_PREFIX}/lib/libexec/kf6/kauth/kded-smart-helper kde-plasma-disks_PATH= ${kde-plasma-disks_PATH${_KDE_VERSION}} kde-plasma-integration_PORT= x11/plasma${_KDE_VERSION}-plasma-integration kde-plasma-integration_PATH5= ${QT_PLUGINDIR}/platformthemes/KDEPlasmaPlatformTheme.so kde-plasma-integration_PATH6= ${QT_PLUGINDIR}/platformthemes/KDEPlasmaPlatformTheme6.so kde-plasma-integration_PATH= ${kde-plasma-integration_PATH${_KDE_VERSION}} kde-plasma-pa_PORT= audio/plasma${_KDE_VERSION}-plasma-pa kde-plasma-pa_PATH= ${QT_PLUGINDIR}/plasma/kcms/systemsettings/kcm_pulseaudio.so kde-plasma-sdk_PORT= devel/plasma${_KDE_VERSION}-plasma-sdk kde-plasma-sdk_PATH= ${KDE_PREFIX}/bin/plasmoidviewer kde-plasma-workspace_PORT= x11/plasma${_KDE_VERSION}-plasma-workspace kde-plasma-workspace_LIB= libkworkspace${_KDE_VERSION}.so kde-plasma-workspace-wallpapers_PORT= x11-themes/plasma${_KDE_VERSION}-plasma-workspace-wallpapers kde-plasma-workspace-wallpapers_PATH= ${KDE_PREFIX}/share/wallpapers/Autumn/contents/images/1280x1024.jpg kde-polkit-kde-agent-1_PORT= sysutils/plasma${_KDE_VERSION}-polkit-kde-agent-1 kde-polkit-kde-agent-1_PATH= ${KDE_PREFIX}/lib/libexec/polkit-kde-authentication-agent-1 kde-powerdevil_PORT= sysutils/plasma${_KDE_VERSION}-powerdevil kde-powerdevil_LIB= libpowerdevilcore.so kde-systemsettings_PORT= sysutils/plasma${_KDE_VERSION}-systemsettings kde-systemsettings_PATH5= ${KDE_PREFIX}/bin/systemsettings5 kde-systemsettings_PATH6= ${KDE_PREFIX}/bin/systemsettings kde-systemsettings_PATH= ${kde-systemsettings_PATH${_KDE_VERSION}} kde-xdg-desktop-portal-kde_PORT= deskutils/plasma${_KDE_VERSION}-xdg-desktop-portal-kde kde-xdg-desktop-portal-kde_PATH= ${KDE_PREFIX}/lib/libexec/xdg-desktop-portal-kde kde-plasma5support_PORT= devel/plasma${_KDE_VERSION}-plasma5support kde-plasma5support_LIB= libPlasma5Support.so kde-kirigami-addons_PORT5= x11-toolkits/kirigami-addons kde-kirigami-addons_PORT6= x11-toolkits/kirigami-addons-devel kde-kirigami-addons_PORT= ${kde-kirigami-addons_PORT${_KDE_VERSION}} kde-kirigami-addons_PATH= ${QT_QMLDIR}/org/kde/kirigamiaddons/components/libcomponentsplugin.so kde-globalacceld_PORT= x11/plasma${_KDE_VERSION}-kglobalacceld kde-globalacceld_PATH= ${QT_PLUGINDIR}/org.kde.kglobalacceld.platforms/KGlobalAccelDXcb.so kde-libplasma_PORT= x11/plasma${_KDE_VERSION}-libplasma kde-libplasma_LIB= libPlasma.so # ====================== end of plasma components ============================== # ====================== pim5 components ======================================= kde-akonadicontacts_PORT= net/akonadi-contacts kde-akonadicontacts_LIB= libKPim5AkonadiContact.so kde-akonadiimportwizard_PORT= deskutils/akonadi-import-wizard kde-akonadiimportwizard_LIB= libKPim5ImportWizard.so kde-akonadimime_PORT= net/akonadi-mime kde-akonadimime_LIB= libKPim5AkonadiMime.so kde-akonadinotes_PORT= net/akonadi-notes kde-akonadinotes_LIB= libKPim5AkonadiNotes.so kde-akonadicalendar_PORT= net/akonadi-calendar kde-akonadicalendar_LIB= libKPim5AkonadiCalendar.so kde-akonadisearch_PORT= net/akonadi-search kde-akonadisearch_LIB= libKPim5AkonadiSearchCore.so kde-calendarsupport_PORT= net/calendarsupport kde-calendarsupport_LIB= libKPim5CalendarSupport.so kde-calendarutils_PORT= net/kcalutils kde-calendarutils_LIB= libKPim5CalendarUtils.so kde-eventviews_PORT= net/eventviews kde-eventviews_LIB= libKPim5EventViews.so kde-gapi_PORT= net/libkgapi kde-gapi_LIB= libKPim5GAPIBlogger.so kde-grantleetheme_PORT= deskutils/grantleetheme kde-grantleetheme_LIB= libKPim5GrantleeTheme.so kde-gravatar_PORT= net/libgravatar kde-gravatar_LIB= libKPim5Gravatar.so kde-identitymanagement_PORT= net/kidentitymanagement kde-identitymanagement_LIB= libKPim5IdentityManagement.so kde-imap_PORT= net/kimap kde-imap_LIB= libKPim5IMAP.so kde-incidenceeditor_PORT= net/incidenceeditor kde-incidenceeditor_LIB= libKPim5IncidenceEditor.so kde-kdepim-addons_PORT= deskutils/kdepim-addons kde-kdepim-addons_PATH= ${QT_PLUGINDIR}/pim5/contacteditor/editorpageplugins/cryptopageplugin.so kde-kdepim-runtime5_PORT= deskutils/kdepim-runtime kde-kdepim-runtime5_PATH= ${KDE_PREFIX}/bin/gidmigrator kde-kitinerary_PORT= net/kitinerary kde-kitinerary_LIB= libKPim5Itinerary.so kde-kontactinterface_PORT= net/kontactinterface kde-kontactinterface_LIB= libKPim5KontactInterface.so kde-kpkpass_PORT= security/kpkpass kde-kpkpass_LIB= libKPim5PkPass.so kde-ksmtp_PORT= net/ksmtp kde-ksmtp_LIB= libKPim5SMTP.so kde-ldap_PORT= net/kldap kde-ldap_LIB= libKPim5Ldap.so kde-libkdepim_PORT= deskutils/libkdepim kde-libkdepim_LIB= libKPim5Libkdepim.so kde-libkleo_PORT= security/libkleo kde-libkleo_LIB= libKPim5Libkleo.so kde-libksieve_PORT= net/libksieve kde-libksieve_LIB= libKPim5KSieve.so kde-mailcommon_PORT= net/mailcommon kde-mailcommon_LIB= libKPim5MailCommon.so kde-mailimporter_PORT= net/mailimporter kde-mailimporter_LIB= libKPim5MailImporter.so kde-mailtransport_PORT= net/kmailtransport kde-mailtransport_LIB= libKPim5MailTransport.so kde-mbox_PORT= net/kmbox kde-mbox_LIB= libKPim5Mbox.so kde-messagelib_PORT= net/messagelib kde-messagelib_LIB= libKPim5MessageList.so kde-mime_PORT= net/kmime kde-mime_LIB= libKPim5Mime.so kde-pimcommon_PORT= net/pimcommon kde-pimcommon_LIB= libKPim5PimCommon.so kde-pimtextedit_PORT= net/kpimtextedit kde-pimtextedit_LIB= libKPim5TextEdit.so kde-tnef_PORT= net/ktnef kde-tnef_LIB= libKPim5Tnef.so kde-ktextaddons_PORT= devel/ktextaddons kde-ktextaddons_LIB= libKF${_KDE_VERSION}TextAutoCorrectionCore.so # PIM Applications kde-akonadiconsole_PORT= deskutils/akonadiconsole kde-akonadiconsole_PATH= ${KDE_PREFIX}/bin/akonadiconsole kde-akregator_PORT= deskutils/akregator kde-akregator_PATH= ${KDE_PREFIX}/bin/akregator kde-grantlee-editor_PORT= deskutils/grantlee-editor kde-grantlee-editor_PATH= ${KDE_PREFIX}/bin/contactthemeeditor kde-kaddressbook_PORT= deskutils/kaddressbook kde-kaddressbook_PATH= ${KDE_PREFIX}/bin/kaddressbook kde-kalarm_PORT= deskutils/kalarm kde-kalarm_PATH= ${KDE_PREFIX}/bin/kalarm kde-kmail_PORT= deskutils/kmail kde-kmail_PATH= ${KDE_PREFIX}/bin/kmail kde-kmail-account-wizard_PORT= deskutils/kmail-account-wizard kde-kmail-account-wizard_PATH= ${KDE_PREFIX}/bin/accountwizard kde-knotes_PORT= deskutils/knotes kde-knotex_PATH= ${KDE_PREFIX}/bin/knotes kde-kontact_PORT= deskutils/kontact kde-kontact_PATH= ${KDE_PREFIX}/bin/kontact kde-korganizer_PORT= deskutils/korganizer kde-korganizer_PATH= ${KDE_PREFIX}/bin/korganizer kde-mbox-importer_PORT= deskutils/mbox-importer kde-mbox-importer_PATH= ${KDE_PREFIX}/bin/mboximporter kde-pim-data-exporter_PORT= deskutils/pim-data-exporter kde-pim-data-exporter_PATH= ${KDE_PREFIX}/bin/pimdataexporter # ====================== end of pim5 components ================================ # ====================== multiversion component ================================ kde-akonadi5_PORT= databases/akonadi kde-akonadi5_LIB= libKPim5AkonadiPrivate.so kde-baloo-widgets5_PORT= sysutils/baloo-widgets kde-baloo-widgets5_LIB= libKF${_KDE_VERSION}BalooWidgets.so kde-kate5_PORT= editors/kate kde-kate5_PATH= ${QT_PLUGINDIR}/ktexteditor/katebacktracebrowserplugin.so kde-libkcddb5_PORT= audio/libkcddb kde-libkcddb5_LIB= libKF${_KDE_VERSION}Cddb.so kde-libkcompactdisc5_PORT= audio/libkcompactdisc kde-libkcompactdisc5_LIB= libKF${_KDE_VERSION}CompactDisc.so kde-libkdcraw5_PORT= graphics/libkdcraw@qt${_KDE_VERSION} kde-libkdcraw5_LIB= libKF${_KDE_VERSION}KDcraw.so kde-libkdegames5_PORT= games/libkdegames kde-libkdegames5_LIB= libKF${_KDE_VERSION}KDEGames.so kde-libkeduvocdocument5_PORT= misc/libkeduvocdocument kde-libkeduvocdocument5_LIB= libKEduVocDocument.so kde-libkexiv25_PORT= graphics/libkexiv2 kde-libkexiv25_LIB= libKF${_KDE_VERSION}KExiv2.so kde-libkipi5_PORT= graphics/libkipi kde-libkipi5_LIB= libKF${_KDE_VERSION}Kipi.so kde-libksane5_PORT= graphics/libksane kde-libksane5_LIB= libKF${_KDE_VERSION}Sane.so kde-marble5_PORT= astro/marble kde-marble5_LIB= libmarblewidget-qt5.so kde-kpublictransport_PORT= devel/kpublictransport kde-kpublictransport_LIB= libKPublicTransport.so kde-kosm_PORT= astro/kosmindoormap kde-kosm_LIB= libKOSM.so kde-okular5_PORT= graphics/okular kde-okular5_LIB= libOkular5Core.so kde-phonon_PORT= multimedia/phonon@${_QT_RELNAME} kde-phonon_LIB= libphonon4${_QT_RELNAME}.so kde-phonon-backend_PORT= multimedia/phonon-vlc@${_QT_RELNAME} kde-phonon-backend_PATH= ${QT_PLUGINDIR}/phonon4${_QT_RELNAME}_backend/phonon_vlc_${_QT_RELNAME}.so # ====================== end of multiversion components ======================== # ====================== select the proper multiversion component ============== . for comp in ${_USE_KDE_BOTH} kde-${comp}_PORT= ${kde-${comp}${_KDE_VERSION}_PORT} . if defined(kde-${comp}${_KDE_VERSION}_LIB) kde-${comp}_LIB= ${kde-${comp}${_KDE_VERSION}_LIB} . else . if defined(kde-${comp}${_KDE_VERSION}_PATH}) kde-${comp}_PATH= ${kde-${comp}${_KDE_VERSION}_LIB} . endif # If neither is defined, this gets caught below when checking components . endif . endfor #=============================================================================== # end of component list ######################################################## _USE_KDE_ALL= ${_USE_${_KDE_RELNAME}_ALL} # Iterate through components deprived of suffix. . for component in ${USE_KDE:O:u:C/:.+//} # Check that the component is valid. . if ${_USE_KDE_ALL:M${component}} != "" # Skip meta-components (currently none). . if defined(kde-${component}_PORT) && (defined(kde-${component}_PATH) || defined(kde-${component}_LIB)) # Check if a dependency type is explicitly requested. . if ${USE_KDE:M${component}\:*} != "" && ${USE_KDE:M${component}} == "" kde-${component}_TYPE= # empty . if ${USE_KDE:M${component}\:build} != "" kde-${component}_TYPE+= build . endif . if ${USE_KDE:M${component}\:run} != "" kde-${component}_TYPE+= run . endif . endif # ${USE_KDE:M${component}_*} != "" && ${USE_KDE:M${component}} == "" # If no dependency type is set, default to full dependency. . if !defined(kde-${component}_TYPE) kde-${component}_TYPE= build run . endif # Set real dependencies. . if defined(kde-${component}_LIB) && ${kde-${component}_TYPE:Mbuild} && ${kde-${component}_TYPE:Mrun} LIB_DEPENDS+= ${kde-${component}_LIB}:${kde-${component}_PORT} . else kde-${component}_PATH?= ${KDE_PREFIX}/lib/${kde-${component}_LIB} kde-${component}_DEPENDS= ${kde-${component}_PATH}:${kde-${component}_PORT} . if ${kde-${component}_TYPE:Mbuild} != "" BUILD_DEPENDS+= ${kde-${component}_DEPENDS} . endif . if ${kde-${component}_TYPE:Mrun} != "" RUN_DEPENDS+= ${kde-${component}_DEPENDS} . endif . endif # ${kde-${component}_LIB} && ${kde-${component}_TYPE:Mbuild} && ${kde-${component}_TYPE:Mrun} . endif # defined(kde-${component}_PORT) && defined(kde-${component}_PATH) . else # ! ${_USE_KDE_ALL:M${component}} != "" IGNORE= cannot be installed: unknown USE_KDE component '${component}' . endif # ${_USE_KDE_ALL:M${component}} != "" . endfor . endif .endif diff --git a/devel/kf5-extra-cmake-modules/Makefile b/devel/kf5-extra-cmake-modules/Makefile index b0af99ec97ba..f6b2ccc08d16 100644 --- a/devel/kf5-extra-cmake-modules/Makefile +++ b/devel/kf5-extra-cmake-modules/Makefile @@ -1,38 +1,39 @@ PORTNAME= extra-cmake-modules DISTVERSION= ${KDE_FRAMEWORKS_VERSION} +PORTREVISION= 1 CATEGORIES= devel kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= Extra modules and scripts for CMake LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/COPYING-CMAKE-SCRIPTS USES= cmake kde:5 qt:5 tar:xz USE_QT= linguisttools buildtools:build qmake:build HELP_USE= QT=help:build # qt5-help is only used to build a .qch file. NO_ARCH= yes PORTDOCS= html/* ## options OPTIONS_DEFINE= DOCS HELP MANPAGES OPTIONS_DEFAULT=HELP MANPAGES OPTIONS_SUB= yes HELP_DESC= Generate QtHelp documentation for installed modules SPHINX_DEP= sphinx-build:textproc/py-sphinx DOCS_BUILD_DEPENDS= ${SPHINX_DEP} HELP_BUILD_DEPENDS= ${SPHINX_DEP} MANPAGES_BUILD_DEPENDS= ${SPHINX_DEP} DOCS_CMAKE_BOOL= BUILD_HTML_DOCS HELP_CMAKE_BOOL= BUILD_QTHELP_DOCS MANPAGES_CMAKE_BOOL= BUILD_MAN_DOCS CONFIGURE_ENV+= CMAKE_PROGRAM_PATH="${LOCALBASE}/bin:${LOCALBASE}/lib/qt5/bin" INSTALL_TARGET= install # does not have install/strip target .include diff --git a/devel/kf5-extra-cmake-modules/pkg-plist b/devel/kf5-extra-cmake-modules/pkg-plist index 495ab2994222..deed51d004a6 100644 --- a/devel/kf5-extra-cmake-modules/pkg-plist +++ b/devel/kf5-extra-cmake-modules/pkg-plist @@ -1,129 +1,129 @@ -%%MANPAGES%%man/man7/ecm-developer.7.gz -%%MANPAGES%%man/man7/ecm-find-modules.7.gz -%%MANPAGES%%man/man7/ecm-kde-modules.7.gz -%%MANPAGES%%man/man7/ecm-modules.7.gz -%%MANPAGES%%man/man7/ecm-toolchains.7.gz -%%MANPAGES%%man/man7/ecm.7.gz share/ECM/cmake/ECMConfig.cmake share/ECM/cmake/ECMConfigVersion.cmake share/ECM/find-modules/ECMFindModuleHelpersStub.cmake +share/ECM/find-modules/Find7Zip.cmake share/ECM/find-modules/Find7z.cmake share/ECM/find-modules/FindCanberra.cmake share/ECM/find-modules/FindEGL.cmake share/ECM/find-modules/FindGLIB2.cmake share/ECM/find-modules/FindGperf.cmake share/ECM/find-modules/FindGradle.cmake share/ECM/find-modules/FindIcoTool.cmake share/ECM/find-modules/FindInotify.cmake share/ECM/find-modules/FindIsoCodes.cmake share/ECM/find-modules/FindKF5.cmake share/ECM/find-modules/FindLibExiv2.cmake share/ECM/find-modules/FindLibGit2.cmake share/ECM/find-modules/FindLibMount.cmake share/ECM/find-modules/FindLibcap.cmake share/ECM/find-modules/FindOpenEXR.cmake share/ECM/find-modules/FindPhoneNumber.cmake share/ECM/find-modules/FindPoppler.cmake share/ECM/find-modules/FindPulseAudio.cmake -share/ECM/find-modules/Find7Zip.cmake share/ECM/find-modules/FindPythonModuleGeneration.cmake share/ECM/find-modules/FindQHelpGenerator.cmake share/ECM/find-modules/FindQtWaylandScanner.cmake share/ECM/find-modules/FindReuseTool.cmake share/ECM/find-modules/FindSasl2.cmake share/ECM/find-modules/FindSeccomp.cmake share/ECM/find-modules/FindSharedMimeInfo.cmake share/ECM/find-modules/FindTaglib.cmake share/ECM/find-modules/FindUDev.cmake share/ECM/find-modules/FindWayland.cmake share/ECM/find-modules/FindWaylandProtocols.cmake share/ECM/find-modules/FindWaylandScanner.cmake share/ECM/find-modules/FindX11_XCB.cmake share/ECM/find-modules/FindXCB.cmake share/ECM/find-modules/Findepoxy.cmake share/ECM/find-modules/Findgzip.cmake share/ECM/find-modules/GeneratePythonBindingUmbrellaModule.cmake share/ECM/find-modules/Qt5Ruleset.py share/ECM/find-modules/local.properties.cmake share/ECM/find-modules/rules_engine.py share/ECM/find-modules/run-sip.py share/ECM/find-modules/settings.gradle.cmake share/ECM/find-modules/sip_generator.py share/ECM/kde-modules/KDECMakeSettings.cmake share/ECM/kde-modules/KDEClangFormat.cmake share/ECM/kde-modules/KDECompilerSettings.cmake share/ECM/kde-modules/KDEFrameworkCompilerLegacySettings.cmake share/ECM/kde-modules/KDEFrameworkCompilerSettings.cmake share/ECM/kde-modules/KDEGitCommitHooks.cmake share/ECM/kde-modules/KDEInstallDirs.cmake share/ECM/kde-modules/KDEInstallDirs5.cmake share/ECM/kde-modules/KDEInstallDirs6.cmake share/ECM/kde-modules/KDEInstallDirsCommon.cmake share/ECM/kde-modules/KDEMetaInfoPlatformCheck.cmake share/ECM/kde-modules/KDEPackageAppTemplates.cmake share/ECM/kde-modules/KDESetupPrefixScript.cmake share/ECM/kde-modules/appstreamtest.cmake share/ECM/kde-modules/clang-format.in share/ECM/kde-modules/kde-git-commit-hooks/clang-format.sh share/ECM/kde-modules/kde-git-commit-hooks/pre-commit.in share/ECM/kde-modules/prefix.sh.fish.in share/ECM/kde-modules/prefix.sh.in share/ECM/modules/CheckAtomic.cmake share/ECM/modules/ECMAddAppIcon.cmake share/ECM/modules/ECMAddQch.cmake share/ECM/modules/ECMAddQtDesignerPlugin.cmake share/ECM/modules/ECMAddTests.cmake share/ECM/modules/ECMCheckOutboundLicense.cmake share/ECM/modules/ECMConfiguredInstall.cmake share/ECM/modules/ECMCoverageOption.cmake share/ECM/modules/ECMCreateQmFromPoFiles.cmake share/ECM/modules/ECMDeprecationSettings.cmake share/ECM/modules/ECMEnableSanitizers.cmake share/ECM/modules/ECMFindModuleHelpers.cmake share/ECM/modules/ECMFindQmlModule.cmake share/ECM/modules/ECMFindQmlModule.cmake.in share/ECM/modules/ECMGenerateDBusServiceFile.cmake share/ECM/modules/ECMGenerateExportHeader.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/ECMQchDoxygen.config.in share/ECM/modules/ECMQchDoxygenLayout.xml share/ECM/modules/ECMQmLoader.cpp.in share/ECM/modules/ECMQmlModule.cmake share/ECM/modules/ECMQmlModule.cpp.in share/ECM/modules/ECMQmlModule.cpp.in.license share/ECM/modules/ECMQmlModule.h.in share/ECM/modules/ECMQmlModule.h.in.license 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/ECMQueryQt.cmake share/ECM/modules/ECMSetupQtPluginMacroNames.cmake share/ECM/modules/ECMSetupVersion.cmake share/ECM/modules/ECMSourceVersionControl.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/QtVersionOption.cmake share/ECM/modules/check-outbound-license.py share/ECM/modules/ecm_uninstall.cmake.in share/ECM/test-modules/test_execute_and_compare.cmake share/ECM/toolchain/Android.cmake share/ECM/toolchain/ECMAndroidDeployQt.cmake share/ECM/toolchain/deployment-file-qt514.json.in share/ECM/toolchain/deployment-file.json.in share/ECM/toolchain/generate-fastlane-metadata.py share/ECM/toolchain/hasMainSymbol.cmake share/ECM/toolchain/specifydependencies.cmake %%HELP%%%%DOCSDIR%%/ExtraCMakeModules.qch +%%MANPAGES%%share/man/man7/ecm-developer.7.gz +%%MANPAGES%%share/man/man7/ecm-find-modules.7.gz +%%MANPAGES%%share/man/man7/ecm-kde-modules.7.gz +%%MANPAGES%%share/man/man7/ecm-modules.7.gz +%%MANPAGES%%share/man/man7/ecm-toolchains.7.gz +%%MANPAGES%%share/man/man7/ecm.7.gz diff --git a/devel/kf5-kdoctools/Makefile b/devel/kf5-kdoctools/Makefile index b579018aa45a..2ad8609ce868 100644 --- a/devel/kf5-kdoctools/Makefile +++ b/devel/kf5-kdoctools/Makefile @@ -1,21 +1,22 @@ PORTNAME= kdoctools DISTVERSION= ${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 compiler:c++11-lib gettext gnome kde:5 qt:5 tar:xz USE_GNOME= libxml2 libxslt USE_KDE= archive i18n \ ecm:build USE_QT= core \ buildtools:build qmake:build .include diff --git a/devel/kf5-kdoctools/pkg-plist b/devel/kf5-kdoctools/pkg-plist index d15060b23dca..0a726fb665b2 100644 --- a/devel/kf5-kdoctools/pkg-plist +++ b/devel/kf5-kdoctools/pkg-plist @@ -1,1165 +1,1165 @@ bin/checkXML5 bin/meinproc5 include/KF5/KDocTools/docbookxslt.h include/KF5/KDocTools/kdoctools_export.h include/KF5/KDocTools/kdoctools_version.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/cmake/KF5DocTools/KF5DocToolsToolsTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5DocTools/KF5DocToolsToolsTargets.cmake lib/libKF5DocTools.so lib/libKF5DocTools.so.5 lib/libKF5DocTools.so.%%KDE_FRAMEWORKS_VERSION%% -man/ca/man1/checkXML5.1.gz -man/ca/man1/meinproc5.1.gz -man/ca/man7/kf5options.7.gz -man/ca/man7/qt5options.7.gz -man/ca@valencia/man1/checkXML5.1.gz -man/ca@valencia/man1/meinproc5.1.gz -man/ca@valencia/man7/kf5options.7.gz -man/ca@valencia/man7/qt5options.7.gz -man/de/man1/checkXML5.1.gz -man/de/man1/meinproc5.1.gz -man/de/man7/kf5options.7.gz -man/de/man7/qt5options.7.gz -man/es/man1/checkXML5.1.gz -man/es/man1/meinproc5.1.gz -man/es/man7/kf5options.7.gz -man/es/man7/qt5options.7.gz -man/id/man1/checkXML5.1.gz -man/it/man1/checkXML5.1.gz -man/it/man1/meinproc5.1.gz -man/it/man7/kf5options.7.gz -man/it/man7/qt5options.7.gz -man/man1/checkXML5.1.gz -man/man1/meinproc5.1.gz -man/man7/kf5options.7.gz -man/man7/qt5options.7.gz -man/nl/man1/checkXML5.1.gz -man/nl/man1/meinproc5.1.gz -man/nl/man7/kf5options.7.gz -man/nl/man7/qt5options.7.gz -man/pt/man1/checkXML5.1.gz -man/pt/man1/meinproc5.1.gz -man/pt/man7/kf5options.7.gz -man/pt/man7/qt5options.7.gz -man/pt_BR/man1/checkXML5.1.gz -man/pt_BR/man1/meinproc5.1.gz -man/pt_BR/man7/kf5options.7.gz -man/pt_BR/man7/qt5options.7.gz -man/ru/man1/checkXML5.1.gz -man/ru/man7/qt5options.7.gz -man/sv/man1/checkXML5.1.gz -man/sv/man1/meinproc5.1.gz -man/sv/man7/kf5options.7.gz -man/sv/man7/qt5options.7.gz -man/uk/man1/checkXML5.1.gz -man/uk/man1/meinproc5.1.gz -man/uk/man7/kf5options.7.gz -man/uk/man7/qt5options.7.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/ko/kdoctools5-common/lgpl-translated.html 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/ccbysa4-notice.docbook 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/underCCBYSA4.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/ca@valencia/catalog.xml share/kf5/kdoctools/customization/ca@valencia/entities/ccbysa4-notice.docbook share/kf5/kdoctools/customization/ca@valencia/entities/fdl-notice.docbook share/kf5/kdoctools/customization/ca@valencia/entities/gpl-notice.docbook share/kf5/kdoctools/customization/ca@valencia/entities/help-menu.docbook share/kf5/kdoctools/customization/ca@valencia/entities/install-compile.docbook share/kf5/kdoctools/customization/ca@valencia/entities/install-intro.docbook share/kf5/kdoctools/customization/ca@valencia/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/ca@valencia/entities/report-bugs.docbook share/kf5/kdoctools/customization/ca@valencia/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/ca@valencia/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/ca@valencia/entities/underCCBYSA4.docbook share/kf5/kdoctools/customization/ca@valencia/entities/underFDL.docbook share/kf5/kdoctools/customization/ca@valencia/entities/underGPL.docbook share/kf5/kdoctools/customization/ca@valencia/entities/underLGPL.docbook share/kf5/kdoctools/customization/ca@valencia/entities/underX11License.docbook share/kf5/kdoctools/customization/ca@valencia/entities/update-doc.docbook share/kf5/kdoctools/customization/ca@valencia/lang.entities share/kf5/kdoctools/customization/ca@valencia/strings.entities share/kf5/kdoctools/customization/ca@valencia/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/ccbysa4-notice.docbook 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/underCCBYSA4.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/ccbysa4-notice.docbook 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/underCCBYSA4.docbook share/kf5/kdoctools/customization/id/entities/underFDL.docbook share/kf5/kdoctools/customization/id/entities/underGPL.docbook share/kf5/kdoctools/customization/id/entities/underLGPL.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/ccbysa4-notice.docbook 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/report-bugs.docbook share/kf5/kdoctools/customization/ko/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/ko/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/ko/entities/underCCBYSA4.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/ccbysa4-notice.docbook 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/underCCBYSA4.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/sq/catalog.xml share/kf5/kdoctools/customization/sq/entities/fdl-notice.docbook share/kf5/kdoctools/customization/sq/entities/gpl-notice.docbook share/kf5/kdoctools/customization/sq/entities/help-menu.docbook share/kf5/kdoctools/customization/sq/entities/install-compile.docbook share/kf5/kdoctools/customization/sq/entities/install-intro.docbook share/kf5/kdoctools/customization/sq/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/sq/entities/report-bugs.docbook share/kf5/kdoctools/customization/sq/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/sq/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/sq/entities/underFDL.docbook share/kf5/kdoctools/customization/sq/entities/underGPL.docbook share/kf5/kdoctools/customization/sq/entities/underLGPL.docbook share/kf5/kdoctools/customization/sq/entities/underX11License.docbook share/kf5/kdoctools/customization/sq/entities/update-doc.docbook share/kf5/kdoctools/customization/sq/lang.entities share/kf5/kdoctools/customization/sq/strings.entities share/kf5/kdoctools/customization/sq/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/ccbysa4-notice.docbook 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/underCCBYSA4.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/ca_valencia.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/id.xml share/kf5/kdoctools/customization/xsl/it.xml share/kf5/kdoctools/customization/xsl/ko.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/az/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/id/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/ka/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/ml/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 +share/man/ca/man1/checkXML5.1.gz +share/man/ca/man1/meinproc5.1.gz +share/man/ca/man7/kf5options.7.gz +share/man/ca/man7/qt5options.7.gz +share/man/ca@valencia/man1/checkXML5.1.gz +share/man/ca@valencia/man1/meinproc5.1.gz +share/man/ca@valencia/man7/kf5options.7.gz +share/man/ca@valencia/man7/qt5options.7.gz +share/man/de/man1/checkXML5.1.gz +share/man/de/man1/meinproc5.1.gz +share/man/de/man7/kf5options.7.gz +share/man/de/man7/qt5options.7.gz +share/man/es/man1/checkXML5.1.gz +share/man/es/man1/meinproc5.1.gz +share/man/es/man7/kf5options.7.gz +share/man/es/man7/qt5options.7.gz +share/man/id/man1/checkXML5.1.gz +share/man/it/man1/checkXML5.1.gz +share/man/it/man1/meinproc5.1.gz +share/man/it/man7/kf5options.7.gz +share/man/it/man7/qt5options.7.gz +share/man/man1/checkXML5.1.gz +share/man/man1/meinproc5.1.gz +share/man/man7/kf5options.7.gz +share/man/man7/qt5options.7.gz +share/man/nl/man1/checkXML5.1.gz +share/man/nl/man1/meinproc5.1.gz +share/man/nl/man7/kf5options.7.gz +share/man/nl/man7/qt5options.7.gz +share/man/pt/man1/checkXML5.1.gz +share/man/pt/man1/meinproc5.1.gz +share/man/pt/man7/kf5options.7.gz +share/man/pt/man7/qt5options.7.gz +share/man/pt_BR/man1/checkXML5.1.gz +share/man/pt_BR/man1/meinproc5.1.gz +share/man/pt_BR/man7/kf5options.7.gz +share/man/pt_BR/man7/qt5options.7.gz +share/man/ru/man1/checkXML5.1.gz +share/man/ru/man7/qt5options.7.gz +share/man/sv/man1/checkXML5.1.gz +share/man/sv/man1/meinproc5.1.gz +share/man/sv/man7/kf5options.7.gz +share/man/sv/man7/qt5options.7.gz +share/man/uk/man1/checkXML5.1.gz +share/man/uk/man1/meinproc5.1.gz +share/man/uk/man7/kf5options.7.gz +share/man/uk/man7/qt5options.7.gz diff --git a/devel/kf5-kio/Makefile b/devel/kf5-kio/Makefile index a586e18f332b..02ebaf4d842e 100644 --- a/devel/kf5-kio/Makefile +++ b/devel/kf5-kio/Makefile @@ -1,22 +1,23 @@ PORTNAME= kio DISTVERSION= ${KDE_FRAMEWORKS_VERSION} +PORTREVISION= 1 CATEGORIES= devel kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 resource and network access abstraction USES= cmake compiler:c++11-lib desktop-file-utils \ gettext gnome kde:5 cpe qt:5 ssl tar:xz xorg USE_GNOME= libxml2 libxslt USE_KDE= archive auth bookmarks codecs completion config \ configwidgets coreaddons crash dbusaddons doctools guiaddons \ i18n iconthemes itemviews jobwidgets kded \ notifications service solid sonnet textwidgets wallet \ widgetsaddons windowsystem xmlgui \ doctools:build ecm:build USE_QT= concurrent core dbus declarative gui network \ widgets x11extras xml \ buildtools:build qmake:build testlib:build USE_XORG= x11 .include diff --git a/devel/kf5-kio/pkg-plist b/devel/kf5-kio/pkg-plist index 5288d25967ce..89a1fca17318 100644 --- a/devel/kf5-kio/pkg-plist +++ b/devel/kf5-kio/pkg-plist @@ -1,1048 +1,1048 @@ bin/kcookiejar5 bin/ktelnetservice5 bin/ktrash5 bin/protocoltojson etc/xdg/accept-languages.codes etc/xdg/kshorturifilterrc include/KF5/KIO/kio_version.h include/KF5/KIOCore/KACL include/KF5/KIOCore/KCoreDirLister include/KF5/KIOCore/KDirNotify include/KF5/KIOCore/KDiskFreeSpaceInfo include/KF5/KIOCore/KFileFilter include/KF5/KIOCore/KFileItem include/KF5/KIOCore/KFileItemListProperties include/KF5/KIOCore/KIO/AskUserActionInterface include/KF5/KIOCore/KIO/AuthInfo include/KF5/KIOCore/KIO/BatchRenameJob 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/ForwardingWorkerBase 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/MimeTypeFinderJob include/KF5/KIOCore/KIO/MimetypeJob include/KF5/KIOCore/KIO/MkdirJob include/KF5/KIOCore/KIO/MkpathJob include/KF5/KIOCore/KIO/MultiGetJob include/KF5/KIOCore/KIO/NameFinderJob 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/TCPWorkerBase include/KF5/KIOCore/KIO/TransferJob include/KF5/KIOCore/KIO/UDSEntry include/KF5/KIOCore/KIO/WorkerBase include/KF5/KIOCore/KIO/WorkerFactory 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/KSslErrorUiData 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/kfilefilter.h include/KF5/KIOCore/kfileitem.h include/KF5/KIOCore/kfileitemlistproperties.h include/KF5/KIOCore/kio/askuseractioninterface.h include/KF5/KIOCore/kio/authinfo.h include/KF5/KIOCore/kio/batchrenamejob.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/forwardingworkerbase.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/http_worker_defaults.h include/KF5/KIOCore/kio/idleslave.h include/KF5/KIOCore/kio/ioslave_defaults.h include/KF5/KIOCore/kio/ioworker_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/mimetypefinderjob.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/namefinderjob.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/tcpworkerbase.h include/KF5/KIOCore/kio/transferjob.h include/KF5/KIOCore/kio/udsentry.h include/KF5/KIOCore/kio/workerbase.h include/KF5/KIOCore/kio/workerfactory.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/ksslerroruidata.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/KFileCustomDialog include/KF5/KIOFileWidgets/KFileFilterCombo include/KF5/KIOFileWidgets/KFilePlaceEditDialog 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/kfilecustomdialog.h include/KF5/KIOFileWidgets/kfilefiltercombo.h include/KF5/KIOFileWidgets/kfileplaceeditdialog.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/KCoreUrlNavigator include/KF5/KIOGui/KEMailClientLauncherJob include/KF5/KIOGui/KIO/ApplicationLauncherJob include/KF5/KIOGui/KIO/CommandLauncherJob include/KF5/KIOGui/KIO/FavIconRequestJob include/KF5/KIOGui/KIO/KCoreUrlNavigator include/KF5/KIOGui/KIO/OpenUrlJob include/KF5/KIOGui/KIO/OpenWithHandlerInterface include/KF5/KIOGui/KIO/ThumbnailCreator include/KF5/KIOGui/KTerminalLauncherJob include/KF5/KIOGui/kcoreurlnavigator.h include/KF5/KIOGui/kemailclientlauncherjob.h include/KF5/KIOGui/kio/applicationlauncherjob.h include/KF5/KIOGui/kio/commandlauncherjob.h include/KF5/KIOGui/kio/faviconrequestjob.h include/KF5/KIOGui/kio/kcoreurlnavigator.h include/KF5/KIOGui/kio/openurljob.h include/KF5/KIOGui/kio/openwithhandlerinterface.h include/KF5/KIOGui/kio/thumbnailcreator.h include/KF5/KIOGui/kiogui_export.h include/KF5/KIOGui/kterminallauncherjob.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/DeleteOrTrashJob 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/RenameFileDialog include/KF5/KIOWidgets/KIO/SkipDialog include/KF5/KIOWidgets/KIO/SslUi include/KF5/KIOWidgets/KIO/ThumbCreator include/KF5/KIOWidgets/KIO/ThumbDevicePixelRatioDependentCreator include/KF5/KIOWidgets/KIO/ThumbSequenceCreator include/KF5/KIOWidgets/KIO/WidgetsAskUserActionHandler include/KF5/KIOWidgets/KOpenWithDialog include/KF5/KIOWidgets/KOverlayIconPlugin include/KF5/KIOWidgets/KPropertiesDialog include/KF5/KIOWidgets/KPropertiesDialogPlugin 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/deleteortrashjob.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/renamefiledialog.h include/KF5/KIOWidgets/kio/skipdialog.h include/KF5/KIOWidgets/kio/sslui.h include/KF5/KIOWidgets/kio/thumbcreator.h include/KF5/KIOWidgets/kio/thumbdevicepixelratiodependentcreator.h include/KF5/KIOWidgets/kio/thumbsequencecreator.h include/KF5/KIOWidgets/kio/widgetsaskuseractionhandler.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/kpropertiesdialogplugin.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 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/kioslave5 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%%/designer/kio5widgets.so %%QT_PLUGINDIR%%/kcm_proxy.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/kio_file.so %%QT_PLUGINDIR%%/kf5/kio/kio_ftp.so %%QT_PLUGINDIR%%/kf5/kio/kio_ghelp.so %%QT_PLUGINDIR%%/kf5/kio/kio_help.so %%QT_PLUGINDIR%%/kf5/kio/kio_http.so %%QT_PLUGINDIR%%/kf5/kio/kio_remote.so %%QT_PLUGINDIR%%/kf5/kio/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 %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_smb.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings_qwidgets/kcm_cookies.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings_qwidgets/kcm_netpref.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings_qwidgets/kcm_proxy.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings_qwidgets/kcm_webshortcuts.so -man/ca/man8/kcookiejar5.8.gz -man/ca@valencia/man8/kcookiejar5.8.gz -man/de/man8/kcookiejar5.8.gz -man/es/man8/kcookiejar5.8.gz -man/fr/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/kcm_trash.desktop 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/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/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/webdav/index.cache.bz2 share/doc/HTML/ca/kioslave5/webdav/index.docbook share/doc/HTML/ca@valencia/kcontrol5/cookies/index.cache.bz2 share/doc/HTML/ca@valencia/kcontrol5/cookies/index.docbook share/doc/HTML/ca@valencia/kcontrol5/netpref/index.cache.bz2 share/doc/HTML/ca@valencia/kcontrol5/netpref/index.docbook share/doc/HTML/ca@valencia/kcontrol5/proxy/index.cache.bz2 share/doc/HTML/ca@valencia/kcontrol5/proxy/index.docbook share/doc/HTML/ca@valencia/kcontrol5/smb/index.cache.bz2 share/doc/HTML/ca@valencia/kcontrol5/smb/index.docbook share/doc/HTML/ca@valencia/kcontrol5/trash/index.cache.bz2 share/doc/HTML/ca@valencia/kcontrol5/trash/index.docbook share/doc/HTML/ca@valencia/kcontrol5/webshortcuts/index.cache.bz2 share/doc/HTML/ca@valencia/kcontrol5/webshortcuts/index.docbook share/doc/HTML/ca@valencia/kioslave5/data/index.cache.bz2 share/doc/HTML/ca@valencia/kioslave5/data/index.docbook share/doc/HTML/ca@valencia/kioslave5/file/index.cache.bz2 share/doc/HTML/ca@valencia/kioslave5/file/index.docbook share/doc/HTML/ca@valencia/kioslave5/ftp/index.cache.bz2 share/doc/HTML/ca@valencia/kioslave5/ftp/index.docbook share/doc/HTML/ca@valencia/kioslave5/help/documentationnotfound/index.cache.bz2 share/doc/HTML/ca@valencia/kioslave5/help/documentationnotfound/index.docbook share/doc/HTML/ca@valencia/kioslave5/help/index.cache.bz2 share/doc/HTML/ca@valencia/kioslave5/help/index.docbook share/doc/HTML/ca@valencia/kioslave5/http/index.cache.bz2 share/doc/HTML/ca@valencia/kioslave5/http/index.docbook share/doc/HTML/ca@valencia/kioslave5/webdav/index.cache.bz2 share/doc/HTML/ca@valencia/kioslave5/webdav/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/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/webdav/index.cache.bz2 share/doc/HTML/de/kioslave5/webdav/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/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/webdav/index.cache.bz2 share/doc/HTML/en/kioslave5/webdav/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/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/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/webdav/index.cache.bz2 share/doc/HTML/et/kioslave5/webdav/index.docbook share/doc/HTML/fr/kcontrol5/cookies/index.cache.bz2 share/doc/HTML/fr/kcontrol5/cookies/index.docbook share/doc/HTML/fr/kcontrol5/netpref/index.cache.bz2 share/doc/HTML/fr/kcontrol5/netpref/index.docbook share/doc/HTML/fr/kcontrol5/proxy/index.cache.bz2 share/doc/HTML/fr/kcontrol5/proxy/index.docbook share/doc/HTML/fr/kcontrol5/smb/index.cache.bz2 share/doc/HTML/fr/kcontrol5/smb/index.docbook share/doc/HTML/fr/kcontrol5/trash/index.cache.bz2 share/doc/HTML/fr/kcontrol5/trash/index.docbook share/doc/HTML/fr/kcontrol5/webshortcuts/index.cache.bz2 share/doc/HTML/fr/kcontrol5/webshortcuts/index.docbook share/doc/HTML/fr/kioslave5/data/index.cache.bz2 share/doc/HTML/fr/kioslave5/data/index.docbook share/doc/HTML/fr/kioslave5/file/index.cache.bz2 share/doc/HTML/fr/kioslave5/file/index.docbook share/doc/HTML/fr/kioslave5/ftp/index.cache.bz2 share/doc/HTML/fr/kioslave5/ftp/index.docbook share/doc/HTML/fr/kioslave5/help/documentationnotfound/index.cache.bz2 share/doc/HTML/fr/kioslave5/help/documentationnotfound/index.docbook share/doc/HTML/fr/kioslave5/help/index.cache.bz2 share/doc/HTML/fr/kioslave5/help/index.docbook share/doc/HTML/fr/kioslave5/http/index.cache.bz2 share/doc/HTML/fr/kioslave5/http/index.docbook share/doc/HTML/fr/kioslave5/webdav/index.cache.bz2 share/doc/HTML/fr/kioslave5/webdav/index.docbook share/doc/HTML/gl/kioslave5/file/index.cache.bz2 share/doc/HTML/gl/kioslave5/file/index.docbook share/doc/HTML/gl/kioslave5/ftp/index.cache.bz2 share/doc/HTML/gl/kioslave5/ftp/index.docbook share/doc/HTML/gl/kioslave5/help/index.cache.bz2 share/doc/HTML/gl/kioslave5/help/index.docbook share/doc/HTML/gl/kioslave5/http/index.cache.bz2 share/doc/HTML/gl/kioslave5/http/index.docbook share/doc/HTML/gl/kioslave5/webdav/index.cache.bz2 share/doc/HTML/gl/kioslave5/webdav/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/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/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/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/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/webdav/index.cache.bz2 share/doc/HTML/nl/kioslave5/webdav/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/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/webdav/index.cache.bz2 share/doc/HTML/pt/kioslave5/webdav/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/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/webdav/index.cache.bz2 share/doc/HTML/pt_BR/kioslave5/webdav/index.docbook share/doc/HTML/ru/kcontrol5/cookies/index.cache.bz2 share/doc/HTML/ru/kcontrol5/cookies/index.docbook share/doc/HTML/ru/kcontrol5/netpref/index.cache.bz2 share/doc/HTML/ru/kcontrol5/netpref/index.docbook share/doc/HTML/ru/kcontrol5/proxy/index.cache.bz2 share/doc/HTML/ru/kcontrol5/proxy/index.docbook share/doc/HTML/ru/kcontrol5/smb/index.cache.bz2 share/doc/HTML/ru/kcontrol5/smb/index.docbook share/doc/HTML/ru/kcontrol5/trash/index.cache.bz2 share/doc/HTML/ru/kcontrol5/trash/index.docbook share/doc/HTML/ru/kcontrol5/webshortcuts/index.cache.bz2 share/doc/HTML/ru/kcontrol5/webshortcuts/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/documentationnotfound/index.cache.bz2 share/doc/HTML/ru/kioslave5/help/documentationnotfound/index.docbook share/doc/HTML/ru/kioslave5/help/index.cache.bz2 share/doc/HTML/ru/kioslave5/help/index.docbook share/doc/HTML/ru/kioslave5/http/index.cache.bz2 share/doc/HTML/ru/kioslave5/http/index.docbook share/doc/HTML/ru/kioslave5/webdav/index.cache.bz2 share/doc/HTML/ru/kioslave5/webdav/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/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/webdav/index.cache.bz2 share/doc/HTML/sr/kioslave5/webdav/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/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/webdav/index.cache.bz2 share/doc/HTML/sr@latin/kioslave5/webdav/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/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/webdav/index.cache.bz2 share/doc/HTML/sv/kioslave5/webdav/index.docbook share/doc/HTML/tr/kcontrol5/netpref/index.cache.bz2 share/doc/HTML/tr/kcontrol5/netpref/index.docbook share/doc/HTML/tr/kioslave5/file/index.cache.bz2 share/doc/HTML/tr/kioslave5/file/index.docbook share/doc/HTML/tr/kioslave5/ftp/index.cache.bz2 share/doc/HTML/tr/kioslave5/ftp/index.docbook share/doc/HTML/tr/kioslave5/help/index.cache.bz2 share/doc/HTML/tr/kioslave5/help/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/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/webdav/index.cache.bz2 share/doc/HTML/uk/kioslave5/webdav/index.docbook share/kconf_update/filepicker.upd share/kdevappwizard/templates/kioworker.tar.bz2 share/kf5/kcookiejar/domain_info share/knotifications5/proxyscout.notifyrc share/kservices5/cookies.desktop share/kservices5/http_cache_cleaner.desktop share/kservices5/kcmtrash.desktop share/kservices5/netpref.desktop share/kservices5/proxy.desktop 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/archwiki.desktop share/kservices5/searchproviders/backports.desktop share/kservices5/searchproviders/baidu.desktop share/kservices5/searchproviders/beolingus.desktop share/kservices5/searchproviders/bing.desktop share/kservices5/searchproviders/bug.desktop share/kservices5/searchproviders/call.desktop share/kservices5/searchproviders/cia.desktop share/kservices5/searchproviders/citeseer.desktop share/kservices5/searchproviders/cpan.desktop share/kservices5/searchproviders/cplusplus.desktop share/kservices5/searchproviders/cppreference.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/deepl.desktop share/kservices5/searchproviders/dictfr.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/facebook.desktop share/kservices5/searchproviders/feedster.desktop share/kservices5/searchproviders/flatpak.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/gitlab.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/identica_groups.desktop share/kservices5/searchproviders/identica_notices.desktop share/kservices5/searchproviders/identica_people.desktop share/kservices5/searchproviders/imdb.desktop share/kservices5/searchproviders/invent.desktop share/kservices5/searchproviders/invent_issues.desktop share/kservices5/searchproviders/invent_mr.desktop share/kservices5/searchproviders/invent_repo.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_store.desktop share/kservices5/searchproviders/kde_techbase.desktop share/kservices5/searchproviders/kde_userbase.desktop share/kservices5/searchproviders/kreddit.desktop share/kservices5/searchproviders/krita.desktop share/kservices5/searchproviders/learncpp.desktop share/kservices5/searchproviders/leo.desktop share/kservices5/searchproviders/linguee.desktop share/kservices5/searchproviders/magnatune.desktop share/kservices5/searchproviders/metacrawler.desktop share/kservices5/searchproviders/microsoft_cpp.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/opensuse.desktop share/kservices5/searchproviders/pgpkeys.desktop share/kservices5/searchproviders/php.desktop share/kservices5/searchproviders/protondb.desktop share/kservices5/searchproviders/python.desktop share/kservices5/searchproviders/qt5.desktop share/kservices5/searchproviders/qt6.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/reddit.desktop share/kservices5/searchproviders/rfc.desktop share/kservices5/searchproviders/rpmfind.desktop share/kservices5/searchproviders/ruby_application_archive.desktop share/kservices5/searchproviders/rust.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/ubuntu.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/wine.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/yandex.desktop share/kservices5/searchproviders/youtube.desktop share/kservices5/smb.desktop share/kservices5/webshortcuts.desktop share/kservicetypes5/kfileitemactionplugin.desktop share/kservicetypes5/konqpopupmenuplugin.desktop share/kservicetypes5/kpropertiesdialogplugin.desktop share/kservicetypes5/searchprovider.desktop share/locale/af/LC_MESSAGES/kio5.mo share/locale/ar/LC_MESSAGES/kio5.mo share/locale/ast/LC_MESSAGES/kio5.mo share/locale/az/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/id/LC_MESSAGES/kio5.mo share/locale/ie/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/ka/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/my/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/tok/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 +share/man/ca/man8/kcookiejar5.8.gz +share/man/ca@valencia/man8/kcookiejar5.8.gz +share/man/de/man8/kcookiejar5.8.gz +share/man/es/man8/kcookiejar5.8.gz +share/man/fr/man8/kcookiejar5.8.gz +share/man/it/man8/kcookiejar5.8.gz +share/man/man8/kcookiejar5.8.gz +share/man/nl/man8/kcookiejar5.8.gz +share/man/pt/man8/kcookiejar5.8.gz +share/man/pt_BR/man8/kcookiejar5.8.gz +share/man/sv/man8/kcookiejar5.8.gz +share/man/uk/man8/kcookiejar5.8.gz share/qlogging-categories5/kio.categories share/qlogging-categories5/kio.renamecategories diff --git a/devel/kf5-kpackage/Makefile b/devel/kf5-kpackage/Makefile index 01d74dbfd397..cb2314f98e8a 100644 --- a/devel/kf5-kpackage/Makefile +++ b/devel/kf5-kpackage/Makefile @@ -1,14 +1,15 @@ PORTNAME= kpackage DISTVERSION= ${KDE_FRAMEWORKS_VERSION} +PORTREVISION= 1 CATEGORIES= devel kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 library to load and install packages USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= archive coreaddons i18n \ doctools:build ecm:build USE_QT= core dbus \ buildtools:build qmake:build .include diff --git a/devel/kf5-kpackage/pkg-plist b/devel/kf5-kpackage/pkg-plist index 953909d77d88..c2d04f9533f7 100644 --- a/devel/kf5-kpackage/pkg-plist +++ b/devel/kf5-kpackage/pkg-plist @@ -1,90 +1,90 @@ 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/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/cmake/KF5Package/KF5PackageToolsTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5Package/KF5PackageToolsTargets.cmake lib/cmake/KF5Package/qrc.cmake lib/libKF5Package.so lib/libKF5Package.so.5 lib/libKF5Package.so.%%KDE_FRAMEWORKS_VERSION%% -man/ca/man1/kpackagetool5.1.gz -man/ca@valencia/man1/kpackagetool5.1.gz -man/de/man1/kpackagetool5.1.gz -man/es/man1/kpackagetool5.1.gz -man/fr/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/az/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/eo/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/id/LC_MESSAGES/libkpackage5.mo share/locale/it/LC_MESSAGES/libkpackage5.mo share/locale/ja/LC_MESSAGES/libkpackage5.mo share/locale/ka/LC_MESSAGES/libkpackage5.mo share/locale/ko/LC_MESSAGES/libkpackage5.mo share/locale/lt/LC_MESSAGES/libkpackage5.mo share/locale/ml/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/tg/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 +share/man/ca/man1/kpackagetool5.1.gz +share/man/ca@valencia/man1/kpackagetool5.1.gz +share/man/de/man1/kpackagetool5.1.gz +share/man/es/man1/kpackagetool5.1.gz +share/man/fr/man1/kpackagetool5.1.gz +share/man/it/man1/kpackagetool5.1.gz +share/man/man1/kpackagetool5.1.gz +share/man/nl/man1/kpackagetool5.1.gz +share/man/pt/man1/kpackagetool5.1.gz +share/man/pt_BR/man1/kpackagetool5.1.gz +share/man/sv/man1/kpackagetool5.1.gz +share/man/uk/man1/kpackagetool5.1.gz share/qlogging-categories5/kpackage.categories share/qlogging-categories5/kpackage.renamecategories diff --git a/devel/kf5-kservice/Makefile b/devel/kf5-kservice/Makefile index 31b71e51a734..fd261808ffc1 100644 --- a/devel/kf5-kservice/Makefile +++ b/devel/kf5-kservice/Makefile @@ -1,17 +1,18 @@ PORTNAME= kservice DISTVERSION= ${KDE_FRAMEWORKS_VERSION} +PORTREVISION= 1 CATEGORIES= devel kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 advanced plugin and service introspection USES= bison cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= config coreaddons dbusaddons i18n \ doctools:build ecm:build USE_QT= core dbus xml \ buildtools:build qmake:build # Make the applications.menu file not conflict with KDE4. CMAKE_ARGS= -DAPPLICATIONS_MENU_NAME:STRING="kf5-applications.menu" .include diff --git a/devel/kf5-kservice/pkg-plist b/devel/kf5-kservice/pkg-plist index fef3a3d5c421..1fcd2027a0c6 100644 --- a/devel/kf5-kservice/pkg-plist +++ b/devel/kf5-kservice/pkg-plist @@ -1,173 +1,173 @@ bin/kbuildsycoca5 etc/xdg/menus/kf5-applications.menu include/KF5/KService/KApplicationTrader include/KF5/KService/KAutostart include/KF5/KService/KDBusServiceStarter include/KF5/KService/KMimeTypeTrader include/KF5/KService/KPluginInfo include/KF5/KService/KPluginTrader include/KF5/KService/KService include/KF5/KService/KServiceAction include/KF5/KService/KServiceGroup include/KF5/KService/KServiceType include/KF5/KService/KServiceTypeProfile include/KF5/KService/KServiceTypeTrader include/KF5/KService/KSycoca include/KF5/KService/KSycocaEntry include/KF5/KService/KSycocaType include/KF5/KService/KToolInvocation include/KF5/KService/kapplicationtrader.h include/KF5/KService/kautostart.h include/KF5/KService/kdbusservicestarter.h include/KF5/KService/kmimetypetrader.h include/KF5/KService/kplugininfo.h include/KF5/KService/kplugintrader.h include/KF5/KService/kservice.h include/KF5/KService/kservice_export.h include/KF5/KService/kservice_version.h include/KF5/KService/kserviceaction.h include/KF5/KService/kservicegroup.h include/KF5/KService/kservicetype.h include/KF5/KService/kservicetypeprofile.h include/KF5/KService/kservicetypetrader.h include/KF5/KService/ksycoca.h include/KF5/KService/ksycocaentry.h include/KF5/KService/ksycocatype.h include/KF5/KService/ktoolinvocation.h lib/cmake/KF5Service/KF5ServiceConfig.cmake lib/cmake/KF5Service/KF5ServiceConfigVersion.cmake lib/cmake/KF5Service/KF5ServiceMacros.cmake lib/cmake/KF5Service/KF5ServiceTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5Service/KF5ServiceTargets.cmake lib/libKF5Service.so lib/libKF5Service.so.5 lib/libKF5Service.so.%%KDE_FRAMEWORKS_VERSION%% %%QT_MKSPECDIR%%/modules/qt_KService.pri -man/ca/man8/desktoptojson.8.gz -man/ca/man8/kbuildsycoca5.8.gz -man/ca@valencia/man8/desktoptojson.8.gz -man/ca@valencia/man8/kbuildsycoca5.8.gz -man/de/man8/desktoptojson.8.gz -man/de/man8/kbuildsycoca5.8.gz -man/es/man8/desktoptojson.8.gz -man/es/man8/kbuildsycoca5.8.gz -man/fr/man8/kbuildsycoca5.8.gz -man/id/man8/desktoptojson.8.gz -man/it/man8/desktoptojson.8.gz -man/it/man8/kbuildsycoca5.8.gz -man/man8/desktoptojson.8.gz -man/man8/kbuildsycoca5.8.gz -man/nl/man8/desktoptojson.8.gz -man/nl/man8/kbuildsycoca5.8.gz -man/pt/man8/desktoptojson.8.gz -man/pt/man8/kbuildsycoca5.8.gz -man/pt_BR/man8/desktoptojson.8.gz -man/pt_BR/man8/kbuildsycoca5.8.gz -man/sv/man8/desktoptojson.8.gz -man/sv/man8/kbuildsycoca5.8.gz -man/uk/man8/desktoptojson.8.gz -man/uk/man8/kbuildsycoca5.8.gz share/kservicetypes5/application.desktop share/kservicetypes5/kplugininfo.desktop share/locale/af/LC_MESSAGES/kservice5.mo share/locale/ar/LC_MESSAGES/kservice5.mo share/locale/as/LC_MESSAGES/kservice5.mo share/locale/az/LC_MESSAGES/kservice5.mo share/locale/be/LC_MESSAGES/kservice5.mo share/locale/be@latin/LC_MESSAGES/kservice5.mo share/locale/bg/LC_MESSAGES/kservice5.mo share/locale/bn/LC_MESSAGES/kservice5.mo share/locale/bn_IN/LC_MESSAGES/kservice5.mo share/locale/br/LC_MESSAGES/kservice5.mo share/locale/bs/LC_MESSAGES/kservice5.mo share/locale/ca/LC_MESSAGES/kservice5.mo share/locale/ca@valencia/LC_MESSAGES/kservice5.mo share/locale/crh/LC_MESSAGES/kservice5.mo share/locale/cs/LC_MESSAGES/kservice5.mo share/locale/csb/LC_MESSAGES/kservice5.mo share/locale/cy/LC_MESSAGES/kservice5.mo share/locale/da/LC_MESSAGES/kservice5.mo share/locale/de/LC_MESSAGES/kservice5.mo share/locale/el/LC_MESSAGES/kservice5.mo share/locale/en_GB/LC_MESSAGES/kservice5.mo share/locale/eo/LC_MESSAGES/kservice5.mo share/locale/es/LC_MESSAGES/kservice5.mo share/locale/et/LC_MESSAGES/kservice5.mo share/locale/eu/LC_MESSAGES/kservice5.mo share/locale/fa/LC_MESSAGES/kservice5.mo share/locale/fi/LC_MESSAGES/kservice5.mo share/locale/fr/LC_MESSAGES/kservice5.mo share/locale/fy/LC_MESSAGES/kservice5.mo share/locale/ga/LC_MESSAGES/kservice5.mo share/locale/gd/LC_MESSAGES/kservice5.mo share/locale/gl/LC_MESSAGES/kservice5.mo share/locale/gu/LC_MESSAGES/kservice5.mo share/locale/ha/LC_MESSAGES/kservice5.mo share/locale/he/LC_MESSAGES/kservice5.mo share/locale/hi/LC_MESSAGES/kservice5.mo share/locale/hne/LC_MESSAGES/kservice5.mo share/locale/hr/LC_MESSAGES/kservice5.mo share/locale/hsb/LC_MESSAGES/kservice5.mo share/locale/hu/LC_MESSAGES/kservice5.mo share/locale/hy/LC_MESSAGES/kservice5.mo share/locale/ia/LC_MESSAGES/kservice5.mo share/locale/id/LC_MESSAGES/kservice5.mo share/locale/is/LC_MESSAGES/kservice5.mo share/locale/it/LC_MESSAGES/kservice5.mo share/locale/ja/LC_MESSAGES/kservice5.mo share/locale/ka/LC_MESSAGES/kservice5.mo share/locale/kk/LC_MESSAGES/kservice5.mo share/locale/km/LC_MESSAGES/kservice5.mo share/locale/kn/LC_MESSAGES/kservice5.mo share/locale/ko/LC_MESSAGES/kservice5.mo share/locale/ku/LC_MESSAGES/kservice5.mo share/locale/lb/LC_MESSAGES/kservice5.mo share/locale/lt/LC_MESSAGES/kservice5.mo share/locale/lv/LC_MESSAGES/kservice5.mo share/locale/mai/LC_MESSAGES/kservice5.mo share/locale/mk/LC_MESSAGES/kservice5.mo share/locale/ml/LC_MESSAGES/kservice5.mo share/locale/mr/LC_MESSAGES/kservice5.mo share/locale/ms/LC_MESSAGES/kservice5.mo share/locale/nb/LC_MESSAGES/kservice5.mo share/locale/nds/LC_MESSAGES/kservice5.mo share/locale/ne/LC_MESSAGES/kservice5.mo share/locale/nl/LC_MESSAGES/kservice5.mo share/locale/nn/LC_MESSAGES/kservice5.mo share/locale/oc/LC_MESSAGES/kservice5.mo share/locale/or/LC_MESSAGES/kservice5.mo share/locale/pa/LC_MESSAGES/kservice5.mo share/locale/pl/LC_MESSAGES/kservice5.mo share/locale/ps/LC_MESSAGES/kservice5.mo share/locale/pt/LC_MESSAGES/kservice5.mo share/locale/pt_BR/LC_MESSAGES/kservice5.mo share/locale/ro/LC_MESSAGES/kservice5.mo share/locale/ru/LC_MESSAGES/kservice5.mo share/locale/se/LC_MESSAGES/kservice5.mo share/locale/si/LC_MESSAGES/kservice5.mo share/locale/sk/LC_MESSAGES/kservice5.mo share/locale/sl/LC_MESSAGES/kservice5.mo share/locale/sq/LC_MESSAGES/kservice5.mo share/locale/sr/LC_MESSAGES/kservice5.mo share/locale/sr@ijekavian/LC_MESSAGES/kservice5.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kservice5.mo share/locale/sr@latin/LC_MESSAGES/kservice5.mo share/locale/sv/LC_MESSAGES/kservice5.mo share/locale/ta/LC_MESSAGES/kservice5.mo share/locale/te/LC_MESSAGES/kservice5.mo share/locale/tg/LC_MESSAGES/kservice5.mo share/locale/th/LC_MESSAGES/kservice5.mo share/locale/tr/LC_MESSAGES/kservice5.mo share/locale/tt/LC_MESSAGES/kservice5.mo share/locale/ug/LC_MESSAGES/kservice5.mo share/locale/uk/LC_MESSAGES/kservice5.mo share/locale/uz/LC_MESSAGES/kservice5.mo share/locale/uz@cyrillic/LC_MESSAGES/kservice5.mo share/locale/vi/LC_MESSAGES/kservice5.mo share/locale/wa/LC_MESSAGES/kservice5.mo share/locale/xh/LC_MESSAGES/kservice5.mo share/locale/zh_CN/LC_MESSAGES/kservice5.mo share/locale/zh_HK/LC_MESSAGES/kservice5.mo share/locale/zh_TW/LC_MESSAGES/kservice5.mo +share/man/ca/man8/desktoptojson.8.gz +share/man/ca/man8/kbuildsycoca5.8.gz +share/man/ca@valencia/man8/desktoptojson.8.gz +share/man/ca@valencia/man8/kbuildsycoca5.8.gz +share/man/de/man8/desktoptojson.8.gz +share/man/de/man8/kbuildsycoca5.8.gz +share/man/es/man8/desktoptojson.8.gz +share/man/es/man8/kbuildsycoca5.8.gz +share/man/fr/man8/kbuildsycoca5.8.gz +share/man/id/man8/desktoptojson.8.gz +share/man/it/man8/desktoptojson.8.gz +share/man/it/man8/kbuildsycoca5.8.gz +share/man/man8/desktoptojson.8.gz +share/man/man8/kbuildsycoca5.8.gz +share/man/nl/man8/desktoptojson.8.gz +share/man/nl/man8/kbuildsycoca5.8.gz +share/man/pt/man8/desktoptojson.8.gz +share/man/pt/man8/kbuildsycoca5.8.gz +share/man/pt_BR/man8/desktoptojson.8.gz +share/man/pt_BR/man8/kbuildsycoca5.8.gz +share/man/sv/man8/desktoptojson.8.gz +share/man/sv/man8/kbuildsycoca5.8.gz +share/man/uk/man8/desktoptojson.8.gz +share/man/uk/man8/kbuildsycoca5.8.gz share/qlogging-categories5/kservice.categories share/qlogging-categories5/kservice.renamecategories diff --git a/devel/kf6-extra-cmake-modules/Makefile b/devel/kf6-extra-cmake-modules/Makefile index 5236b0a7ab31..174a83963f21 100644 --- a/devel/kf6-extra-cmake-modules/Makefile +++ b/devel/kf6-extra-cmake-modules/Makefile @@ -1,35 +1,36 @@ PORTNAME= extra-cmake-modules DISTVERSION= ${KDE_FRAMEWORKS_VERSION} +PORTREVISION= 1 CATEGORIES= devel kde kde-frameworks COMMENT= Extra modules and scripts for CMake MAINTAINER= kde@FreeBSD.org USES= cmake kde:6 qt:6 shebangfix tar:xz \ python:build USE_QT= base INSTALL_TARGET= install SHEBANG_FILES= kde-modules/kde-git-commit-hooks/json-schema.py PORTDOCS= html/* ## options OPTIONS_DEFINE= DOCS HELP MANPAGES OPTIONS_DEFAULT= HELP MANPAGES OPTIONS_SUB= yes HELP_DESC= Generate QtHelp documentation for installed modules SPHINX_DEP= sphinx-build:textproc/py-sphinx DOCS_BUILD_DEPENDS= ${SPHINX_DEP} HELP_BUILD_DEPENDS= ${SPHINX_DEP} MANPAGES_BUILD_DEPENDS= ${SPHINX_DEP} DOCS_CMAKE_BOOL= BUILD_HTML_DOCS HELP_CMAKE_BOOL= BUILD_QTHELP_DOCS MANPAGES_CMAKE_BOOL= BUILD_MAN_DOCS CONFIGURE_ENV+= CMAKE_PROGRAM_PATH="${LOCALBASE}/bin:${LOCALBASE}/lib/qt5/bin" INSTALL_TARGET= install # does not have install/strip target .include diff --git a/devel/kf6-extra-cmake-modules/pkg-plist b/devel/kf6-extra-cmake-modules/pkg-plist index d213c66a5e09..72ea2e4d99d1 100644 --- a/devel/kf6-extra-cmake-modules/pkg-plist +++ b/devel/kf6-extra-cmake-modules/pkg-plist @@ -1,333 +1,333 @@ -man/man7/ecm-developer.7.gz -man/man7/ecm-find-modules.7.gz -man/man7/ecm-kde-modules.7.gz -man/man7/ecm-modules.7.gz -man/man7/ecm-toolchains.7.gz -man/man7/ecm.7.gz share/ECM/cmake/ECMConfig.cmake share/ECM/cmake/ECMConfigVersion.cmake share/ECM/find-modules/ECMFindModuleHelpersStub.cmake share/ECM/find-modules/Find7Zip.cmake share/ECM/find-modules/Find7z.cmake share/ECM/find-modules/FindCanberra.cmake share/ECM/find-modules/FindEGL.cmake share/ECM/find-modules/FindGLIB2.cmake share/ECM/find-modules/FindGperf.cmake share/ECM/find-modules/FindGradle.cmake share/ECM/find-modules/FindIcoTool.cmake share/ECM/find-modules/FindInotify.cmake share/ECM/find-modules/FindIsoCodes.cmake share/ECM/find-modules/FindKF5.cmake share/ECM/find-modules/FindKF6.cmake share/ECM/find-modules/FindLibExiv2.cmake share/ECM/find-modules/FindLibGit2.cmake share/ECM/find-modules/FindLibMount.cmake share/ECM/find-modules/FindLibcap.cmake share/ECM/find-modules/FindOpenEXR.cmake share/ECM/find-modules/FindPhoneNumber.cmake share/ECM/find-modules/FindPoppler.cmake share/ECM/find-modules/FindPulseAudio.cmake share/ECM/find-modules/FindPythonModuleGeneration.cmake share/ECM/find-modules/FindQHelpGenerator.cmake share/ECM/find-modules/FindQtWaylandScanner.cmake share/ECM/find-modules/FindReuseTool.cmake share/ECM/find-modules/FindSasl2.cmake share/ECM/find-modules/FindSeccomp.cmake share/ECM/find-modules/FindSharedMimeInfo.cmake share/ECM/find-modules/FindTaglib.cmake share/ECM/find-modules/FindUDev.cmake share/ECM/find-modules/FindWayland.cmake share/ECM/find-modules/FindWaylandProtocols.cmake share/ECM/find-modules/FindWaylandScanner.cmake share/ECM/find-modules/FindX11_XCB.cmake share/ECM/find-modules/FindXCB.cmake share/ECM/find-modules/Findepoxy.cmake share/ECM/find-modules/Findgzip.cmake share/ECM/find-modules/GeneratePythonBindingUmbrellaModule.cmake share/ECM/find-modules/Qt5Ruleset.py share/ECM/find-modules/local.properties.cmake share/ECM/find-modules/rules_engine.py share/ECM/find-modules/run-sip.py share/ECM/find-modules/settings.gradle.cmake share/ECM/find-modules/sip_generator.py share/ECM/kde-modules/KDECMakeSettings.cmake share/ECM/kde-modules/KDEClangFormat.cmake share/ECM/kde-modules/KDECompilerSettings.cmake share/ECM/kde-modules/KDEFrameworkCompilerLegacySettings.cmake share/ECM/kde-modules/KDEFrameworkCompilerSettings.cmake share/ECM/kde-modules/KDEGitCommitHooks.cmake share/ECM/kde-modules/KDEInstallDirs.cmake share/ECM/kde-modules/KDEInstallDirs5.cmake share/ECM/kde-modules/KDEInstallDirs6.cmake share/ECM/kde-modules/KDEInstallDirsCommon.cmake share/ECM/kde-modules/KDEMetaInfoPlatformCheck.cmake share/ECM/kde-modules/KDEPackageAppTemplates.cmake share/ECM/kde-modules/KDESetupPrefixScript.cmake share/ECM/kde-modules/appstreamtest.cmake share/ECM/kde-modules/clang-format.cmake share/ECM/kde-modules/kde-git-commit-hooks/clang-format.sh share/ECM/kde-modules/kde-git-commit-hooks/combined.schema.json.in share/ECM/kde-modules/kde-git-commit-hooks/combined.schema.json.in.license share/ECM/kde-modules/kde-git-commit-hooks/json-schema.py share/ECM/kde-modules/kde-git-commit-hooks/pre-commit.in share/ECM/kde-modules/prefix.sh.cmake share/ECM/kde-modules/prefix.sh.fish.cmake share/ECM/modules/CheckAtomic.cmake share/ECM/modules/ECMAddAndroidApk.cmake share/ECM/modules/ECMAddAppIcon.cmake share/ECM/modules/ECMAddQch.cmake share/ECM/modules/ECMAddQtDesignerPlugin.cmake share/ECM/modules/ECMAddTests.cmake share/ECM/modules/ECMCheckOutboundLicense.cmake share/ECM/modules/ECMConfiguredInstall.cmake share/ECM/modules/ECMCoverageOption.cmake share/ECM/modules/ECMCreateQmFromPoFiles.cmake share/ECM/modules/ECMDeprecationSettings.cmake share/ECM/modules/ECMEnableSanitizers.cmake share/ECM/modules/ECMFeatureSummary.cmake share/ECM/modules/ECMFindModuleHelpers.cmake share/ECM/modules/ECMFindQmlModule.cmake share/ECM/modules/ECMFindQmlModule.cmake.in share/ECM/modules/ECMGenerateDBusServiceFile.cmake share/ECM/modules/ECMGenerateExportHeader.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/ECMQchDoxygen.config.in share/ECM/modules/ECMQchDoxygenLayout.xml share/ECM/modules/ECMQmLoader.cpp.in share/ECM/modules/ECMQmlModule.cmake share/ECM/modules/ECMQmlModule.cpp.in share/ECM/modules/ECMQmlModule.cpp.in.license share/ECM/modules/ECMQmlModule.h.in share/ECM/modules/ECMQmlModule.h.in.license share/ECM/modules/ECMQmlModule5.cmake share/ECM/modules/ECMQmlModule6.cmake 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/ECMQueryQt.cmake share/ECM/modules/ECMSetupQtPluginMacroNames.cmake share/ECM/modules/ECMSetupVersion.cmake share/ECM/modules/ECMSourceVersionControl.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/QtVersionOption.cmake share/ECM/modules/check-outbound-license.py share/ECM/modules/ecm_uninstall.cmake.in share/ECM/test-modules/test_execute_and_compare.cmake share/ECM/toolchain/Android.cmake share/ECM/toolchain/ECMAndroidDeployQt5.cmake share/ECM/toolchain/deployment-file-qt514.json.in share/ECM/toolchain/deployment-file-qt6.json.in share/ECM/toolchain/deployment-file-qt6.json.in.license share/ECM/toolchain/deployment-file.json.in share/ECM/toolchain/generate-fastlane-metadata.py share/ECM/toolchain/hasMainSymbol.cmake share/ECM/toolchain/specifydependencies.cmake share/doc/ECM/html/_sources/find-module/Find7Zip.rst.txt share/doc/ECM/html/_sources/find-module/Find7z.rst.txt share/doc/ECM/html/_sources/find-module/FindCanberra.rst.txt share/doc/ECM/html/_sources/find-module/FindEGL.rst.txt share/doc/ECM/html/_sources/find-module/FindGLIB2.rst.txt share/doc/ECM/html/_sources/find-module/FindGperf.rst.txt share/doc/ECM/html/_sources/find-module/FindGradle.rst.txt share/doc/ECM/html/_sources/find-module/FindIcoTool.rst.txt share/doc/ECM/html/_sources/find-module/FindInotify.rst.txt share/doc/ECM/html/_sources/find-module/FindIsoCodes.rst.txt share/doc/ECM/html/_sources/find-module/FindKF5.rst.txt share/doc/ECM/html/_sources/find-module/FindLibExiv2.rst.txt share/doc/ECM/html/_sources/find-module/FindLibGit2.rst.txt share/doc/ECM/html/_sources/find-module/FindLibMount.rst.txt share/doc/ECM/html/_sources/find-module/FindLibcap.rst.txt share/doc/ECM/html/_sources/find-module/FindOpenEXR.rst.txt share/doc/ECM/html/_sources/find-module/FindPhoneNumber.rst.txt share/doc/ECM/html/_sources/find-module/FindPoppler.rst.txt share/doc/ECM/html/_sources/find-module/FindPulseAudio.rst.txt share/doc/ECM/html/_sources/find-module/FindQtWaylandScanner.rst.txt share/doc/ECM/html/_sources/find-module/FindSasl2.rst.txt share/doc/ECM/html/_sources/find-module/FindSeccomp.rst.txt share/doc/ECM/html/_sources/find-module/FindSharedMimeInfo.rst.txt share/doc/ECM/html/_sources/find-module/FindTaglib.rst.txt share/doc/ECM/html/_sources/find-module/FindUDev.rst.txt share/doc/ECM/html/_sources/find-module/FindWayland.rst.txt share/doc/ECM/html/_sources/find-module/FindWaylandProtocols.rst.txt share/doc/ECM/html/_sources/find-module/FindWaylandScanner.rst.txt share/doc/ECM/html/_sources/find-module/FindX11_XCB.rst.txt share/doc/ECM/html/_sources/find-module/FindXCB.rst.txt share/doc/ECM/html/_sources/find-module/Findepoxy.rst.txt share/doc/ECM/html/_sources/find-module/Findgzip.rst.txt share/doc/ECM/html/_sources/index.rst.txt share/doc/ECM/html/_sources/kde-module/KDECMakeSettings.rst.txt share/doc/ECM/html/_sources/kde-module/KDEClangFormat.rst.txt share/doc/ECM/html/_sources/kde-module/KDECompilerSettings.rst.txt share/doc/ECM/html/_sources/kde-module/KDEFrameworkCompilerSettings.rst.txt share/doc/ECM/html/_sources/kde-module/KDEGitCommitHooks.rst.txt share/doc/ECM/html/_sources/kde-module/KDEInstallDirs.rst.txt share/doc/ECM/html/_sources/kde-module/KDEInstallDirs5.rst.txt share/doc/ECM/html/_sources/kde-module/KDEInstallDirs6.rst.txt share/doc/ECM/html/_sources/kde-module/KDEMetaInfoPlatformCheck.rst.txt share/doc/ECM/html/_sources/kde-module/KDEPackageAppTemplates.rst.txt share/doc/ECM/html/_sources/manual/ecm-developer.7.rst.txt share/doc/ECM/html/_sources/manual/ecm-find-modules.7.rst.txt share/doc/ECM/html/_sources/manual/ecm-kde-modules.7.rst.txt share/doc/ECM/html/_sources/manual/ecm-modules.7.rst.txt share/doc/ECM/html/_sources/manual/ecm-toolchains.7.rst.txt share/doc/ECM/html/_sources/manual/ecm.7.rst.txt share/doc/ECM/html/_sources/module/CheckAtomic.rst.txt share/doc/ECM/html/_sources/module/ECMAddAndroidApk.rst.txt share/doc/ECM/html/_sources/module/ECMAddAppIcon.rst.txt share/doc/ECM/html/_sources/module/ECMAddQch.rst.txt share/doc/ECM/html/_sources/module/ECMAddQtDesignerPlugin.rst.txt share/doc/ECM/html/_sources/module/ECMAddTests.rst.txt share/doc/ECM/html/_sources/module/ECMCheckOutboundLicense.rst.txt share/doc/ECM/html/_sources/module/ECMConfiguredInstall.rst.txt share/doc/ECM/html/_sources/module/ECMCoverageOption.rst.txt share/doc/ECM/html/_sources/module/ECMCreateQmFromPoFiles.rst.txt share/doc/ECM/html/_sources/module/ECMDeprecationSettings.rst.txt share/doc/ECM/html/_sources/module/ECMEnableSanitizers.rst.txt share/doc/ECM/html/_sources/module/ECMFindModuleHelpers.rst.txt share/doc/ECM/html/_sources/module/ECMFindQmlModule.rst.txt share/doc/ECM/html/_sources/module/ECMGenerateDBusServiceFile.rst.txt share/doc/ECM/html/_sources/module/ECMGenerateExportHeader.rst.txt share/doc/ECM/html/_sources/module/ECMGenerateHeaders.rst.txt share/doc/ECM/html/_sources/module/ECMGeneratePkgConfigFile.rst.txt share/doc/ECM/html/_sources/module/ECMGeneratePriFile.rst.txt share/doc/ECM/html/_sources/module/ECMGenerateQmlTypes.rst.txt share/doc/ECM/html/_sources/module/ECMInstallIcons.rst.txt share/doc/ECM/html/_sources/module/ECMMarkAsTest.rst.txt share/doc/ECM/html/_sources/module/ECMMarkNonGuiExecutable.rst.txt share/doc/ECM/html/_sources/module/ECMOptionalAddSubdirectory.rst.txt share/doc/ECM/html/_sources/module/ECMPackageConfigHelpers.rst.txt share/doc/ECM/html/_sources/module/ECMPoQmTools.rst.txt share/doc/ECM/html/_sources/module/ECMQmlModule.rst.txt share/doc/ECM/html/_sources/module/ECMQtDeclareLoggingCategory.rst.txt share/doc/ECM/html/_sources/module/ECMQueryQt.rst.txt share/doc/ECM/html/_sources/module/ECMSetupQtPluginMacroNames.rst.txt share/doc/ECM/html/_sources/module/ECMSetupVersion.rst.txt share/doc/ECM/html/_sources/module/ECMSourceVersionControl.rst.txt share/doc/ECM/html/_sources/module/ECMUninstallTarget.rst.txt share/doc/ECM/html/_sources/module/ECMUseFindModules.rst.txt share/doc/ECM/html/_sources/module/ECMWinResolveSymlinks.rst.txt share/doc/ECM/html/_sources/module/QtVersionOption.rst.txt share/doc/ECM/html/_sources/toolchain/Android.rst.txt share/doc/ECM/html/_static/_sphinx_javascript_frameworks_compat.js share/doc/ECM/html/_static/basic.css share/doc/ECM/html/_static/classic.css share/doc/ECM/html/_static/default.css share/doc/ECM/html/_static/doctools.js share/doc/ECM/html/_static/documentation_options.js share/doc/ECM/html/_static/ecm.css share/doc/ECM/html/_static/file.png share/doc/ECM/html/_static/jquery-3.6.0.js share/doc/ECM/html/_static/jquery.js share/doc/ECM/html/_static/kde-favicon.ico share/doc/ECM/html/_static/language_data.js share/doc/ECM/html/_static/minus.png share/doc/ECM/html/_static/plus.png share/doc/ECM/html/_static/pygments.css share/doc/ECM/html/_static/searchtools.js share/doc/ECM/html/_static/sidebar.js share/doc/ECM/html/_static/sphinx_highlight.js share/doc/ECM/html/_static/underscore-1.13.1.js share/doc/ECM/html/_static/underscore.js share/doc/ECM/html/find-module/Find7Zip.html share/doc/ECM/html/find-module/Find7z.html share/doc/ECM/html/find-module/FindCanberra.html share/doc/ECM/html/find-module/FindEGL.html share/doc/ECM/html/find-module/FindGLIB2.html share/doc/ECM/html/find-module/FindGperf.html share/doc/ECM/html/find-module/FindGradle.html share/doc/ECM/html/find-module/FindIcoTool.html share/doc/ECM/html/find-module/FindInotify.html share/doc/ECM/html/find-module/FindIsoCodes.html share/doc/ECM/html/find-module/FindKF5.html share/doc/ECM/html/find-module/FindLibExiv2.html share/doc/ECM/html/find-module/FindLibGit2.html share/doc/ECM/html/find-module/FindLibMount.html share/doc/ECM/html/find-module/FindLibcap.html share/doc/ECM/html/find-module/FindOpenEXR.html share/doc/ECM/html/find-module/FindPhoneNumber.html share/doc/ECM/html/find-module/FindPoppler.html share/doc/ECM/html/find-module/FindPulseAudio.html share/doc/ECM/html/find-module/FindQtWaylandScanner.html share/doc/ECM/html/find-module/FindSasl2.html share/doc/ECM/html/find-module/FindSeccomp.html share/doc/ECM/html/find-module/FindSharedMimeInfo.html share/doc/ECM/html/find-module/FindTaglib.html share/doc/ECM/html/find-module/FindUDev.html share/doc/ECM/html/find-module/FindWayland.html share/doc/ECM/html/find-module/FindWaylandProtocols.html share/doc/ECM/html/find-module/FindWaylandScanner.html share/doc/ECM/html/find-module/FindX11_XCB.html share/doc/ECM/html/find-module/FindXCB.html share/doc/ECM/html/find-module/Findepoxy.html share/doc/ECM/html/find-module/Findgzip.html share/doc/ECM/html/genindex.html share/doc/ECM/html/index.html share/doc/ECM/html/kde-module/KDECMakeSettings.html share/doc/ECM/html/kde-module/KDEClangFormat.html share/doc/ECM/html/kde-module/KDECompilerSettings.html share/doc/ECM/html/kde-module/KDEFrameworkCompilerSettings.html share/doc/ECM/html/kde-module/KDEGitCommitHooks.html share/doc/ECM/html/kde-module/KDEInstallDirs.html share/doc/ECM/html/kde-module/KDEInstallDirs5.html share/doc/ECM/html/kde-module/KDEInstallDirs6.html share/doc/ECM/html/kde-module/KDEMetaInfoPlatformCheck.html share/doc/ECM/html/kde-module/KDEPackageAppTemplates.html share/doc/ECM/html/manual/ecm-developer.7.html share/doc/ECM/html/manual/ecm-find-modules.7.html share/doc/ECM/html/manual/ecm-kde-modules.7.html share/doc/ECM/html/manual/ecm-modules.7.html share/doc/ECM/html/manual/ecm-toolchains.7.html share/doc/ECM/html/manual/ecm.7.html share/doc/ECM/html/module/CheckAtomic.html share/doc/ECM/html/module/ECMAddAndroidApk.html share/doc/ECM/html/module/ECMAddAppIcon.html share/doc/ECM/html/module/ECMAddQch.html share/doc/ECM/html/module/ECMAddQtDesignerPlugin.html share/doc/ECM/html/module/ECMAddTests.html share/doc/ECM/html/module/ECMCheckOutboundLicense.html share/doc/ECM/html/module/ECMConfiguredInstall.html share/doc/ECM/html/module/ECMCoverageOption.html share/doc/ECM/html/module/ECMCreateQmFromPoFiles.html share/doc/ECM/html/module/ECMDeprecationSettings.html share/doc/ECM/html/module/ECMEnableSanitizers.html share/doc/ECM/html/module/ECMFindModuleHelpers.html share/doc/ECM/html/module/ECMFindQmlModule.html share/doc/ECM/html/module/ECMGenerateDBusServiceFile.html share/doc/ECM/html/module/ECMGenerateExportHeader.html share/doc/ECM/html/module/ECMGenerateHeaders.html share/doc/ECM/html/module/ECMGeneratePkgConfigFile.html share/doc/ECM/html/module/ECMGeneratePriFile.html share/doc/ECM/html/module/ECMGenerateQmlTypes.html share/doc/ECM/html/module/ECMInstallIcons.html share/doc/ECM/html/module/ECMMarkAsTest.html share/doc/ECM/html/module/ECMMarkNonGuiExecutable.html share/doc/ECM/html/module/ECMOptionalAddSubdirectory.html share/doc/ECM/html/module/ECMPackageConfigHelpers.html share/doc/ECM/html/module/ECMPoQmTools.html share/doc/ECM/html/module/ECMQmlModule.html share/doc/ECM/html/module/ECMQtDeclareLoggingCategory.html share/doc/ECM/html/module/ECMQueryQt.html share/doc/ECM/html/module/ECMSetupQtPluginMacroNames.html share/doc/ECM/html/module/ECMSetupVersion.html share/doc/ECM/html/module/ECMSourceVersionControl.html share/doc/ECM/html/module/ECMUninstallTarget.html share/doc/ECM/html/module/ECMUseFindModules.html share/doc/ECM/html/module/ECMWinResolveSymlinks.html share/doc/ECM/html/module/QtVersionOption.html share/doc/ECM/html/search.html share/doc/ECM/html/searchindex.js share/doc/ECM/html/toolchain/Android.html +share/man/man7/ecm-developer.7.gz +share/man/man7/ecm-find-modules.7.gz +share/man/man7/ecm-kde-modules.7.gz +share/man/man7/ecm-modules.7.gz +share/man/man7/ecm-toolchains.7.gz +share/man/man7/ecm.7.gz diff --git a/devel/kf6-kdoctools/Makefile b/devel/kf6-kdoctools/Makefile index 57bdb2eb47a0..7abd5cbebd4c 100644 --- a/devel/kf6-kdoctools/Makefile +++ b/devel/kf6-kdoctools/Makefile @@ -1,20 +1,21 @@ PORTNAME= kdoctools DISTVERSION= ${KDE_FRAMEWORKS_VERSION} +PORTREVISION= 1 CATEGORIES= devel kde kde-frameworks COMMENT= Create documentation from DocBook MAINTAINER= kde@FreeBSD.org 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 gettext gnome kde:6 qt:6 tar:xz USE_GNOME= libxml2 libxslt USE_KDE= archive i18n \ ecm:build USE_QT= base .include diff --git a/devel/kf6-kdoctools/pkg-plist b/devel/kf6-kdoctools/pkg-plist index 340042f59ad3..48529618e0d7 100644 --- a/devel/kf6-kdoctools/pkg-plist +++ b/devel/kf6-kdoctools/pkg-plist @@ -1,1150 +1,1150 @@ bin/checkXML6 bin/meinproc6 include/KF6/KDocTools/docbookxslt.h include/KF6/KDocTools/kdoctools_export.h include/KF6/KDocTools/kdoctools_version.h lib/cmake/KF6DocTools/KF6DocToolsConfig.cmake lib/cmake/KF6DocTools/KF6DocToolsConfigVersion.cmake lib/cmake/KF6DocTools/KF6DocToolsMacros.cmake lib/cmake/KF6DocTools/KF6DocToolsTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF6DocTools/KF6DocToolsTargets.cmake lib/cmake/KF6DocTools/KF6DocToolsToolsTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF6DocTools/KF6DocToolsToolsTargets.cmake lib/libKF6DocTools.so lib/libKF6DocTools.so.%%KDE_FRAMEWORKS_VERSION%% lib/libKF6DocTools.so.6 -man/ca/man1/checkXML6.1.gz -man/ca/man1/meinproc6.1.gz -man/ca/man7/kf6options.7.gz -man/ca/man7/qt6options.7.gz -man/es/man1/checkXML6.1.gz -man/es/man1/meinproc6.1.gz -man/es/man7/qt6options.7.gz -man/it/man1/checkXML6.1.gz -man/it/man1/meinproc6.1.gz -man/it/man7/kf6options.7.gz -man/it/man7/qt6options.7.gz -man/man1/checkXML6.1.gz -man/man1/meinproc6.1.gz -man/man7/kf6options.7.gz -man/man7/qt6options.7.gz -man/nl/man1/checkXML6.1.gz -man/nl/man1/meinproc6.1.gz -man/nl/man7/kf6options.7.gz -man/nl/man7/qt6options.7.gz -man/tr/man1/checkXML6.1.gz -man/tr/man1/meinproc6.1.gz -man/tr/man7/kf6options.7.gz -man/tr/man7/qt6options.7.gz -man/uk/man1/checkXML6.1.gz -man/uk/man1/meinproc6.1.gz -man/uk/man7/kf6options.7.gz -man/uk/man7/qt6options.7.gz share/doc/HTML/af/kdoctools6-common/kde-localised.css share/doc/HTML/ca/kdoctools6-common/kde-localised.css share/doc/HTML/cs/kdoctools6-common/kde-localised.css share/doc/HTML/da/kdoctools6-common/kde-localised.css share/doc/HTML/de/kdoctools6-common/fdl-translated.html share/doc/HTML/de/kdoctools6-common/gpl-translated.html share/doc/HTML/de/kdoctools6-common/kde-localised.css share/doc/HTML/de/kdoctools6-common/lgpl-translated.html share/doc/HTML/el/kdoctools6-common/kde-localised.css share/doc/HTML/en/kdoctools6-common/artistic-license.html share/doc/HTML/en/kdoctools6-common/block_title_bottom.png share/doc/HTML/en/kdoctools6-common/block_title_mid.png share/doc/HTML/en/kdoctools6-common/block_title_top.png share/doc/HTML/en/kdoctools6-common/bsd-license.html share/doc/HTML/en/kdoctools6-common/ccbysa4-license.html share/doc/HTML/en/kdoctools6-common/fdl-license.html share/doc/HTML/en/kdoctools6-common/fdl-notice.html share/doc/HTML/en/kdoctools6-common/fdl-translated.html share/doc/HTML/en/kdoctools6-common/gpl-license.html share/doc/HTML/en/kdoctools6-common/gpl-translated.html share/doc/HTML/en/kdoctools6-common/kde-default.css share/doc/HTML/en/kdoctools6-common/kde-docs.css share/doc/HTML/en/kdoctools6-common/kde_logo.png share/doc/HTML/en/kdoctools6-common/kde_logo_bg.png share/doc/HTML/en/kdoctools6-common/kmenu.png share/doc/HTML/en/kdoctools6-common/lgpl-license.html share/doc/HTML/en/kdoctools6-common/lgpl-translated.html share/doc/HTML/en/kdoctools6-common/part_of_the_kde_family_horizontal_190.png share/doc/HTML/en/kdoctools6-common/qpl-license.html share/doc/HTML/en/kdoctools6-common/top-kde.jpg share/doc/HTML/en/kdoctools6-common/top-left.jpg share/doc/HTML/en/kdoctools6-common/top-right.jpg share/doc/HTML/en/kdoctools6-common/top.jpg share/doc/HTML/en/kdoctools6-common/x11-license.html share/doc/HTML/en/kdoctools6-common/xml.dcl share/doc/HTML/eo/kdoctools6-common/kde-localised.css share/doc/HTML/es/kdoctools6-common/kde-localised.css share/doc/HTML/et/kdoctools6-common/kde-localised.css share/doc/HTML/fr/kdoctools6-common/gpl-translated.html share/doc/HTML/fr/kdoctools6-common/kde-localised.css share/doc/HTML/gl/kdoctools6-common/kde-localised.css share/doc/HTML/he/kdoctools6-common/kde-localised.css share/doc/HTML/hu/kdoctools6-common/fdl-translated.html share/doc/HTML/hu/kdoctools6-common/gpl-translated.html share/doc/HTML/hu/kdoctools6-common/kde-localised.css share/doc/HTML/hu/kdoctools6-common/lgpl-translated.html share/doc/HTML/it/kdoctools6-common/gpl-translated.html share/doc/HTML/it/kdoctools6-common/kde-localised.css share/doc/HTML/ja/kdoctools6-common/kde-localised.css share/doc/HTML/ko/kdoctools6-common/fdl-translated.html share/doc/HTML/ko/kdoctools6-common/gpl-translated.html share/doc/HTML/ko/kdoctools6-common/kde-localised.css share/doc/HTML/ko/kdoctools6-common/lgpl-translated.html share/doc/HTML/lt/kdoctools6-common/kde-localised.css share/doc/HTML/nds/kdoctools6-common/kde-localised.css share/doc/HTML/nl/kdoctools6-common/fdl-translated.html share/doc/HTML/nl/kdoctools6-common/gpl-translated.html share/doc/HTML/nl/kdoctools6-common/kde-localised.css share/doc/HTML/nl/kdoctools6-common/lgpl-translated.html share/doc/HTML/nn/kdoctools6-common/kde-localised.css share/doc/HTML/pl/kdoctools6-common/gpl-translated.html share/doc/HTML/pl/kdoctools6-common/kde-localised.css share/doc/HTML/pt/kdoctools6-common/kde-localised.css share/doc/HTML/ro/kdoctools6-common/kde-localised.css share/doc/HTML/ru/kdoctools6-common/kde-localised.css share/doc/HTML/sl/kdoctools6-common/gpl-translated.html share/doc/HTML/sl/kdoctools6-common/kde-localised.css share/doc/HTML/sl/kdoctools6-common/lgpl-translated.html share/doc/HTML/sr/kdoctools6-common/kde-localised.css share/doc/HTML/sv/kdoctools6-common/kde-localised.css share/doc/HTML/tr/kdoctools6-common/gpl-translated.html share/doc/HTML/tr/kdoctools6-common/kde-localised.css share/doc/HTML/uk/kdoctools6-common/fdl-translated.html share/doc/HTML/uk/kdoctools6-common/gpl-translated.html share/doc/HTML/uk/kdoctools6-common/kde-localised.css share/doc/HTML/uk/kdoctools6-common/lgpl-translated.html share/doc/HTML/wa/kdoctools6-common/kde-localised.css share/doc/HTML/xh/kdoctools6-common/kde-localised.css share/kf6/kdoctools/customization/af/catalog.xml share/kf6/kdoctools/customization/af/entities/fdl-notice.docbook share/kf6/kdoctools/customization/af/entities/gpl-notice.docbook share/kf6/kdoctools/customization/af/entities/help-menu.docbook share/kf6/kdoctools/customization/af/entities/install-compile.docbook share/kf6/kdoctools/customization/af/entities/install-intro.docbook share/kf6/kdoctools/customization/af/entities/lgpl-notice.docbook share/kf6/kdoctools/customization/af/entities/report-bugs.docbook share/kf6/kdoctools/customization/af/entities/underArtisticLicense.docbook share/kf6/kdoctools/customization/af/entities/underBSDLicense.docbook share/kf6/kdoctools/customization/af/entities/underFDL.docbook share/kf6/kdoctools/customization/af/entities/underGPL.docbook share/kf6/kdoctools/customization/af/entities/underX11License.docbook share/kf6/kdoctools/customization/af/entities/update-doc.docbook share/kf6/kdoctools/customization/af/lang.entities share/kf6/kdoctools/customization/af/strings.entities share/kf6/kdoctools/customization/af/user.entities share/kf6/kdoctools/customization/bg/catalog.xml share/kf6/kdoctools/customization/bg/contributor.entities share/kf6/kdoctools/customization/bg/entities/fdl-notice.docbook share/kf6/kdoctools/customization/bg/entities/gpl-notice.docbook share/kf6/kdoctools/customization/bg/entities/help-menu.docbook share/kf6/kdoctools/customization/bg/entities/install-compile.docbook share/kf6/kdoctools/customization/bg/entities/install-intro.docbook share/kf6/kdoctools/customization/bg/entities/lgpl-notice.docbook share/kf6/kdoctools/customization/bg/entities/report-bugs.docbook share/kf6/kdoctools/customization/bg/entities/underArtisticLicense.docbook share/kf6/kdoctools/customization/bg/entities/underBSDLicense.docbook share/kf6/kdoctools/customization/bg/entities/underFDL.docbook share/kf6/kdoctools/customization/bg/entities/underGPL.docbook share/kf6/kdoctools/customization/bg/entities/underX11License.docbook share/kf6/kdoctools/customization/bg/entities/update-doc.docbook share/kf6/kdoctools/customization/bg/lang.entities share/kf6/kdoctools/customization/bg/strings.entities share/kf6/kdoctools/customization/bg/user.entities share/kf6/kdoctools/customization/ca/catalog.xml share/kf6/kdoctools/customization/ca/entities/ccbysa4-notice.docbook share/kf6/kdoctools/customization/ca/entities/fdl-notice.docbook share/kf6/kdoctools/customization/ca/entities/gpl-notice.docbook share/kf6/kdoctools/customization/ca/entities/help-menu.docbook share/kf6/kdoctools/customization/ca/entities/install-compile.docbook share/kf6/kdoctools/customization/ca/entities/install-intro.docbook share/kf6/kdoctools/customization/ca/entities/lgpl-notice.docbook share/kf6/kdoctools/customization/ca/entities/report-bugs.docbook share/kf6/kdoctools/customization/ca/entities/underArtisticLicense.docbook share/kf6/kdoctools/customization/ca/entities/underBSDLicense.docbook share/kf6/kdoctools/customization/ca/entities/underCCBYSA4.docbook share/kf6/kdoctools/customization/ca/entities/underFDL.docbook share/kf6/kdoctools/customization/ca/entities/underGPL.docbook share/kf6/kdoctools/customization/ca/entities/underLGPL.docbook share/kf6/kdoctools/customization/ca/entities/underX11License.docbook share/kf6/kdoctools/customization/ca/entities/update-doc.docbook share/kf6/kdoctools/customization/ca/lang.entities share/kf6/kdoctools/customization/ca/strings.entities share/kf6/kdoctools/customization/ca/user.entities share/kf6/kdoctools/customization/ca@valencia/catalog.xml share/kf6/kdoctools/customization/ca@valencia/entities/ccbysa4-notice.docbook share/kf6/kdoctools/customization/ca@valencia/entities/fdl-notice.docbook share/kf6/kdoctools/customization/ca@valencia/entities/gpl-notice.docbook share/kf6/kdoctools/customization/ca@valencia/entities/help-menu.docbook share/kf6/kdoctools/customization/ca@valencia/entities/install-compile.docbook share/kf6/kdoctools/customization/ca@valencia/entities/install-intro.docbook share/kf6/kdoctools/customization/ca@valencia/entities/lgpl-notice.docbook share/kf6/kdoctools/customization/ca@valencia/entities/report-bugs.docbook share/kf6/kdoctools/customization/ca@valencia/entities/underArtisticLicense.docbook share/kf6/kdoctools/customization/ca@valencia/entities/underBSDLicense.docbook share/kf6/kdoctools/customization/ca@valencia/entities/underCCBYSA4.docbook share/kf6/kdoctools/customization/ca@valencia/entities/underFDL.docbook share/kf6/kdoctools/customization/ca@valencia/entities/underGPL.docbook share/kf6/kdoctools/customization/ca@valencia/entities/underLGPL.docbook share/kf6/kdoctools/customization/ca@valencia/entities/underX11License.docbook share/kf6/kdoctools/customization/ca@valencia/entities/update-doc.docbook share/kf6/kdoctools/customization/ca@valencia/lang.entities share/kf6/kdoctools/customization/ca@valencia/strings.entities share/kf6/kdoctools/customization/ca@valencia/user.entities share/kf6/kdoctools/customization/catalog.xml share/kf6/kdoctools/customization/cs/catalog.xml share/kf6/kdoctools/customization/cs/entities/fdl-notice.docbook share/kf6/kdoctools/customization/cs/entities/gpl-notice.docbook share/kf6/kdoctools/customization/cs/entities/help-menu.docbook share/kf6/kdoctools/customization/cs/entities/install-compile.docbook share/kf6/kdoctools/customization/cs/entities/install-intro.docbook share/kf6/kdoctools/customization/cs/entities/lgpl-notice.docbook share/kf6/kdoctools/customization/cs/entities/report-bugs.docbook share/kf6/kdoctools/customization/cs/entities/underArtisticLicense.docbook share/kf6/kdoctools/customization/cs/entities/underBSDLicense.docbook share/kf6/kdoctools/customization/cs/entities/underFDL.docbook share/kf6/kdoctools/customization/cs/entities/underGPL.docbook share/kf6/kdoctools/customization/cs/entities/underX11License.docbook share/kf6/kdoctools/customization/cs/entities/update-doc.docbook share/kf6/kdoctools/customization/cs/lang.entities share/kf6/kdoctools/customization/cs/strings.entities share/kf6/kdoctools/customization/cs/user.entities share/kf6/kdoctools/customization/da/catalog.xml share/kf6/kdoctools/customization/da/entities/fdl-notice.docbook share/kf6/kdoctools/customization/da/entities/gpl-notice.docbook share/kf6/kdoctools/customization/da/entities/help-menu.docbook share/kf6/kdoctools/customization/da/entities/install-compile.docbook share/kf6/kdoctools/customization/da/entities/install-intro.docbook share/kf6/kdoctools/customization/da/entities/lgpl-notice.docbook share/kf6/kdoctools/customization/da/entities/report-bugs.docbook share/kf6/kdoctools/customization/da/entities/underArtisticLicense.docbook share/kf6/kdoctools/customization/da/entities/underBSDLicense.docbook share/kf6/kdoctools/customization/da/entities/underFDL.docbook share/kf6/kdoctools/customization/da/entities/underGPL.docbook share/kf6/kdoctools/customization/da/entities/underLGPL.docbook share/kf6/kdoctools/customization/da/entities/underX11License.docbook share/kf6/kdoctools/customization/da/entities/update-doc.docbook share/kf6/kdoctools/customization/da/lang.entities share/kf6/kdoctools/customization/da/strings.entities share/kf6/kdoctools/customization/da/user.entities share/kf6/kdoctools/customization/de/catalog.xml share/kf6/kdoctools/customization/de/entities/fdl-notice.docbook share/kf6/kdoctools/customization/de/entities/gpl-notice.docbook share/kf6/kdoctools/customization/de/entities/help-menu.docbook share/kf6/kdoctools/customization/de/entities/install-compile.docbook share/kf6/kdoctools/customization/de/entities/install-intro.docbook share/kf6/kdoctools/customization/de/entities/lgpl-notice.docbook share/kf6/kdoctools/customization/de/entities/report-bugs.docbook share/kf6/kdoctools/customization/de/entities/underArtisticLicense.docbook share/kf6/kdoctools/customization/de/entities/underBSDLicense.docbook share/kf6/kdoctools/customization/de/entities/underFDL.docbook share/kf6/kdoctools/customization/de/entities/underGPL.docbook share/kf6/kdoctools/customization/de/entities/underLGPL.docbook share/kf6/kdoctools/customization/de/entities/underX11License.docbook share/kf6/kdoctools/customization/de/entities/update-doc.docbook share/kf6/kdoctools/customization/de/lang.entities share/kf6/kdoctools/customization/de/strings.entities share/kf6/kdoctools/customization/de/user.entities share/kf6/kdoctools/customization/dtd/kdedbx45.dtd share/kf6/kdoctools/customization/dtd/modifications.elements share/kf6/kdoctools/customization/dtd/rdbhier2.elements share/kf6/kdoctools/customization/dtd/rdbpool.elements share/kf6/kdoctools/customization/el/catalog.xml share/kf6/kdoctools/customization/el/entities/fdl-notice.docbook share/kf6/kdoctools/customization/el/entities/gpl-notice.docbook share/kf6/kdoctools/customization/el/entities/help-menu.docbook share/kf6/kdoctools/customization/el/entities/install-compile.docbook share/kf6/kdoctools/customization/el/entities/install-intro.docbook share/kf6/kdoctools/customization/el/entities/lgpl-notice.docbook share/kf6/kdoctools/customization/el/entities/report-bugs.docbook share/kf6/kdoctools/customization/el/entities/underArtisticLicense.docbook share/kf6/kdoctools/customization/el/entities/underBSDLicense.docbook share/kf6/kdoctools/customization/el/entities/underFDL.docbook share/kf6/kdoctools/customization/el/entities/underGPL.docbook share/kf6/kdoctools/customization/el/entities/underX11License.docbook share/kf6/kdoctools/customization/el/entities/update-doc.docbook share/kf6/kdoctools/customization/el/lang.entities share/kf6/kdoctools/customization/el/strings.entities share/kf6/kdoctools/customization/el/user.entities share/kf6/kdoctools/customization/en-GB/catalog.xml share/kf6/kdoctools/customization/en-GB/entities/fdl-notice.docbook share/kf6/kdoctools/customization/en-GB/entities/gpl-notice.docbook share/kf6/kdoctools/customization/en-GB/entities/help-menu.docbook share/kf6/kdoctools/customization/en-GB/entities/install-compile.docbook share/kf6/kdoctools/customization/en-GB/entities/install-intro.docbook share/kf6/kdoctools/customization/en-GB/entities/lgpl-notice.docbook share/kf6/kdoctools/customization/en-GB/entities/report-bugs.docbook share/kf6/kdoctools/customization/en-GB/entities/underArtisticLicense.docbook share/kf6/kdoctools/customization/en-GB/entities/underBSDLicense.docbook share/kf6/kdoctools/customization/en-GB/entities/underFDL.docbook share/kf6/kdoctools/customization/en-GB/entities/underGPL.docbook share/kf6/kdoctools/customization/en-GB/entities/underX11License.docbook share/kf6/kdoctools/customization/en-GB/entities/update-doc.docbook share/kf6/kdoctools/customization/en-GB/lang.entities share/kf6/kdoctools/customization/en-GB/strings.entities share/kf6/kdoctools/customization/en-GB/user.entities share/kf6/kdoctools/customization/en/catalog.xml share/kf6/kdoctools/customization/en/entities/ccbysa4-notice.docbook share/kf6/kdoctools/customization/en/entities/fdl-notice.docbook share/kf6/kdoctools/customization/en/entities/gpl-notice.docbook share/kf6/kdoctools/customization/en/entities/help-menu.docbook share/kf6/kdoctools/customization/en/entities/install-compile.docbook share/kf6/kdoctools/customization/en/entities/install-intro.docbook share/kf6/kdoctools/customization/en/entities/lgpl-notice.docbook share/kf6/kdoctools/customization/en/entities/report-bugs.docbook share/kf6/kdoctools/customization/en/entities/underArtisticLicense.docbook share/kf6/kdoctools/customization/en/entities/underBSDLicense.docbook share/kf6/kdoctools/customization/en/entities/underCCBYSA4.docbook share/kf6/kdoctools/customization/en/entities/underFDL.docbook share/kf6/kdoctools/customization/en/entities/underGPL.docbook share/kf6/kdoctools/customization/en/entities/underLGPL.docbook share/kf6/kdoctools/customization/en/entities/underX11License.docbook share/kf6/kdoctools/customization/en/entities/update-doc.docbook share/kf6/kdoctools/customization/en/lang.entities share/kf6/kdoctools/customization/en/strings.entities share/kf6/kdoctools/customization/en/user.entities share/kf6/kdoctools/customization/entities/contributor.entities share/kf6/kdoctools/customization/entities/general.entities share/kf6/kdoctools/customization/entities/l10n.entities share/kf6/kdoctools/customization/eo/catalog.xml share/kf6/kdoctools/customization/eo/entities/fdl-notice.docbook share/kf6/kdoctools/customization/eo/entities/gpl-notice.docbook share/kf6/kdoctools/customization/eo/entities/help-menu.docbook share/kf6/kdoctools/customization/eo/entities/install-compile.docbook share/kf6/kdoctools/customization/eo/entities/install-intro.docbook share/kf6/kdoctools/customization/eo/entities/lgpl-notice.docbook share/kf6/kdoctools/customization/eo/entities/report-bugs.docbook share/kf6/kdoctools/customization/eo/entities/underArtisticLicense.docbook share/kf6/kdoctools/customization/eo/entities/underBSDLicense.docbook share/kf6/kdoctools/customization/eo/entities/underFDL.docbook share/kf6/kdoctools/customization/eo/entities/underGPL.docbook share/kf6/kdoctools/customization/eo/entities/underX11License.docbook share/kf6/kdoctools/customization/eo/entities/update-doc.docbook share/kf6/kdoctools/customization/eo/lang.entities share/kf6/kdoctools/customization/eo/strings.entities share/kf6/kdoctools/customization/eo/user.entities share/kf6/kdoctools/customization/es/catalog.xml share/kf6/kdoctools/customization/es/entities/ccbysa4-notice.docbook share/kf6/kdoctools/customization/es/entities/fdl-notice.docbook share/kf6/kdoctools/customization/es/entities/gpl-notice.docbook share/kf6/kdoctools/customization/es/entities/help-menu.docbook share/kf6/kdoctools/customization/es/entities/install-compile.docbook share/kf6/kdoctools/customization/es/entities/install-intro.docbook share/kf6/kdoctools/customization/es/entities/lgpl-notice.docbook share/kf6/kdoctools/customization/es/entities/report-bugs.docbook share/kf6/kdoctools/customization/es/entities/underArtisticLicense.docbook share/kf6/kdoctools/customization/es/entities/underBSDLicense.docbook share/kf6/kdoctools/customization/es/entities/underCCBYSA4.docbook share/kf6/kdoctools/customization/es/entities/underFDL.docbook share/kf6/kdoctools/customization/es/entities/underGPL.docbook share/kf6/kdoctools/customization/es/entities/underLGPL.docbook share/kf6/kdoctools/customization/es/entities/underX11License.docbook share/kf6/kdoctools/customization/es/entities/update-doc.docbook share/kf6/kdoctools/customization/es/lang.entities share/kf6/kdoctools/customization/es/strings.entities share/kf6/kdoctools/customization/es/user.entities share/kf6/kdoctools/customization/et/catalog.xml share/kf6/kdoctools/customization/et/entities/fdl-notice.docbook share/kf6/kdoctools/customization/et/entities/gpl-notice.docbook share/kf6/kdoctools/customization/et/entities/help-menu.docbook share/kf6/kdoctools/customization/et/entities/install-compile.docbook share/kf6/kdoctools/customization/et/entities/install-intro.docbook share/kf6/kdoctools/customization/et/entities/lgpl-notice.docbook share/kf6/kdoctools/customization/et/entities/report-bugs.docbook share/kf6/kdoctools/customization/et/entities/underArtisticLicense.docbook share/kf6/kdoctools/customization/et/entities/underBSDLicense.docbook share/kf6/kdoctools/customization/et/entities/underFDL.docbook share/kf6/kdoctools/customization/et/entities/underGPL.docbook share/kf6/kdoctools/customization/et/entities/underLGPL.docbook share/kf6/kdoctools/customization/et/entities/underX11License.docbook share/kf6/kdoctools/customization/et/entities/update-doc.docbook share/kf6/kdoctools/customization/et/lang.entities share/kf6/kdoctools/customization/et/strings.entities share/kf6/kdoctools/customization/et/user.entities share/kf6/kdoctools/customization/fi/catalog.xml share/kf6/kdoctools/customization/fi/entities/fdl-notice.docbook share/kf6/kdoctools/customization/fi/entities/gpl-notice.docbook share/kf6/kdoctools/customization/fi/entities/help-menu.docbook share/kf6/kdoctools/customization/fi/entities/install-compile.docbook share/kf6/kdoctools/customization/fi/entities/install-intro.docbook share/kf6/kdoctools/customization/fi/entities/lgpl-notice.docbook share/kf6/kdoctools/customization/fi/entities/report-bugs.docbook share/kf6/kdoctools/customization/fi/entities/underArtisticLicense.docbook share/kf6/kdoctools/customization/fi/entities/underBSDLicense.docbook share/kf6/kdoctools/customization/fi/entities/underFDL.docbook share/kf6/kdoctools/customization/fi/entities/underGPL.docbook share/kf6/kdoctools/customization/fi/entities/underX11License.docbook share/kf6/kdoctools/customization/fi/entities/update-doc.docbook share/kf6/kdoctools/customization/fi/lang.entities share/kf6/kdoctools/customization/fi/strings.entities share/kf6/kdoctools/customization/fi/user.entities share/kf6/kdoctools/customization/fo/catalog.xml share/kf6/kdoctools/customization/fo/contributor.entities share/kf6/kdoctools/customization/fo/entities/fdl-notice.docbook share/kf6/kdoctools/customization/fo/entities/gpl-notice.docbook share/kf6/kdoctools/customization/fo/entities/help-menu.docbook share/kf6/kdoctools/customization/fo/entities/install-compile.docbook share/kf6/kdoctools/customization/fo/entities/install-intro.docbook share/kf6/kdoctools/customization/fo/entities/lgpl-notice.docbook share/kf6/kdoctools/customization/fo/entities/report-bugs.docbook share/kf6/kdoctools/customization/fo/entities/underArtisticLicense.docbook share/kf6/kdoctools/customization/fo/entities/underBSDLicense.docbook share/kf6/kdoctools/customization/fo/entities/underFDL.docbook share/kf6/kdoctools/customization/fo/entities/underGPL.docbook share/kf6/kdoctools/customization/fo/entities/underX11License.docbook share/kf6/kdoctools/customization/fo/entities/update-doc.docbook share/kf6/kdoctools/customization/fo/lang.entities share/kf6/kdoctools/customization/fo/strings.entities share/kf6/kdoctools/customization/fo/user.entities share/kf6/kdoctools/customization/fr/catalog.xml share/kf6/kdoctools/customization/fr/entities/fdl-notice.docbook share/kf6/kdoctools/customization/fr/entities/gpl-notice.docbook share/kf6/kdoctools/customization/fr/entities/help-menu.docbook share/kf6/kdoctools/customization/fr/entities/install-compile.docbook share/kf6/kdoctools/customization/fr/entities/install-intro.docbook share/kf6/kdoctools/customization/fr/entities/lgpl-notice.docbook share/kf6/kdoctools/customization/fr/entities/report-bugs.docbook share/kf6/kdoctools/customization/fr/entities/underArtisticLicense.docbook share/kf6/kdoctools/customization/fr/entities/underBSDLicense.docbook share/kf6/kdoctools/customization/fr/entities/underFDL.docbook share/kf6/kdoctools/customization/fr/entities/underGPL.docbook share/kf6/kdoctools/customization/fr/entities/underLGPL.docbook share/kf6/kdoctools/customization/fr/entities/underX11License.docbook share/kf6/kdoctools/customization/fr/entities/update-doc.docbook share/kf6/kdoctools/customization/fr/lang.entities share/kf6/kdoctools/customization/fr/strings.entities share/kf6/kdoctools/customization/fr/user.entities share/kf6/kdoctools/customization/gl/catalog.xml share/kf6/kdoctools/customization/gl/contributor.entities share/kf6/kdoctools/customization/gl/entities/fdl-notice.docbook share/kf6/kdoctools/customization/gl/entities/gpl-notice.docbook share/kf6/kdoctools/customization/gl/entities/help-menu.docbook share/kf6/kdoctools/customization/gl/entities/install-compile.docbook share/kf6/kdoctools/customization/gl/entities/install-intro.docbook share/kf6/kdoctools/customization/gl/entities/lgpl-notice.docbook share/kf6/kdoctools/customization/gl/entities/report-bugs.docbook share/kf6/kdoctools/customization/gl/entities/underArtisticLicense.docbook share/kf6/kdoctools/customization/gl/entities/underBSDLicense.docbook share/kf6/kdoctools/customization/gl/entities/underFDL.docbook share/kf6/kdoctools/customization/gl/entities/underGPL.docbook share/kf6/kdoctools/customization/gl/entities/underLGPL.docbook share/kf6/kdoctools/customization/gl/entities/underX11License.docbook share/kf6/kdoctools/customization/gl/entities/update-doc.docbook share/kf6/kdoctools/customization/gl/lang.entities share/kf6/kdoctools/customization/gl/strings.entities share/kf6/kdoctools/customization/gl/user.entities share/kf6/kdoctools/customization/he/catalog.xml share/kf6/kdoctools/customization/he/entities/fdl-notice.docbook share/kf6/kdoctools/customization/he/entities/gpl-notice.docbook share/kf6/kdoctools/customization/he/entities/help-menu.docbook share/kf6/kdoctools/customization/he/entities/install-compile.docbook share/kf6/kdoctools/customization/he/entities/install-intro.docbook share/kf6/kdoctools/customization/he/entities/lgpl-notice.docbook share/kf6/kdoctools/customization/he/entities/report-bugs.docbook share/kf6/kdoctools/customization/he/entities/underArtisticLicense.docbook share/kf6/kdoctools/customization/he/entities/underBSDLicense.docbook share/kf6/kdoctools/customization/he/entities/underFDL.docbook share/kf6/kdoctools/customization/he/entities/underGPL.docbook share/kf6/kdoctools/customization/he/entities/underX11License.docbook share/kf6/kdoctools/customization/he/entities/update-doc.docbook share/kf6/kdoctools/customization/he/lang.entities share/kf6/kdoctools/customization/he/strings.entities share/kf6/kdoctools/customization/he/user.entities share/kf6/kdoctools/customization/hu/catalog.xml share/kf6/kdoctools/customization/hu/entities/fdl-notice.docbook share/kf6/kdoctools/customization/hu/entities/gpl-notice.docbook share/kf6/kdoctools/customization/hu/entities/help-menu.docbook share/kf6/kdoctools/customization/hu/entities/install-compile.docbook share/kf6/kdoctools/customization/hu/entities/install-intro.docbook share/kf6/kdoctools/customization/hu/entities/lgpl-notice.docbook share/kf6/kdoctools/customization/hu/entities/report-bugs.docbook share/kf6/kdoctools/customization/hu/entities/underArtisticLicense.docbook share/kf6/kdoctools/customization/hu/entities/underBSDLicense.docbook share/kf6/kdoctools/customization/hu/entities/underFDL.docbook share/kf6/kdoctools/customization/hu/entities/underGPL.docbook share/kf6/kdoctools/customization/hu/entities/underX11License.docbook share/kf6/kdoctools/customization/hu/entities/update-doc.docbook share/kf6/kdoctools/customization/hu/lang.entities share/kf6/kdoctools/customization/hu/strings.entities share/kf6/kdoctools/customization/hu/user.entities share/kf6/kdoctools/customization/id/catalog.xml share/kf6/kdoctools/customization/id/entities/ccbysa4-notice.docbook share/kf6/kdoctools/customization/id/entities/fdl-notice.docbook share/kf6/kdoctools/customization/id/entities/gpl-notice.docbook share/kf6/kdoctools/customization/id/entities/help-menu.docbook share/kf6/kdoctools/customization/id/entities/install-compile.docbook share/kf6/kdoctools/customization/id/entities/install-intro.docbook share/kf6/kdoctools/customization/id/entities/lgpl-notice.docbook share/kf6/kdoctools/customization/id/entities/report-bugs.docbook share/kf6/kdoctools/customization/id/entities/underArtisticLicense.docbook share/kf6/kdoctools/customization/id/entities/underBSDLicense.docbook share/kf6/kdoctools/customization/id/entities/underCCBYSA4.docbook share/kf6/kdoctools/customization/id/entities/underFDL.docbook share/kf6/kdoctools/customization/id/entities/underGPL.docbook share/kf6/kdoctools/customization/id/entities/underLGPL.docbook share/kf6/kdoctools/customization/id/entities/underX11License.docbook share/kf6/kdoctools/customization/id/entities/update-doc.docbook share/kf6/kdoctools/customization/id/lang.entities share/kf6/kdoctools/customization/id/strings.entities share/kf6/kdoctools/customization/id/user.entities share/kf6/kdoctools/customization/it/catalog.xml share/kf6/kdoctools/customization/it/entities/fdl-notice.docbook share/kf6/kdoctools/customization/it/entities/gpl-notice.docbook share/kf6/kdoctools/customization/it/entities/help-menu.docbook share/kf6/kdoctools/customization/it/entities/install-compile.docbook share/kf6/kdoctools/customization/it/entities/install-intro.docbook share/kf6/kdoctools/customization/it/entities/lgpl-notice.docbook share/kf6/kdoctools/customization/it/entities/report-bugs.docbook share/kf6/kdoctools/customization/it/entities/underArtisticLicense.docbook share/kf6/kdoctools/customization/it/entities/underBSDLicense.docbook share/kf6/kdoctools/customization/it/entities/underFDL.docbook share/kf6/kdoctools/customization/it/entities/underGPL.docbook share/kf6/kdoctools/customization/it/entities/underLGPL.docbook share/kf6/kdoctools/customization/it/entities/underX11License.docbook share/kf6/kdoctools/customization/it/entities/update-doc.docbook share/kf6/kdoctools/customization/it/lang.entities share/kf6/kdoctools/customization/it/strings.entities share/kf6/kdoctools/customization/it/user.entities share/kf6/kdoctools/customization/ja/catalog.xml share/kf6/kdoctools/customization/ja/entities/fdl-notice.docbook share/kf6/kdoctools/customization/ja/entities/gpl-notice.docbook share/kf6/kdoctools/customization/ja/entities/help-menu.docbook share/kf6/kdoctools/customization/ja/entities/install-compile.docbook share/kf6/kdoctools/customization/ja/entities/install-intro.docbook share/kf6/kdoctools/customization/ja/entities/lgpl-notice.docbook share/kf6/kdoctools/customization/ja/entities/report-bugs.docbook share/kf6/kdoctools/customization/ja/entities/underArtisticLicense.docbook share/kf6/kdoctools/customization/ja/entities/underBSDLicense.docbook share/kf6/kdoctools/customization/ja/entities/underFDL.docbook share/kf6/kdoctools/customization/ja/entities/underGPL.docbook share/kf6/kdoctools/customization/ja/entities/underX11License.docbook share/kf6/kdoctools/customization/ja/entities/update-doc.docbook share/kf6/kdoctools/customization/ja/lang.entities share/kf6/kdoctools/customization/ja/strings.entities share/kf6/kdoctools/customization/ja/user.entities share/kf6/kdoctools/customization/kde-chunk-common.xsl share/kf6/kdoctools/customization/kde-chunk-online.xsl share/kf6/kdoctools/customization/kde-chunk.xsl share/kf6/kdoctools/customization/kde-include-common.xsl share/kf6/kdoctools/customization/kde-include-man.xsl share/kf6/kdoctools/customization/kde-navig-online.xsl share/kf6/kdoctools/customization/kde-navig.xsl share/kf6/kdoctools/customization/kde-nochunk.xsl share/kf6/kdoctools/customization/kde-style.xsl share/kf6/kdoctools/customization/kde-ttlpg-online.xsl share/kf6/kdoctools/customization/kde-ttlpg.xsl share/kf6/kdoctools/customization/kde-web-navig.xsl share/kf6/kdoctools/customization/kde-web.xsl share/kf6/kdoctools/customization/ko/catalog.xml share/kf6/kdoctools/customization/ko/entities/ccbysa4-notice.docbook share/kf6/kdoctools/customization/ko/entities/fdl-notice.docbook share/kf6/kdoctools/customization/ko/entities/gpl-notice.docbook share/kf6/kdoctools/customization/ko/entities/help-menu.docbook share/kf6/kdoctools/customization/ko/entities/install-compile.docbook share/kf6/kdoctools/customization/ko/entities/install-intro.docbook share/kf6/kdoctools/customization/ko/entities/lgpl-notice.docbook share/kf6/kdoctools/customization/ko/entities/report-bugs.docbook share/kf6/kdoctools/customization/ko/entities/underArtisticLicense.docbook share/kf6/kdoctools/customization/ko/entities/underBSDLicense.docbook share/kf6/kdoctools/customization/ko/entities/underCCBYSA4.docbook share/kf6/kdoctools/customization/ko/entities/underFDL.docbook share/kf6/kdoctools/customization/ko/entities/underGPL.docbook share/kf6/kdoctools/customization/ko/entities/underLGPL.docbook share/kf6/kdoctools/customization/ko/entities/underX11License.docbook share/kf6/kdoctools/customization/ko/entities/update-doc.docbook share/kf6/kdoctools/customization/ko/lang.entities share/kf6/kdoctools/customization/ko/strings.entities share/kf6/kdoctools/customization/ko/user.entities share/kf6/kdoctools/customization/lt/catalog.xml share/kf6/kdoctools/customization/lt/contributor.entities share/kf6/kdoctools/customization/lt/entities/fdl-notice.docbook share/kf6/kdoctools/customization/lt/entities/gpl-notice.docbook share/kf6/kdoctools/customization/lt/entities/help-menu.docbook share/kf6/kdoctools/customization/lt/entities/install-compile.docbook share/kf6/kdoctools/customization/lt/entities/install-intro.docbook share/kf6/kdoctools/customization/lt/entities/lgpl-notice.docbook share/kf6/kdoctools/customization/lt/entities/report-bugs.docbook share/kf6/kdoctools/customization/lt/entities/underArtisticLicense.docbook share/kf6/kdoctools/customization/lt/entities/underBSDLicense.docbook share/kf6/kdoctools/customization/lt/entities/underFDL.docbook share/kf6/kdoctools/customization/lt/entities/underGPL.docbook share/kf6/kdoctools/customization/lt/entities/underLGPL.docbook share/kf6/kdoctools/customization/lt/entities/underX11License.docbook share/kf6/kdoctools/customization/lt/entities/update-doc.docbook share/kf6/kdoctools/customization/lt/lang.entities share/kf6/kdoctools/customization/lt/strings.entities share/kf6/kdoctools/customization/lt/user.entities share/kf6/kdoctools/customization/nds/catalog.xml share/kf6/kdoctools/customization/nds/entities/fdl-notice.docbook share/kf6/kdoctools/customization/nds/entities/gpl-notice.docbook share/kf6/kdoctools/customization/nds/entities/help-menu.docbook share/kf6/kdoctools/customization/nds/entities/install-compile.docbook share/kf6/kdoctools/customization/nds/entities/install-intro.docbook share/kf6/kdoctools/customization/nds/entities/lgpl-notice.docbook share/kf6/kdoctools/customization/nds/entities/report-bugs.docbook share/kf6/kdoctools/customization/nds/entities/underArtisticLicense.docbook share/kf6/kdoctools/customization/nds/entities/underBSDLicense.docbook share/kf6/kdoctools/customization/nds/entities/underFDL.docbook share/kf6/kdoctools/customization/nds/entities/underGPL.docbook share/kf6/kdoctools/customization/nds/entities/underLGPL.docbook share/kf6/kdoctools/customization/nds/entities/underX11License.docbook share/kf6/kdoctools/customization/nds/entities/update-doc.docbook share/kf6/kdoctools/customization/nds/lang.entities share/kf6/kdoctools/customization/nds/strings.entities share/kf6/kdoctools/customization/nds/user.entities share/kf6/kdoctools/customization/nl/catalog.xml share/kf6/kdoctools/customization/nl/entities/fdl-notice.docbook share/kf6/kdoctools/customization/nl/entities/gpl-notice.docbook share/kf6/kdoctools/customization/nl/entities/help-menu.docbook share/kf6/kdoctools/customization/nl/entities/install-compile.docbook share/kf6/kdoctools/customization/nl/entities/install-intro.docbook share/kf6/kdoctools/customization/nl/entities/lgpl-notice.docbook share/kf6/kdoctools/customization/nl/entities/report-bugs.docbook share/kf6/kdoctools/customization/nl/entities/underArtisticLicense.docbook share/kf6/kdoctools/customization/nl/entities/underBSDLicense.docbook share/kf6/kdoctools/customization/nl/entities/underFDL.docbook share/kf6/kdoctools/customization/nl/entities/underGPL.docbook share/kf6/kdoctools/customization/nl/entities/underLGPL.docbook share/kf6/kdoctools/customization/nl/entities/underX11License.docbook share/kf6/kdoctools/customization/nl/entities/update-doc.docbook share/kf6/kdoctools/customization/nl/lang.entities share/kf6/kdoctools/customization/nl/strings.entities share/kf6/kdoctools/customization/nl/user.entities share/kf6/kdoctools/customization/nn/catalog.xml share/kf6/kdoctools/customization/nn/entities/fdl-notice.docbook share/kf6/kdoctools/customization/nn/entities/gpl-notice.docbook share/kf6/kdoctools/customization/nn/entities/help-menu.docbook share/kf6/kdoctools/customization/nn/entities/install-compile.docbook share/kf6/kdoctools/customization/nn/entities/install-intro.docbook share/kf6/kdoctools/customization/nn/entities/lgpl-notice.docbook share/kf6/kdoctools/customization/nn/entities/report-bugs.docbook share/kf6/kdoctools/customization/nn/entities/underArtisticLicense.docbook share/kf6/kdoctools/customization/nn/entities/underBSDLicense.docbook share/kf6/kdoctools/customization/nn/entities/underFDL.docbook share/kf6/kdoctools/customization/nn/entities/underGPL.docbook share/kf6/kdoctools/customization/nn/entities/underX11License.docbook share/kf6/kdoctools/customization/nn/entities/update-doc.docbook share/kf6/kdoctools/customization/nn/lang.entities share/kf6/kdoctools/customization/nn/strings.entities share/kf6/kdoctools/customization/nn/user.entities share/kf6/kdoctools/customization/no/catalog.xml share/kf6/kdoctools/customization/no/entities/fdl-notice.docbook share/kf6/kdoctools/customization/no/entities/gpl-notice.docbook share/kf6/kdoctools/customization/no/entities/help-menu.docbook share/kf6/kdoctools/customization/no/entities/install-compile.docbook share/kf6/kdoctools/customization/no/entities/install-intro.docbook share/kf6/kdoctools/customization/no/entities/lgpl-notice.docbook share/kf6/kdoctools/customization/no/entities/report-bugs.docbook share/kf6/kdoctools/customization/no/entities/underArtisticLicense.docbook share/kf6/kdoctools/customization/no/entities/underBSDLicense.docbook share/kf6/kdoctools/customization/no/entities/underFDL.docbook share/kf6/kdoctools/customization/no/entities/underGPL.docbook share/kf6/kdoctools/customization/no/entities/underX11License.docbook share/kf6/kdoctools/customization/no/entities/update-doc.docbook share/kf6/kdoctools/customization/no/lang.entities share/kf6/kdoctools/customization/no/strings.entities share/kf6/kdoctools/customization/no/user.entities share/kf6/kdoctools/customization/pl/catalog.xml share/kf6/kdoctools/customization/pl/entities/fdl-notice.docbook share/kf6/kdoctools/customization/pl/entities/gpl-notice.docbook share/kf6/kdoctools/customization/pl/entities/help-menu.docbook share/kf6/kdoctools/customization/pl/entities/install-compile.docbook share/kf6/kdoctools/customization/pl/entities/install-intro.docbook share/kf6/kdoctools/customization/pl/entities/lgpl-notice.docbook share/kf6/kdoctools/customization/pl/entities/report-bugs.docbook share/kf6/kdoctools/customization/pl/entities/underArtisticLicense.docbook share/kf6/kdoctools/customization/pl/entities/underBSDLicense.docbook share/kf6/kdoctools/customization/pl/entities/underFDL.docbook share/kf6/kdoctools/customization/pl/entities/underGPL.docbook share/kf6/kdoctools/customization/pl/entities/underLGPL.docbook share/kf6/kdoctools/customization/pl/entities/underX11License.docbook share/kf6/kdoctools/customization/pl/entities/update-doc.docbook share/kf6/kdoctools/customization/pl/lang.entities share/kf6/kdoctools/customization/pl/strings.entities share/kf6/kdoctools/customization/pl/user.entities share/kf6/kdoctools/customization/pt-BR/catalog.xml share/kf6/kdoctools/customization/pt-BR/contributor.entities share/kf6/kdoctools/customization/pt-BR/entities/fdl-notice.docbook share/kf6/kdoctools/customization/pt-BR/entities/gpl-notice.docbook share/kf6/kdoctools/customization/pt-BR/entities/help-menu.docbook share/kf6/kdoctools/customization/pt-BR/entities/install-compile.docbook share/kf6/kdoctools/customization/pt-BR/entities/install-intro.docbook share/kf6/kdoctools/customization/pt-BR/entities/lgpl-notice.docbook share/kf6/kdoctools/customization/pt-BR/entities/report-bugs.docbook share/kf6/kdoctools/customization/pt-BR/entities/underArtisticLicense.docbook share/kf6/kdoctools/customization/pt-BR/entities/underBSDLicense.docbook share/kf6/kdoctools/customization/pt-BR/entities/underFDL.docbook share/kf6/kdoctools/customization/pt-BR/entities/underGPL.docbook share/kf6/kdoctools/customization/pt-BR/entities/underLGPL.docbook share/kf6/kdoctools/customization/pt-BR/entities/underX11License.docbook share/kf6/kdoctools/customization/pt-BR/entities/update-doc.docbook share/kf6/kdoctools/customization/pt-BR/lang.entities share/kf6/kdoctools/customization/pt-BR/strings.entities share/kf6/kdoctools/customization/pt-BR/user.entities share/kf6/kdoctools/customization/pt/catalog.xml share/kf6/kdoctools/customization/pt/contributor.entities share/kf6/kdoctools/customization/pt/entities/fdl-notice.docbook share/kf6/kdoctools/customization/pt/entities/gpl-notice.docbook share/kf6/kdoctools/customization/pt/entities/help-menu.docbook share/kf6/kdoctools/customization/pt/entities/install-compile.docbook share/kf6/kdoctools/customization/pt/entities/install-intro.docbook share/kf6/kdoctools/customization/pt/entities/lgpl-notice.docbook share/kf6/kdoctools/customization/pt/entities/report-bugs.docbook share/kf6/kdoctools/customization/pt/entities/underArtisticLicense.docbook share/kf6/kdoctools/customization/pt/entities/underBSDLicense.docbook share/kf6/kdoctools/customization/pt/entities/underFDL.docbook share/kf6/kdoctools/customization/pt/entities/underGPL.docbook share/kf6/kdoctools/customization/pt/entities/underLGPL.docbook share/kf6/kdoctools/customization/pt/entities/underX11License.docbook share/kf6/kdoctools/customization/pt/entities/update-doc.docbook share/kf6/kdoctools/customization/pt/lang.entities share/kf6/kdoctools/customization/pt/strings.entities share/kf6/kdoctools/customization/pt/user.entities share/kf6/kdoctools/customization/ro/catalog.xml share/kf6/kdoctools/customization/ro/entities/fdl-notice.docbook share/kf6/kdoctools/customization/ro/entities/gpl-notice.docbook share/kf6/kdoctools/customization/ro/entities/help-menu.docbook share/kf6/kdoctools/customization/ro/entities/install-compile.docbook share/kf6/kdoctools/customization/ro/entities/install-intro.docbook share/kf6/kdoctools/customization/ro/entities/lgpl-notice.docbook share/kf6/kdoctools/customization/ro/entities/report-bugs.docbook share/kf6/kdoctools/customization/ro/entities/underArtisticLicense.docbook share/kf6/kdoctools/customization/ro/entities/underBSDLicense.docbook share/kf6/kdoctools/customization/ro/entities/underFDL.docbook share/kf6/kdoctools/customization/ro/entities/underGPL.docbook share/kf6/kdoctools/customization/ro/entities/underLGPL.docbook share/kf6/kdoctools/customization/ro/entities/underX11License.docbook share/kf6/kdoctools/customization/ro/entities/update-doc.docbook share/kf6/kdoctools/customization/ro/lang.entities share/kf6/kdoctools/customization/ro/strings.entities share/kf6/kdoctools/customization/ro/user.entities share/kf6/kdoctools/customization/ru/catalog.xml share/kf6/kdoctools/customization/ru/entities/ccbysa4-notice.docbook share/kf6/kdoctools/customization/ru/entities/fdl-notice.docbook share/kf6/kdoctools/customization/ru/entities/gpl-notice.docbook share/kf6/kdoctools/customization/ru/entities/help-menu.docbook share/kf6/kdoctools/customization/ru/entities/install-compile.docbook share/kf6/kdoctools/customization/ru/entities/install-intro.docbook share/kf6/kdoctools/customization/ru/entities/lgpl-notice.docbook share/kf6/kdoctools/customization/ru/entities/report-bugs.docbook share/kf6/kdoctools/customization/ru/entities/underArtisticLicense.docbook share/kf6/kdoctools/customization/ru/entities/underBSDLicense.docbook share/kf6/kdoctools/customization/ru/entities/underCCBYSA4.docbook share/kf6/kdoctools/customization/ru/entities/underFDL.docbook share/kf6/kdoctools/customization/ru/entities/underGPL.docbook share/kf6/kdoctools/customization/ru/entities/underLGPL.docbook share/kf6/kdoctools/customization/ru/entities/underX11License.docbook share/kf6/kdoctools/customization/ru/entities/update-doc.docbook share/kf6/kdoctools/customization/ru/lang.entities share/kf6/kdoctools/customization/ru/strings.entities share/kf6/kdoctools/customization/ru/user.entities share/kf6/kdoctools/customization/sk/catalog.xml share/kf6/kdoctools/customization/sk/entities/fdl-notice.docbook share/kf6/kdoctools/customization/sk/entities/gpl-notice.docbook share/kf6/kdoctools/customization/sk/entities/help-menu.docbook share/kf6/kdoctools/customization/sk/entities/install-compile.docbook share/kf6/kdoctools/customization/sk/entities/install-intro.docbook share/kf6/kdoctools/customization/sk/entities/lgpl-notice.docbook share/kf6/kdoctools/customization/sk/entities/report-bugs.docbook share/kf6/kdoctools/customization/sk/entities/underArtisticLicense.docbook share/kf6/kdoctools/customization/sk/entities/underBSDLicense.docbook share/kf6/kdoctools/customization/sk/entities/underFDL.docbook share/kf6/kdoctools/customization/sk/entities/underGPL.docbook share/kf6/kdoctools/customization/sk/entities/underX11License.docbook share/kf6/kdoctools/customization/sk/entities/update-doc.docbook share/kf6/kdoctools/customization/sk/lang.entities share/kf6/kdoctools/customization/sk/strings.entities share/kf6/kdoctools/customization/sk/user.entities share/kf6/kdoctools/customization/sl/catalog.xml share/kf6/kdoctools/customization/sl/entities/fdl-notice.docbook share/kf6/kdoctools/customization/sl/entities/gpl-notice.docbook share/kf6/kdoctools/customization/sl/entities/help-menu.docbook share/kf6/kdoctools/customization/sl/entities/install-compile.docbook share/kf6/kdoctools/customization/sl/entities/install-intro.docbook share/kf6/kdoctools/customization/sl/entities/lgpl-notice.docbook share/kf6/kdoctools/customization/sl/entities/report-bugs.docbook share/kf6/kdoctools/customization/sl/entities/underArtisticLicense.docbook share/kf6/kdoctools/customization/sl/entities/underBSDLicense.docbook share/kf6/kdoctools/customization/sl/entities/underFDL.docbook share/kf6/kdoctools/customization/sl/entities/underGPL.docbook share/kf6/kdoctools/customization/sl/entities/underX11License.docbook share/kf6/kdoctools/customization/sl/entities/update-doc.docbook share/kf6/kdoctools/customization/sl/lang.entities share/kf6/kdoctools/customization/sl/strings.entities share/kf6/kdoctools/customization/sl/user.entities share/kf6/kdoctools/customization/sq/catalog.xml share/kf6/kdoctools/customization/sq/entities/fdl-notice.docbook share/kf6/kdoctools/customization/sq/entities/gpl-notice.docbook share/kf6/kdoctools/customization/sq/entities/help-menu.docbook share/kf6/kdoctools/customization/sq/entities/install-compile.docbook share/kf6/kdoctools/customization/sq/entities/install-intro.docbook share/kf6/kdoctools/customization/sq/entities/lgpl-notice.docbook share/kf6/kdoctools/customization/sq/entities/report-bugs.docbook share/kf6/kdoctools/customization/sq/entities/underArtisticLicense.docbook share/kf6/kdoctools/customization/sq/entities/underBSDLicense.docbook share/kf6/kdoctools/customization/sq/entities/underFDL.docbook share/kf6/kdoctools/customization/sq/entities/underGPL.docbook share/kf6/kdoctools/customization/sq/entities/underLGPL.docbook share/kf6/kdoctools/customization/sq/entities/underX11License.docbook share/kf6/kdoctools/customization/sq/entities/update-doc.docbook share/kf6/kdoctools/customization/sq/lang.entities share/kf6/kdoctools/customization/sq/strings.entities share/kf6/kdoctools/customization/sq/user.entities share/kf6/kdoctools/customization/sr/catalog.xml share/kf6/kdoctools/customization/sr/entities/fdl-notice.docbook share/kf6/kdoctools/customization/sr/entities/gpl-notice.docbook share/kf6/kdoctools/customization/sr/entities/help-menu.docbook share/kf6/kdoctools/customization/sr/entities/install-compile.docbook share/kf6/kdoctools/customization/sr/entities/install-intro.docbook share/kf6/kdoctools/customization/sr/entities/lgpl-notice.docbook share/kf6/kdoctools/customization/sr/entities/report-bugs.docbook share/kf6/kdoctools/customization/sr/entities/underArtisticLicense.docbook share/kf6/kdoctools/customization/sr/entities/underBSDLicense.docbook share/kf6/kdoctools/customization/sr/entities/underFDL.docbook share/kf6/kdoctools/customization/sr/entities/underGPL.docbook share/kf6/kdoctools/customization/sr/entities/underLGPL.docbook share/kf6/kdoctools/customization/sr/entities/underX11License.docbook share/kf6/kdoctools/customization/sr/entities/update-doc.docbook share/kf6/kdoctools/customization/sr/lang.entities share/kf6/kdoctools/customization/sr/strings.entities share/kf6/kdoctools/customization/sr/user.entities share/kf6/kdoctools/customization/sr@ijekavian/catalog.xml share/kf6/kdoctools/customization/sr@ijekavian/entities/fdl-notice.docbook share/kf6/kdoctools/customization/sr@ijekavian/entities/gpl-notice.docbook share/kf6/kdoctools/customization/sr@ijekavian/entities/help-menu.docbook share/kf6/kdoctools/customization/sr@ijekavian/entities/install-compile.docbook share/kf6/kdoctools/customization/sr@ijekavian/entities/install-intro.docbook share/kf6/kdoctools/customization/sr@ijekavian/entities/lgpl-notice.docbook share/kf6/kdoctools/customization/sr@ijekavian/entities/report-bugs.docbook share/kf6/kdoctools/customization/sr@ijekavian/entities/underArtisticLicense.docbook share/kf6/kdoctools/customization/sr@ijekavian/entities/underBSDLicense.docbook share/kf6/kdoctools/customization/sr@ijekavian/entities/underFDL.docbook share/kf6/kdoctools/customization/sr@ijekavian/entities/underGPL.docbook share/kf6/kdoctools/customization/sr@ijekavian/entities/underLGPL.docbook share/kf6/kdoctools/customization/sr@ijekavian/entities/underX11License.docbook share/kf6/kdoctools/customization/sr@ijekavian/entities/update-doc.docbook share/kf6/kdoctools/customization/sr@ijekavian/lang.entities share/kf6/kdoctools/customization/sr@ijekavian/strings.entities share/kf6/kdoctools/customization/sr@ijekavian/user.entities share/kf6/kdoctools/customization/sr@ijekavianlatin/catalog.xml share/kf6/kdoctools/customization/sr@ijekavianlatin/entities/fdl-notice.docbook share/kf6/kdoctools/customization/sr@ijekavianlatin/entities/gpl-notice.docbook share/kf6/kdoctools/customization/sr@ijekavianlatin/entities/help-menu.docbook share/kf6/kdoctools/customization/sr@ijekavianlatin/entities/install-compile.docbook share/kf6/kdoctools/customization/sr@ijekavianlatin/entities/install-intro.docbook share/kf6/kdoctools/customization/sr@ijekavianlatin/entities/lgpl-notice.docbook share/kf6/kdoctools/customization/sr@ijekavianlatin/entities/report-bugs.docbook share/kf6/kdoctools/customization/sr@ijekavianlatin/entities/underArtisticLicense.docbook share/kf6/kdoctools/customization/sr@ijekavianlatin/entities/underBSDLicense.docbook share/kf6/kdoctools/customization/sr@ijekavianlatin/entities/underFDL.docbook share/kf6/kdoctools/customization/sr@ijekavianlatin/entities/underGPL.docbook share/kf6/kdoctools/customization/sr@ijekavianlatin/entities/underLGPL.docbook share/kf6/kdoctools/customization/sr@ijekavianlatin/entities/underX11License.docbook share/kf6/kdoctools/customization/sr@ijekavianlatin/entities/update-doc.docbook share/kf6/kdoctools/customization/sr@ijekavianlatin/lang.entities share/kf6/kdoctools/customization/sr@ijekavianlatin/strings.entities share/kf6/kdoctools/customization/sr@ijekavianlatin/user.entities share/kf6/kdoctools/customization/sr@latin/catalog.xml share/kf6/kdoctools/customization/sr@latin/entities/fdl-notice.docbook share/kf6/kdoctools/customization/sr@latin/entities/gpl-notice.docbook share/kf6/kdoctools/customization/sr@latin/entities/help-menu.docbook share/kf6/kdoctools/customization/sr@latin/entities/install-compile.docbook share/kf6/kdoctools/customization/sr@latin/entities/install-intro.docbook share/kf6/kdoctools/customization/sr@latin/entities/lgpl-notice.docbook share/kf6/kdoctools/customization/sr@latin/entities/report-bugs.docbook share/kf6/kdoctools/customization/sr@latin/entities/underArtisticLicense.docbook share/kf6/kdoctools/customization/sr@latin/entities/underBSDLicense.docbook share/kf6/kdoctools/customization/sr@latin/entities/underFDL.docbook share/kf6/kdoctools/customization/sr@latin/entities/underGPL.docbook share/kf6/kdoctools/customization/sr@latin/entities/underLGPL.docbook share/kf6/kdoctools/customization/sr@latin/entities/underX11License.docbook share/kf6/kdoctools/customization/sr@latin/entities/update-doc.docbook share/kf6/kdoctools/customization/sr@latin/lang.entities share/kf6/kdoctools/customization/sr@latin/strings.entities share/kf6/kdoctools/customization/sr@latin/user.entities share/kf6/kdoctools/customization/sv/catalog.xml share/kf6/kdoctools/customization/sv/entities/fdl-notice.docbook share/kf6/kdoctools/customization/sv/entities/gpl-notice.docbook share/kf6/kdoctools/customization/sv/entities/help-menu.docbook share/kf6/kdoctools/customization/sv/entities/install-compile.docbook share/kf6/kdoctools/customization/sv/entities/install-intro.docbook share/kf6/kdoctools/customization/sv/entities/lgpl-notice.docbook share/kf6/kdoctools/customization/sv/entities/report-bugs.docbook share/kf6/kdoctools/customization/sv/entities/underArtisticLicense.docbook share/kf6/kdoctools/customization/sv/entities/underBSDLicense.docbook share/kf6/kdoctools/customization/sv/entities/underFDL.docbook share/kf6/kdoctools/customization/sv/entities/underGPL.docbook share/kf6/kdoctools/customization/sv/entities/underLGPL.docbook share/kf6/kdoctools/customization/sv/entities/underX11License.docbook share/kf6/kdoctools/customization/sv/entities/update-doc.docbook share/kf6/kdoctools/customization/sv/lang.entities share/kf6/kdoctools/customization/sv/strings.entities share/kf6/kdoctools/customization/sv/user.entities share/kf6/kdoctools/customization/th/catalog.xml share/kf6/kdoctools/customization/th/entities/fdl-notice.docbook share/kf6/kdoctools/customization/th/entities/gpl-notice.docbook share/kf6/kdoctools/customization/th/entities/help-menu.docbook share/kf6/kdoctools/customization/th/entities/install-compile.docbook share/kf6/kdoctools/customization/th/entities/install-intro.docbook share/kf6/kdoctools/customization/th/entities/lgpl-notice.docbook share/kf6/kdoctools/customization/th/entities/report-bugs.docbook share/kf6/kdoctools/customization/th/entities/underArtisticLicense.docbook share/kf6/kdoctools/customization/th/entities/underBSDLicense.docbook share/kf6/kdoctools/customization/th/entities/underFDL.docbook share/kf6/kdoctools/customization/th/entities/underGPL.docbook share/kf6/kdoctools/customization/th/entities/underLGPL.docbook share/kf6/kdoctools/customization/th/entities/underX11License.docbook share/kf6/kdoctools/customization/th/entities/update-doc.docbook share/kf6/kdoctools/customization/th/lang.entities share/kf6/kdoctools/customization/th/strings.entities share/kf6/kdoctools/customization/th/user.entities share/kf6/kdoctools/customization/tr/catalog.xml share/kf6/kdoctools/customization/tr/entities/ccbysa4-notice.docbook share/kf6/kdoctools/customization/tr/entities/fdl-notice.docbook share/kf6/kdoctools/customization/tr/entities/gpl-notice.docbook share/kf6/kdoctools/customization/tr/entities/help-menu.docbook share/kf6/kdoctools/customization/tr/entities/install-compile.docbook share/kf6/kdoctools/customization/tr/entities/install-intro.docbook share/kf6/kdoctools/customization/tr/entities/lgpl-notice.docbook share/kf6/kdoctools/customization/tr/entities/report-bugs.docbook share/kf6/kdoctools/customization/tr/entities/underArtisticLicense.docbook share/kf6/kdoctools/customization/tr/entities/underBSDLicense.docbook share/kf6/kdoctools/customization/tr/entities/underCCBYSA4.docbook share/kf6/kdoctools/customization/tr/entities/underFDL.docbook share/kf6/kdoctools/customization/tr/entities/underGPL.docbook share/kf6/kdoctools/customization/tr/entities/underLGPL.docbook share/kf6/kdoctools/customization/tr/entities/underX11License.docbook share/kf6/kdoctools/customization/tr/entities/update-doc.docbook share/kf6/kdoctools/customization/tr/lang.entities share/kf6/kdoctools/customization/tr/strings.entities share/kf6/kdoctools/customization/tr/user.entities share/kf6/kdoctools/customization/uk/catalog.xml share/kf6/kdoctools/customization/uk/entities/ccbysa4-notice.docbook share/kf6/kdoctools/customization/uk/entities/fdl-notice.docbook share/kf6/kdoctools/customization/uk/entities/gpl-notice.docbook share/kf6/kdoctools/customization/uk/entities/help-menu.docbook share/kf6/kdoctools/customization/uk/entities/install-compile.docbook share/kf6/kdoctools/customization/uk/entities/install-intro.docbook share/kf6/kdoctools/customization/uk/entities/lgpl-notice.docbook share/kf6/kdoctools/customization/uk/entities/report-bugs.docbook share/kf6/kdoctools/customization/uk/entities/underArtisticLicense.docbook share/kf6/kdoctools/customization/uk/entities/underBSDLicense.docbook share/kf6/kdoctools/customization/uk/entities/underCCBYSA4.docbook share/kf6/kdoctools/customization/uk/entities/underFDL.docbook share/kf6/kdoctools/customization/uk/entities/underGPL.docbook share/kf6/kdoctools/customization/uk/entities/underLGPL.docbook share/kf6/kdoctools/customization/uk/entities/underX11License.docbook share/kf6/kdoctools/customization/uk/entities/update-doc.docbook share/kf6/kdoctools/customization/uk/lang.entities share/kf6/kdoctools/customization/uk/strings.entities share/kf6/kdoctools/customization/uk/user.entities share/kf6/kdoctools/customization/wa/catalog.xml share/kf6/kdoctools/customization/wa/contributor.entities share/kf6/kdoctools/customization/wa/entities/fdl-notice.docbook share/kf6/kdoctools/customization/wa/entities/gpl-notice.docbook share/kf6/kdoctools/customization/wa/entities/help-menu.docbook share/kf6/kdoctools/customization/wa/entities/install-compile.docbook share/kf6/kdoctools/customization/wa/entities/install-intro.docbook share/kf6/kdoctools/customization/wa/entities/lgpl-notice.docbook share/kf6/kdoctools/customization/wa/entities/report-bugs.docbook share/kf6/kdoctools/customization/wa/entities/underArtisticLicense.docbook share/kf6/kdoctools/customization/wa/entities/underBSDLicense.docbook share/kf6/kdoctools/customization/wa/entities/underFDL.docbook share/kf6/kdoctools/customization/wa/entities/underGPL.docbook share/kf6/kdoctools/customization/wa/entities/underX11License.docbook share/kf6/kdoctools/customization/wa/entities/update-doc.docbook share/kf6/kdoctools/customization/wa/lang.entities share/kf6/kdoctools/customization/wa/strings.entities share/kf6/kdoctools/customization/wa/user.entities share/kf6/kdoctools/customization/xh/catalog.xml share/kf6/kdoctools/customization/xh/contributor.entities share/kf6/kdoctools/customization/xh/entities/fdl-notice.docbook share/kf6/kdoctools/customization/xh/entities/gpl-notice.docbook share/kf6/kdoctools/customization/xh/entities/help-menu.docbook share/kf6/kdoctools/customization/xh/entities/install-compile.docbook share/kf6/kdoctools/customization/xh/entities/install-intro.docbook share/kf6/kdoctools/customization/xh/entities/lgpl-notice.docbook share/kf6/kdoctools/customization/xh/entities/report-bugs.docbook share/kf6/kdoctools/customization/xh/entities/underArtisticLicense.docbook share/kf6/kdoctools/customization/xh/entities/underBSDLicense.docbook share/kf6/kdoctools/customization/xh/entities/underFDL.docbook share/kf6/kdoctools/customization/xh/entities/underGPL.docbook share/kf6/kdoctools/customization/xh/entities/underX11License.docbook share/kf6/kdoctools/customization/xh/entities/update-doc.docbook share/kf6/kdoctools/customization/xh/lang.entities share/kf6/kdoctools/customization/xh/strings.entities share/kf6/kdoctools/customization/xh/user.entities share/kf6/kdoctools/customization/xsl/README share/kf6/kdoctools/customization/xsl/all-l10n.xml share/kf6/kdoctools/customization/xsl/ca.xml share/kf6/kdoctools/customization/xsl/ca_valencia.xml share/kf6/kdoctools/customization/xsl/cs.xml share/kf6/kdoctools/customization/xsl/de.xml share/kf6/kdoctools/customization/xsl/el.xml share/kf6/kdoctools/customization/xsl/en.xml share/kf6/kdoctools/customization/xsl/eo.xml share/kf6/kdoctools/customization/xsl/es.xml share/kf6/kdoctools/customization/xsl/et.xml share/kf6/kdoctools/customization/xsl/fr.xml share/kf6/kdoctools/customization/xsl/gl.xml share/kf6/kdoctools/customization/xsl/hu.xml share/kf6/kdoctools/customization/xsl/id.xml share/kf6/kdoctools/customization/xsl/it.xml share/kf6/kdoctools/customization/xsl/ko.xml share/kf6/kdoctools/customization/xsl/lt.xml share/kf6/kdoctools/customization/xsl/nds.xml share/kf6/kdoctools/customization/xsl/nl.xml share/kf6/kdoctools/customization/xsl/nn.xml share/kf6/kdoctools/customization/xsl/pl.xml share/kf6/kdoctools/customization/xsl/pt.xml share/kf6/kdoctools/customization/xsl/pt_br.xml share/kf6/kdoctools/customization/xsl/ru.xml share/kf6/kdoctools/customization/xsl/sl.xml share/kf6/kdoctools/customization/xsl/sr.xml share/kf6/kdoctools/customization/xsl/sr_ijekavian.xml share/kf6/kdoctools/customization/xsl/sr_ijekavianlatin.xml share/kf6/kdoctools/customization/xsl/sr_latin.xml share/kf6/kdoctools/customization/xsl/sv.xml share/kf6/kdoctools/customization/xsl/tr.xml share/kf6/kdoctools/customization/xsl/uk.xml share/kf6/kdoctools/customization/xx/catalog.xml share/kf6/kdoctools/customization/xx/contributor.entities share/kf6/kdoctools/customization/xx/entities/fdl-notice.docbook share/kf6/kdoctools/customization/xx/entities/gpl-notice.docbook share/kf6/kdoctools/customization/xx/entities/help-menu.docbook share/kf6/kdoctools/customization/xx/entities/install-compile.docbook share/kf6/kdoctools/customization/xx/entities/install-intro.docbook share/kf6/kdoctools/customization/xx/entities/lgpl-notice.docbook share/kf6/kdoctools/customization/xx/entities/report-bugs.docbook share/kf6/kdoctools/customization/xx/entities/underArtisticLicense.docbook share/kf6/kdoctools/customization/xx/entities/underBSDLicense.docbook share/kf6/kdoctools/customization/xx/entities/underFDL.docbook share/kf6/kdoctools/customization/xx/entities/underGPL.docbook share/kf6/kdoctools/customization/xx/entities/underX11License.docbook share/kf6/kdoctools/customization/xx/entities/update-doc.docbook share/kf6/kdoctools/customization/xx/lang.entities share/kf6/kdoctools/customization/xx/strings.entities share/kf6/kdoctools/customization/xx/user.entities share/kf6/kdoctools/customization/zh-CN/catalog.xml share/kf6/kdoctools/customization/zh-CN/entities/fdl-notice.docbook share/kf6/kdoctools/customization/zh-CN/entities/gpl-notice.docbook share/kf6/kdoctools/customization/zh-CN/entities/help-menu.docbook share/kf6/kdoctools/customization/zh-CN/entities/install-compile.docbook share/kf6/kdoctools/customization/zh-CN/entities/install-intro.docbook share/kf6/kdoctools/customization/zh-CN/entities/lgpl-notice.docbook share/kf6/kdoctools/customization/zh-CN/entities/report-bugs.docbook share/kf6/kdoctools/customization/zh-CN/entities/underArtisticLicense.docbook share/kf6/kdoctools/customization/zh-CN/entities/underBSDLicense.docbook share/kf6/kdoctools/customization/zh-CN/entities/underFDL.docbook share/kf6/kdoctools/customization/zh-CN/entities/underGPL.docbook share/kf6/kdoctools/customization/zh-CN/entities/underLGPL.docbook share/kf6/kdoctools/customization/zh-CN/entities/underX11License.docbook share/kf6/kdoctools/customization/zh-CN/entities/update-doc.docbook share/kf6/kdoctools/customization/zh-CN/lang.entities share/kf6/kdoctools/customization/zh-CN/strings.entities share/kf6/kdoctools/customization/zh-CN/user.entities share/kf6/kdoctools/customization/zh-TW/catalog.xml share/kf6/kdoctools/customization/zh-TW/entities/fdl-notice.docbook share/kf6/kdoctools/customization/zh-TW/entities/gpl-notice.docbook share/kf6/kdoctools/customization/zh-TW/entities/help-menu.docbook share/kf6/kdoctools/customization/zh-TW/entities/install-compile.docbook share/kf6/kdoctools/customization/zh-TW/entities/install-intro.docbook share/kf6/kdoctools/customization/zh-TW/entities/lgpl-notice.docbook share/kf6/kdoctools/customization/zh-TW/entities/report-bugs.docbook share/kf6/kdoctools/customization/zh-TW/entities/underArtisticLicense.docbook share/kf6/kdoctools/customization/zh-TW/entities/underBSDLicense.docbook share/kf6/kdoctools/customization/zh-TW/entities/underFDL.docbook share/kf6/kdoctools/customization/zh-TW/entities/underGPL.docbook share/kf6/kdoctools/customization/zh-TW/entities/underX11License.docbook share/kf6/kdoctools/customization/zh-TW/entities/update-doc.docbook share/kf6/kdoctools/customization/zh-TW/lang.entities share/kf6/kdoctools/customization/zh-TW/strings.entities share/kf6/kdoctools/customization/zh-TW/user.entities share/locale/af/LC_MESSAGES/kdoctools6.mo share/locale/ar/LC_MESSAGES/kdoctools6.mo share/locale/ast/LC_MESSAGES/kdoctools6.mo share/locale/az/LC_MESSAGES/kdoctools6.mo share/locale/be/LC_MESSAGES/kdoctools6.mo share/locale/bg/LC_MESSAGES/kdoctools6.mo share/locale/bn/LC_MESSAGES/kdoctools6.mo share/locale/br/LC_MESSAGES/kdoctools6.mo share/locale/bs/LC_MESSAGES/kdoctools6.mo share/locale/ca/LC_MESSAGES/kdoctools6.mo share/locale/ca@valencia/LC_MESSAGES/kdoctools6.mo share/locale/cs/LC_MESSAGES/kdoctools6.mo share/locale/csb/LC_MESSAGES/kdoctools6.mo share/locale/cy/LC_MESSAGES/kdoctools6.mo share/locale/da/LC_MESSAGES/kdoctools6.mo share/locale/de/LC_MESSAGES/kdoctools6.mo share/locale/el/LC_MESSAGES/kdoctools6.mo share/locale/en_GB/LC_MESSAGES/kdoctools6.mo share/locale/eo/LC_MESSAGES/kdoctools6.mo share/locale/es/LC_MESSAGES/kdoctools6.mo share/locale/et/LC_MESSAGES/kdoctools6.mo share/locale/eu/LC_MESSAGES/kdoctools6.mo share/locale/fa/LC_MESSAGES/kdoctools6.mo share/locale/fi/LC_MESSAGES/kdoctools6.mo share/locale/fr/LC_MESSAGES/kdoctools6.mo share/locale/fy/LC_MESSAGES/kdoctools6.mo share/locale/ga/LC_MESSAGES/kdoctools6.mo share/locale/gd/LC_MESSAGES/kdoctools6.mo share/locale/gl/LC_MESSAGES/kdoctools6.mo share/locale/gu/LC_MESSAGES/kdoctools6.mo share/locale/he/LC_MESSAGES/kdoctools6.mo share/locale/hi/LC_MESSAGES/kdoctools6.mo share/locale/hr/LC_MESSAGES/kdoctools6.mo share/locale/hsb/LC_MESSAGES/kdoctools6.mo share/locale/hu/LC_MESSAGES/kdoctools6.mo share/locale/ia/LC_MESSAGES/kdoctools6.mo share/locale/id/LC_MESSAGES/kdoctools6.mo share/locale/is/LC_MESSAGES/kdoctools6.mo share/locale/it/LC_MESSAGES/kdoctools6.mo share/locale/ja/LC_MESSAGES/kdoctools6.mo share/locale/ka/LC_MESSAGES/kdoctools6.mo share/locale/kk/LC_MESSAGES/kdoctools6.mo share/locale/km/LC_MESSAGES/kdoctools6.mo share/locale/kn/LC_MESSAGES/kdoctools6.mo share/locale/ko/LC_MESSAGES/kdoctools6.mo share/locale/ku/LC_MESSAGES/kdoctools6.mo share/locale/lt/LC_MESSAGES/kdoctools6.mo share/locale/lv/LC_MESSAGES/kdoctools6.mo share/locale/mai/LC_MESSAGES/kdoctools6.mo share/locale/mk/LC_MESSAGES/kdoctools6.mo share/locale/ml/LC_MESSAGES/kdoctools6.mo share/locale/mr/LC_MESSAGES/kdoctools6.mo share/locale/ms/LC_MESSAGES/kdoctools6.mo share/locale/nb/LC_MESSAGES/kdoctools6.mo share/locale/nds/LC_MESSAGES/kdoctools6.mo share/locale/ne/LC_MESSAGES/kdoctools6.mo share/locale/nl/LC_MESSAGES/kdoctools6.mo share/locale/nn/LC_MESSAGES/kdoctools6.mo share/locale/oc/LC_MESSAGES/kdoctools6.mo share/locale/pa/LC_MESSAGES/kdoctools6.mo share/locale/pl/LC_MESSAGES/kdoctools6.mo share/locale/pt/LC_MESSAGES/kdoctools6.mo share/locale/pt_BR/LC_MESSAGES/kdoctools6.mo share/locale/ro/LC_MESSAGES/kdoctools6.mo share/locale/ru/LC_MESSAGES/kdoctools6.mo share/locale/sa/LC_MESSAGES/kdoctools6.mo share/locale/se/LC_MESSAGES/kdoctools6.mo share/locale/sk/LC_MESSAGES/kdoctools6.mo share/locale/sl/LC_MESSAGES/kdoctools6.mo share/locale/sq/LC_MESSAGES/kdoctools6.mo share/locale/sr/LC_MESSAGES/kdoctools6.mo share/locale/sr@ijekavian/LC_MESSAGES/kdoctools6.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kdoctools6.mo share/locale/sr@latin/LC_MESSAGES/kdoctools6.mo share/locale/sv/LC_MESSAGES/kdoctools6.mo share/locale/ta/LC_MESSAGES/kdoctools6.mo share/locale/tg/LC_MESSAGES/kdoctools6.mo share/locale/th/LC_MESSAGES/kdoctools6.mo share/locale/tr/LC_MESSAGES/kdoctools6.mo share/locale/ug/LC_MESSAGES/kdoctools6.mo share/locale/uk/LC_MESSAGES/kdoctools6.mo share/locale/uz/LC_MESSAGES/kdoctools6.mo share/locale/uz@cyrillic/LC_MESSAGES/kdoctools6.mo share/locale/vi/LC_MESSAGES/kdoctools6.mo share/locale/zh_CN/LC_MESSAGES/kdoctools6.mo share/locale/zh_TW/LC_MESSAGES/kdoctools6.mo +share/man/ca/man1/checkXML6.1.gz +share/man/ca/man1/meinproc6.1.gz +share/man/ca/man7/kf6options.7.gz +share/man/ca/man7/qt6options.7.gz +share/man/es/man1/checkXML6.1.gz +share/man/es/man1/meinproc6.1.gz +share/man/es/man7/qt6options.7.gz +share/man/it/man1/checkXML6.1.gz +share/man/it/man1/meinproc6.1.gz +share/man/it/man7/kf6options.7.gz +share/man/it/man7/qt6options.7.gz +share/man/man1/checkXML6.1.gz +share/man/man1/meinproc6.1.gz +share/man/man7/kf6options.7.gz +share/man/man7/qt6options.7.gz +share/man/nl/man1/checkXML6.1.gz +share/man/nl/man1/meinproc6.1.gz +share/man/nl/man7/kf6options.7.gz +share/man/nl/man7/qt6options.7.gz +share/man/tr/man1/checkXML6.1.gz +share/man/tr/man1/meinproc6.1.gz +share/man/tr/man7/kf6options.7.gz +share/man/tr/man7/qt6options.7.gz +share/man/uk/man1/checkXML6.1.gz +share/man/uk/man1/meinproc6.1.gz +share/man/uk/man7/kf6options.7.gz +share/man/uk/man7/qt6options.7.gz diff --git a/lang/kf5-kross/Makefile b/lang/kf5-kross/Makefile index d7bd092fa4d7..6ab0a9cb9229 100644 --- a/lang/kf5-kross/Makefile +++ b/lang/kf5-kross/Makefile @@ -1,20 +1,21 @@ PORTNAME= kross DISTVERSION= ${KDE_FRAMEWORKS_VERSION} +PORTREVISION= 1 CATEGORIES= lang kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 multi-language application scripting USES= cmake compiler:c++11-lib gettext gl kde:5 qt:5 tar:xz xorg USE_GL= gl USE_KDE= auth bookmarks codecs completion config configwidgets \ coreaddons i18n iconthemes itemviews \ jobwidgets kio parts service solid sonnet textwidgets \ widgetsaddons windowsystem xmlgui \ doctools:build ecm:build USE_QT= concurrent core dbus gui network script uiplugin \ uitools widgets xml \ buildtools:build qmake:build USE_XORG= x11 .include diff --git a/lang/kf5-kross/pkg-plist b/lang/kf5-kross/pkg-plist index d3ea29ab859d..eb270d0b3e76 100644 --- a/lang/kf5-kross/pkg-plist +++ b/lang/kf5-kross/pkg-plist @@ -1,164 +1,164 @@ bin/kf5kross include/KF5/KrossCore/Kross/Core/Action include/KF5/KrossCore/Kross/Core/ActionCollection include/KF5/KrossCore/Kross/Core/ChildrenInterface include/KF5/KrossCore/Kross/Core/ErrorInterface include/KF5/KrossCore/Kross/Core/Interpreter include/KF5/KrossCore/Kross/Core/KrossConfig include/KF5/KrossCore/Kross/Core/Manager include/KF5/KrossCore/Kross/Core/MetaFunction include/KF5/KrossCore/Kross/Core/MetaType include/KF5/KrossCore/Kross/Core/Object include/KF5/KrossCore/Kross/Core/Script include/KF5/KrossCore/Kross/Core/WrapperInterface include/KF5/KrossCore/kross/core/action.h include/KF5/KrossCore/kross/core/actioncollection.h include/KF5/KrossCore/kross/core/childreninterface.h include/KF5/KrossCore/kross/core/errorinterface.h include/KF5/KrossCore/kross/core/interpreter.h include/KF5/KrossCore/kross/core/krossconfig.h include/KF5/KrossCore/kross/core/krosscore_export.h include/KF5/KrossCore/kross/core/manager.h include/KF5/KrossCore/kross/core/metafunction.h include/KF5/KrossCore/kross/core/metatype.h include/KF5/KrossCore/kross/core/object.h include/KF5/KrossCore/kross/core/script.h include/KF5/KrossCore/kross/core/wrapperinterface.h include/KF5/KrossUi/Kross/Ui/ActionCollectionModel include/KF5/KrossUi/Kross/Ui/ActionCollectionView include/KF5/KrossUi/Kross/Ui/ScriptingPlugin include/KF5/KrossUi/kross/ui/actioncollectionmodel.h include/KF5/KrossUi/kross/ui/actioncollectionview.h include/KF5/KrossUi/kross/ui/krossui_export.h include/KF5/KrossUi/kross/ui/model.h include/KF5/KrossUi/kross/ui/plugin.h include/KF5/KrossUi/kross/ui/scriptingplugin.h include/KF5/KrossUi/kross/ui/view.h include/KF5/kross_version.h lib/cmake/KF5Kross/KF5KrossConfig.cmake lib/cmake/KF5Kross/KF5KrossConfigVersion.cmake lib/cmake/KF5Kross/KF5KrossTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5Kross/KF5KrossTargets.cmake lib/libKF5KrossCore.so lib/libKF5KrossCore.so.5 lib/libKF5KrossCore.so.%%KDE_FRAMEWORKS_VERSION%% lib/libKF5KrossUi.so lib/libKF5KrossUi.so.5 lib/libKF5KrossUi.so.%%KDE_FRAMEWORKS_VERSION%% %%QT_MKSPECDIR%%/modules/qt_KrossCore.pri %%QT_MKSPECDIR%%/modules/qt_KrossUi.pri %%QT_PLUGINDIR%%/krossmoduleforms.so %%QT_PLUGINDIR%%/krossmodulekdetranslation.so %%QT_PLUGINDIR%%/krossqts.so %%QT_PLUGINDIR%%/script/krossqtsplugin.so -man/ca/man1/kf5kross.1.gz -man/ca@valencia/man1/kf5kross.1.gz -man/de/man1/kf5kross.1.gz -man/es/man1/kf5kross.1.gz -man/it/man1/kf5kross.1.gz -man/man1/kf5kross.1.gz -man/nl/man1/kf5kross.1.gz -man/pt/man1/kf5kross.1.gz -man/pt_BR/man1/kf5kross.1.gz -man/sv/man1/kf5kross.1.gz -man/uk/man1/kf5kross.1.gz share/locale/af/LC_MESSAGES/kross5.mo share/locale/ar/LC_MESSAGES/kross5.mo share/locale/as/LC_MESSAGES/kross5.mo share/locale/az/LC_MESSAGES/kross5.mo share/locale/be/LC_MESSAGES/kross5.mo share/locale/be@latin/LC_MESSAGES/kross5.mo share/locale/bg/LC_MESSAGES/kross5.mo share/locale/bn/LC_MESSAGES/kross5.mo share/locale/bn_IN/LC_MESSAGES/kross5.mo share/locale/br/LC_MESSAGES/kross5.mo share/locale/bs/LC_MESSAGES/kross5.mo share/locale/ca/LC_MESSAGES/kross5.mo share/locale/ca@valencia/LC_MESSAGES/kross5.mo share/locale/crh/LC_MESSAGES/kross5.mo share/locale/cs/LC_MESSAGES/kross5.mo share/locale/csb/LC_MESSAGES/kross5.mo share/locale/cy/LC_MESSAGES/kross5.mo share/locale/da/LC_MESSAGES/kross5.mo share/locale/de/LC_MESSAGES/kross5.mo share/locale/el/LC_MESSAGES/kross5.mo share/locale/en_GB/LC_MESSAGES/kross5.mo share/locale/eo/LC_MESSAGES/kross5.mo share/locale/es/LC_MESSAGES/kross5.mo share/locale/et/LC_MESSAGES/kross5.mo share/locale/eu/LC_MESSAGES/kross5.mo share/locale/fa/LC_MESSAGES/kross5.mo share/locale/fi/LC_MESSAGES/kross5.mo share/locale/fr/LC_MESSAGES/kross5.mo share/locale/fy/LC_MESSAGES/kross5.mo share/locale/ga/LC_MESSAGES/kross5.mo share/locale/gd/LC_MESSAGES/kross5.mo share/locale/gl/LC_MESSAGES/kross5.mo share/locale/gu/LC_MESSAGES/kross5.mo share/locale/ha/LC_MESSAGES/kross5.mo share/locale/he/LC_MESSAGES/kross5.mo share/locale/hi/LC_MESSAGES/kross5.mo share/locale/hne/LC_MESSAGES/kross5.mo share/locale/hr/LC_MESSAGES/kross5.mo share/locale/hsb/LC_MESSAGES/kross5.mo share/locale/hu/LC_MESSAGES/kross5.mo share/locale/hy/LC_MESSAGES/kross5.mo share/locale/ia/LC_MESSAGES/kross5.mo share/locale/id/LC_MESSAGES/kross5.mo share/locale/is/LC_MESSAGES/kross5.mo share/locale/it/LC_MESSAGES/kross5.mo share/locale/ja/LC_MESSAGES/kross5.mo share/locale/ka/LC_MESSAGES/kross5.mo share/locale/kk/LC_MESSAGES/kross5.mo share/locale/km/LC_MESSAGES/kross5.mo share/locale/kn/LC_MESSAGES/kross5.mo share/locale/ko/LC_MESSAGES/kross5.mo share/locale/ku/LC_MESSAGES/kross5.mo share/locale/lb/LC_MESSAGES/kross5.mo share/locale/lt/LC_MESSAGES/kross5.mo share/locale/lv/LC_MESSAGES/kross5.mo share/locale/mai/LC_MESSAGES/kross5.mo share/locale/mk/LC_MESSAGES/kross5.mo share/locale/ml/LC_MESSAGES/kross5.mo share/locale/mr/LC_MESSAGES/kross5.mo share/locale/ms/LC_MESSAGES/kross5.mo share/locale/nb/LC_MESSAGES/kross5.mo share/locale/nds/LC_MESSAGES/kross5.mo share/locale/ne/LC_MESSAGES/kross5.mo share/locale/nl/LC_MESSAGES/kross5.mo share/locale/nn/LC_MESSAGES/kross5.mo share/locale/oc/LC_MESSAGES/kross5.mo share/locale/or/LC_MESSAGES/kross5.mo share/locale/pa/LC_MESSAGES/kross5.mo share/locale/pl/LC_MESSAGES/kross5.mo share/locale/ps/LC_MESSAGES/kross5.mo share/locale/pt/LC_MESSAGES/kross5.mo share/locale/pt_BR/LC_MESSAGES/kross5.mo share/locale/ro/LC_MESSAGES/kross5.mo share/locale/ru/LC_MESSAGES/kross5.mo share/locale/se/LC_MESSAGES/kross5.mo share/locale/si/LC_MESSAGES/kross5.mo share/locale/sk/LC_MESSAGES/kross5.mo share/locale/sl/LC_MESSAGES/kross5.mo share/locale/sq/LC_MESSAGES/kross5.mo share/locale/sr/LC_MESSAGES/kross5.mo share/locale/sr@ijekavian/LC_MESSAGES/kross5.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kross5.mo share/locale/sr@latin/LC_MESSAGES/kross5.mo share/locale/sv/LC_MESSAGES/kross5.mo share/locale/ta/LC_MESSAGES/kross5.mo share/locale/te/LC_MESSAGES/kross5.mo share/locale/tg/LC_MESSAGES/kross5.mo share/locale/th/LC_MESSAGES/kross5.mo share/locale/tr/LC_MESSAGES/kross5.mo share/locale/tt/LC_MESSAGES/kross5.mo share/locale/ug/LC_MESSAGES/kross5.mo share/locale/uk/LC_MESSAGES/kross5.mo share/locale/uz/LC_MESSAGES/kross5.mo share/locale/uz@cyrillic/LC_MESSAGES/kross5.mo share/locale/vi/LC_MESSAGES/kross5.mo share/locale/wa/LC_MESSAGES/kross5.mo share/locale/xh/LC_MESSAGES/kross5.mo share/locale/zh_CN/LC_MESSAGES/kross5.mo share/locale/zh_HK/LC_MESSAGES/kross5.mo share/locale/zh_TW/LC_MESSAGES/kross5.mo +share/man/ca/man1/kf5kross.1.gz +share/man/ca@valencia/man1/kf5kross.1.gz +share/man/de/man1/kf5kross.1.gz +share/man/es/man1/kf5kross.1.gz +share/man/it/man1/kf5kross.1.gz +share/man/man1/kf5kross.1.gz +share/man/nl/man1/kf5kross.1.gz +share/man/pt/man1/kf5kross.1.gz +share/man/pt_BR/man1/kf5kross.1.gz +share/man/sv/man1/kf5kross.1.gz +share/man/uk/man1/kf5kross.1.gz diff --git a/sysutils/kf5-kwallet/Makefile b/sysutils/kf5-kwallet/Makefile index 0aea0dc7ee30..f96ddf1b1477 100644 --- a/sysutils/kf5-kwallet/Makefile +++ b/sysutils/kf5-kwallet/Makefile @@ -1,30 +1,31 @@ PORTNAME= kwallet DISTVERSION= ${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 \ libgcrypt.so:security/libgcrypt \ libgpg-error.so:security/libgpg-error \ libgpgme.so:security/gpgme \ libqgpgme.so:security/gpgme-qt@qt5 \ libgpgmepp.so:security/gpgme-cpp USES= cmake compiler:c++11-lib gettext kde:5 qca qt:5 tar:xz xorg USE_KDE= auth codecs config configwidgets coreaddons dbusaddons \ i18n iconthemes notifications service \ widgetsaddons windowsystem \ doctools:build ecm:build USE_QT= core dbus gui testlib widgets xml \ buildtools:build qmake:build USE_XORG= x11 OPTIONS_DEFINE= PINENTRY OPTIONS_DEFAULT= PINENTRY PINENTRY_DESC= Include pinentry-qt, for wallet passwords PINENTRY_RUN_DEPENDS= pinentry-qt5:security/pinentry-qt5 .include diff --git a/sysutils/kf5-kwallet/pkg-plist b/sysutils/kf5-kwallet/pkg-plist index 1a26cbbaaa61..c9b893189993 100644 --- a/sysutils/kf5-kwallet/pkg-plist +++ b/sysutils/kf5-kwallet/pkg-plist @@ -1,151 +1,151 @@ bin/kwallet-query bin/kwalletd5 include/KF5/KWallet/KWallet include/KF5/KWallet/kwallet.h include/KF5/KWallet/kwallet_export.h include/KF5/KWallet/kwallet_version.h lib/cmake/KF5Wallet/KF5WalletConfig.cmake lib/cmake/KF5Wallet/KF5WalletConfigVersion.cmake lib/cmake/KF5Wallet/KF5WalletTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5Wallet/KF5WalletTargets.cmake lib/libKF5Wallet.so lib/libKF5Wallet.so.5 lib/libKF5Wallet.so.%%KDE_FRAMEWORKS_VERSION%% lib/libkwalletbackend5.so lib/libkwalletbackend5.so.5 lib/libkwalletbackend5.so.%%KDE_FRAMEWORKS_VERSION%% %%QT_MKSPECDIR%%/modules/qt_KWallet.pri -man/man1/kwallet-query.1.gz share/applications/org.kde.kwalletd5.desktop share/dbus-1/interfaces/kf5_org.kde.KWallet.xml share/dbus-1/services/org.kde.kwalletd5.service share/knotifications5/kwalletd5.notifyrc share/kservices5/kwalletd5.desktop share/locale/ar/LC_MESSAGES/kwallet-query.mo share/locale/ar/LC_MESSAGES/kwalletd5.mo share/locale/az/LC_MESSAGES/kwallet-query.mo share/locale/az/LC_MESSAGES/kwalletd5.mo share/locale/be/LC_MESSAGES/kwalletd5.mo share/locale/bg/LC_MESSAGES/kwallet-query.mo share/locale/bg/LC_MESSAGES/kwalletd5.mo share/locale/bn/LC_MESSAGES/kwalletd5.mo share/locale/bn_IN/LC_MESSAGES/kwalletd5.mo share/locale/bs/LC_MESSAGES/kwalletd5.mo share/locale/ca/LC_MESSAGES/kwallet-query.mo share/locale/ca/LC_MESSAGES/kwalletd5.mo share/locale/ca@valencia/LC_MESSAGES/kwallet-query.mo share/locale/ca@valencia/LC_MESSAGES/kwalletd5.mo share/locale/cs/LC_MESSAGES/kwallet-query.mo share/locale/cs/LC_MESSAGES/kwalletd5.mo share/locale/da/LC_MESSAGES/kwallet-query.mo share/locale/da/LC_MESSAGES/kwalletd5.mo share/locale/de/LC_MESSAGES/kwallet-query.mo share/locale/de/LC_MESSAGES/kwalletd5.mo share/locale/el/LC_MESSAGES/kwallet-query.mo share/locale/el/LC_MESSAGES/kwalletd5.mo share/locale/en_GB/LC_MESSAGES/kwallet-query.mo share/locale/en_GB/LC_MESSAGES/kwalletd5.mo share/locale/eo/LC_MESSAGES/kwalletd5.mo share/locale/es/LC_MESSAGES/kwallet-query.mo share/locale/es/LC_MESSAGES/kwalletd5.mo share/locale/et/LC_MESSAGES/kwallet-query.mo share/locale/et/LC_MESSAGES/kwalletd5.mo share/locale/eu/LC_MESSAGES/kwallet-query.mo share/locale/eu/LC_MESSAGES/kwalletd5.mo share/locale/fa/LC_MESSAGES/kwalletd5.mo share/locale/fi/LC_MESSAGES/kwallet-query.mo share/locale/fi/LC_MESSAGES/kwalletd5.mo share/locale/fr/LC_MESSAGES/kwallet-query.mo share/locale/fr/LC_MESSAGES/kwalletd5.mo share/locale/fy/LC_MESSAGES/kwalletd5.mo share/locale/ga/LC_MESSAGES/kwalletd5.mo share/locale/gd/LC_MESSAGES/kwallet-query.mo share/locale/gd/LC_MESSAGES/kwalletd5.mo share/locale/gl/LC_MESSAGES/kwallet-query.mo share/locale/gl/LC_MESSAGES/kwalletd5.mo share/locale/gu/LC_MESSAGES/kwalletd5.mo share/locale/he/LC_MESSAGES/kwalletd5.mo share/locale/hi/LC_MESSAGES/kwalletd5.mo share/locale/hr/LC_MESSAGES/kwalletd5.mo share/locale/hsb/LC_MESSAGES/kwalletd5.mo share/locale/hu/LC_MESSAGES/kwallet-query.mo share/locale/hu/LC_MESSAGES/kwalletd5.mo share/locale/ia/LC_MESSAGES/kwallet-query.mo share/locale/ia/LC_MESSAGES/kwalletd5.mo share/locale/id/LC_MESSAGES/kwallet-query.mo share/locale/id/LC_MESSAGES/kwalletd5.mo share/locale/is/LC_MESSAGES/kwalletd5.mo share/locale/it/LC_MESSAGES/kwallet-query.mo share/locale/it/LC_MESSAGES/kwalletd5.mo share/locale/ja/LC_MESSAGES/kwallet-query.mo share/locale/ja/LC_MESSAGES/kwalletd5.mo share/locale/ka/LC_MESSAGES/kwallet-query.mo share/locale/ka/LC_MESSAGES/kwalletd5.mo share/locale/kk/LC_MESSAGES/kwalletd5.mo share/locale/km/LC_MESSAGES/kwalletd5.mo share/locale/kn/LC_MESSAGES/kwalletd5.mo share/locale/ko/LC_MESSAGES/kwallet-query.mo share/locale/ko/LC_MESSAGES/kwalletd5.mo share/locale/ku/LC_MESSAGES/kwalletd5.mo share/locale/lt/LC_MESSAGES/kwallet-query.mo share/locale/lt/LC_MESSAGES/kwalletd5.mo share/locale/lv/LC_MESSAGES/kwalletd5.mo share/locale/mai/LC_MESSAGES/kwalletd5.mo share/locale/mk/LC_MESSAGES/kwalletd5.mo share/locale/ml/LC_MESSAGES/kwallet-query.mo share/locale/ml/LC_MESSAGES/kwalletd5.mo share/locale/mr/LC_MESSAGES/kwalletd5.mo share/locale/ms/LC_MESSAGES/kwalletd5.mo share/locale/nb/LC_MESSAGES/kwalletd5.mo share/locale/nds/LC_MESSAGES/kwalletd5.mo share/locale/nl/LC_MESSAGES/kwallet-query.mo share/locale/nl/LC_MESSAGES/kwalletd5.mo share/locale/nn/LC_MESSAGES/kwallet-query.mo share/locale/nn/LC_MESSAGES/kwalletd5.mo share/locale/or/LC_MESSAGES/kwalletd5.mo share/locale/pa/LC_MESSAGES/kwallet-query.mo share/locale/pa/LC_MESSAGES/kwalletd5.mo share/locale/pl/LC_MESSAGES/kwallet-query.mo share/locale/pl/LC_MESSAGES/kwalletd5.mo share/locale/pt/LC_MESSAGES/kwallet-query.mo share/locale/pt/LC_MESSAGES/kwalletd5.mo share/locale/pt_BR/LC_MESSAGES/kwallet-query.mo share/locale/pt_BR/LC_MESSAGES/kwalletd5.mo share/locale/ro/LC_MESSAGES/kwallet-query.mo share/locale/ro/LC_MESSAGES/kwalletd5.mo share/locale/ru/LC_MESSAGES/kwallet-query.mo share/locale/ru/LC_MESSAGES/kwalletd5.mo share/locale/si/LC_MESSAGES/kwalletd5.mo share/locale/sk/LC_MESSAGES/kwallet-query.mo share/locale/sk/LC_MESSAGES/kwalletd5.mo share/locale/sl/LC_MESSAGES/kwallet-query.mo share/locale/sl/LC_MESSAGES/kwalletd5.mo share/locale/sq/LC_MESSAGES/kwalletd5.mo share/locale/sr/LC_MESSAGES/kwallet-query.mo share/locale/sr/LC_MESSAGES/kwalletd5.mo share/locale/sr@ijekavian/LC_MESSAGES/kwallet-query.mo share/locale/sr@ijekavian/LC_MESSAGES/kwalletd5.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kwallet-query.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kwalletd5.mo share/locale/sr@latin/LC_MESSAGES/kwallet-query.mo share/locale/sr@latin/LC_MESSAGES/kwalletd5.mo share/locale/sv/LC_MESSAGES/kwallet-query.mo share/locale/sv/LC_MESSAGES/kwalletd5.mo share/locale/te/LC_MESSAGES/kwalletd5.mo share/locale/tg/LC_MESSAGES/kwallet-query.mo share/locale/tg/LC_MESSAGES/kwalletd5.mo share/locale/th/LC_MESSAGES/kwalletd5.mo share/locale/tr/LC_MESSAGES/kwallet-query.mo share/locale/tr/LC_MESSAGES/kwalletd5.mo share/locale/ug/LC_MESSAGES/kwalletd5.mo share/locale/uk/LC_MESSAGES/kwallet-query.mo share/locale/uk/LC_MESSAGES/kwalletd5.mo share/locale/vi/LC_MESSAGES/kwallet-query.mo share/locale/vi/LC_MESSAGES/kwalletd5.mo share/locale/wa/LC_MESSAGES/kwalletd5.mo share/locale/zh_CN/LC_MESSAGES/kwallet-query.mo share/locale/zh_CN/LC_MESSAGES/kwalletd5.mo share/locale/zh_TW/LC_MESSAGES/kwallet-query.mo share/locale/zh_TW/LC_MESSAGES/kwalletd5.mo +share/man/man1/kwallet-query.1.gz share/qlogging-categories5/kwallet.categories share/qlogging-categories5/kwallet.renamecategories diff --git a/www/kf5-kjs/Makefile b/www/kf5-kjs/Makefile index 7935b70bbc53..3ebba484c162 100644 --- a/www/kf5-kjs/Makefile +++ b/www/kf5-kjs/Makefile @@ -1,16 +1,17 @@ PORTNAME= kjs DISTVERSION= ${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 compiler:c++11-lib kde:5 perl5 pkgconfig qt:5 tar:xz USE_KDE= doctools:build ecm:build USE_PERL5= build USE_QT= core \ buildtools:build qmake:build .include diff --git a/www/kf5-kjs/pkg-plist b/www/kf5-kjs/pkg-plist index 9a7c13b92181..29f8b7627e88 100644 --- a/www/kf5-kjs/pkg-plist +++ b/www/kf5-kjs/pkg-plist @@ -1,119 +1,119 @@ bin/kjs5 include/KF5/kjs/CommonIdentifiers.h include/KF5/kjs/CompileState.h include/KF5/kjs/ExecState.h include/KF5/kjs/JSImmediate.h include/KF5/kjs/JSLock.h include/KF5/kjs/JSType.h include/KF5/kjs/JSVariableObject.h include/KF5/kjs/JSWrapperObject.h include/KF5/kjs/LocalStorage.h include/KF5/kjs/Parser.h include/KF5/kjs/PropertyNameArray.h include/KF5/kjs/SavedBuiltins.h include/KF5/kjs/SymbolTable.h include/KF5/kjs/array_instance.h include/KF5/kjs/array_object.h include/KF5/kjs/bool_object.h include/KF5/kjs/collector.h include/KF5/kjs/commonunicode.h include/KF5/kjs/completion.h include/KF5/kjs/context.h include/KF5/kjs/date_object.h include/KF5/kjs/debugger.h include/KF5/kjs/dtoa.h include/KF5/kjs/error_object.h include/KF5/kjs/function.h include/KF5/kjs/function_object.h include/KF5/kjs/global.h include/KF5/kjs/grammar.h include/KF5/kjs/identifier.h include/KF5/kjs/internal.h include/KF5/kjs/interpreter.h include/KF5/kjs/json_object.h include/KF5/kjs/jsonlexer.h include/KF5/kjs/jsonstringify.h include/KF5/kjs/kjsapi_export.h include/KF5/kjs/kjsarguments.h include/KF5/kjs/kjscontext.h include/KF5/kjs/kjsinterpreter.h include/KF5/kjs/kjsobject.h include/KF5/kjs/kjsprototype.h include/KF5/kjs/lexer.h include/KF5/kjs/list.h include/KF5/kjs/lookup.h include/KF5/kjs/makenodes.h include/KF5/kjs/math_object.h include/KF5/kjs/nodes.h include/KF5/kjs/nodes2bytecode.h include/KF5/kjs/number_object.h include/KF5/kjs/object.h include/KF5/kjs/object_object.h include/KF5/kjs/operations.h include/KF5/kjs/package.h include/KF5/kjs/property_map.h include/KF5/kjs/property_slot.h include/KF5/kjs/propertydescriptor.h include/KF5/kjs/protect.h include/KF5/kjs/regexp.h include/KF5/kjs/regexp_object.h include/KF5/kjs/scope_chain.h include/KF5/kjs/scriptfunction.h include/KF5/kjs/string_object.h include/KF5/kjs/types.h include/KF5/kjs/ustring.h include/KF5/kjs/value.h include/KF5/kjs_version.h include/KF5/wtf/ASCIICType.h include/KF5/wtf/AlwaysInline.h include/KF5/wtf/Assertions.h include/KF5/wtf/DisallowCType.h include/KF5/wtf/FastMalloc.h include/KF5/wtf/Forward.h include/KF5/wtf/GetPtr.h include/KF5/wtf/HashCountedSet.h include/KF5/wtf/HashFunctions.h include/KF5/wtf/HashIterators.h include/KF5/wtf/HashMap.h include/KF5/wtf/HashSet.h include/KF5/wtf/HashTable.h include/KF5/wtf/HashTraits.h include/KF5/wtf/ListRefPtr.h include/KF5/wtf/MathExtras.h include/KF5/wtf/Noncopyable.h include/KF5/wtf/OwnArrayPtr.h include/KF5/wtf/OwnPtr.h include/KF5/wtf/PassRefPtr.h include/KF5/wtf/Platform.h include/KF5/wtf/RefCounted.h include/KF5/wtf/RefPtr.h include/KF5/wtf/RefPtrHashMap.h include/KF5/wtf/SharedPtr.h include/KF5/wtf/UnusedParam.h include/KF5/wtf/Vector.h include/KF5/wtf/VectorTraits.h lib/cmake/KF5JS/KF5JSConfig.cmake lib/cmake/KF5JS/KF5JSConfigVersion.cmake lib/cmake/KF5JS/KF5JSTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5JS/KF5JSTargets.cmake lib/libKF5JS.so lib/libKF5JS.so.5 lib/libKF5JS.so.%%KDE_FRAMEWORKS_VERSION%% lib/libKF5JSApi.so lib/libKF5JSApi.so.5 lib/libKF5JSApi.so.%%KDE_FRAMEWORKS_VERSION%% %%QT_MKSPECDIR%%/modules/qt_KJS.pri %%QT_MKSPECDIR%%/modules/qt_KJSApi.pri -man/ca/man1/kjs5.1.gz -man/ca@valencia/man1/kjs5.1.gz -man/de/man1/kjs5.1.gz -man/es/man1/kjs5.1.gz -man/fr/man1/kjs5.1.gz -man/it/man1/kjs5.1.gz -man/man1/kjs5.1.gz -man/nl/man1/kjs5.1.gz -man/pt/man1/kjs5.1.gz -man/pt_BR/man1/kjs5.1.gz -man/sv/man1/kjs5.1.gz -man/uk/man1/kjs5.1.gz share/kf5/kjs/create_hash_table +share/man/ca/man1/kjs5.1.gz +share/man/ca@valencia/man1/kjs5.1.gz +share/man/de/man1/kjs5.1.gz +share/man/es/man1/kjs5.1.gz +share/man/fr/man1/kjs5.1.gz +share/man/it/man1/kjs5.1.gz +share/man/man1/kjs5.1.gz +share/man/nl/man1/kjs5.1.gz +share/man/pt/man1/kjs5.1.gz +share/man/pt_BR/man1/kjs5.1.gz +share/man/sv/man1/kjs5.1.gz +share/man/uk/man1/kjs5.1.gz diff --git a/www/kf5-kjsembed/Makefile b/www/kf5-kjsembed/Makefile index bad17b0bab2b..237df996e091 100644 --- a/www/kf5-kjsembed/Makefile +++ b/www/kf5-kjsembed/Makefile @@ -1,15 +1,16 @@ PORTNAME= kjsembed DISTVERSION= ${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 compiler:c++11-lib gettext gl kde:5 qt:5 tar:xz USE_GL= gl USE_KDE= i18n js \ doctools:build ecm:build USE_QT= core gui svg uiplugin uitools widgets xml \ buildtools:build qmake:build .include diff --git a/www/kf5-kjsembed/pkg-plist b/www/kf5-kjsembed/pkg-plist index 33b95d0588d3..7903751f4114 100644 --- a/www/kf5-kjsembed/pkg-plist +++ b/www/kf5-kjsembed/pkg-plist @@ -1,132 +1,132 @@ bin/kjscmd5 bin/kjsconsole include/KF5/KJsEmbed/KJsEmbed/KJsEmbed include/KF5/KJsEmbed/kjsembed/binding_support.h include/KF5/KJsEmbed/kjsembed/kjseglobal.h include/KF5/KJsEmbed/kjsembed/kjsembed.h include/KF5/KJsEmbed/kjsembed/kjsembed_export.h include/KF5/KJsEmbed/kjsembed/pointer.h include/KF5/KJsEmbed/kjsembed/static_binding.h include/KF5/KJsEmbed/kjsembed/variant_binding.h lib/cmake/KF5JsEmbed/KF5JsEmbedConfig.cmake lib/cmake/KF5JsEmbed/KF5JsEmbedConfigVersion.cmake lib/cmake/KF5JsEmbed/KF5JsEmbedTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5JsEmbed/KF5JsEmbedTargets.cmake lib/libKF5JsEmbed.so lib/libKF5JsEmbed.so.5 lib/libKF5JsEmbed.so.%%KDE_FRAMEWORKS_VERSION%% %%QT_MKSPECDIR%%/modules/qt_KJsEmbed.pri -man/ca/man1/kjscmd5.1.gz -man/ca@valencia/man1/kjscmd5.1.gz -man/de/man1/kjscmd5.1.gz -man/es/man1/kjscmd5.1.gz -man/fr/man1/kjscmd5.1.gz -man/it/man1/kjscmd5.1.gz -man/man1/kjscmd5.1.gz -man/nl/man1/kjscmd5.1.gz -man/pt/man1/kjscmd5.1.gz -man/pt_BR/man1/kjscmd5.1.gz -man/ru/man1/kjscmd5.1.gz -man/sv/man1/kjscmd5.1.gz -man/tr/man1/kjscmd5.1.gz -man/uk/man1/kjscmd5.1.gz share/locale/af/LC_MESSAGES/kjsembed5.mo share/locale/ar/LC_MESSAGES/kjsembed5.mo share/locale/as/LC_MESSAGES/kjsembed5.mo share/locale/az/LC_MESSAGES/kjsembed5.mo share/locale/be/LC_MESSAGES/kjsembed5.mo share/locale/be@latin/LC_MESSAGES/kjsembed5.mo share/locale/bg/LC_MESSAGES/kjsembed5.mo share/locale/bn/LC_MESSAGES/kjsembed5.mo share/locale/bn_IN/LC_MESSAGES/kjsembed5.mo share/locale/br/LC_MESSAGES/kjsembed5.mo share/locale/bs/LC_MESSAGES/kjsembed5.mo share/locale/ca/LC_MESSAGES/kjsembed5.mo share/locale/ca@valencia/LC_MESSAGES/kjsembed5.mo share/locale/crh/LC_MESSAGES/kjsembed5.mo share/locale/cs/LC_MESSAGES/kjsembed5.mo share/locale/csb/LC_MESSAGES/kjsembed5.mo share/locale/cy/LC_MESSAGES/kjsembed5.mo share/locale/da/LC_MESSAGES/kjsembed5.mo share/locale/de/LC_MESSAGES/kjsembed5.mo share/locale/el/LC_MESSAGES/kjsembed5.mo share/locale/en_GB/LC_MESSAGES/kjsembed5.mo share/locale/eo/LC_MESSAGES/kjsembed5.mo share/locale/es/LC_MESSAGES/kjsembed5.mo share/locale/et/LC_MESSAGES/kjsembed5.mo share/locale/eu/LC_MESSAGES/kjsembed5.mo share/locale/fa/LC_MESSAGES/kjsembed5.mo share/locale/fi/LC_MESSAGES/kjsembed5.mo share/locale/fr/LC_MESSAGES/kjsembed5.mo share/locale/fy/LC_MESSAGES/kjsembed5.mo share/locale/ga/LC_MESSAGES/kjsembed5.mo share/locale/gd/LC_MESSAGES/kjsembed5.mo share/locale/gl/LC_MESSAGES/kjsembed5.mo share/locale/gu/LC_MESSAGES/kjsembed5.mo share/locale/ha/LC_MESSAGES/kjsembed5.mo share/locale/he/LC_MESSAGES/kjsembed5.mo share/locale/hi/LC_MESSAGES/kjsembed5.mo share/locale/hne/LC_MESSAGES/kjsembed5.mo share/locale/hr/LC_MESSAGES/kjsembed5.mo share/locale/hsb/LC_MESSAGES/kjsembed5.mo share/locale/hu/LC_MESSAGES/kjsembed5.mo share/locale/hy/LC_MESSAGES/kjsembed5.mo share/locale/ia/LC_MESSAGES/kjsembed5.mo share/locale/id/LC_MESSAGES/kjsembed5.mo share/locale/is/LC_MESSAGES/kjsembed5.mo share/locale/it/LC_MESSAGES/kjsembed5.mo share/locale/ja/LC_MESSAGES/kjsembed5.mo share/locale/ka/LC_MESSAGES/kjsembed5.mo share/locale/kk/LC_MESSAGES/kjsembed5.mo share/locale/km/LC_MESSAGES/kjsembed5.mo share/locale/kn/LC_MESSAGES/kjsembed5.mo share/locale/ko/LC_MESSAGES/kjsembed5.mo share/locale/ku/LC_MESSAGES/kjsembed5.mo share/locale/lb/LC_MESSAGES/kjsembed5.mo share/locale/lt/LC_MESSAGES/kjsembed5.mo share/locale/lv/LC_MESSAGES/kjsembed5.mo share/locale/mai/LC_MESSAGES/kjsembed5.mo share/locale/mk/LC_MESSAGES/kjsembed5.mo share/locale/ml/LC_MESSAGES/kjsembed5.mo share/locale/mr/LC_MESSAGES/kjsembed5.mo share/locale/ms/LC_MESSAGES/kjsembed5.mo share/locale/nb/LC_MESSAGES/kjsembed5.mo share/locale/nds/LC_MESSAGES/kjsembed5.mo share/locale/ne/LC_MESSAGES/kjsembed5.mo share/locale/nl/LC_MESSAGES/kjsembed5.mo share/locale/nn/LC_MESSAGES/kjsembed5.mo share/locale/oc/LC_MESSAGES/kjsembed5.mo share/locale/or/LC_MESSAGES/kjsembed5.mo share/locale/pa/LC_MESSAGES/kjsembed5.mo share/locale/pl/LC_MESSAGES/kjsembed5.mo share/locale/ps/LC_MESSAGES/kjsembed5.mo share/locale/pt/LC_MESSAGES/kjsembed5.mo share/locale/pt_BR/LC_MESSAGES/kjsembed5.mo share/locale/ro/LC_MESSAGES/kjsembed5.mo share/locale/ru/LC_MESSAGES/kjsembed5.mo share/locale/se/LC_MESSAGES/kjsembed5.mo share/locale/si/LC_MESSAGES/kjsembed5.mo share/locale/sk/LC_MESSAGES/kjsembed5.mo share/locale/sl/LC_MESSAGES/kjsembed5.mo share/locale/sq/LC_MESSAGES/kjsembed5.mo share/locale/sr/LC_MESSAGES/kjsembed5.mo share/locale/sr@ijekavian/LC_MESSAGES/kjsembed5.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kjsembed5.mo share/locale/sr@latin/LC_MESSAGES/kjsembed5.mo share/locale/sv/LC_MESSAGES/kjsembed5.mo share/locale/ta/LC_MESSAGES/kjsembed5.mo share/locale/te/LC_MESSAGES/kjsembed5.mo share/locale/tg/LC_MESSAGES/kjsembed5.mo share/locale/th/LC_MESSAGES/kjsembed5.mo share/locale/tr/LC_MESSAGES/kjsembed5.mo share/locale/tt/LC_MESSAGES/kjsembed5.mo share/locale/ug/LC_MESSAGES/kjsembed5.mo share/locale/uk/LC_MESSAGES/kjsembed5.mo share/locale/uz/LC_MESSAGES/kjsembed5.mo share/locale/uz@cyrillic/LC_MESSAGES/kjsembed5.mo share/locale/vi/LC_MESSAGES/kjsembed5.mo share/locale/wa/LC_MESSAGES/kjsembed5.mo share/locale/xh/LC_MESSAGES/kjsembed5.mo share/locale/zh_CN/LC_MESSAGES/kjsembed5.mo share/locale/zh_HK/LC_MESSAGES/kjsembed5.mo share/locale/zh_TW/LC_MESSAGES/kjsembed5.mo +share/man/ca/man1/kjscmd5.1.gz +share/man/ca@valencia/man1/kjscmd5.1.gz +share/man/de/man1/kjscmd5.1.gz +share/man/es/man1/kjscmd5.1.gz +share/man/fr/man1/kjscmd5.1.gz +share/man/it/man1/kjscmd5.1.gz +share/man/man1/kjscmd5.1.gz +share/man/nl/man1/kjscmd5.1.gz +share/man/pt/man1/kjscmd5.1.gz +share/man/pt_BR/man1/kjscmd5.1.gz +share/man/ru/man1/kjscmd5.1.gz +share/man/sv/man1/kjscmd5.1.gz +share/man/tr/man1/kjscmd5.1.gz +share/man/uk/man1/kjscmd5.1.gz diff --git a/x11-toolkits/kf5-kconfigwidgets/Makefile b/x11-toolkits/kf5-kconfigwidgets/Makefile index 1cb82a112504..d3c1ed772974 100644 --- a/x11-toolkits/kf5-kconfigwidgets/Makefile +++ b/x11-toolkits/kf5-kconfigwidgets/Makefile @@ -1,17 +1,18 @@ PORTNAME= kconfigwidgets DISTVERSION= ${KDE_FRAMEWORKS_VERSION} +PORTREVISION= 1 CATEGORIES= x11-toolkits kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 widgets for configuration dialogs USES= cmake compiler:c++11-lib gettext kde:5 qt:5 shebangfix tar:xz USE_KDE= auth codecs config coreaddons guiaddons \ i18n widgetsaddons \ doctools:build ecm:build USE_QT= core dbus gui widgets xml \ buildtools:build qmake:build SHEBANG_FILES= src/preparetips5 .include diff --git a/x11-toolkits/kf5-kconfigwidgets/pkg-plist b/x11-toolkits/kf5-kconfigwidgets/pkg-plist index 8711d3f280fb..f84539335ade 100644 --- a/x11-toolkits/kf5-kconfigwidgets/pkg-plist +++ b/x11-toolkits/kf5-kconfigwidgets/pkg-plist @@ -1,273 +1,273 @@ bin/preparetips5 include/KF5/KConfigWidgets/KCModule include/KF5/KConfigWidgets/KCodecAction include/KF5/KConfigWidgets/KColorScheme include/KF5/KConfigWidgets/KColorSchemeManager include/KF5/KConfigWidgets/KColorSchemeMenu include/KF5/KConfigWidgets/KColorSchemeModel include/KF5/KConfigWidgets/KCommandBar include/KF5/KConfigWidgets/KConfigDialog include/KF5/KConfigWidgets/KConfigDialogManager include/KF5/KConfigWidgets/KConfigViewStateSaver include/KF5/KConfigWidgets/KHamburgerMenu include/KF5/KConfigWidgets/KHelpClient include/KF5/KConfigWidgets/KLanguageButton include/KF5/KConfigWidgets/KLanguageName include/KF5/KConfigWidgets/KPasteTextAction include/KF5/KConfigWidgets/KRecentFilesAction include/KF5/KConfigWidgets/KStandardAction include/KF5/KConfigWidgets/KStatefulBrush include/KF5/KConfigWidgets/KTipDialog include/KF5/KConfigWidgets/KViewStateMaintainer include/KF5/KConfigWidgets/kcmodule.h include/KF5/KConfigWidgets/kcodecaction.h include/KF5/KConfigWidgets/kcolorscheme.h include/KF5/KConfigWidgets/kcolorschememanager.h include/KF5/KConfigWidgets/kcolorschememenu.h include/KF5/KConfigWidgets/kcolorschememodel.h include/KF5/KConfigWidgets/kcommandbar.h include/KF5/KConfigWidgets/kconfigdialog.h include/KF5/KConfigWidgets/kconfigdialogmanager.h include/KF5/KConfigWidgets/kconfigviewstatesaver.h include/KF5/KConfigWidgets/kconfigwidgets_export.h include/KF5/KConfigWidgets/kconfigwidgets_version.h include/KF5/KConfigWidgets/khamburgermenu.h include/KF5/KConfigWidgets/khelpclient.h include/KF5/KConfigWidgets/klanguagebutton.h include/KF5/KConfigWidgets/klanguagename.h include/KF5/KConfigWidgets/kpastetextaction.h include/KF5/KConfigWidgets/krecentfilesaction.h include/KF5/KConfigWidgets/kstandardaction.h include/KF5/KConfigWidgets/kstatefulbrush.h include/KF5/KConfigWidgets/ktip.h include/KF5/KConfigWidgets/ktipdialog.h include/KF5/KConfigWidgets/kviewstatemaintainer.h lib/cmake/KF5ConfigWidgets/KF5ConfigWidgetsConfig.cmake lib/cmake/KF5ConfigWidgets/KF5ConfigWidgetsConfigVersion.cmake lib/cmake/KF5ConfigWidgets/KF5ConfigWidgetsTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5ConfigWidgets/KF5ConfigWidgetsTargets.cmake lib/libKF5ConfigWidgets.so lib/libKF5ConfigWidgets.so.5 lib/libKF5ConfigWidgets.so.%%KDE_FRAMEWORKS_VERSION%% %%QT_MKSPECDIR%%/modules/qt_KConfigWidgets.pri %%QT_PLUGINDIR%%/designer/kconfigwidgets5widgets.so -man/ca/man1/preparetips5.1.gz -man/ca@valencia/man1/preparetips5.1.gz -man/de/man1/preparetips5.1.gz -man/es/man1/preparetips5.1.gz -man/fr/man1/preparetips5.1.gz -man/it/man1/preparetips5.1.gz -man/man1/preparetips5.1.gz -man/nl/man1/preparetips5.1.gz -man/pt/man1/preparetips5.1.gz -man/pt_BR/man1/preparetips5.1.gz -man/ru/man1/preparetips5.1.gz -man/sv/man1/preparetips5.1.gz -man/tr/man1/preparetips5.1.gz -man/uk/man1/preparetips5.1.gz share/locale/af/LC_MESSAGES/kconfigwidgets5.mo share/locale/af/kf5_entry.desktop share/locale/ar/LC_MESSAGES/kconfigwidgets5.mo share/locale/ar/kf5_entry.desktop share/locale/as/LC_MESSAGES/kconfigwidgets5.mo share/locale/as/kf5_entry.desktop share/locale/az/LC_MESSAGES/kconfigwidgets5.mo share/locale/az/kf5_entry.desktop share/locale/be/LC_MESSAGES/kconfigwidgets5.mo share/locale/be/kf5_entry.desktop share/locale/be@latin/LC_MESSAGES/kconfigwidgets5.mo share/locale/be@latin/kf5_entry.desktop share/locale/bg/LC_MESSAGES/kconfigwidgets5.mo share/locale/bg/kf5_entry.desktop share/locale/bn/LC_MESSAGES/kconfigwidgets5.mo share/locale/bn/kf5_entry.desktop share/locale/bn_IN/LC_MESSAGES/kconfigwidgets5.mo share/locale/bn_IN/kf5_entry.desktop share/locale/br/LC_MESSAGES/kconfigwidgets5.mo share/locale/br/kf5_entry.desktop share/locale/bs/LC_MESSAGES/kconfigwidgets5.mo share/locale/bs/kf5_entry.desktop share/locale/ca/LC_MESSAGES/kconfigwidgets5.mo share/locale/ca/kf5_entry.desktop share/locale/ca@valencia/LC_MESSAGES/kconfigwidgets5.mo share/locale/ca@valencia/kf5_entry.desktop share/locale/crh/LC_MESSAGES/kconfigwidgets5.mo share/locale/crh/kf5_entry.desktop share/locale/cs/LC_MESSAGES/kconfigwidgets5.mo share/locale/cs/kf5_entry.desktop share/locale/csb/LC_MESSAGES/kconfigwidgets5.mo share/locale/csb/kf5_entry.desktop share/locale/cy/LC_MESSAGES/kconfigwidgets5.mo share/locale/cy/kf5_entry.desktop share/locale/da/LC_MESSAGES/kconfigwidgets5.mo share/locale/da/kf5_entry.desktop share/locale/de/LC_MESSAGES/kconfigwidgets5.mo share/locale/de/kf5_entry.desktop share/locale/el/LC_MESSAGES/kconfigwidgets5.mo share/locale/el/kf5_entry.desktop share/locale/en_GB/LC_MESSAGES/kconfigwidgets5.mo share/locale/en_GB/kf5_entry.desktop share/locale/en_US/kf5_entry.desktop share/locale/eo/LC_MESSAGES/kconfigwidgets5.mo share/locale/eo/kf5_entry.desktop share/locale/es/LC_MESSAGES/kconfigwidgets5.mo share/locale/es/kf5_entry.desktop share/locale/et/LC_MESSAGES/kconfigwidgets5.mo share/locale/et/kf5_entry.desktop share/locale/eu/LC_MESSAGES/kconfigwidgets5.mo share/locale/eu/kf5_entry.desktop share/locale/fa/LC_MESSAGES/kconfigwidgets5.mo share/locale/fa/kf5_entry.desktop share/locale/fi/LC_MESSAGES/kconfigwidgets5.mo share/locale/fi/kf5_entry.desktop share/locale/fr/LC_MESSAGES/kconfigwidgets5.mo share/locale/fr/kf5_entry.desktop share/locale/fy/LC_MESSAGES/kconfigwidgets5.mo share/locale/fy/kf5_entry.desktop share/locale/ga/LC_MESSAGES/kconfigwidgets5.mo share/locale/ga/kf5_entry.desktop share/locale/gd/LC_MESSAGES/kconfigwidgets5.mo share/locale/gd/kf5_entry.desktop share/locale/gl/LC_MESSAGES/kconfigwidgets5.mo share/locale/gl/kf5_entry.desktop share/locale/gu/LC_MESSAGES/kconfigwidgets5.mo share/locale/gu/kf5_entry.desktop share/locale/ha/LC_MESSAGES/kconfigwidgets5.mo share/locale/ha/kf5_entry.desktop share/locale/he/LC_MESSAGES/kconfigwidgets5.mo share/locale/he/kf5_entry.desktop share/locale/hi/LC_MESSAGES/kconfigwidgets5.mo share/locale/hi/kf5_entry.desktop share/locale/hne/LC_MESSAGES/kconfigwidgets5.mo share/locale/hne/kf5_entry.desktop share/locale/hr/LC_MESSAGES/kconfigwidgets5.mo share/locale/hr/kf5_entry.desktop share/locale/hsb/LC_MESSAGES/kconfigwidgets5.mo share/locale/hsb/kf5_entry.desktop share/locale/hu/LC_MESSAGES/kconfigwidgets5.mo share/locale/hu/kf5_entry.desktop share/locale/hy/LC_MESSAGES/kconfigwidgets5.mo share/locale/hy/kf5_entry.desktop share/locale/ia/LC_MESSAGES/kconfigwidgets5.mo share/locale/ia/kf5_entry.desktop share/locale/id/LC_MESSAGES/kconfigwidgets5.mo share/locale/id/kf5_entry.desktop share/locale/ie/kf5_entry.desktop share/locale/is/LC_MESSAGES/kconfigwidgets5.mo share/locale/is/kf5_entry.desktop share/locale/it/LC_MESSAGES/kconfigwidgets5.mo share/locale/it/kf5_entry.desktop share/locale/ja/LC_MESSAGES/kconfigwidgets5.mo share/locale/ja/kf5_entry.desktop share/locale/ka/LC_MESSAGES/kconfigwidgets5.mo share/locale/ka/kf5_entry.desktop share/locale/kk/LC_MESSAGES/kconfigwidgets5.mo share/locale/kk/kf5_entry.desktop share/locale/km/LC_MESSAGES/kconfigwidgets5.mo share/locale/km/kf5_entry.desktop share/locale/kn/LC_MESSAGES/kconfigwidgets5.mo share/locale/kn/kf5_entry.desktop share/locale/ko/LC_MESSAGES/kconfigwidgets5.mo share/locale/ko/kf5_entry.desktop share/locale/ku/LC_MESSAGES/kconfigwidgets5.mo share/locale/ku/kf5_entry.desktop share/locale/lb/LC_MESSAGES/kconfigwidgets5.mo share/locale/lb/kf5_entry.desktop share/locale/lt/LC_MESSAGES/kconfigwidgets5.mo share/locale/lt/kf5_entry.desktop share/locale/lv/LC_MESSAGES/kconfigwidgets5.mo share/locale/lv/kf5_entry.desktop share/locale/mai/LC_MESSAGES/kconfigwidgets5.mo share/locale/mai/kf5_entry.desktop share/locale/mk/LC_MESSAGES/kconfigwidgets5.mo share/locale/mk/kf5_entry.desktop share/locale/ml/LC_MESSAGES/kconfigwidgets5.mo share/locale/ml/kf5_entry.desktop share/locale/mr/LC_MESSAGES/kconfigwidgets5.mo share/locale/mr/kf5_entry.desktop share/locale/ms/LC_MESSAGES/kconfigwidgets5.mo share/locale/ms/kf5_entry.desktop share/locale/my/kf5_entry.desktop share/locale/nb/LC_MESSAGES/kconfigwidgets5.mo share/locale/nb/kf5_entry.desktop share/locale/nds/LC_MESSAGES/kconfigwidgets5.mo share/locale/nds/kf5_entry.desktop share/locale/ne/LC_MESSAGES/kconfigwidgets5.mo share/locale/ne/kf5_entry.desktop share/locale/nl/LC_MESSAGES/kconfigwidgets5.mo share/locale/nl/kf5_entry.desktop share/locale/nn/LC_MESSAGES/kconfigwidgets5.mo share/locale/nn/kf5_entry.desktop share/locale/oc/LC_MESSAGES/kconfigwidgets5.mo share/locale/oc/kf5_entry.desktop share/locale/or/LC_MESSAGES/kconfigwidgets5.mo share/locale/or/kf5_entry.desktop share/locale/pa/LC_MESSAGES/kconfigwidgets5.mo share/locale/pa/kf5_entry.desktop share/locale/pl/LC_MESSAGES/kconfigwidgets5.mo share/locale/pl/kf5_entry.desktop share/locale/ps/LC_MESSAGES/kconfigwidgets5.mo share/locale/ps/kf5_entry.desktop share/locale/pt/LC_MESSAGES/kconfigwidgets5.mo share/locale/pt/kf5_entry.desktop share/locale/pt_BR/LC_MESSAGES/kconfigwidgets5.mo share/locale/pt_BR/kf5_entry.desktop share/locale/ro/LC_MESSAGES/kconfigwidgets5.mo share/locale/ro/kf5_entry.desktop share/locale/ru/LC_MESSAGES/kconfigwidgets5.mo share/locale/ru/kf5_entry.desktop share/locale/se/LC_MESSAGES/kconfigwidgets5.mo share/locale/se/kf5_entry.desktop share/locale/si/LC_MESSAGES/kconfigwidgets5.mo share/locale/si/kf5_entry.desktop share/locale/sk/LC_MESSAGES/kconfigwidgets5.mo share/locale/sk/kf5_entry.desktop share/locale/sl/LC_MESSAGES/kconfigwidgets5.mo share/locale/sl/kf5_entry.desktop share/locale/sq/LC_MESSAGES/kconfigwidgets5.mo share/locale/sq/kf5_entry.desktop share/locale/sr/LC_MESSAGES/kconfigwidgets5.mo share/locale/sr/kf5_entry.desktop share/locale/sr@ijekavian/LC_MESSAGES/kconfigwidgets5.mo share/locale/sr@ijekavian/kf5_entry.desktop share/locale/sr@ijekavianlatin/LC_MESSAGES/kconfigwidgets5.mo share/locale/sr@ijekavianlatin/kf5_entry.desktop share/locale/sr@latin/LC_MESSAGES/kconfigwidgets5.mo share/locale/sr@latin/kf5_entry.desktop share/locale/sv/LC_MESSAGES/kconfigwidgets5.mo share/locale/sv/kf5_entry.desktop share/locale/ta/LC_MESSAGES/kconfigwidgets5.mo share/locale/ta/kf5_entry.desktop share/locale/te/LC_MESSAGES/kconfigwidgets5.mo share/locale/te/kf5_entry.desktop share/locale/tg/LC_MESSAGES/kconfigwidgets5.mo share/locale/tg/kf5_entry.desktop share/locale/th/LC_MESSAGES/kconfigwidgets5.mo share/locale/th/kf5_entry.desktop share/locale/tok/kf5_entry.desktop share/locale/tr/LC_MESSAGES/kconfigwidgets5.mo share/locale/tr/kf5_entry.desktop share/locale/tt/LC_MESSAGES/kconfigwidgets5.mo share/locale/tt/kf5_entry.desktop share/locale/ug/LC_MESSAGES/kconfigwidgets5.mo share/locale/ug/kf5_entry.desktop share/locale/uk/LC_MESSAGES/kconfigwidgets5.mo share/locale/uk/kf5_entry.desktop share/locale/uz/LC_MESSAGES/kconfigwidgets5.mo share/locale/uz/kf5_entry.desktop share/locale/uz@cyrillic/LC_MESSAGES/kconfigwidgets5.mo share/locale/uz@cyrillic/kf5_entry.desktop share/locale/vi/LC_MESSAGES/kconfigwidgets5.mo share/locale/vi/kf5_entry.desktop share/locale/wa/LC_MESSAGES/kconfigwidgets5.mo share/locale/wa/kf5_entry.desktop share/locale/xh/LC_MESSAGES/kconfigwidgets5.mo share/locale/xh/kf5_entry.desktop share/locale/zh_CN/LC_MESSAGES/kconfigwidgets5.mo share/locale/zh_CN/kf5_entry.desktop share/locale/zh_HK/LC_MESSAGES/kconfigwidgets5.mo share/locale/zh_HK/kf5_entry.desktop share/locale/zh_TW/LC_MESSAGES/kconfigwidgets5.mo share/locale/zh_TW/kf5_entry.desktop +share/man/ca/man1/preparetips5.1.gz +share/man/ca@valencia/man1/preparetips5.1.gz +share/man/de/man1/preparetips5.1.gz +share/man/es/man1/preparetips5.1.gz +share/man/fr/man1/preparetips5.1.gz +share/man/it/man1/preparetips5.1.gz +share/man/man1/preparetips5.1.gz +share/man/nl/man1/preparetips5.1.gz +share/man/pt/man1/preparetips5.1.gz +share/man/pt_BR/man1/preparetips5.1.gz +share/man/ru/man1/preparetips5.1.gz +share/man/sv/man1/preparetips5.1.gz +share/man/tr/man1/preparetips5.1.gz +share/man/uk/man1/preparetips5.1.gz share/qlogging-categories5/kconfigwidgets.categories share/qlogging-categories5/kconfigwidgets.renamecategories diff --git a/x11-toolkits/kf5-kdesignerplugin/Makefile b/x11-toolkits/kf5-kdesignerplugin/Makefile index 0b0775b01f7b..9816a4f2c14b 100644 --- a/x11-toolkits/kf5-kdesignerplugin/Makefile +++ b/x11-toolkits/kf5-kdesignerplugin/Makefile @@ -1,13 +1,14 @@ PORTNAME= kdesignerplugin DISTVERSION= ${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 compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= config coreaddons \ doctools:build ecm:build USE_QT= core buildtools:build qmake:build .include diff --git a/x11-toolkits/kf5-kdesignerplugin/pkg-plist b/x11-toolkits/kf5-kdesignerplugin/pkg-plist index 8f7d56949571..b153ebadb415 100644 --- a/x11-toolkits/kf5-kdesignerplugin/pkg-plist +++ b/x11-toolkits/kf5-kdesignerplugin/pkg-plist @@ -1,117 +1,117 @@ bin/kgendesignerplugin lib/cmake/KF5DesignerPlugin/KF5DesignerPluginConfig.cmake lib/cmake/KF5DesignerPlugin/KF5DesignerPluginConfigVersion.cmake lib/cmake/KF5DesignerPlugin/KF5DesignerPluginMacros.cmake lib/cmake/KF5DesignerPlugin/KF5DesignerPluginTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5DesignerPlugin/KF5DesignerPluginTargets.cmake -man/ca/man1/kgendesignerplugin.1.gz -man/ca@valencia/man1/kgendesignerplugin.1.gz -man/de/man1/kgendesignerplugin.1.gz -man/es/man1/kgendesignerplugin.1.gz -man/it/man1/kgendesignerplugin.1.gz -man/man1/kgendesignerplugin.1.gz -man/nl/man1/kgendesignerplugin.1.gz -man/pt/man1/kgendesignerplugin.1.gz -man/pt_BR/man1/kgendesignerplugin.1.gz -man/sv/man1/kgendesignerplugin.1.gz -man/uk/man1/kgendesignerplugin.1.gz share/locale/af/LC_MESSAGES/kdesignerplugin5_qt.qm share/locale/ar/LC_MESSAGES/kdesignerplugin5_qt.qm share/locale/as/LC_MESSAGES/kdesignerplugin5_qt.qm share/locale/az/LC_MESSAGES/kdesignerplugin5_qt.qm share/locale/be/LC_MESSAGES/kdesignerplugin5_qt.qm share/locale/be@latin/LC_MESSAGES/kdesignerplugin5_qt.qm share/locale/bg/LC_MESSAGES/kdesignerplugin5_qt.qm share/locale/bn/LC_MESSAGES/kdesignerplugin5_qt.qm share/locale/bn_IN/LC_MESSAGES/kdesignerplugin5_qt.qm share/locale/br/LC_MESSAGES/kdesignerplugin5_qt.qm share/locale/bs/LC_MESSAGES/kdesignerplugin5_qt.qm share/locale/ca/LC_MESSAGES/kdesignerplugin5_qt.qm share/locale/ca@valencia/LC_MESSAGES/kdesignerplugin5_qt.qm share/locale/crh/LC_MESSAGES/kdesignerplugin5_qt.qm share/locale/cs/LC_MESSAGES/kdesignerplugin5_qt.qm share/locale/csb/LC_MESSAGES/kdesignerplugin5_qt.qm share/locale/cy/LC_MESSAGES/kdesignerplugin5_qt.qm share/locale/da/LC_MESSAGES/kdesignerplugin5_qt.qm share/locale/de/LC_MESSAGES/kdesignerplugin5_qt.qm share/locale/el/LC_MESSAGES/kdesignerplugin5_qt.qm share/locale/en_GB/LC_MESSAGES/kdesignerplugin5_qt.qm share/locale/eo/LC_MESSAGES/kdesignerplugin5_qt.qm share/locale/es/LC_MESSAGES/kdesignerplugin5_qt.qm share/locale/et/LC_MESSAGES/kdesignerplugin5_qt.qm share/locale/eu/LC_MESSAGES/kdesignerplugin5_qt.qm share/locale/fa/LC_MESSAGES/kdesignerplugin5_qt.qm share/locale/fi/LC_MESSAGES/kdesignerplugin5_qt.qm share/locale/fr/LC_MESSAGES/kdesignerplugin5_qt.qm share/locale/fy/LC_MESSAGES/kdesignerplugin5_qt.qm share/locale/ga/LC_MESSAGES/kdesignerplugin5_qt.qm share/locale/gd/LC_MESSAGES/kdesignerplugin5_qt.qm share/locale/gl/LC_MESSAGES/kdesignerplugin5_qt.qm share/locale/gu/LC_MESSAGES/kdesignerplugin5_qt.qm share/locale/ha/LC_MESSAGES/kdesignerplugin5_qt.qm share/locale/he/LC_MESSAGES/kdesignerplugin5_qt.qm share/locale/hi/LC_MESSAGES/kdesignerplugin5_qt.qm share/locale/hne/LC_MESSAGES/kdesignerplugin5_qt.qm share/locale/hr/LC_MESSAGES/kdesignerplugin5_qt.qm share/locale/hsb/LC_MESSAGES/kdesignerplugin5_qt.qm share/locale/hu/LC_MESSAGES/kdesignerplugin5_qt.qm share/locale/hy/LC_MESSAGES/kdesignerplugin5_qt.qm share/locale/ia/LC_MESSAGES/kdesignerplugin5_qt.qm share/locale/id/LC_MESSAGES/kdesignerplugin5_qt.qm share/locale/is/LC_MESSAGES/kdesignerplugin5_qt.qm share/locale/it/LC_MESSAGES/kdesignerplugin5_qt.qm share/locale/ja/LC_MESSAGES/kdesignerplugin5_qt.qm share/locale/ka/LC_MESSAGES/kdesignerplugin5_qt.qm share/locale/kk/LC_MESSAGES/kdesignerplugin5_qt.qm share/locale/km/LC_MESSAGES/kdesignerplugin5_qt.qm share/locale/kn/LC_MESSAGES/kdesignerplugin5_qt.qm share/locale/ko/LC_MESSAGES/kdesignerplugin5_qt.qm share/locale/ku/LC_MESSAGES/kdesignerplugin5_qt.qm share/locale/lb/LC_MESSAGES/kdesignerplugin5_qt.qm share/locale/lt/LC_MESSAGES/kdesignerplugin5_qt.qm share/locale/lv/LC_MESSAGES/kdesignerplugin5_qt.qm share/locale/mai/LC_MESSAGES/kdesignerplugin5_qt.qm share/locale/mk/LC_MESSAGES/kdesignerplugin5_qt.qm share/locale/ml/LC_MESSAGES/kdesignerplugin5_qt.qm share/locale/mr/LC_MESSAGES/kdesignerplugin5_qt.qm share/locale/ms/LC_MESSAGES/kdesignerplugin5_qt.qm share/locale/nb/LC_MESSAGES/kdesignerplugin5_qt.qm share/locale/nds/LC_MESSAGES/kdesignerplugin5_qt.qm share/locale/ne/LC_MESSAGES/kdesignerplugin5_qt.qm share/locale/nl/LC_MESSAGES/kdesignerplugin5_qt.qm share/locale/nn/LC_MESSAGES/kdesignerplugin5_qt.qm share/locale/oc/LC_MESSAGES/kdesignerplugin5_qt.qm share/locale/or/LC_MESSAGES/kdesignerplugin5_qt.qm share/locale/pa/LC_MESSAGES/kdesignerplugin5_qt.qm share/locale/pl/LC_MESSAGES/kdesignerplugin5_qt.qm share/locale/ps/LC_MESSAGES/kdesignerplugin5_qt.qm share/locale/pt/LC_MESSAGES/kdesignerplugin5_qt.qm share/locale/pt_BR/LC_MESSAGES/kdesignerplugin5_qt.qm share/locale/ro/LC_MESSAGES/kdesignerplugin5_qt.qm share/locale/ru/LC_MESSAGES/kdesignerplugin5_qt.qm share/locale/se/LC_MESSAGES/kdesignerplugin5_qt.qm share/locale/si/LC_MESSAGES/kdesignerplugin5_qt.qm share/locale/sk/LC_MESSAGES/kdesignerplugin5_qt.qm share/locale/sl/LC_MESSAGES/kdesignerplugin5_qt.qm share/locale/sq/LC_MESSAGES/kdesignerplugin5_qt.qm share/locale/sr/LC_MESSAGES/kdesignerplugin5_qt.qm share/locale/sr@ijekavian/LC_MESSAGES/kdesignerplugin5_qt.qm share/locale/sr@ijekavianlatin/LC_MESSAGES/kdesignerplugin5_qt.qm share/locale/sr@latin/LC_MESSAGES/kdesignerplugin5_qt.qm share/locale/sv/LC_MESSAGES/kdesignerplugin5_qt.qm share/locale/ta/LC_MESSAGES/kdesignerplugin5_qt.qm share/locale/te/LC_MESSAGES/kdesignerplugin5_qt.qm share/locale/tg/LC_MESSAGES/kdesignerplugin5_qt.qm share/locale/th/LC_MESSAGES/kdesignerplugin5_qt.qm share/locale/tr/LC_MESSAGES/kdesignerplugin5_qt.qm share/locale/tt/LC_MESSAGES/kdesignerplugin5_qt.qm share/locale/ug/LC_MESSAGES/kdesignerplugin5_qt.qm share/locale/uk/LC_MESSAGES/kdesignerplugin5_qt.qm share/locale/uz/LC_MESSAGES/kdesignerplugin5_qt.qm share/locale/uz@cyrillic/LC_MESSAGES/kdesignerplugin5_qt.qm share/locale/vi/LC_MESSAGES/kdesignerplugin5_qt.qm share/locale/wa/LC_MESSAGES/kdesignerplugin5_qt.qm share/locale/xh/LC_MESSAGES/kdesignerplugin5_qt.qm share/locale/zh_CN/LC_MESSAGES/kdesignerplugin5_qt.qm share/locale/zh_HK/LC_MESSAGES/kdesignerplugin5_qt.qm share/locale/zh_TW/LC_MESSAGES/kdesignerplugin5_qt.qm +share/man/ca/man1/kgendesignerplugin.1.gz +share/man/ca@valencia/man1/kgendesignerplugin.1.gz +share/man/de/man1/kgendesignerplugin.1.gz +share/man/es/man1/kgendesignerplugin.1.gz +share/man/it/man1/kgendesignerplugin.1.gz +share/man/man1/kgendesignerplugin.1.gz +share/man/nl/man1/kgendesignerplugin.1.gz +share/man/pt/man1/kgendesignerplugin.1.gz +share/man/pt_BR/man1/kgendesignerplugin.1.gz +share/man/sv/man1/kgendesignerplugin.1.gz +share/man/uk/man1/kgendesignerplugin.1.gz diff --git a/x11/kf5-kded/Makefile b/x11/kf5-kded/Makefile index baf707071109..1b54048f0843 100644 --- a/x11/kf5-kded/Makefile +++ b/x11/kf5-kded/Makefile @@ -1,14 +1,15 @@ PORTNAME= kded DISTVERSION= ${KDE_FRAMEWORKS_VERSION} +PORTREVISION= 1 CATEGORIES= x11 kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 extensible daemon for providing system level services USES= cmake compiler:c++11-lib kde:5 qt:5 tar:xz USE_KDE= config coreaddons crash dbusaddons service \ doctools:build ecm:build USE_QT= core dbus gui widgets \ buildtools:build qmake:build .include diff --git a/x11/kf5-kded/pkg-plist b/x11/kf5-kded/pkg-plist index efec848588f4..e84e6dae57f0 100644 --- a/x11/kf5-kded/pkg-plist +++ b/x11/kf5-kded/pkg-plist @@ -1,23 +1,23 @@ bin/kded5 lib/cmake/KDED/KDEDConfig.cmake lib/cmake/KDED/KDEDConfigVersion.cmake lib/systemd/user/plasma-kded.service -man/ca/man8/kded5.8.gz -man/ca@valencia/man8/kded5.8.gz -man/de/man8/kded5.8.gz -man/es/man8/kded5.8.gz -man/fr/man8/kded5.8.gz -man/it/man8/kded5.8.gz -man/man8/kded5.8.gz -man/nl/man8/kded5.8.gz -man/pt/man8/kded5.8.gz -man/pt_BR/man8/kded5.8.gz -man/ru/man8/kded5.8.gz -man/sv/man8/kded5.8.gz -man/uk/man8/kded5.8.gz share/applications/org.kde.kded5.desktop share/dbus-1/interfaces/org.kde.kded5.xml share/dbus-1/services/org.kde.kded5.service share/kservicetypes5/kdedmodule.desktop +share/man/ca/man8/kded5.8.gz +share/man/ca@valencia/man8/kded5.8.gz +share/man/de/man8/kded5.8.gz +share/man/es/man8/kded5.8.gz +share/man/fr/man8/kded5.8.gz +share/man/it/man8/kded5.8.gz +share/man/man8/kded5.8.gz +share/man/nl/man8/kded5.8.gz +share/man/pt/man8/kded5.8.gz +share/man/pt_BR/man8/kded5.8.gz +share/man/ru/man8/kded5.8.gz +share/man/sv/man8/kded5.8.gz +share/man/uk/man8/kded5.8.gz share/qlogging-categories5/kded.categories share/qlogging-categories5/kded.renamecategories diff --git a/x11/kf5-kdelibs4support/Makefile b/x11/kf5-kdelibs4support/Makefile index 62d578c7d5f2..4fa32419053c 100644 --- a/x11/kf5-kdelibs4support/Makefile +++ b/x11/kf5-kdelibs4support/Makefile @@ -1,27 +1,28 @@ PORTNAME= kdelibs4support DISTVERSION= ${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 compiler:c++11-lib gettext kde:5 qt:5 shebangfix \ tar:xz xorg USE_KDE= auth bookmarks codecs completion config configwidgets \ coreaddons crash dbusaddons emoticons globalaccel guiaddons \ i18n iconthemes itemviews jobwidgets kded kio notifications \ parts service solid sonnet textwidgets unitconversion \ widgetsaddons windowsystem xmlgui \ doctools:build ecm:build \ designerplugin:build designerplugin:run \ itemmodels:run USE_QT= concurrent core dbus designer gui network \ printsupport svg testlib widgets x11extras xml \ buildtools:build qmake:build testlib:build USE_XORG= ice sm x11 xcb xext SHEBANG_FILES= src/kio/fileshareset .include diff --git a/x11/kf5-kdelibs4support/pkg-plist b/x11/kf5-kdelibs4support/pkg-plist index 69076c490d96..7ca9538af0ae 100644 --- a/x11/kf5-kdelibs4support/pkg-plist +++ b/x11/kf5-kdelibs4support/pkg-plist @@ -1,1930 +1,1930 @@ bin/kdebugdialog5 bin/kf5-config etc/xdg/colors/40.colors etc/xdg/colors/Oxygen.colors etc/xdg/colors/Rainbow.colors etc/xdg/colors/Royal.colors etc/xdg/colors/Web.colors etc/xdg/kdebug.areas etc/xdg/kdebugrc etc/xdg/ksslcalist include/KF5/KDELibs4Support/KDE/ConversionCheck/QVconvertible include/KF5/KDELibs4Support/KDE/ConversionCheck/type_toQString include/KF5/KDELibs4Support/KDE/ConversionCheck/type_toQVariant include/KF5/KDELibs4Support/KDE/DOM/AbstractView include/KF5/KDELibs4Support/KDE/DOM/Attr include/KF5/KDELibs4Support/KDE/DOM/CDATASection include/KF5/KDELibs4Support/KDE/DOM/CSSCharsetRule include/KF5/KDELibs4Support/KDE/DOM/CSSException include/KF5/KDELibs4Support/KDE/DOM/CSSFontFaceRule include/KF5/KDELibs4Support/KDE/DOM/CSSImportRule include/KF5/KDELibs4Support/KDE/DOM/CSSMediaRule include/KF5/KDELibs4Support/KDE/DOM/CSSPageRule include/KF5/KDELibs4Support/KDE/DOM/CSSPrimitiveValue include/KF5/KDELibs4Support/KDE/DOM/CSSRule include/KF5/KDELibs4Support/KDE/DOM/CSSRuleList include/KF5/KDELibs4Support/KDE/DOM/CSSStyleDeclaration include/KF5/KDELibs4Support/KDE/DOM/CSSStyleRule include/KF5/KDELibs4Support/KDE/DOM/CSSStyleSheet include/KF5/KDELibs4Support/KDE/DOM/CSSUnknownRule include/KF5/KDELibs4Support/KDE/DOM/CSSValue include/KF5/KDELibs4Support/KDE/DOM/CSSValueList include/KF5/KDELibs4Support/KDE/DOM/CharacterData include/KF5/KDELibs4Support/KDE/DOM/Comment include/KF5/KDELibs4Support/KDE/DOM/Counter include/KF5/KDELibs4Support/KDE/DOM/CustomNodeFilter include/KF5/KDELibs4Support/KDE/DOM/DOMException include/KF5/KDELibs4Support/KDE/DOM/DOMImplementation include/KF5/KDELibs4Support/KDE/DOM/DOMString include/KF5/KDELibs4Support/KDE/DOM/Document include/KF5/KDELibs4Support/KDE/DOM/DocumentFragment include/KF5/KDELibs4Support/KDE/DOM/DocumentStyle include/KF5/KDELibs4Support/KDE/DOM/DocumentType include/KF5/KDELibs4Support/KDE/DOM/DomShared include/KF5/KDELibs4Support/KDE/DOM/Element include/KF5/KDELibs4Support/KDE/DOM/Entity include/KF5/KDELibs4Support/KDE/DOM/EntityReference include/KF5/KDELibs4Support/KDE/DOM/Event include/KF5/KDELibs4Support/KDE/DOM/EventException include/KF5/KDELibs4Support/KDE/DOM/EventListener include/KF5/KDELibs4Support/KDE/DOM/HTMLAnchorElement include/KF5/KDELibs4Support/KDE/DOM/HTMLAppletElement include/KF5/KDELibs4Support/KDE/DOM/HTMLAreaElement include/KF5/KDELibs4Support/KDE/DOM/HTMLBRElement include/KF5/KDELibs4Support/KDE/DOM/HTMLBaseElement include/KF5/KDELibs4Support/KDE/DOM/HTMLBaseFontElement include/KF5/KDELibs4Support/KDE/DOM/HTMLBlockquoteElement include/KF5/KDELibs4Support/KDE/DOM/HTMLBodyElement include/KF5/KDELibs4Support/KDE/DOM/HTMLButtonElement include/KF5/KDELibs4Support/KDE/DOM/HTMLCollection include/KF5/KDELibs4Support/KDE/DOM/HTMLDListElement include/KF5/KDELibs4Support/KDE/DOM/HTMLDirectoryElement include/KF5/KDELibs4Support/KDE/DOM/HTMLDivElement include/KF5/KDELibs4Support/KDE/DOM/HTMLDocument include/KF5/KDELibs4Support/KDE/DOM/HTMLElement include/KF5/KDELibs4Support/KDE/DOM/HTMLFieldSetElement include/KF5/KDELibs4Support/KDE/DOM/HTMLFontElement include/KF5/KDELibs4Support/KDE/DOM/HTMLFormCollection include/KF5/KDELibs4Support/KDE/DOM/HTMLFormElement include/KF5/KDELibs4Support/KDE/DOM/HTMLFrameElement include/KF5/KDELibs4Support/KDE/DOM/HTMLFrameSetElement include/KF5/KDELibs4Support/KDE/DOM/HTMLHRElement include/KF5/KDELibs4Support/KDE/DOM/HTMLHeadElement include/KF5/KDELibs4Support/KDE/DOM/HTMLHeadingElement include/KF5/KDELibs4Support/KDE/DOM/HTMLHtmlElement include/KF5/KDELibs4Support/KDE/DOM/HTMLIFrameElement include/KF5/KDELibs4Support/KDE/DOM/HTMLImageElement include/KF5/KDELibs4Support/KDE/DOM/HTMLInputElement include/KF5/KDELibs4Support/KDE/DOM/HTMLIsIndexElement include/KF5/KDELibs4Support/KDE/DOM/HTMLLIElement include/KF5/KDELibs4Support/KDE/DOM/HTMLLabelElement include/KF5/KDELibs4Support/KDE/DOM/HTMLLayerElement include/KF5/KDELibs4Support/KDE/DOM/HTMLLegendElement include/KF5/KDELibs4Support/KDE/DOM/HTMLLinkElement include/KF5/KDELibs4Support/KDE/DOM/HTMLMapElement include/KF5/KDELibs4Support/KDE/DOM/HTMLMenuElement include/KF5/KDELibs4Support/KDE/DOM/HTMLMetaElement include/KF5/KDELibs4Support/KDE/DOM/HTMLModElement include/KF5/KDELibs4Support/KDE/DOM/HTMLOListElement include/KF5/KDELibs4Support/KDE/DOM/HTMLObjectElement include/KF5/KDELibs4Support/KDE/DOM/HTMLOptGroupElement include/KF5/KDELibs4Support/KDE/DOM/HTMLOptionElement include/KF5/KDELibs4Support/KDE/DOM/HTMLParagraphElement include/KF5/KDELibs4Support/KDE/DOM/HTMLParamElement include/KF5/KDELibs4Support/KDE/DOM/HTMLPreElement include/KF5/KDELibs4Support/KDE/DOM/HTMLQuoteElement include/KF5/KDELibs4Support/KDE/DOM/HTMLScriptElement include/KF5/KDELibs4Support/KDE/DOM/HTMLSelectElement include/KF5/KDELibs4Support/KDE/DOM/HTMLStyleElement include/KF5/KDELibs4Support/KDE/DOM/HTMLTableCaptionElement include/KF5/KDELibs4Support/KDE/DOM/HTMLTableCellElement include/KF5/KDELibs4Support/KDE/DOM/HTMLTableColElement include/KF5/KDELibs4Support/KDE/DOM/HTMLTableElement include/KF5/KDELibs4Support/KDE/DOM/HTMLTableRowElement include/KF5/KDELibs4Support/KDE/DOM/HTMLTableSectionElement include/KF5/KDELibs4Support/KDE/DOM/HTMLTextAreaElement include/KF5/KDELibs4Support/KDE/DOM/HTMLTitleElement include/KF5/KDELibs4Support/KDE/DOM/HTMLUListElement include/KF5/KDELibs4Support/KDE/DOM/KeyboardEvent include/KF5/KDELibs4Support/KDE/DOM/LinkStyle include/KF5/KDELibs4Support/KDE/DOM/MediaList include/KF5/KDELibs4Support/KDE/DOM/MouseEvent include/KF5/KDELibs4Support/KDE/DOM/MutationEvent include/KF5/KDELibs4Support/KDE/DOM/NamedNodeMap include/KF5/KDELibs4Support/KDE/DOM/Node include/KF5/KDELibs4Support/KDE/DOM/NodeFilter include/KF5/KDELibs4Support/KDE/DOM/NodeIterator include/KF5/KDELibs4Support/KDE/DOM/NodeList include/KF5/KDELibs4Support/KDE/DOM/Notation include/KF5/KDELibs4Support/KDE/DOM/ProcessingInstruction include/KF5/KDELibs4Support/KDE/DOM/RGBColor include/KF5/KDELibs4Support/KDE/DOM/Range include/KF5/KDELibs4Support/KDE/DOM/RangeException include/KF5/KDELibs4Support/KDE/DOM/Rect include/KF5/KDELibs4Support/KDE/DOM/StyleSheet include/KF5/KDELibs4Support/KDE/DOM/StyleSheetList include/KF5/KDELibs4Support/KDE/DOM/Text include/KF5/KDELibs4Support/KDE/DOM/TextEvent include/KF5/KDELibs4Support/KDE/DOM/TreeWalker include/KF5/KDELibs4Support/KDE/DOM/UIEvent include/KF5/KDELibs4Support/KDE/K4AboutData include/KF5/KDELibs4Support/KDE/KACL include/KF5/KDELibs4Support/KDE/KAboutApplicationDialog include/KF5/KDELibs4Support/KDE/KAboutData include/KF5/KDELibs4Support/KDE/KAboutPerson include/KF5/KDELibs4Support/KDE/KAccelGen/Deref include/KF5/KDELibs4Support/KDE/KAccelGen/Deref_Key include/KF5/KDELibs4Support/KDE/KAcceleratorManager include/KF5/KDELibs4Support/KDE/KAction include/KF5/KDELibs4Support/KDE/KActionCategory include/KF5/KDELibs4Support/KDE/KActionCollection include/KF5/KDELibs4Support/KDE/KActionMenu include/KF5/KDELibs4Support/KDE/KActionSelector include/KF5/KDELibs4Support/KDE/KAnimatedButton include/KF5/KDELibs4Support/KDE/KApplication include/KF5/KDELibs4Support/KDE/KAr include/KF5/KDELibs4Support/KDE/KArchive include/KF5/KDELibs4Support/KDE/KArchiveDirectory include/KF5/KDELibs4Support/KDE/KArchiveEntry include/KF5/KDELibs4Support/KDE/KArchiveFile include/KF5/KDELibs4Support/KDE/KArrowButton include/KF5/KDELibs4Support/KDE/KAscii include/KF5/KDELibs4Support/KDE/KAssistantDialog include/KF5/KDELibs4Support/KDE/KAuth/Action include/KF5/KDELibs4Support/KDE/KAuth/ActionReply include/KF5/KDELibs4Support/KDE/KAuth/ActionWatcher include/KF5/KDELibs4Support/KDE/KAuth/HelperSupport include/KF5/KDELibs4Support/KDE/KAuthorized include/KF5/KDELibs4Support/KDE/KAutoMount include/KF5/KDELibs4Support/KDE/KAutoSaveFile include/KF5/KDELibs4Support/KDE/KAutoUnmount include/KF5/KDELibs4Support/KDE/KAutostart include/KF5/KDELibs4Support/KDE/KBookmark include/KF5/KDELibs4Support/KDE/KBookmarkAction include/KF5/KDELibs4Support/KDE/KBookmarkActionInterface include/KF5/KDELibs4Support/KDE/KBookmarkActionMenu include/KF5/KDELibs4Support/KDE/KBookmarkDialog include/KF5/KDELibs4Support/KDE/KBookmarkDomBuilder include/KF5/KDELibs4Support/KDE/KBookmarkExporterBase include/KF5/KDELibs4Support/KDE/KBookmarkGroup include/KF5/KDELibs4Support/KDE/KBookmarkGroupTraverser include/KF5/KDELibs4Support/KDE/KBookmarkImporterBase include/KF5/KDELibs4Support/KDE/KBookmarkManager include/KF5/KDELibs4Support/KDE/KBookmarkMenu include/KF5/KDELibs4Support/KDE/KBookmarkOwner include/KF5/KDELibs4Support/KDE/KBreadcrumbSelectionModel include/KF5/KDELibs4Support/KDE/KBugReport include/KF5/KDELibs4Support/KDE/KBuildSycocaProgressDialog include/KF5/KDELibs4Support/KDE/KButtonGroup include/KF5/KDELibs4Support/KDE/KCModule include/KF5/KDELibs4Support/KDE/KCModuleContainer include/KF5/KDELibs4Support/KDE/KCModuleInfo include/KF5/KDELibs4Support/KDE/KCModuleLoader include/KF5/KDELibs4Support/KDE/KCModuleProxy include/KF5/KDELibs4Support/KDE/KCMultiDialog include/KF5/KDELibs4Support/KDE/KCalendarSystem include/KF5/KDELibs4Support/KDE/KCalendarSystemFactory include/KF5/KDELibs4Support/KDE/KCapacityBar include/KF5/KDELibs4Support/KDE/KCategorizedSortFilterProxyModel include/KF5/KDELibs4Support/KDE/KCategorizedView include/KF5/KDELibs4Support/KDE/KCategoryDrawer include/KF5/KDELibs4Support/KDE/KCharMacroExpander include/KF5/KDELibs4Support/KDE/KCharSelect include/KF5/KDELibs4Support/KDE/KCharsets include/KF5/KDELibs4Support/KDE/KCheckableProxyModel include/KF5/KDELibs4Support/KDE/KCmdLineArgs include/KF5/KDELibs4Support/KDE/KCmdLineOptions include/KF5/KDELibs4Support/KDE/KCodecAction include/KF5/KDELibs4Support/KDE/KCodecs include/KF5/KDELibs4Support/KDE/KColor include/KF5/KDELibs4Support/KDE/KColorButton include/KF5/KDELibs4Support/KDE/KColorCells include/KF5/KDELibs4Support/KDE/KColorCollection include/KF5/KDELibs4Support/KDE/KColorCombo include/KF5/KDELibs4Support/KDE/KColorDialog include/KF5/KDELibs4Support/KDE/KColorMimeData include/KF5/KDELibs4Support/KDE/KColorPatch include/KF5/KDELibs4Support/KDE/KColorScheme include/KF5/KDELibs4Support/KDE/KColorTable include/KF5/KDELibs4Support/KDE/KColorUtils include/KF5/KDELibs4Support/KDE/KColorValueSelector include/KF5/KDELibs4Support/KDE/KComboBox include/KF5/KDELibs4Support/KDE/KCompletion include/KF5/KDELibs4Support/KDE/KCompletionBase include/KF5/KDELibs4Support/KDE/KCompletionBox include/KF5/KDELibs4Support/KDE/KCompletionMatches include/KF5/KDELibs4Support/KDE/KComponentData include/KF5/KDELibs4Support/KDE/KCompositeJob include/KF5/KDELibs4Support/KDE/KConfig include/KF5/KDELibs4Support/KDE/KConfigBase include/KF5/KDELibs4Support/KDE/KConfigDialog include/KF5/KDELibs4Support/KDE/KConfigDialogManager include/KF5/KDELibs4Support/KDE/KConfigGroup include/KF5/KDELibs4Support/KDE/KConfigSkeleton include/KF5/KDELibs4Support/KDE/KConfigSkeletonGenericItem include/KF5/KDELibs4Support/KDE/KConfigSkeletonItem include/KF5/KDELibs4Support/KDE/KCrash include/KF5/KDELibs4Support/KDE/KCrashBookmarkImporter include/KF5/KDELibs4Support/KDE/KCrashBookmarkImporterImpl include/KF5/KDELibs4Support/KDE/KCurrencyCode include/KF5/KDELibs4Support/KDE/KCursor include/KF5/KDELibs4Support/KDE/KDBusServiceStarter include/KF5/KDELibs4Support/KDE/KDEDModule include/KF5/KDELibs4Support/KDE/KDEPrintDialog include/KF5/KDELibs4Support/KDE/KDEsuClient include/KF5/KDELibs4Support/KDE/KDNSSD/Configuration include/KF5/KDELibs4Support/KDE/KDNSSD/DomainBrowser include/KF5/KDELibs4Support/KDE/KDNSSD/DomainModel include/KF5/KDELibs4Support/KDE/KDNSSD/PublicService include/KF5/KDELibs4Support/KDE/KDNSSD/RemoteService include/KF5/KDELibs4Support/KDE/KDNSSD/ServiceBase include/KF5/KDELibs4Support/KDE/KDNSSD/ServiceBrowser include/KF5/KDELibs4Support/KDE/KDNSSD/ServiceModel include/KF5/KDELibs4Support/KDE/KDNSSD/ServiceTypeBrowser include/KF5/KDELibs4Support/KDE/KDataTool include/KF5/KDELibs4Support/KDE/KDataToolAction include/KF5/KDELibs4Support/KDE/KDataToolInfo include/KF5/KDELibs4Support/KDE/KDateComboBox include/KF5/KDELibs4Support/KDE/KDatePicker include/KF5/KDELibs4Support/KDE/KDateTable include/KF5/KDELibs4Support/KDE/KDateTime include/KF5/KDELibs4Support/KDE/KDateTimeEdit include/KF5/KDELibs4Support/KDE/KDateTimeWidget include/KF5/KDELibs4Support/KDE/KDateValidator include/KF5/KDELibs4Support/KDE/KDateWidget include/KF5/KDELibs4Support/KDE/KDebug include/KF5/KDELibs4Support/KDE/KDescendantsProxyModel include/KF5/KDELibs4Support/KDE/KDesktopFile include/KF5/KDELibs4Support/KDE/KDeviceListModel include/KF5/KDELibs4Support/KDE/KDialog include/KF5/KDELibs4Support/KDE/KDialogButtonBox include/KF5/KDELibs4Support/KDE/KDialogJobUiDelegate include/KF5/KDELibs4Support/KDE/KDirLister include/KF5/KDELibs4Support/KDE/KDirModel include/KF5/KDELibs4Support/KDE/KDirNotify include/KF5/KDELibs4Support/KDE/KDirOperator include/KF5/KDELibs4Support/KDE/KDirSelectDialog include/KF5/KDELibs4Support/KDE/KDirSortFilterProxyModel include/KF5/KDELibs4Support/KDE/KDirWatch include/KF5/KDELibs4Support/KDE/KDiskFreeSpace include/KF5/KDELibs4Support/KDE/KDiskFreeSpaceInfo include/KF5/KDELibs4Support/KDE/KDoubleNumInput include/KF5/KDELibs4Support/KDE/KDoubleValidator include/KF5/KDELibs4Support/KDE/KDualAction include/KF5/KDELibs4Support/KDE/KEMailSettings include/KF5/KDELibs4Support/KDE/KEditListBox include/KF5/KDELibs4Support/KDE/KEditListWidget include/KF5/KDELibs4Support/KDE/KEditToolBar include/KF5/KDELibs4Support/KDE/KEmoticons include/KF5/KDELibs4Support/KDE/KEmoticonsProvider include/KF5/KDELibs4Support/KDE/KEmoticonsTheme include/KF5/KDELibs4Support/KDE/KEncodingFileDialog include/KF5/KDELibs4Support/KDE/KEncodingProber include/KF5/KDELibs4Support/KDE/KExtendableItemDelegate include/KF5/KDELibs4Support/KDE/KFadeWidgetEffect include/KF5/KDELibs4Support/KDE/KFile include/KF5/KDELibs4Support/KDE/KFileDialog include/KF5/KDELibs4Support/KDE/KFileFilterCombo include/KF5/KDELibs4Support/KDE/KFileItem include/KF5/KDELibs4Support/KDE/KFileItemActions include/KF5/KDELibs4Support/KDE/KFileItemDelegate include/KF5/KDELibs4Support/KDE/KFileItemList include/KF5/KDELibs4Support/KDE/KFileItemListProperties include/KF5/KDELibs4Support/KDE/KFileMetaDataWidget include/KF5/KDELibs4Support/KDE/KFileMetaInfo include/KF5/KDELibs4Support/KDE/KFileMetaInfoGroup include/KF5/KDELibs4Support/KDE/KFileMetaInfoItem include/KF5/KDELibs4Support/KDE/KFilePlacesModel include/KF5/KDELibs4Support/KDE/KFilePlacesView include/KF5/KDELibs4Support/KDE/KFilePreviewGenerator include/KF5/KDELibs4Support/KDE/KFileShare include/KF5/KDELibs4Support/KDE/KFileSharePropsPlugin include/KF5/KDELibs4Support/KDE/KFileTreeBranch include/KF5/KDELibs4Support/KDE/KFileTreeView include/KF5/KDELibs4Support/KDE/KFileWidget include/KF5/KDELibs4Support/KDE/KFileWritePlugin include/KF5/KDELibs4Support/KDE/KFilterBase include/KF5/KDELibs4Support/KDE/KFilterDev include/KF5/KDELibs4Support/KDE/KFilterProxySearchLine include/KF5/KDELibs4Support/KDE/KFind include/KF5/KDELibs4Support/KDE/KFindDialog include/KF5/KDELibs4Support/KDE/KFontAction include/KF5/KDELibs4Support/KDE/KFontChooser include/KF5/KDELibs4Support/KDE/KFontComboBox include/KF5/KDELibs4Support/KDE/KFontDialog include/KF5/KDELibs4Support/KDE/KFontRequester include/KF5/KDELibs4Support/KDE/KFontSizeAction include/KF5/KDELibs4Support/KDE/KFontUtils include/KF5/KDELibs4Support/KDE/KGenericFactory include/KF5/KDELibs4Support/KDE/KGenericFactoryBase include/KF5/KDELibs4Support/KDE/KGlobal include/KF5/KDELibs4Support/KDE/KGlobalAccel include/KF5/KDELibs4Support/KDE/KGlobalSettings include/KF5/KDELibs4Support/KDE/KGlobalShortcutInfo include/KF5/KDELibs4Support/KDE/KGradientSelector include/KF5/KDELibs4Support/KDE/KGraphicsWebView include/KF5/KDELibs4Support/KDE/KGuiItem include/KF5/KDELibs4Support/KDE/KHBox include/KF5/KDELibs4Support/KDE/KHTMLPart include/KF5/KDELibs4Support/KDE/KHTMLSettings include/KF5/KDELibs4Support/KDE/KHTMLView include/KF5/KDELibs4Support/KDE/KHelpMenu include/KF5/KDELibs4Support/KDE/KHistoryComboBox include/KF5/KDELibs4Support/KDE/KHueSaturationSelector include/KF5/KDELibs4Support/KDE/KIEBookmarkExporterImpl include/KF5/KDELibs4Support/KDE/KIEBookmarkImporter include/KF5/KDELibs4Support/KDE/KIEBookmarkImporterImpl include/KF5/KDELibs4Support/KDE/KIMProxy include/KF5/KDELibs4Support/KDE/KIO/AccessManager include/KF5/KDELibs4Support/KDE/KIO/AuthInfo include/KF5/KDELibs4Support/KDE/KIO/ChmodJob include/KF5/KDELibs4Support/KDE/KIO/Connection include/KF5/KDELibs4Support/KDE/KIO/CopyInfo include/KF5/KDELibs4Support/KDE/KIO/CopyJob include/KF5/KDELibs4Support/KDE/KIO/DavJob include/KF5/KDELibs4Support/KDE/KIO/DeleteJob include/KF5/KDELibs4Support/KDE/KIO/FileCopyJob include/KF5/KDELibs4Support/KDE/KIO/FileJob include/KF5/KDELibs4Support/KDE/KIO/ForwardingSlaveBase include/KF5/KDELibs4Support/KDE/KIO/Job include/KF5/KDELibs4Support/KDE/KIO/JobClasses include/KF5/KDELibs4Support/KDE/KIO/JobUiDelegate include/KF5/KDELibs4Support/KDE/KIO/ListJob include/KF5/KDELibs4Support/KDE/KIO/MetaData include/KF5/KDELibs4Support/KDE/KIO/MetaInfoJob include/KF5/KDELibs4Support/KDE/KIO/MimetypeJob include/KF5/KDELibs4Support/KDE/KIO/MultiGetJob include/KF5/KDELibs4Support/KDE/KIO/NetAccess include/KF5/KDELibs4Support/KDE/KIO/NetRC include/KF5/KDELibs4Support/KDE/KIO/PasswordDialog include/KF5/KDELibs4Support/KDE/KIO/PreviewJob include/KF5/KDELibs4Support/KDE/KIO/RenameDialog include/KF5/KDELibs4Support/KDE/KIO/Scheduler include/KF5/KDELibs4Support/KDE/KIO/SessionData include/KF5/KDELibs4Support/KDE/KIO/SimpleJob include/KF5/KDELibs4Support/KDE/KIO/SkipDialog include/KF5/KDELibs4Support/KDE/KIO/Slave include/KF5/KDELibs4Support/KDE/KIO/SlaveBase include/KF5/KDELibs4Support/KDE/KIO/SlaveConfig include/KF5/KDELibs4Support/KDE/KIO/SlaveInterface include/KF5/KDELibs4Support/KDE/KIO/StatJob include/KF5/KDELibs4Support/KDE/KIO/StoredTransferJob include/KF5/KDELibs4Support/KDE/KIO/TCPSlaveBase include/KF5/KDELibs4Support/KDE/KIO/Task include/KF5/KDELibs4Support/KDE/KIO/TransferJob include/KF5/KDELibs4Support/KDE/KIcon include/KF5/KDELibs4Support/KDE/KIconButton include/KF5/KDELibs4Support/KDE/KIconDialog include/KF5/KDELibs4Support/KDE/KIconEffect include/KF5/KDELibs4Support/KDE/KIconLoader include/KF5/KDELibs4Support/KDE/KIconTheme include/KF5/KDELibs4Support/KDE/KIdentityProxyModel include/KF5/KDELibs4Support/KDE/KIdleTime include/KF5/KDELibs4Support/KDE/KImageCache include/KF5/KDELibs4Support/KDE/KImageFilePreview include/KF5/KDELibs4Support/KDE/KImageIO include/KF5/KDELibs4Support/KDE/KInputDialog include/KF5/KDELibs4Support/KDE/KIntNumInput include/KF5/KDELibs4Support/KDE/KIntSpinBox include/KF5/KDELibs4Support/KDE/KIntValidator include/KF5/KDELibs4Support/KDE/KJob include/KF5/KDELibs4Support/KDE/KJobTrackerInterface include/KF5/KDELibs4Support/KDE/KJobUiDelegate include/KF5/KDELibs4Support/KDE/KKeySequenceWidget include/KF5/KDELibs4Support/KDE/KLanguageButton include/KF5/KDELibs4Support/KDE/KLed include/KF5/KDELibs4Support/KDE/KLibLoader include/KF5/KDELibs4Support/KDE/KLibrary include/KF5/KDELibs4Support/KDE/KLineEdit include/KF5/KDELibs4Support/KDE/KLinkItemSelectionModel include/KF5/KDELibs4Support/KDE/KListWidget include/KF5/KDELibs4Support/KDE/KListWidgetSearchLine include/KF5/KDELibs4Support/KDE/KLocale include/KF5/KDELibs4Support/KDE/KLocalizedDate include/KF5/KDELibs4Support/KDE/KLocalizedString include/KF5/KDELibs4Support/KDE/KLockFile include/KF5/KDELibs4Support/KDE/KMD5 include/KF5/KDELibs4Support/KDE/KMacroExpanderBase include/KF5/KDELibs4Support/KDE/KMainWindow include/KF5/KDELibs4Support/KDE/KMakeTypeList include/KF5/KDELibs4Support/KDE/KMediaPlayer/Player include/KF5/KDELibs4Support/KDE/KMediaPlayer/View include/KF5/KDELibs4Support/KDE/KMenu include/KF5/KDELibs4Support/KDE/KMenuBar include/KF5/KDELibs4Support/KDE/KMessage include/KF5/KDELibs4Support/KDE/KMessageBox include/KF5/KDELibs4Support/KDE/KMessageBoxMessageHandler include/KF5/KDELibs4Support/KDE/KMessageHandler include/KF5/KDELibs4Support/KDE/KMessageWidget include/KF5/KDELibs4Support/KDE/KMimeType include/KF5/KDELibs4Support/KDE/KMimeTypeChooser include/KF5/KDELibs4Support/KDE/KMimeTypeChooserDialog include/KF5/KDELibs4Support/KDE/KMimeTypeResolver include/KF5/KDELibs4Support/KDE/KMimeTypeTrader include/KF5/KDELibs4Support/KDE/KModelIndexProxyMapper include/KF5/KDELibs4Support/KDE/KModifierKeyInfo include/KF5/KDELibs4Support/KDE/KMountPoint include/KF5/KDELibs4Support/KDE/KMozillaBookmarkImporterImpl include/KF5/KDELibs4Support/KDE/KMultiTabBar include/KF5/KDELibs4Support/KDE/KMultiTabBarButton include/KF5/KDELibs4Support/KDE/KMultiTabBarTab include/KF5/KDELibs4Support/KDE/KNFSShare include/KF5/KDELibs4Support/KDE/KNS/Author include/KF5/KDELibs4Support/KDE/KNS/Category include/KF5/KDELibs4Support/KDE/KNS/Engine include/KF5/KDELibs4Support/KDE/KNS/Entry include/KF5/KDELibs4Support/KDE/KNS/Installation include/KF5/KDELibs4Support/KDE/KNS/KTranslatable include/KF5/KDELibs4Support/KDE/KNS3/DownloadDialog include/KF5/KDELibs4Support/KDE/KNS3/Entry include/KF5/KDELibs4Support/KDE/KNS3/KNewStuffAction include/KF5/KDELibs4Support/KDE/KNS3/KNewStuffButton include/KF5/KDELibs4Support/KDE/KNSBookmarkExporter include/KF5/KDELibs4Support/KDE/KNSBookmarkExporterImpl include/KF5/KDELibs4Support/KDE/KNSBookmarkImporter include/KF5/KDELibs4Support/KDE/KNSBookmarkImporterImpl include/KF5/KDELibs4Support/KDE/KNTLM include/KF5/KDELibs4Support/KDE/KNameAndUrlInputDialog include/KF5/KDELibs4Support/KDE/KNetwork/KActiveSocketBase include/KF5/KDELibs4Support/KDE/KNetwork/KBufferedSocket include/KF5/KDELibs4Support/KDE/KNetwork/KClientSocketBase include/KF5/KDELibs4Support/KDE/KNetwork/KInetSocketAddress include/KF5/KDELibs4Support/KDE/KNetwork/KIpAddress include/KF5/KDELibs4Support/KDE/KNetwork/KPassiveSocketBase include/KF5/KDELibs4Support/KDE/KNetwork/KResolver include/KF5/KDELibs4Support/KDE/KNetwork/KResolverEntry include/KF5/KDELibs4Support/KDE/KNetwork/KResolverResults include/KF5/KDELibs4Support/KDE/KNetwork/KReverseResolver include/KF5/KDELibs4Support/KDE/KNetwork/KServerSocket include/KF5/KDELibs4Support/KDE/KNetwork/KSocketAddress include/KF5/KDELibs4Support/KDE/KNetwork/KSocketBase include/KF5/KDELibs4Support/KDE/KNetwork/KSocketDevice include/KF5/KDELibs4Support/KDE/KNetwork/KSocketDeviceFactory include/KF5/KDELibs4Support/KDE/KNetwork/KStreamSocket include/KF5/KDELibs4Support/KDE/KNetwork/KUnixSocketAddress include/KF5/KDELibs4Support/KDE/KNewFileMenu include/KF5/KDELibs4Support/KDE/KNewPasswordDialog include/KF5/KDELibs4Support/KDE/KNotification include/KF5/KDELibs4Support/KDE/KNotificationRestrictions include/KF5/KDELibs4Support/KDE/KNotifyConfigWidget include/KF5/KDELibs4Support/KDE/KNumInput include/KF5/KDELibs4Support/KDE/KOCRDialog include/KF5/KDELibs4Support/KDE/KOpenWithDialog include/KF5/KDELibs4Support/KDE/KOperaBookmarkExporterImpl include/KF5/KDELibs4Support/KDE/KOperaBookmarkImporter include/KF5/KDELibs4Support/KDE/KOperaBookmarkImporterImpl include/KF5/KDELibs4Support/KDE/KPageDialog include/KF5/KDELibs4Support/KDE/KPageModel include/KF5/KDELibs4Support/KDE/KPageView include/KF5/KDELibs4Support/KDE/KPageWidget include/KF5/KDELibs4Support/KDE/KPageWidgetItem include/KF5/KDELibs4Support/KDE/KPageWidgetModel include/KF5/KDELibs4Support/KDE/KParts/BrowserExtension include/KF5/KDELibs4Support/KDE/KParts/BrowserHostExtension include/KF5/KDELibs4Support/KDE/KParts/BrowserInterface include/KF5/KDELibs4Support/KDE/KParts/BrowserRun include/KF5/KDELibs4Support/KDE/KParts/DockMainWindow3 include/KF5/KDELibs4Support/KDE/KParts/Event include/KF5/KDELibs4Support/KDE/KParts/Factory include/KF5/KDELibs4Support/KDE/KParts/FileInfoExtension include/KF5/KDELibs4Support/KDE/KParts/GUIActivateEvent include/KF5/KDELibs4Support/KDE/KParts/GenericFactory include/KF5/KDELibs4Support/KDE/KParts/GenericFactoryBase include/KF5/KDELibs4Support/KDE/KParts/HistoryProvider include/KF5/KDELibs4Support/KDE/KParts/HtmlExtension include/KF5/KDELibs4Support/KDE/KParts/ListingExtension include/KF5/KDELibs4Support/KDE/KParts/LiveConnectExtension include/KF5/KDELibs4Support/KDE/KParts/MainWindow include/KF5/KDELibs4Support/KDE/KParts/OpenUrlEvent include/KF5/KDELibs4Support/KDE/KParts/Part include/KF5/KDELibs4Support/KDE/KParts/PartActivateEvent include/KF5/KDELibs4Support/KDE/KParts/PartBase include/KF5/KDELibs4Support/KDE/KParts/PartManager include/KF5/KDELibs4Support/KDE/KParts/PartSelectEvent include/KF5/KDELibs4Support/KDE/KParts/Plugin include/KF5/KDELibs4Support/KDE/KParts/ReadOnlyPart include/KF5/KDELibs4Support/KDE/KParts/ReadWritePart include/KF5/KDELibs4Support/KDE/KParts/StatusBarExtension include/KF5/KDELibs4Support/KDE/KParts/TextExtension include/KF5/KDELibs4Support/KDE/KParts/WindowArgs include/KF5/KDELibs4Support/KDE/KPassivePopup include/KF5/KDELibs4Support/KDE/KPassivePopupMessageHandler include/KF5/KDELibs4Support/KDE/KPasswordDialog include/KF5/KDELibs4Support/KDE/KPasteTextAction include/KF5/KDELibs4Support/KDE/KPixmapCache include/KF5/KDELibs4Support/KDE/KPixmapProvider include/KF5/KDELibs4Support/KDE/KPixmapRegionSelectorDialog include/KF5/KDELibs4Support/KDE/KPixmapRegionSelectorWidget include/KF5/KDELibs4Support/KDE/KPixmapSequence include/KF5/KDELibs4Support/KDE/KPixmapSequenceOverlayPainter include/KF5/KDELibs4Support/KDE/KPixmapSequenceWidget include/KF5/KDELibs4Support/KDE/KPlotAxis include/KF5/KDELibs4Support/KDE/KPlotObject include/KF5/KDELibs4Support/KDE/KPlotPoint include/KF5/KDELibs4Support/KDE/KPlotWidget include/KF5/KDELibs4Support/KDE/KPluginFactory include/KF5/KDELibs4Support/KDE/KPluginInfo include/KF5/KDELibs4Support/KDE/KPluginLoader include/KF5/KDELibs4Support/KDE/KPluginSelector include/KF5/KDELibs4Support/KDE/KPopupFrame include/KF5/KDELibs4Support/KDE/KPreviewWidgetBase include/KF5/KDELibs4Support/KDE/KPrintPreview include/KF5/KDELibs4Support/KDE/KProcess include/KF5/KDELibs4Support/KDE/KProgressDialog include/KF5/KDELibs4Support/KDE/KPropertiesDialog include/KF5/KDELibs4Support/KDE/KProtocolInfo include/KF5/KDELibs4Support/KDE/KProtocolManager include/KF5/KDELibs4Support/KDE/KPty include/KF5/KDELibs4Support/KDE/KPtyDevice include/KF5/KDELibs4Support/KDE/KPtyProcess include/KF5/KDELibs4Support/KDE/KPushButton include/KF5/KDELibs4Support/KDE/KRandom include/KF5/KDELibs4Support/KDE/KRandomSequence include/KF5/KDELibs4Support/KDE/KRatingPainter include/KF5/KDELibs4Support/KDE/KRatingWidget include/KF5/KDELibs4Support/KDE/KRecentDocument include/KF5/KDELibs4Support/KDE/KRecentFilesAction include/KF5/KDELibs4Support/KDE/KRecursiveFilterProxyModel include/KF5/KDELibs4Support/KDE/KRegExpEditorInterface include/KF5/KDELibs4Support/KDE/KRemoteEncoding include/KF5/KDELibs4Support/KDE/KReplace include/KF5/KDELibs4Support/KDE/KReplaceDialog include/KF5/KDELibs4Support/KDE/KRestrictedLine include/KF5/KDELibs4Support/KDE/KRichTextEdit include/KF5/KDELibs4Support/KDE/KRichTextWidget include/KF5/KDELibs4Support/KDE/KRuler include/KF5/KDELibs4Support/KDE/KRun include/KF5/KDELibs4Support/KDE/KSambaShare include/KF5/KDELibs4Support/KDE/KSambaShareData include/KF5/KDELibs4Support/KDE/KSaveFile include/KF5/KDELibs4Support/KDE/KScanDialog include/KF5/KDELibs4Support/KDE/KSelectAction include/KF5/KDELibs4Support/KDE/KSelectionOwner include/KF5/KDELibs4Support/KDE/KSelectionProxyModel include/KF5/KDELibs4Support/KDE/KSelectionWatcher include/KF5/KDELibs4Support/KDE/KSelector include/KF5/KDELibs4Support/KDE/KSeparator include/KF5/KDELibs4Support/KDE/KService include/KF5/KDELibs4Support/KDE/KServiceAction include/KF5/KDELibs4Support/KDE/KServiceGroup include/KF5/KDELibs4Support/KDE/KServiceType include/KF5/KDELibs4Support/KDE/KServiceTypeProfile include/KF5/KDELibs4Support/KDE/KServiceTypeTrader include/KF5/KDELibs4Support/KDE/KSessionManager include/KF5/KDELibs4Support/KDE/KSettings/Dialog include/KF5/KDELibs4Support/KDE/KSettings/Dispatcher include/KF5/KDELibs4Support/KDE/KSettings/PluginPage include/KF5/KDELibs4Support/KDE/KSharedConfig include/KF5/KDELibs4Support/KDE/KSharedConfigPtr include/KF5/KDELibs4Support/KDE/KSharedDataCache include/KF5/KDELibs4Support/KDE/KSharedPtr include/KF5/KDELibs4Support/KDE/KShell include/KF5/KDELibs4Support/KDE/KShellCompletion include/KF5/KDELibs4Support/KDE/KShortcut include/KF5/KDELibs4Support/KDE/KShortcutWidget include/KF5/KDELibs4Support/KDE/KShortcutsDialog include/KF5/KDELibs4Support/KDE/KShortcutsEditor include/KF5/KDELibs4Support/KDE/KSortableItem include/KF5/KDELibs4Support/KDE/KSortableList include/KF5/KDELibs4Support/KDE/KSplashScreen include/KF5/KDELibs4Support/KDE/KSqueezedTextLabel include/KF5/KDELibs4Support/KDE/KStandardAction include/KF5/KDELibs4Support/KDE/KStandardDirs include/KF5/KDELibs4Support/KDE/KStandardGuiItem include/KF5/KDELibs4Support/KDE/KStandardShortcut include/KF5/KDELibs4Support/KDE/KStartupInfo include/KF5/KDELibs4Support/KDE/KStartupInfoData include/KF5/KDELibs4Support/KDE/KStartupInfoId include/KF5/KDELibs4Support/KDE/KStatusBar include/KF5/KDELibs4Support/KDE/KStatusBarJobTracker include/KF5/KDELibs4Support/KDE/KStatusBarOfflineIndicator include/KF5/KDELibs4Support/KDE/KStatusNotifierItem include/KF5/KDELibs4Support/KDE/KStringHandler include/KF5/KDELibs4Support/KDE/KStringListValidator include/KF5/KDELibs4Support/KDE/KStyle include/KF5/KDELibs4Support/KDE/KStyleFactory include/KF5/KDELibs4Support/KDE/KSycoca include/KF5/KDELibs4Support/KDE/KSycocaEntry include/KF5/KDELibs4Support/KDE/KSystemEventFilter include/KF5/KDELibs4Support/KDE/KSystemTimeZone include/KF5/KDELibs4Support/KDE/KSystemTimeZoneSource include/KF5/KDELibs4Support/KDE/KSystemTimeZones include/KF5/KDELibs4Support/KDE/KSystemTrayIcon include/KF5/KDELibs4Support/KDE/KTabBar include/KF5/KDELibs4Support/KDE/KTabWidget include/KF5/KDELibs4Support/KDE/KTar include/KF5/KDELibs4Support/KDE/KTempDir include/KF5/KDELibs4Support/KDE/KTemporaryFile include/KF5/KDELibs4Support/KDE/KTextBrowser include/KF5/KDELibs4Support/KDE/KTextEdit include/KF5/KDELibs4Support/KDE/KTimeComboBox include/KF5/KDELibs4Support/KDE/KTimeZone include/KF5/KDELibs4Support/KDE/KTimeZoneData include/KF5/KDELibs4Support/KDE/KTimeZoneSource include/KF5/KDELibs4Support/KDE/KTimeZoneWidget include/KF5/KDELibs4Support/KDE/KTimeZones include/KF5/KDELibs4Support/KDE/KTipDatabase include/KF5/KDELibs4Support/KDE/KTipDialog include/KF5/KDELibs4Support/KDE/KTitleWidget include/KF5/KDELibs4Support/KDE/KToggleAction include/KF5/KDELibs4Support/KDE/KToggleFullScreenAction include/KF5/KDELibs4Support/KDE/KToggleToolBarAction include/KF5/KDELibs4Support/KDE/KToolBar include/KF5/KDELibs4Support/KDE/KToolBarLabelAction include/KF5/KDELibs4Support/KDE/KToolBarPopupAction include/KF5/KDELibs4Support/KDE/KToolBarSpacerAction include/KF5/KDELibs4Support/KDE/KToolInvocation include/KF5/KDELibs4Support/KDE/KTreeWidgetSearchLine include/KF5/KDELibs4Support/KDE/KTreeWidgetSearchLineWidget include/KF5/KDELibs4Support/KDE/KTypeList include/KF5/KDELibs4Support/KDE/KTypeListIndexOf include/KF5/KDELibs4Support/KDE/KTypeListLength include/KF5/KDELibs4Support/KDE/KTzfileTimeZone include/KF5/KDELibs4Support/KDE/KTzfileTimeZoneSource include/KF5/KDELibs4Support/KDE/KUndoActions include/KF5/KDELibs4Support/KDE/KUniqueApplication include/KF5/KDELibs4Support/KDE/KUnitConversion/Converter include/KF5/KDELibs4Support/KDE/KUnitConversion/Unit include/KF5/KDELibs4Support/KDE/KUnitConversion/UnitCategory include/KF5/KDELibs4Support/KDE/KUnitConversion/Value include/KF5/KDELibs4Support/KDE/KUnitTest/Runner include/KF5/KDELibs4Support/KDE/KUnitTest/SlotTester include/KF5/KDELibs4Support/KDE/KUnitTest/TestResults include/KF5/KDELibs4Support/KDE/KUnitTest/Tester include/KF5/KDELibs4Support/KDE/KUriFilter include/KF5/KDELibs4Support/KDE/KUriFilterData include/KF5/KDELibs4Support/KDE/KUriFilterPlugin include/KF5/KDELibs4Support/KDE/KUrl include/KF5/KDELibs4Support/KDE/KUrlAuthorized include/KF5/KDELibs4Support/KDE/KUrlComboBox include/KF5/KDELibs4Support/KDE/KUrlComboRequester include/KF5/KDELibs4Support/KDE/KUrlCompletion include/KF5/KDELibs4Support/KDE/KUrlLabel include/KF5/KDELibs4Support/KDE/KUrlNavigator include/KF5/KDELibs4Support/KDE/KUrlPixmapProvider include/KF5/KDELibs4Support/KDE/KUrlRequester include/KF5/KDELibs4Support/KDE/KUrlRequesterDialog include/KF5/KDELibs4Support/KDE/KUser include/KF5/KDELibs4Support/KDE/KUserGroup include/KF5/KDELibs4Support/KDE/KVBox include/KF5/KDELibs4Support/KDE/KViewStateMaintainer include/KF5/KDELibs4Support/KDE/KViewStateSaver include/KF5/KDELibs4Support/KDE/KWallet/Wallet include/KF5/KDELibs4Support/KDE/KWebPage include/KF5/KDELibs4Support/KDE/KWebPluginFactory include/KF5/KDELibs4Support/KDE/KWebView include/KF5/KDELibs4Support/KDE/KWebWallet include/KF5/KDELibs4Support/KDE/KWidgetItemDelegate include/KF5/KDELibs4Support/KDE/KWidgetJobTracker include/KF5/KDELibs4Support/KDE/KWindowInfo include/KF5/KDELibs4Support/KDE/KWindowSystem include/KF5/KDELibs4Support/KDE/KWordMacroExpander include/KF5/KDELibs4Support/KDE/KWordWrap include/KF5/KDELibs4Support/KDE/KXBELBookmarkImporterImpl include/KF5/KDELibs4Support/KDE/KXErrorHandler include/KF5/KDELibs4Support/KDE/KXMLGUIBuilder include/KF5/KDELibs4Support/KDE/KXMLGUIClient include/KF5/KDELibs4Support/KDE/KXMLGUIFactory include/KF5/KDELibs4Support/KDE/KXMessages include/KF5/KDELibs4Support/KDE/KXYSelector include/KF5/KDELibs4Support/KDE/KXmlGuiWindow include/KF5/KDELibs4Support/KDE/KZip include/KF5/KDELibs4Support/KDE/KZipFileEntry include/KF5/KDELibs4Support/KDE/KonqBookmarkMenu include/KF5/KDELibs4Support/KDE/KonqBookmarkOwner include/KF5/KDELibs4Support/KDE/Kross/Action include/KF5/KDELibs4Support/KDE/Kross/ActionCollection include/KF5/KDELibs4Support/KDE/Kross/ActionCollectionEditor include/KF5/KDELibs4Support/KDE/Kross/ActionCollectionModel include/KF5/KDELibs4Support/KDE/Kross/ActionCollectionProxyModel include/KF5/KDELibs4Support/KDE/Kross/ActionCollectionView include/KF5/KDELibs4Support/KDE/Kross/ChildrenInterface include/KF5/KDELibs4Support/KDE/Kross/ErrorInterface include/KF5/KDELibs4Support/KDE/Kross/Interpreter include/KF5/KDELibs4Support/KDE/Kross/InterpreterInfo include/KF5/KDELibs4Support/KDE/Kross/Manager include/KF5/KDELibs4Support/KDE/Kross/MetaFunction include/KF5/KDELibs4Support/KDE/Kross/MetaType include/KF5/KDELibs4Support/KDE/Kross/MetaTypeHandler include/KF5/KDELibs4Support/KDE/Kross/MetaTypeImpl include/KF5/KDELibs4Support/KDE/Kross/MetaTypeVariant include/KF5/KDELibs4Support/KDE/Kross/MetaTypeVoidStar include/KF5/KDELibs4Support/KDE/Kross/Object include/KF5/KDELibs4Support/KDE/Kross/Script include/KF5/KDELibs4Support/KDE/Kross/ScriptingPlugin include/KF5/KDELibs4Support/KDE/Kross/WrapperInterface include/KF5/KDELibs4Support/KDE/NET include/KF5/KDELibs4Support/KDE/NETRootInfo include/KF5/KDELibs4Support/KDE/NETWinInfo include/KF5/KDELibs4Support/KDE/OrgKdeKDirNotifyInterface include/KF5/KDELibs4Support/KDE/PtyProcess include/KF5/KDELibs4Support/KDE/Solid/Battery include/KF5/KDELibs4Support/KDE/Solid/Block include/KF5/KDELibs4Support/KDE/Solid/Camera include/KF5/KDELibs4Support/KDE/Solid/Device include/KF5/KDELibs4Support/KDE/Solid/DeviceInterface include/KF5/KDELibs4Support/KDE/Solid/DeviceNotifier include/KF5/KDELibs4Support/KDE/Solid/GenericInterface include/KF5/KDELibs4Support/KDE/Solid/NetworkShare include/KF5/KDELibs4Support/KDE/Solid/Networking include/KF5/KDELibs4Support/KDE/Solid/OpticalDisc include/KF5/KDELibs4Support/KDE/Solid/OpticalDrive include/KF5/KDELibs4Support/KDE/Solid/PortableMediaPlayer include/KF5/KDELibs4Support/KDE/Solid/PowerManagement include/KF5/KDELibs4Support/KDE/Solid/Predicate include/KF5/KDELibs4Support/KDE/Solid/Processor include/KF5/KDELibs4Support/KDE/Solid/StorageAccess include/KF5/KDELibs4Support/KDE/Solid/StorageDrive include/KF5/KDELibs4Support/KDE/Solid/StorageVolume include/KF5/KDELibs4Support/KDE/Sonnet/ConfigDialog include/KF5/KDELibs4Support/KDE/Sonnet/ConfigWidget include/KF5/KDELibs4Support/KDE/Sonnet/Dialog include/KF5/KDELibs4Support/KDE/Sonnet/DictionaryComboBox include/KF5/KDELibs4Support/KDE/Sonnet/Highlighter include/KF5/KDELibs4Support/KDE/SshProcess include/KF5/KDELibs4Support/KDE/StubProcess include/KF5/KDELibs4Support/KDE/SuProcess include/KF5/KDELibs4Support/KDE/ThreadWeaver/DependencyPolicy include/KF5/KDELibs4Support/KDE/ThreadWeaver/Job include/KF5/KDELibs4Support/KDE/ThreadWeaver/JobCollection include/KF5/KDELibs4Support/KDE/ThreadWeaver/JobSequence include/KF5/KDELibs4Support/KDE/ThreadWeaver/QueuePolicy include/KF5/KDELibs4Support/KDE/ThreadWeaver/ResourceRestrictionPolicy include/KF5/KDELibs4Support/KDE/ThreadWeaver/State include/KF5/KDELibs4Support/KDE/ThreadWeaver/Thread include/KF5/KDELibs4Support/KDE/ThreadWeaver/Weaver include/KF5/KDELibs4Support/KDE/ThreadWeaver/WeaverInterface include/KF5/KDELibs4Support/KDE/ThreadWeaver/WeaverObserver include/KF5/KDELibs4Support/KDE/ThumbCreator include/KF5/KDELibs4Support/KDE/kdbgstream include/KF5/KDELibs4Support/KDE/khtml/DrawContentsEvent include/KF5/KDELibs4Support/KDE/khtml/MouseDoubleClickEvent include/KF5/KDELibs4Support/KDE/khtml/MouseEvent include/KF5/KDELibs4Support/KDE/khtml/MouseMoveEvent include/KF5/KDELibs4Support/KDE/khtml/MousePressEvent include/KF5/KDELibs4Support/KDE/khtml/MouseReleaseEvent include/KF5/KDELibs4Support/KDE/kndbgstream include/KF5/KDELibs4Support/k3bufferedsocket.h include/KF5/KDELibs4Support/k3clientsocketbase.h include/KF5/KDELibs4Support/k3resolver.h include/KF5/KDELibs4Support/k3reverseresolver.h include/KF5/KDELibs4Support/k3serversocket.h include/KF5/KDELibs4Support/k3socketaddress.h include/KF5/KDELibs4Support/k3socketbase.h include/KF5/KDELibs4Support/k3socketdevice.h include/KF5/KDELibs4Support/k3streamsocket.h include/KF5/KDELibs4Support/k4aboutdata.h include/KF5/KDELibs4Support/k4style.h include/KF5/KDELibs4Support/k4timezonewidget.h include/KF5/KDELibs4Support/kaccelgen.h include/KF5/KDELibs4Support/kaction.h include/KF5/KDELibs4Support/kapplication.h include/KF5/KDELibs4Support/karrowbutton.h include/KF5/KDELibs4Support/kascii.h include/KF5/KDELibs4Support/kbuttongroup.h include/KF5/KDELibs4Support/kcalendarsystem.h include/KF5/KDELibs4Support/kcmdlineargs.h include/KF5/KDELibs4Support/kcolorchoosermode.h include/KF5/KDELibs4Support/kcolordialog.h include/KF5/KDELibs4Support/kcolorvalueselector.h include/KF5/KDELibs4Support/kcomponentdata.h include/KF5/KDELibs4Support/kconfiggroup_kurl.h include/KF5/KDELibs4Support/kcurrencycode.h include/KF5/KDELibs4Support/kdatatool.h include/KF5/KDELibs4Support/kdatetime.h include/KF5/KDELibs4Support/kdatetimewidget.h include/KF5/KDELibs4Support/kdatewidget.h include/KF5/KDELibs4Support/kde_file.h include/KF5/KDELibs4Support/kdebug.h include/KF5/KDELibs4Support/kdefakes.h include/KF5/KDELibs4Support/kdelibs4support_export.h include/KF5/KDELibs4Support/kdelibs4support_export_internal.h include/KF5/KDELibs4Support/kdelibs4support_version.h include/KF5/KDELibs4Support/kdemacros.h include/KF5/KDELibs4Support/kdeprintdialog.h include/KF5/KDELibs4Support/kdeversion.h include/KF5/KDELibs4Support/kdevicelistmodel.h include/KF5/KDELibs4Support/kdialog.h include/KF5/KDELibs4Support/kdialogbuttonbox.h include/KF5/KDELibs4Support/kdirselectdialog.h include/KF5/KDELibs4Support/kdiskfreespace.h include/KF5/KDELibs4Support/keditlistbox.h include/KF5/KDELibs4Support/kfadewidgeteffect.h include/KF5/KDELibs4Support/kfiledialog.h include/KF5/KDELibs4Support/kfileitemactionplugin.h include/KF5/KDELibs4Support/kfilemetadataconfigurationwidget.h include/KF5/KDELibs4Support/kfilemetadatawidget.h include/KF5/KDELibs4Support/kfilemetainfo.h include/KF5/KDELibs4Support/kfilemetainfoitem.h include/KF5/KDELibs4Support/kfilemetainfowidget.h include/KF5/KDELibs4Support/kfileshare.h include/KF5/KDELibs4Support/kfilewriteplugin.h include/KF5/KDELibs4Support/kfontcombobox.h include/KF5/KDELibs4Support/kfontdialog.h include/KF5/KDELibs4Support/kgenericfactory.h include/KF5/KDELibs4Support/kgenericfactory.tcc include/KF5/KDELibs4Support/kglobal.h include/KF5/KDELibs4Support/kglobalsettings.h include/KF5/KDELibs4Support/khbox.h include/KF5/KDELibs4Support/khuesaturationselect.h include/KF5/KDELibs4Support/kicon.h include/KF5/KDELibs4Support/kimageio.h include/KF5/KDELibs4Support/kinputdialog.h include/KF5/KDELibs4Support/kio/metainfojob.h include/KF5/KDELibs4Support/kio/netaccess.h include/KF5/KDELibs4Support/kio/passworddialog.h include/KF5/KDELibs4Support/klibloader.h include/KF5/KDELibs4Support/klibrary.h include/KF5/KDELibs4Support/klistwidget.h include/KF5/KDELibs4Support/klocale.h include/KF5/KDELibs4Support/klocalizeddate.h include/KF5/KDELibs4Support/klockfile.h include/KF5/KDELibs4Support/kmd5.h include/KF5/KDELibs4Support/kmenu.h include/KF5/KDELibs4Support/kmenubar.h include/KF5/KDELibs4Support/kmessagebox_queued.h include/KF5/KDELibs4Support/kmessageboxmessagehandler.h include/KF5/KDELibs4Support/kmimetype.h include/KF5/KDELibs4Support/knewstuff3/downloaddialog.h include/KF5/KDELibs4Support/knewstuff3/downloadmanager.h include/KF5/KDELibs4Support/knewstuff3/downloadwidget.h include/KF5/KDELibs4Support/knewstuff3/entry.h include/KF5/KDELibs4Support/knewstuff3/knewstuffaction.h include/KF5/KDELibs4Support/knewstuff3/knewstuffbutton.h include/KF5/KDELibs4Support/knewstuff3/uploaddialog.h include/KF5/KDELibs4Support/knuminput.h include/KF5/KDELibs4Support/knumvalidator.h include/KF5/KDELibs4Support/kparts/factory.h include/KF5/KDELibs4Support/kparts/genericfactory.h include/KF5/KDELibs4Support/kparts/listingextension.h include/KF5/KDELibs4Support/kpassivepopupmessagehandler.h include/KF5/KDELibs4Support/kpixmapcache.h include/KF5/KDELibs4Support/kprintpreview.h include/KF5/KDELibs4Support/kprogressdialog.h include/KF5/KDELibs4Support/kpropsdialog.h include/KF5/KDELibs4Support/kpushbutton.h include/KF5/KDELibs4Support/krestrictedline.h include/KF5/KDELibs4Support/ksavefile.h include/KF5/KDELibs4Support/kscan.h include/KF5/KDELibs4Support/ksessionmanager.h include/KF5/KDELibs4Support/ksharedptr.h include/KF5/KDELibs4Support/kshortcut.h include/KF5/KDELibs4Support/ksocketfactory.h include/KF5/KDELibs4Support/ksplashscreen.h include/KF5/KDELibs4Support/kssl.h include/KF5/KDELibs4Support/ksslcertchain.h include/KF5/KDELibs4Support/ksslcertificate.h include/KF5/KDELibs4Support/ksslconfig.h include/KF5/KDELibs4Support/ksslutils.h include/KF5/KDELibs4Support/ksslx509v3.h include/KF5/KDELibs4Support/kstandarddirs.h include/KF5/KDELibs4Support/kstatusbar.h include/KF5/KDELibs4Support/kstringhandler_deprecated.h include/KF5/KDELibs4Support/kstringvalidator.h include/KF5/KDELibs4Support/ksystemtimezone.h include/KF5/KDELibs4Support/ksystemtrayicon.h include/KF5/KDELibs4Support/ktabbar.h include/KF5/KDELibs4Support/ktabwidget.h include/KF5/KDELibs4Support/ktempdir.h include/KF5/KDELibs4Support/ktemporaryfile.h include/KF5/KDELibs4Support/ktextbrowser.h include/KF5/KDELibs4Support/ktimezone.h include/KF5/KDELibs4Support/ktypelist.h include/KF5/KDELibs4Support/ktzfiletimezone.h include/KF5/KDELibs4Support/kundostack.h include/KF5/KDELibs4Support/kuniqueapplication.h include/KF5/KDELibs4Support/kurl.h include/KF5/KDELibs4Support/kvbox.h include/KF5/KDELibs4Support/kviewstatesaver.h include/KF5/KDELibs4Support/kxerrorhandler.h include/KF5/KDELibs4Support/predicateproperties.h include/KF5/KDELibs4Support/qtest_kde.h include/KF5/KDELibs4Support/solid/networking.h include/KF5/KDELibs4Support/solid/powermanagement.h lib/cmake/KDELibs4/KDELibsDependencies.cmake lib/cmake/KDELibs4/KF5KDELibs4LibraryTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KDELibs4/KF5KDELibs4LibraryTargets.cmake lib/cmake/KDELibs4/Win32.Manifest.in lib/cmake/KDELibs4/kde4_cmake_uninstall.cmake.in lib/cmake/KF5KDE4Support/KF5KDE4SupportConfig.cmake lib/cmake/KF5KDE4Support/KF5KDE4SupportConfigVersion.cmake lib/cmake/KF5KDELibs4Support/BasicFindPackageVersion.cmake.in lib/cmake/KF5KDELibs4Support/CheckPointerMember.cmake lib/cmake/KF5KDELibs4Support/CheckPrototypeExists.cmake lib/cmake/KF5KDELibs4Support/CheckStructMember.cmake lib/cmake/KF5KDELibs4Support/ECMQt4To5Porting.cmake lib/cmake/KF5KDELibs4Support/FindACL.cmake lib/cmake/KF5KDELibs4Support/FindAGG.cmake lib/cmake/KF5KDELibs4Support/FindAkode.cmake lib/cmake/KF5KDELibs4Support/FindAlsa.cmake lib/cmake/KF5KDELibs4Support/FindBerkeleyDB.cmake lib/cmake/KF5KDELibs4Support/FindBlitz.cmake lib/cmake/KF5KDELibs4Support/FindBlueZ.cmake lib/cmake/KF5KDELibs4Support/FindCarbon.cmake lib/cmake/KF5KDELibs4Support/FindENCHANT.cmake lib/cmake/KF5KDELibs4Support/FindEigen.cmake lib/cmake/KF5KDELibs4Support/FindEigen2.cmake lib/cmake/KF5KDELibs4Support/FindExiv2.cmake lib/cmake/KF5KDELibs4Support/FindFFmpeg.cmake lib/cmake/KF5KDELibs4Support/FindFlac.cmake lib/cmake/KF5KDELibs4Support/FindGMP.cmake lib/cmake/KF5KDELibs4Support/FindGObject.cmake lib/cmake/KF5KDELibs4Support/FindGStreamer.cmake lib/cmake/KF5KDELibs4Support/FindGettext.cmake lib/cmake/KF5KDELibs4Support/FindGphoto2.cmake lib/cmake/KF5KDELibs4Support/FindIOKit.cmake lib/cmake/KF5KDELibs4Support/FindKDE4Workspace.cmake lib/cmake/KF5KDELibs4Support/FindKDevPlatform.cmake lib/cmake/KF5KDELibs4Support/FindKF5Transitional.cmake lib/cmake/KF5KDELibs4Support/FindKdcraw.cmake lib/cmake/KF5KDELibs4Support/FindKdeMultimedia.cmake lib/cmake/KF5KDELibs4Support/FindKexiv2.cmake lib/cmake/KF5KDELibs4Support/FindKipi.cmake lib/cmake/KF5KDELibs4Support/FindKopete.cmake lib/cmake/KF5KDELibs4Support/FindKorundum.cmake lib/cmake/KF5KDELibs4Support/FindLCMS.cmake lib/cmake/KF5KDELibs4Support/FindLibArt.cmake lib/cmake/KF5KDELibs4Support/FindLibKonq.cmake lib/cmake/KF5KDELibs4Support/FindLibLZMA.cmake lib/cmake/KF5KDELibs4Support/FindLibPython.py lib/cmake/KF5KDELibs4Support/FindLibraryWithDebug.cmake lib/cmake/KF5KDELibs4Support/FindLinuxWirelesstools.cmake lib/cmake/KF5KDELibs4Support/FindMusicBrainz.cmake lib/cmake/KF5KDELibs4Support/FindMySQL.cmake lib/cmake/KF5KDELibs4Support/FindNepomuk.cmake lib/cmake/KF5KDELibs4Support/FindNetworkManager.cmake lib/cmake/KF5KDELibs4Support/FindOggVorbis.cmake lib/cmake/KF5KDELibs4Support/FindPlasma.cmake lib/cmake/KF5KDELibs4Support/FindPopplerQt4.cmake lib/cmake/KF5KDELibs4Support/FindPythonLibrary.cmake lib/cmake/KF5KDELibs4Support/FindQImageBlitz.cmake lib/cmake/KF5KDELibs4Support/FindQt5Transitional.cmake lib/cmake/KF5KDELibs4Support/FindSIP.cmake lib/cmake/KF5KDELibs4Support/FindSIP.py lib/cmake/KF5KDELibs4Support/FindSamba.cmake lib/cmake/KF5KDELibs4Support/FindSane.cmake lib/cmake/KF5KDELibs4Support/FindSasl2.cmake lib/cmake/KF5KDELibs4Support/FindSharedDesktopOntologies.cmake lib/cmake/KF5KDELibs4Support/FindSqlite.cmake lib/cmake/KF5KDELibs4Support/FindTaglib.cmake lib/cmake/KF5KDELibs4Support/FindUSB.cmake lib/cmake/KF5KDELibs4Support/FindWcecompat.cmake lib/cmake/KF5KDELibs4Support/FindXKB.cmake lib/cmake/KF5KDELibs4Support/FindXine.cmake lib/cmake/KF5KDELibs4Support/FindXmms.cmake lib/cmake/KF5KDELibs4Support/HandleImportedTargetsInCMakeRequiredLibraries.cmake lib/cmake/KF5KDELibs4Support/KDE4Defaults.cmake lib/cmake/KF5KDELibs4Support/KDE4Macros.cmake lib/cmake/KF5KDELibs4Support/KDECoreMacros.cmake lib/cmake/KF5KDELibs4Support/KDEUIMacros.cmake lib/cmake/KF5KDELibs4Support/KF5KDELibs4SupportConfig.cmake lib/cmake/KF5KDELibs4Support/KF5KDELibs4SupportConfigVersion.cmake lib/cmake/KF5KDELibs4Support/KF5KDELibs4SupportTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5KDELibs4Support/KF5KDELibs4SupportTargets.cmake lib/cmake/KF5KDELibs4Support/MacroAppendIf.cmake lib/cmake/KF5KDELibs4Support/MacroBoolTo01.cmake lib/cmake/KF5KDELibs4Support/MacroEnsureOutOfSourceBuild.cmake lib/cmake/KF5KDELibs4Support/MacroKAuth.cmake lib/cmake/KF5KDELibs4Support/MacroLibrary.cmake lib/cmake/KF5KDELibs4Support/NepomukAddOntologyClasses.cmake lib/cmake/KF5KDELibs4Support/NepomukMacros.cmake lib/cmake/KF5KDELibs4Support/PythonCompile.py lib/cmake/KF5KDELibs4Support/PythonMacros.cmake lib/cmake/KF5KDELibs4Support/SIPMacros.cmake lib/cmake/KF5KDELibs4Support/Win32Macros.cmake lib/cmake/KF5KDELibs4Support/check_installed_exports_file.cmake lib/cmake/KF5KDELibs4Support/cmake-modules-styleguide.txt lib/cmake/KF5KDELibs4Support/config-alsa.h.cmake lib/cmake/KF5KDELibs4Support/create_exe_symlink.cmake lib/cmake/KF5KDELibs4Support/kde4_exec_via_sh.cmake lib/cmake/KF5KDELibs4Support/kde4uic.cmake lib/libKF5KDELibs4Support.so lib/libKF5KDELibs4Support.so.5 lib/libKF5KDELibs4Support.so.%%KDE_FRAMEWORKS_VERSION%% lib/libexec/kf5/filesharelist lib/libexec/kf5/fileshareset %%QT_PLUGINDIR%%/designer/kf5deprecatedwidgets.so %%QT_PLUGINDIR%%/kcm_ssl.so %%QT_PLUGINDIR%%/kf5/kded/networkstatus.so %%QT_PLUGINDIR%%/kf5/kio/metainfo.so -man/ca/man1/kf5-config.1.gz -man/ca@valencia/man1/kf5-config.1.gz -man/de/man1/kf5-config.1.gz -man/es/man1/kf5-config.1.gz -man/fr/man1/kf5-config.1.gz -man/it/man1/kf5-config.1.gz -man/man1/kf5-config.1.gz -man/nl/man1/kf5-config.1.gz -man/pt/man1/kf5-config.1.gz -man/pt_BR/man1/kf5-config.1.gz -man/sv/man1/kf5-config.1.gz -man/uk/man1/kf5-config.1.gz share/dbus-1/interfaces/kf5_org.freedesktop.PowerManagement.Inhibit.xml share/dbus-1/interfaces/kf5_org.freedesktop.PowerManagement.xml share/dbus-1/interfaces/kf5_org.kde.Solid.Networking.Client.xml share/dbus-1/interfaces/kf5_org.kde.Solid.PowerManagement.PolicyAgent.xml share/doc/HTML/ca/kcontrol5/kcm_ssl/details.png share/doc/HTML/ca/kcontrol5/kcm_ssl/index.cache.bz2 share/doc/HTML/ca/kcontrol5/kcm_ssl/index.docbook share/doc/HTML/ca/kcontrol5/kcm_ssl/module.png share/doc/HTML/ca/kdebugdialog5/index.cache.bz2 share/doc/HTML/ca/kdebugdialog5/index.docbook share/doc/HTML/ca@valencia/kcontrol5/kcm_ssl/index.cache.bz2 share/doc/HTML/ca@valencia/kcontrol5/kcm_ssl/index.docbook share/doc/HTML/ca@valencia/kdebugdialog5/index.cache.bz2 share/doc/HTML/ca@valencia/kdebugdialog5/index.docbook share/doc/HTML/de/kcontrol5/kcm_ssl/index.cache.bz2 share/doc/HTML/de/kcontrol5/kcm_ssl/index.docbook share/doc/HTML/de/kdebugdialog5/index.cache.bz2 share/doc/HTML/de/kdebugdialog5/index.docbook share/doc/HTML/en/kcontrol5/kcm_ssl/details.png share/doc/HTML/en/kcontrol5/kcm_ssl/index.cache.bz2 share/doc/HTML/en/kcontrol5/kcm_ssl/index.docbook share/doc/HTML/en/kcontrol5/kcm_ssl/module.png share/doc/HTML/en/kdebugdialog5/index.cache.bz2 share/doc/HTML/en/kdebugdialog5/index.docbook share/doc/HTML/es/kcontrol5/kcm_ssl/index.cache.bz2 share/doc/HTML/es/kcontrol5/kcm_ssl/index.docbook share/doc/HTML/es/kdebugdialog5/index.cache.bz2 share/doc/HTML/es/kdebugdialog5/index.docbook share/doc/HTML/fr/kcontrol5/kcm_ssl/index.cache.bz2 share/doc/HTML/fr/kcontrol5/kcm_ssl/index.docbook share/doc/HTML/fr/kdebugdialog5/index.cache.bz2 share/doc/HTML/fr/kdebugdialog5/index.docbook share/doc/HTML/it/kcontrol5/kcm_ssl/index.cache.bz2 share/doc/HTML/it/kcontrol5/kcm_ssl/index.docbook share/doc/HTML/it/kdebugdialog5/index.cache.bz2 share/doc/HTML/it/kdebugdialog5/index.docbook share/doc/HTML/nl/kcontrol5/kcm_ssl/index.cache.bz2 share/doc/HTML/nl/kcontrol5/kcm_ssl/index.docbook share/doc/HTML/nl/kdebugdialog5/index.cache.bz2 share/doc/HTML/nl/kdebugdialog5/index.docbook share/doc/HTML/pt/kcontrol5/kcm_ssl/index.cache.bz2 share/doc/HTML/pt/kcontrol5/kcm_ssl/index.docbook share/doc/HTML/pt/kdebugdialog5/index.cache.bz2 share/doc/HTML/pt/kdebugdialog5/index.docbook share/doc/HTML/pt_BR/kcontrol5/kcm_ssl/details.png share/doc/HTML/pt_BR/kcontrol5/kcm_ssl/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol5/kcm_ssl/index.docbook share/doc/HTML/pt_BR/kcontrol5/kcm_ssl/module.png share/doc/HTML/pt_BR/kdebugdialog5/index.cache.bz2 share/doc/HTML/pt_BR/kdebugdialog5/index.docbook share/doc/HTML/ru/kcontrol5/kcm_ssl/index.cache.bz2 share/doc/HTML/ru/kcontrol5/kcm_ssl/index.docbook share/doc/HTML/sr/kdebugdialog5/index.cache.bz2 share/doc/HTML/sr/kdebugdialog5/index.docbook share/doc/HTML/sr@latin/kdebugdialog5/index.cache.bz2 share/doc/HTML/sr@latin/kdebugdialog5/index.docbook share/doc/HTML/sv/kcontrol5/kcm_ssl/index.cache.bz2 share/doc/HTML/sv/kcontrol5/kcm_ssl/index.docbook share/doc/HTML/sv/kdebugdialog5/index.cache.bz2 share/doc/HTML/sv/kdebugdialog5/index.docbook share/doc/HTML/uk/kcontrol5/kcm_ssl/index.cache.bz2 share/doc/HTML/uk/kcontrol5/kcm_ssl/index.docbook share/doc/HTML/uk/kdebugdialog5/index.cache.bz2 share/doc/HTML/uk/kdebugdialog5/index.docbook share/kf5/kdoctools/customization/catalog4.xml share/kf5/kdoctools/customization/dtd/kdex.dtd share/kf5/kssl/ca-bundle.crt share/kf5/locale/countries/C/country.desktop share/kf5/locale/countries/C/flag.png share/kf5/locale/countries/ad/country.desktop share/kf5/locale/countries/ad/flag.png share/kf5/locale/countries/ae/country.desktop share/kf5/locale/countries/ae/flag.png share/kf5/locale/countries/af/country.desktop share/kf5/locale/countries/af/flag.png share/kf5/locale/countries/ag/country.desktop share/kf5/locale/countries/ag/flag.png share/kf5/locale/countries/ai/country.desktop share/kf5/locale/countries/ai/flag.png share/kf5/locale/countries/al/country.desktop share/kf5/locale/countries/al/flag.png share/kf5/locale/countries/am/country.desktop share/kf5/locale/countries/am/flag.png share/kf5/locale/countries/an/country.desktop share/kf5/locale/countries/an/flag.png share/kf5/locale/countries/ao/country.desktop share/kf5/locale/countries/ao/flag.png share/kf5/locale/countries/ar/country.desktop share/kf5/locale/countries/ar/flag.png share/kf5/locale/countries/as/country.desktop share/kf5/locale/countries/as/flag.png share/kf5/locale/countries/at/country.desktop share/kf5/locale/countries/at/flag.png share/kf5/locale/countries/au/country.desktop share/kf5/locale/countries/au/flag.png share/kf5/locale/countries/aw/country.desktop share/kf5/locale/countries/aw/flag.png share/kf5/locale/countries/ax/country.desktop share/kf5/locale/countries/ax/flag.png share/kf5/locale/countries/az/country.desktop share/kf5/locale/countries/az/flag.png share/kf5/locale/countries/ba/country.desktop share/kf5/locale/countries/ba/flag.png share/kf5/locale/countries/bb/country.desktop share/kf5/locale/countries/bb/flag.png share/kf5/locale/countries/bd/country.desktop share/kf5/locale/countries/bd/flag.png share/kf5/locale/countries/be/country.desktop share/kf5/locale/countries/be/flag.png share/kf5/locale/countries/bf/country.desktop share/kf5/locale/countries/bf/flag.png share/kf5/locale/countries/bg/country.desktop share/kf5/locale/countries/bg/flag.png share/kf5/locale/countries/bh/country.desktop share/kf5/locale/countries/bh/flag.png share/kf5/locale/countries/bi/country.desktop share/kf5/locale/countries/bi/flag.png share/kf5/locale/countries/bj/country.desktop share/kf5/locale/countries/bj/flag.png share/kf5/locale/countries/bl/country.desktop share/kf5/locale/countries/bl/flag.png share/kf5/locale/countries/bm/country.desktop share/kf5/locale/countries/bm/flag.png share/kf5/locale/countries/bn/country.desktop share/kf5/locale/countries/bn/flag.png share/kf5/locale/countries/bo/country.desktop share/kf5/locale/countries/bo/flag.png share/kf5/locale/countries/br/country.desktop share/kf5/locale/countries/br/flag.png share/kf5/locale/countries/bs/country.desktop share/kf5/locale/countries/bs/flag.png share/kf5/locale/countries/bt/country.desktop share/kf5/locale/countries/bt/flag.png share/kf5/locale/countries/bw/country.desktop share/kf5/locale/countries/bw/flag.png share/kf5/locale/countries/by/country.desktop share/kf5/locale/countries/by/flag.png share/kf5/locale/countries/bz/country.desktop share/kf5/locale/countries/bz/flag.png share/kf5/locale/countries/ca/country.desktop share/kf5/locale/countries/ca/flag.png share/kf5/locale/countries/caribbean.desktop share/kf5/locale/countries/cc/country.desktop share/kf5/locale/countries/cc/flag.png share/kf5/locale/countries/cd/country.desktop share/kf5/locale/countries/cd/flag.png share/kf5/locale/countries/centralafrica.desktop share/kf5/locale/countries/centralamerica.desktop share/kf5/locale/countries/centralasia.desktop share/kf5/locale/countries/centraleurope.desktop share/kf5/locale/countries/cf/country.desktop share/kf5/locale/countries/cf/flag.png share/kf5/locale/countries/cg/country.desktop share/kf5/locale/countries/cg/flag.png share/kf5/locale/countries/ch/country.desktop share/kf5/locale/countries/ch/flag.png share/kf5/locale/countries/ci/country.desktop share/kf5/locale/countries/ci/flag.png share/kf5/locale/countries/ck/country.desktop share/kf5/locale/countries/ck/flag.png share/kf5/locale/countries/cl/country.desktop share/kf5/locale/countries/cl/flag.png share/kf5/locale/countries/cm/country.desktop share/kf5/locale/countries/cm/flag.png share/kf5/locale/countries/cn/country.desktop share/kf5/locale/countries/cn/flag.png share/kf5/locale/countries/co/country.desktop share/kf5/locale/countries/co/flag.png share/kf5/locale/countries/cr/country.desktop share/kf5/locale/countries/cr/flag.png share/kf5/locale/countries/cu/country.desktop share/kf5/locale/countries/cu/flag.png share/kf5/locale/countries/cv/country.desktop share/kf5/locale/countries/cv/flag.png share/kf5/locale/countries/cx/country.desktop share/kf5/locale/countries/cx/flag.png share/kf5/locale/countries/cy/country.desktop share/kf5/locale/countries/cy/flag.png share/kf5/locale/countries/cz/country.desktop share/kf5/locale/countries/cz/flag.png share/kf5/locale/countries/de/country.desktop share/kf5/locale/countries/de/flag.png share/kf5/locale/countries/dj/country.desktop share/kf5/locale/countries/dj/flag.png share/kf5/locale/countries/dk/country.desktop share/kf5/locale/countries/dk/flag.png share/kf5/locale/countries/dm/country.desktop share/kf5/locale/countries/dm/flag.png share/kf5/locale/countries/do/country.desktop share/kf5/locale/countries/do/flag.png share/kf5/locale/countries/dz/country.desktop share/kf5/locale/countries/dz/flag.png share/kf5/locale/countries/eastafrica.desktop share/kf5/locale/countries/eastasia.desktop share/kf5/locale/countries/easteurope.desktop share/kf5/locale/countries/ec/country.desktop share/kf5/locale/countries/ec/flag.png share/kf5/locale/countries/ee/country.desktop share/kf5/locale/countries/ee/flag.png share/kf5/locale/countries/eg/country.desktop share/kf5/locale/countries/eg/flag.png share/kf5/locale/countries/eh/country.desktop share/kf5/locale/countries/eh/flag.png share/kf5/locale/countries/epo/country.desktop share/kf5/locale/countries/epo/flag.png share/kf5/locale/countries/er/country.desktop share/kf5/locale/countries/er/flag.png share/kf5/locale/countries/es/country.desktop share/kf5/locale/countries/es/flag.png share/kf5/locale/countries/et/country.desktop share/kf5/locale/countries/et/flag.png share/kf5/locale/countries/fi/country.desktop share/kf5/locale/countries/fi/flag.png share/kf5/locale/countries/fj/country.desktop share/kf5/locale/countries/fj/flag.png share/kf5/locale/countries/fk/country.desktop share/kf5/locale/countries/fk/flag.png share/kf5/locale/countries/fm/country.desktop share/kf5/locale/countries/fm/flag.png share/kf5/locale/countries/fo/country.desktop share/kf5/locale/countries/fo/flag.png share/kf5/locale/countries/fr/country.desktop share/kf5/locale/countries/fr/flag.png share/kf5/locale/countries/ga/country.desktop share/kf5/locale/countries/ga/flag.png share/kf5/locale/countries/gb/country.desktop share/kf5/locale/countries/gb/flag.png share/kf5/locale/countries/gd/country.desktop share/kf5/locale/countries/gd/flag.png share/kf5/locale/countries/ge/country.desktop share/kf5/locale/countries/ge/flag.png share/kf5/locale/countries/gf/country.desktop share/kf5/locale/countries/gf/flag.png share/kf5/locale/countries/gg/country.desktop share/kf5/locale/countries/gg/flag.png share/kf5/locale/countries/gh/country.desktop share/kf5/locale/countries/gh/flag.png share/kf5/locale/countries/gi/country.desktop share/kf5/locale/countries/gi/flag.png share/kf5/locale/countries/gl/country.desktop share/kf5/locale/countries/gl/flag.png share/kf5/locale/countries/gm/country.desktop share/kf5/locale/countries/gm/flag.png share/kf5/locale/countries/gn/country.desktop share/kf5/locale/countries/gn/flag.png share/kf5/locale/countries/gp/country.desktop share/kf5/locale/countries/gp/flag.png share/kf5/locale/countries/gq/country.desktop share/kf5/locale/countries/gq/flag.png share/kf5/locale/countries/gr/country.desktop share/kf5/locale/countries/gr/flag.png share/kf5/locale/countries/gt/country.desktop share/kf5/locale/countries/gt/flag.png share/kf5/locale/countries/gu/country.desktop share/kf5/locale/countries/gu/flag.png share/kf5/locale/countries/gw/country.desktop share/kf5/locale/countries/gw/flag.png share/kf5/locale/countries/gy/country.desktop share/kf5/locale/countries/gy/flag.png share/kf5/locale/countries/hk/country.desktop share/kf5/locale/countries/hk/flag.png share/kf5/locale/countries/hn/country.desktop share/kf5/locale/countries/hn/flag.png share/kf5/locale/countries/hr/country.desktop share/kf5/locale/countries/hr/flag.png share/kf5/locale/countries/ht/country.desktop share/kf5/locale/countries/ht/flag.png share/kf5/locale/countries/hu/country.desktop share/kf5/locale/countries/hu/flag.png share/kf5/locale/countries/id/country.desktop share/kf5/locale/countries/id/flag.png share/kf5/locale/countries/ie/country.desktop share/kf5/locale/countries/ie/flag.png share/kf5/locale/countries/il/country.desktop share/kf5/locale/countries/il/flag.png share/kf5/locale/countries/im/country.desktop share/kf5/locale/countries/im/flag.png share/kf5/locale/countries/in/country.desktop share/kf5/locale/countries/in/flag.png share/kf5/locale/countries/iq/country.desktop share/kf5/locale/countries/iq/flag.png share/kf5/locale/countries/ir/country.desktop share/kf5/locale/countries/ir/flag.png share/kf5/locale/countries/is/country.desktop share/kf5/locale/countries/is/flag.png share/kf5/locale/countries/it/country.desktop share/kf5/locale/countries/it/flag.png share/kf5/locale/countries/je/country.desktop share/kf5/locale/countries/je/flag.png share/kf5/locale/countries/jm/country.desktop share/kf5/locale/countries/jm/flag.png share/kf5/locale/countries/jo/country.desktop share/kf5/locale/countries/jo/flag.png share/kf5/locale/countries/jp/country.desktop share/kf5/locale/countries/jp/flag.png share/kf5/locale/countries/ke/country.desktop share/kf5/locale/countries/ke/flag.png share/kf5/locale/countries/kg/country.desktop share/kf5/locale/countries/kg/flag.png share/kf5/locale/countries/kh/country.desktop share/kf5/locale/countries/kh/flag.png share/kf5/locale/countries/ki/country.desktop share/kf5/locale/countries/ki/flag.png share/kf5/locale/countries/km/country.desktop share/kf5/locale/countries/km/flag.png share/kf5/locale/countries/kn/country.desktop share/kf5/locale/countries/kn/flag.png share/kf5/locale/countries/kp/country.desktop share/kf5/locale/countries/kp/flag.png share/kf5/locale/countries/kr/country.desktop share/kf5/locale/countries/kr/flag.png share/kf5/locale/countries/kw/country.desktop share/kf5/locale/countries/kw/flag.png share/kf5/locale/countries/ky/country.desktop share/kf5/locale/countries/ky/flag.png share/kf5/locale/countries/kz/country.desktop share/kf5/locale/countries/kz/flag.png share/kf5/locale/countries/la/country.desktop share/kf5/locale/countries/la/flag.png share/kf5/locale/countries/lb/country.desktop share/kf5/locale/countries/lb/flag.png share/kf5/locale/countries/lc/country.desktop share/kf5/locale/countries/lc/flag.png share/kf5/locale/countries/li/country.desktop share/kf5/locale/countries/li/flag.png share/kf5/locale/countries/lk/country.desktop share/kf5/locale/countries/lk/flag.png share/kf5/locale/countries/lr/country.desktop share/kf5/locale/countries/lr/flag.png share/kf5/locale/countries/ls/country.desktop share/kf5/locale/countries/ls/flag.png share/kf5/locale/countries/lt/country.desktop share/kf5/locale/countries/lt/flag.png share/kf5/locale/countries/lu/country.desktop share/kf5/locale/countries/lu/flag.png share/kf5/locale/countries/lv/country.desktop share/kf5/locale/countries/lv/flag.png share/kf5/locale/countries/ly/country.desktop share/kf5/locale/countries/ly/flag.png share/kf5/locale/countries/ma/country.desktop share/kf5/locale/countries/ma/flag.png share/kf5/locale/countries/mc/country.desktop share/kf5/locale/countries/mc/flag.png share/kf5/locale/countries/md/country.desktop share/kf5/locale/countries/md/flag.png share/kf5/locale/countries/me/country.desktop share/kf5/locale/countries/me/flag.png share/kf5/locale/countries/mf/country.desktop share/kf5/locale/countries/mf/flag.png share/kf5/locale/countries/mg/country.desktop share/kf5/locale/countries/mg/flag.png share/kf5/locale/countries/mh/country.desktop share/kf5/locale/countries/mh/flag.png share/kf5/locale/countries/middleeast.desktop share/kf5/locale/countries/mk/country.desktop share/kf5/locale/countries/mk/flag.png share/kf5/locale/countries/ml/country.desktop share/kf5/locale/countries/ml/flag.png share/kf5/locale/countries/mm/country.desktop share/kf5/locale/countries/mm/flag.png share/kf5/locale/countries/mn/country.desktop share/kf5/locale/countries/mn/flag.png share/kf5/locale/countries/mo/country.desktop share/kf5/locale/countries/mo/flag.png share/kf5/locale/countries/mp/country.desktop share/kf5/locale/countries/mp/flag.png share/kf5/locale/countries/mq/country.desktop share/kf5/locale/countries/mq/flag.png share/kf5/locale/countries/mr/country.desktop share/kf5/locale/countries/mr/flag.png share/kf5/locale/countries/ms/country.desktop share/kf5/locale/countries/ms/flag.png share/kf5/locale/countries/mt/country.desktop share/kf5/locale/countries/mt/flag.png share/kf5/locale/countries/mu/country.desktop share/kf5/locale/countries/mu/flag.png share/kf5/locale/countries/mv/country.desktop share/kf5/locale/countries/mv/flag.png share/kf5/locale/countries/mw/country.desktop share/kf5/locale/countries/mw/flag.png share/kf5/locale/countries/mx/country.desktop share/kf5/locale/countries/mx/flag.png share/kf5/locale/countries/my/country.desktop share/kf5/locale/countries/my/flag.png share/kf5/locale/countries/mz/country.desktop share/kf5/locale/countries/mz/flag.png share/kf5/locale/countries/na/country.desktop share/kf5/locale/countries/na/flag.png share/kf5/locale/countries/nc/country.desktop share/kf5/locale/countries/nc/flag.png share/kf5/locale/countries/ne/country.desktop share/kf5/locale/countries/ne/flag.png share/kf5/locale/countries/nf/country.desktop share/kf5/locale/countries/nf/flag.png share/kf5/locale/countries/ng/country.desktop share/kf5/locale/countries/ng/flag.png share/kf5/locale/countries/ni/country.desktop share/kf5/locale/countries/ni/flag.png share/kf5/locale/countries/nl/country.desktop share/kf5/locale/countries/nl/flag.png share/kf5/locale/countries/no/country.desktop share/kf5/locale/countries/no/flag.png share/kf5/locale/countries/northafrica.desktop share/kf5/locale/countries/northamerica.desktop share/kf5/locale/countries/northeurope.desktop share/kf5/locale/countries/np/country.desktop share/kf5/locale/countries/np/flag.png share/kf5/locale/countries/nr/country.desktop share/kf5/locale/countries/nr/flag.png share/kf5/locale/countries/nu/country.desktop share/kf5/locale/countries/nu/flag.png share/kf5/locale/countries/nz/country.desktop share/kf5/locale/countries/nz/flag.png share/kf5/locale/countries/oceania.desktop share/kf5/locale/countries/om/country.desktop share/kf5/locale/countries/om/flag.png share/kf5/locale/countries/pa/country.desktop share/kf5/locale/countries/pa/flag.png share/kf5/locale/countries/pe/country.desktop share/kf5/locale/countries/pe/flag.png share/kf5/locale/countries/pf/country.desktop share/kf5/locale/countries/pf/flag.png share/kf5/locale/countries/pg/country.desktop share/kf5/locale/countries/pg/flag.png share/kf5/locale/countries/ph/country.desktop share/kf5/locale/countries/ph/flag.png share/kf5/locale/countries/pk/country.desktop share/kf5/locale/countries/pk/flag.png share/kf5/locale/countries/pl/country.desktop share/kf5/locale/countries/pl/flag.png share/kf5/locale/countries/pm/country.desktop share/kf5/locale/countries/pm/flag.png share/kf5/locale/countries/pn/country.desktop share/kf5/locale/countries/pn/flag.png share/kf5/locale/countries/pr/country.desktop share/kf5/locale/countries/pr/flag.png share/kf5/locale/countries/ps/country.desktop share/kf5/locale/countries/ps/flag.png share/kf5/locale/countries/pt/country.desktop share/kf5/locale/countries/pt/flag.png share/kf5/locale/countries/pw/country.desktop share/kf5/locale/countries/pw/flag.png share/kf5/locale/countries/py/country.desktop share/kf5/locale/countries/py/flag.png share/kf5/locale/countries/qa/country.desktop share/kf5/locale/countries/qa/flag.png share/kf5/locale/countries/re/country.desktop share/kf5/locale/countries/re/flag.png share/kf5/locale/countries/ro/country.desktop share/kf5/locale/countries/ro/flag.png share/kf5/locale/countries/rs/country.desktop share/kf5/locale/countries/rs/flag.png share/kf5/locale/countries/ru/country.desktop share/kf5/locale/countries/ru/flag.png share/kf5/locale/countries/rw/country.desktop share/kf5/locale/countries/rw/flag.png share/kf5/locale/countries/sa/country.desktop share/kf5/locale/countries/sa/flag.png share/kf5/locale/countries/sb/country.desktop share/kf5/locale/countries/sb/flag.png share/kf5/locale/countries/sc/country.desktop share/kf5/locale/countries/sc/flag.png share/kf5/locale/countries/sd/country.desktop share/kf5/locale/countries/sd/flag.png share/kf5/locale/countries/se/country.desktop share/kf5/locale/countries/se/flag.png share/kf5/locale/countries/sg/country.desktop share/kf5/locale/countries/sg/flag.png share/kf5/locale/countries/sh/country.desktop share/kf5/locale/countries/sh/flag.png share/kf5/locale/countries/si/country.desktop share/kf5/locale/countries/si/flag.png share/kf5/locale/countries/sk/country.desktop share/kf5/locale/countries/sk/flag.png share/kf5/locale/countries/sl/country.desktop share/kf5/locale/countries/sl/flag.png share/kf5/locale/countries/sm/country.desktop share/kf5/locale/countries/sm/flag.png share/kf5/locale/countries/sn/country.desktop share/kf5/locale/countries/sn/flag.png share/kf5/locale/countries/so/country.desktop share/kf5/locale/countries/so/flag.png share/kf5/locale/countries/southafrica.desktop share/kf5/locale/countries/southamerica.desktop share/kf5/locale/countries/southasia.desktop share/kf5/locale/countries/southeastasia.desktop share/kf5/locale/countries/southeurope.desktop share/kf5/locale/countries/sr/country.desktop share/kf5/locale/countries/sr/flag.png share/kf5/locale/countries/ss/country.desktop share/kf5/locale/countries/ss/flag.png share/kf5/locale/countries/st/country.desktop share/kf5/locale/countries/st/flag.png share/kf5/locale/countries/sv/country.desktop share/kf5/locale/countries/sv/flag.png share/kf5/locale/countries/sy/country.desktop share/kf5/locale/countries/sy/flag.png share/kf5/locale/countries/sz/country.desktop share/kf5/locale/countries/sz/flag.png share/kf5/locale/countries/tc/country.desktop share/kf5/locale/countries/tc/flag.png share/kf5/locale/countries/td/country.desktop share/kf5/locale/countries/td/flag.png share/kf5/locale/countries/tg/country.desktop share/kf5/locale/countries/tg/flag.png share/kf5/locale/countries/th/country.desktop share/kf5/locale/countries/th/flag.png share/kf5/locale/countries/tj/country.desktop share/kf5/locale/countries/tj/flag.png share/kf5/locale/countries/tk/country.desktop share/kf5/locale/countries/tk/flag.png share/kf5/locale/countries/tl/country.desktop share/kf5/locale/countries/tl/flag.png share/kf5/locale/countries/tm/country.desktop share/kf5/locale/countries/tm/flag.png share/kf5/locale/countries/tn/country.desktop share/kf5/locale/countries/tn/flag.png share/kf5/locale/countries/to/country.desktop share/kf5/locale/countries/to/flag.png share/kf5/locale/countries/tp/country.desktop share/kf5/locale/countries/tp/flag.png share/kf5/locale/countries/tr/country.desktop share/kf5/locale/countries/tr/flag.png share/kf5/locale/countries/tt/country.desktop share/kf5/locale/countries/tt/flag.png share/kf5/locale/countries/tv/country.desktop share/kf5/locale/countries/tv/flag.png share/kf5/locale/countries/tw/country.desktop share/kf5/locale/countries/tw/flag.png share/kf5/locale/countries/tz/country.desktop share/kf5/locale/countries/tz/flag.png share/kf5/locale/countries/ua/country.desktop share/kf5/locale/countries/ua/flag.png share/kf5/locale/countries/ug/country.desktop share/kf5/locale/countries/ug/flag.png share/kf5/locale/countries/us/country.desktop share/kf5/locale/countries/us/flag.png share/kf5/locale/countries/uy/country.desktop share/kf5/locale/countries/uy/flag.png share/kf5/locale/countries/uz/country.desktop share/kf5/locale/countries/uz/flag.png share/kf5/locale/countries/va/country.desktop share/kf5/locale/countries/va/flag.png share/kf5/locale/countries/vc/country.desktop share/kf5/locale/countries/vc/flag.png share/kf5/locale/countries/ve/country.desktop share/kf5/locale/countries/ve/flag.png share/kf5/locale/countries/vg/country.desktop share/kf5/locale/countries/vg/flag.png share/kf5/locale/countries/vi/country.desktop share/kf5/locale/countries/vi/flag.png share/kf5/locale/countries/vn/country.desktop share/kf5/locale/countries/vn/flag.png share/kf5/locale/countries/vu/country.desktop share/kf5/locale/countries/vu/flag.png share/kf5/locale/countries/westafrica.desktop share/kf5/locale/countries/westeurope.desktop share/kf5/locale/countries/wf/country.desktop share/kf5/locale/countries/wf/flag.png share/kf5/locale/countries/ws/country.desktop share/kf5/locale/countries/ws/flag.png share/kf5/locale/countries/ye/country.desktop share/kf5/locale/countries/ye/flag.png share/kf5/locale/countries/yt/country.desktop share/kf5/locale/countries/yt/flag.png share/kf5/locale/countries/za/country.desktop share/kf5/locale/countries/za/flag.png share/kf5/locale/countries/zm/country.desktop share/kf5/locale/countries/zm/flag.png share/kf5/locale/countries/zw/country.desktop share/kf5/locale/countries/zw/flag.png share/kf5/locale/currency/adf.desktop share/kf5/locale/currency/adp.desktop share/kf5/locale/currency/aed.desktop share/kf5/locale/currency/afa.desktop share/kf5/locale/currency/afn.desktop share/kf5/locale/currency/all.desktop share/kf5/locale/currency/amd.desktop share/kf5/locale/currency/ang.desktop share/kf5/locale/currency/aoa.desktop share/kf5/locale/currency/aon.desktop share/kf5/locale/currency/ars.desktop share/kf5/locale/currency/ats.desktop share/kf5/locale/currency/aud.desktop share/kf5/locale/currency/awg.desktop share/kf5/locale/currency/azm.desktop share/kf5/locale/currency/azn.desktop share/kf5/locale/currency/bam.desktop share/kf5/locale/currency/bbd.desktop share/kf5/locale/currency/bdt.desktop share/kf5/locale/currency/bef.desktop share/kf5/locale/currency/bgl.desktop share/kf5/locale/currency/bgn.desktop share/kf5/locale/currency/bhd.desktop share/kf5/locale/currency/bif.desktop share/kf5/locale/currency/bmd.desktop share/kf5/locale/currency/bnd.desktop share/kf5/locale/currency/bob.desktop share/kf5/locale/currency/bov.desktop share/kf5/locale/currency/brl.desktop share/kf5/locale/currency/bsd.desktop share/kf5/locale/currency/btn.desktop share/kf5/locale/currency/bwp.desktop share/kf5/locale/currency/byr.desktop share/kf5/locale/currency/bzd.desktop share/kf5/locale/currency/cad.desktop share/kf5/locale/currency/cdf.desktop share/kf5/locale/currency/chf.desktop share/kf5/locale/currency/clf.desktop share/kf5/locale/currency/clp.desktop share/kf5/locale/currency/cny.desktop share/kf5/locale/currency/cop.desktop share/kf5/locale/currency/cou.desktop share/kf5/locale/currency/crc.desktop share/kf5/locale/currency/cuc.desktop share/kf5/locale/currency/cup.desktop share/kf5/locale/currency/cve.desktop share/kf5/locale/currency/cyp.desktop share/kf5/locale/currency/czk.desktop share/kf5/locale/currency/dem.desktop share/kf5/locale/currency/djf.desktop share/kf5/locale/currency/dkk.desktop share/kf5/locale/currency/dop.desktop share/kf5/locale/currency/dzd.desktop share/kf5/locale/currency/eek.desktop share/kf5/locale/currency/egp.desktop share/kf5/locale/currency/ern.desktop share/kf5/locale/currency/esp.desktop share/kf5/locale/currency/etb.desktop share/kf5/locale/currency/eur.desktop share/kf5/locale/currency/fim.desktop share/kf5/locale/currency/fjd.desktop share/kf5/locale/currency/fkp.desktop share/kf5/locale/currency/frf.desktop share/kf5/locale/currency/gbp.desktop share/kf5/locale/currency/gel.desktop share/kf5/locale/currency/ghc.desktop share/kf5/locale/currency/ghs.desktop share/kf5/locale/currency/gip.desktop share/kf5/locale/currency/gmd.desktop share/kf5/locale/currency/gnf.desktop share/kf5/locale/currency/grd.desktop share/kf5/locale/currency/gtq.desktop share/kf5/locale/currency/gwp.desktop share/kf5/locale/currency/gyd.desktop share/kf5/locale/currency/hkd.desktop share/kf5/locale/currency/hnl.desktop share/kf5/locale/currency/hrk.desktop share/kf5/locale/currency/htg.desktop share/kf5/locale/currency/huf.desktop share/kf5/locale/currency/idr.desktop share/kf5/locale/currency/iep.desktop share/kf5/locale/currency/ils.desktop share/kf5/locale/currency/inr.desktop share/kf5/locale/currency/iqd.desktop share/kf5/locale/currency/irr.desktop share/kf5/locale/currency/isk.desktop share/kf5/locale/currency/itl.desktop share/kf5/locale/currency/jmd.desktop share/kf5/locale/currency/jod.desktop share/kf5/locale/currency/jpy.desktop share/kf5/locale/currency/kes.desktop share/kf5/locale/currency/kgs.desktop share/kf5/locale/currency/khr.desktop share/kf5/locale/currency/kmf.desktop share/kf5/locale/currency/kpw.desktop share/kf5/locale/currency/krw.desktop share/kf5/locale/currency/kwd.desktop share/kf5/locale/currency/kyd.desktop share/kf5/locale/currency/kzt.desktop share/kf5/locale/currency/lak.desktop share/kf5/locale/currency/lbp.desktop share/kf5/locale/currency/lkr.desktop share/kf5/locale/currency/lrd.desktop share/kf5/locale/currency/lsl.desktop share/kf5/locale/currency/ltl.desktop share/kf5/locale/currency/luf.desktop share/kf5/locale/currency/lvl.desktop share/kf5/locale/currency/lyd.desktop share/kf5/locale/currency/mad.desktop share/kf5/locale/currency/mdl.desktop share/kf5/locale/currency/mga.desktop share/kf5/locale/currency/mgf.desktop share/kf5/locale/currency/mkd.desktop share/kf5/locale/currency/mlf.desktop share/kf5/locale/currency/mmk.desktop share/kf5/locale/currency/mnt.desktop share/kf5/locale/currency/mop.desktop share/kf5/locale/currency/mro.desktop share/kf5/locale/currency/mtl.desktop share/kf5/locale/currency/mur.desktop share/kf5/locale/currency/mvr.desktop share/kf5/locale/currency/mwk.desktop share/kf5/locale/currency/mxn.desktop share/kf5/locale/currency/mxv.desktop share/kf5/locale/currency/myr.desktop share/kf5/locale/currency/mzm.desktop share/kf5/locale/currency/mzn.desktop share/kf5/locale/currency/nad.desktop share/kf5/locale/currency/ngn.desktop share/kf5/locale/currency/nio.desktop share/kf5/locale/currency/nlg.desktop share/kf5/locale/currency/nok.desktop share/kf5/locale/currency/npr.desktop share/kf5/locale/currency/nzd.desktop share/kf5/locale/currency/omr.desktop share/kf5/locale/currency/pab.desktop share/kf5/locale/currency/pen.desktop share/kf5/locale/currency/pgk.desktop share/kf5/locale/currency/php.desktop share/kf5/locale/currency/pkr.desktop share/kf5/locale/currency/pln.desktop share/kf5/locale/currency/pte.desktop share/kf5/locale/currency/pyg.desktop share/kf5/locale/currency/qar.desktop share/kf5/locale/currency/rol.desktop share/kf5/locale/currency/ron.desktop share/kf5/locale/currency/rsd.desktop share/kf5/locale/currency/rub.desktop share/kf5/locale/currency/rur.desktop share/kf5/locale/currency/rwf.desktop share/kf5/locale/currency/sar.desktop share/kf5/locale/currency/sbd.desktop share/kf5/locale/currency/scr.desktop share/kf5/locale/currency/sdd.desktop share/kf5/locale/currency/sdg.desktop share/kf5/locale/currency/sek.desktop share/kf5/locale/currency/sgd.desktop share/kf5/locale/currency/shp.desktop share/kf5/locale/currency/sit.desktop share/kf5/locale/currency/skk.desktop share/kf5/locale/currency/sll.desktop share/kf5/locale/currency/sos.desktop share/kf5/locale/currency/srd.desktop share/kf5/locale/currency/srg.desktop share/kf5/locale/currency/ssp.desktop share/kf5/locale/currency/std.desktop share/kf5/locale/currency/svc.desktop share/kf5/locale/currency/syp.desktop share/kf5/locale/currency/szl.desktop share/kf5/locale/currency/thb.desktop share/kf5/locale/currency/tjs.desktop share/kf5/locale/currency/tmm.desktop share/kf5/locale/currency/tmt.desktop share/kf5/locale/currency/tnd.desktop share/kf5/locale/currency/top.desktop share/kf5/locale/currency/tpe.desktop share/kf5/locale/currency/trl.desktop share/kf5/locale/currency/try.desktop share/kf5/locale/currency/ttd.desktop share/kf5/locale/currency/twd.desktop share/kf5/locale/currency/tzs.desktop share/kf5/locale/currency/uah.desktop share/kf5/locale/currency/ugx.desktop share/kf5/locale/currency/usd.desktop share/kf5/locale/currency/usn.desktop share/kf5/locale/currency/uss.desktop share/kf5/locale/currency/uyu.desktop share/kf5/locale/currency/uzs.desktop share/kf5/locale/currency/veb.desktop share/kf5/locale/currency/vnd.desktop share/kf5/locale/currency/vuv.desktop share/kf5/locale/currency/wst.desktop share/kf5/locale/currency/xaf.desktop share/kf5/locale/currency/xag.desktop share/kf5/locale/currency/xau.desktop share/kf5/locale/currency/xcd.desktop share/kf5/locale/currency/xof.desktop share/kf5/locale/currency/xpd.desktop share/kf5/locale/currency/xpf.desktop share/kf5/locale/currency/xpt.desktop share/kf5/locale/currency/yer.desktop share/kf5/locale/currency/yum.desktop share/kf5/locale/currency/zar.desktop share/kf5/locale/currency/zmk.desktop share/kf5/locale/currency/zwd.desktop share/kf5/locale/currency/zwl.desktop share/kf5/widgets/pics/kdatetimewidget.png share/kf5/widgets/pics/kdatewidget.png share/kf5/widgets/pics/kdialog.png share/kf5/widgets/pics/kdoublenuminput.png share/kf5/widgets/pics/keditlistbox.png share/kf5/widgets/pics/kintnuminput.png share/kf5/widgets/pics/kintspinbox.png share/kf5/widgets/pics/kpushbutton.png share/kf5/widgets/pics/krestrictedline.png share/kf5/widgets/pics/ktextbrowser.png share/kservices5/kcm_ssl.desktop share/kservices5/qimageioplugins/bmp.desktop share/kservices5/qimageioplugins/gif.desktop share/kservices5/qimageioplugins/ico.desktop share/kservices5/qimageioplugins/jpeg.desktop share/kservices5/qimageioplugins/mng.desktop share/kservices5/qimageioplugins/pbm.desktop share/kservices5/qimageioplugins/pgm.desktop share/kservices5/qimageioplugins/png.desktop share/kservices5/qimageioplugins/ppm.desktop share/kservices5/qimageioplugins/svg+xml-compressed.desktop share/kservices5/qimageioplugins/svg+xml.desktop share/kservices5/qimageioplugins/tiff.desktop share/kservices5/qimageioplugins/wbmp.desktop share/kservices5/qimageioplugins/webp.desktop share/kservices5/qimageioplugins/xbm.desktop share/kservices5/qimageioplugins/xpm.desktop share/kservicetypes5/kdatatool.desktop share/kservicetypes5/kfilewrite.desktop share/kservicetypes5/kscan.desktop share/kservicetypes5/qimageio_plugin.desktop share/locale/af/LC_MESSAGES/kdelibs4support.mo share/locale/ar/LC_MESSAGES/kdelibs4support.mo share/locale/as/LC_MESSAGES/kdelibs4support.mo share/locale/az/LC_MESSAGES/kdelibs4support.mo share/locale/be/LC_MESSAGES/kdelibs4support.mo share/locale/be@latin/LC_MESSAGES/kdelibs4support.mo share/locale/bg/LC_MESSAGES/kdelibs4support.mo share/locale/bn/LC_MESSAGES/kdelibs4support.mo share/locale/bn_IN/LC_MESSAGES/kdelibs4support.mo share/locale/br/LC_MESSAGES/kdelibs4support.mo share/locale/bs/LC_MESSAGES/kdelibs4support.mo share/locale/ca/LC_MESSAGES/kdelibs4support.mo share/locale/ca@valencia/LC_MESSAGES/kdelibs4support.mo share/locale/crh/LC_MESSAGES/kdelibs4support.mo share/locale/cs/LC_MESSAGES/kdelibs4support.mo share/locale/csb/LC_MESSAGES/kdelibs4support.mo share/locale/cy/LC_MESSAGES/kdelibs4support.mo share/locale/da/LC_MESSAGES/kdelibs4support.mo share/locale/de/LC_MESSAGES/kdelibs4support.mo share/locale/el/LC_MESSAGES/kdelibs4support.mo share/locale/en_GB/LC_MESSAGES/kdelibs4support.mo share/locale/eo/LC_MESSAGES/kdelibs4support.mo share/locale/es/LC_MESSAGES/kdelibs4support.mo share/locale/et/LC_MESSAGES/kdelibs4support.mo share/locale/eu/LC_MESSAGES/kdelibs4support.mo share/locale/fa/LC_MESSAGES/kdelibs4support.mo share/locale/fi/LC_MESSAGES/kdelibs4support.mo share/locale/fr/LC_MESSAGES/kdelibs4support.mo share/locale/fy/LC_MESSAGES/kdelibs4support.mo share/locale/ga/LC_MESSAGES/kdelibs4support.mo share/locale/gd/LC_MESSAGES/kdelibs4support.mo share/locale/gl/LC_MESSAGES/kdelibs4support.mo share/locale/gu/LC_MESSAGES/kdelibs4support.mo share/locale/ha/LC_MESSAGES/kdelibs4support.mo share/locale/he/LC_MESSAGES/kdelibs4support.mo share/locale/hi/LC_MESSAGES/kdelibs4support.mo share/locale/hne/LC_MESSAGES/kdelibs4support.mo share/locale/hr/LC_MESSAGES/kdelibs4support.mo share/locale/hsb/LC_MESSAGES/kdelibs4support.mo share/locale/hu/LC_MESSAGES/kdelibs4support.mo share/locale/hy/LC_MESSAGES/kdelibs4support.mo share/locale/ia/LC_MESSAGES/kdelibs4support.mo share/locale/id/LC_MESSAGES/kdelibs4support.mo share/locale/is/LC_MESSAGES/kdelibs4support.mo share/locale/it/LC_MESSAGES/kdelibs4support.mo share/locale/ja/LC_MESSAGES/kdelibs4support.mo share/locale/ka/LC_MESSAGES/kdelibs4support.mo share/locale/kf5_all_languages share/locale/kk/LC_MESSAGES/kdelibs4support.mo share/locale/km/LC_MESSAGES/kdelibs4support.mo share/locale/kn/LC_MESSAGES/kdelibs4support.mo share/locale/ko/LC_MESSAGES/kdelibs4support.mo share/locale/ku/LC_MESSAGES/kdelibs4support.mo share/locale/lb/LC_MESSAGES/kdelibs4support.mo share/locale/lt/LC_MESSAGES/kdelibs4support.mo share/locale/lv/LC_MESSAGES/kdelibs4support.mo share/locale/mai/LC_MESSAGES/kdelibs4support.mo share/locale/mk/LC_MESSAGES/kdelibs4support.mo share/locale/ml/LC_MESSAGES/kdelibs4support.mo share/locale/mr/LC_MESSAGES/kdelibs4support.mo share/locale/ms/LC_MESSAGES/kdelibs4support.mo share/locale/nb/LC_MESSAGES/kdelibs4support.mo share/locale/nds/LC_MESSAGES/kdelibs4support.mo share/locale/ne/LC_MESSAGES/kdelibs4support.mo share/locale/nl/LC_MESSAGES/kdelibs4support.mo share/locale/nn/LC_MESSAGES/kdelibs4support.mo share/locale/oc/LC_MESSAGES/kdelibs4support.mo share/locale/or/LC_MESSAGES/kdelibs4support.mo share/locale/pa/LC_MESSAGES/kdelibs4support.mo share/locale/pl/LC_MESSAGES/kdelibs4support.mo share/locale/ps/LC_MESSAGES/kdelibs4support.mo share/locale/pt/LC_MESSAGES/kdelibs4support.mo share/locale/pt_BR/LC_MESSAGES/kdelibs4support.mo share/locale/ro/LC_MESSAGES/kdelibs4support.mo share/locale/ru/LC_MESSAGES/kdelibs4support.mo share/locale/se/LC_MESSAGES/kdelibs4support.mo share/locale/si/LC_MESSAGES/kdelibs4support.mo share/locale/sk/LC_MESSAGES/kdelibs4support.mo share/locale/sl/LC_MESSAGES/kdelibs4support.mo share/locale/sq/LC_MESSAGES/kdelibs4support.mo share/locale/sr/LC_MESSAGES/kdelibs4support.mo share/locale/sr@ijekavian/LC_MESSAGES/kdelibs4support.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kdelibs4support.mo share/locale/sr@latin/LC_MESSAGES/kdelibs4support.mo share/locale/sv/LC_MESSAGES/kdelibs4support.mo share/locale/ta/LC_MESSAGES/kdelibs4support.mo share/locale/te/LC_MESSAGES/kdelibs4support.mo share/locale/tg/LC_MESSAGES/kdelibs4support.mo share/locale/th/LC_MESSAGES/kdelibs4support.mo share/locale/tr/LC_MESSAGES/kdelibs4support.mo share/locale/tt/LC_MESSAGES/kdelibs4support.mo share/locale/ug/LC_MESSAGES/kdelibs4support.mo share/locale/uk/LC_MESSAGES/kdelibs4support.mo share/locale/uz/LC_MESSAGES/kdelibs4support.mo share/locale/uz@cyrillic/LC_MESSAGES/kdelibs4support.mo share/locale/vi/LC_MESSAGES/kdelibs4support.mo share/locale/wa/LC_MESSAGES/kdelibs4support.mo share/locale/xh/LC_MESSAGES/kdelibs4support.mo share/locale/zh_CN/LC_MESSAGES/kdelibs4support.mo share/locale/zh_HK/LC_MESSAGES/kdelibs4support.mo share/locale/zh_TW/LC_MESSAGES/kdelibs4support.mo +share/man/ca/man1/kf5-config.1.gz +share/man/ca@valencia/man1/kf5-config.1.gz +share/man/de/man1/kf5-config.1.gz +share/man/es/man1/kf5-config.1.gz +share/man/fr/man1/kf5-config.1.gz +share/man/it/man1/kf5-config.1.gz +share/man/man1/kf5-config.1.gz +share/man/nl/man1/kf5-config.1.gz +share/man/pt/man1/kf5-config.1.gz +share/man/pt_BR/man1/kf5-config.1.gz +share/man/sv/man1/kf5-config.1.gz +share/man/uk/man1/kf5-config.1.gz diff --git a/x11/kf5-kinit/Makefile b/x11/kf5-kinit/Makefile index 52e9c1b5a3b1..eb7d5f5efab1 100644 --- a/x11/kf5-kinit/Makefile +++ b/x11/kf5-kinit/Makefile @@ -1,16 +1,17 @@ PORTNAME= kinit DISTVERSION= ${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 compiler:c++11-lib gettext kde:5 qt:5 tar:xz xorg USE_KDE= completion config coreaddons crash dbusaddons i18n \ jobwidgets kio service solid widgetsaddons windowsystem \ doctools:build ecm:build USE_QT= concurrent core dbus gui network widgets \ buildtools:build qmake:build USE_XORG= x11 xcb .include diff --git a/x11/kf5-kinit/pkg-plist b/x11/kf5-kinit/pkg-plist index 68760f8ebed3..d4748912fe8c 100644 --- a/x11/kf5-kinit/pkg-plist +++ b/x11/kf5-kinit/pkg-plist @@ -1,128 +1,128 @@ bin/kdeinit5 bin/kdeinit5_shutdown bin/kdeinit5_wrapper bin/kshell5 bin/kwrapper5 lib/cmake/KF5Init/KF5InitConfig.cmake lib/cmake/KF5Init/KF5InitConfigVersion.cmake lib/cmake/KF5Init/KF5InitMacros.cmake lib/cmake/KF5Init/kde5init_dummy.cpp.in lib/libexec/kf5/klauncher lib/libexec/kf5/start_kdeinit lib/libexec/kf5/start_kdeinit_wrapper lib/libkdeinit5_klauncher.so -man/ca/man8/kdeinit5.8.gz -man/ca@valencia/man8/kdeinit5.8.gz -man/de/man8/kdeinit5.8.gz -man/es/man8/kdeinit5.8.gz -man/fr/man8/kdeinit5.8.gz -man/it/man8/kdeinit5.8.gz -man/man8/kdeinit5.8.gz -man/nl/man8/kdeinit5.8.gz -man/pt/man8/kdeinit5.8.gz -man/pt_BR/man8/kdeinit5.8.gz -man/sv/man8/kdeinit5.8.gz -man/uk/man8/kdeinit5.8.gz share/dbus-1/interfaces/kf5_org.kde.KLauncher.xml share/locale/af/LC_MESSAGES/kinit5.mo share/locale/ar/LC_MESSAGES/kinit5.mo share/locale/as/LC_MESSAGES/kinit5.mo share/locale/az/LC_MESSAGES/kinit5.mo share/locale/be/LC_MESSAGES/kinit5.mo share/locale/be@latin/LC_MESSAGES/kinit5.mo share/locale/bg/LC_MESSAGES/kinit5.mo share/locale/bn/LC_MESSAGES/kinit5.mo share/locale/bn_IN/LC_MESSAGES/kinit5.mo share/locale/br/LC_MESSAGES/kinit5.mo share/locale/bs/LC_MESSAGES/kinit5.mo share/locale/ca/LC_MESSAGES/kinit5.mo share/locale/ca@valencia/LC_MESSAGES/kinit5.mo share/locale/crh/LC_MESSAGES/kinit5.mo share/locale/cs/LC_MESSAGES/kinit5.mo share/locale/csb/LC_MESSAGES/kinit5.mo share/locale/cy/LC_MESSAGES/kinit5.mo share/locale/da/LC_MESSAGES/kinit5.mo share/locale/de/LC_MESSAGES/kinit5.mo share/locale/el/LC_MESSAGES/kinit5.mo share/locale/en_GB/LC_MESSAGES/kinit5.mo share/locale/eo/LC_MESSAGES/kinit5.mo share/locale/es/LC_MESSAGES/kinit5.mo share/locale/et/LC_MESSAGES/kinit5.mo share/locale/eu/LC_MESSAGES/kinit5.mo share/locale/fa/LC_MESSAGES/kinit5.mo share/locale/fi/LC_MESSAGES/kinit5.mo share/locale/fr/LC_MESSAGES/kinit5.mo share/locale/fy/LC_MESSAGES/kinit5.mo share/locale/ga/LC_MESSAGES/kinit5.mo share/locale/gd/LC_MESSAGES/kinit5.mo share/locale/gl/LC_MESSAGES/kinit5.mo share/locale/gu/LC_MESSAGES/kinit5.mo share/locale/ha/LC_MESSAGES/kinit5.mo share/locale/he/LC_MESSAGES/kinit5.mo share/locale/hi/LC_MESSAGES/kinit5.mo share/locale/hne/LC_MESSAGES/kinit5.mo share/locale/hr/LC_MESSAGES/kinit5.mo share/locale/hsb/LC_MESSAGES/kinit5.mo share/locale/hu/LC_MESSAGES/kinit5.mo share/locale/hy/LC_MESSAGES/kinit5.mo share/locale/ia/LC_MESSAGES/kinit5.mo share/locale/id/LC_MESSAGES/kinit5.mo share/locale/is/LC_MESSAGES/kinit5.mo share/locale/it/LC_MESSAGES/kinit5.mo share/locale/ja/LC_MESSAGES/kinit5.mo share/locale/ka/LC_MESSAGES/kinit5.mo share/locale/kk/LC_MESSAGES/kinit5.mo share/locale/km/LC_MESSAGES/kinit5.mo share/locale/kn/LC_MESSAGES/kinit5.mo share/locale/ko/LC_MESSAGES/kinit5.mo share/locale/ku/LC_MESSAGES/kinit5.mo share/locale/lb/LC_MESSAGES/kinit5.mo share/locale/lt/LC_MESSAGES/kinit5.mo share/locale/lv/LC_MESSAGES/kinit5.mo share/locale/mai/LC_MESSAGES/kinit5.mo share/locale/mk/LC_MESSAGES/kinit5.mo share/locale/ml/LC_MESSAGES/kinit5.mo share/locale/mr/LC_MESSAGES/kinit5.mo share/locale/ms/LC_MESSAGES/kinit5.mo share/locale/nb/LC_MESSAGES/kinit5.mo share/locale/nds/LC_MESSAGES/kinit5.mo share/locale/ne/LC_MESSAGES/kinit5.mo share/locale/nl/LC_MESSAGES/kinit5.mo share/locale/nn/LC_MESSAGES/kinit5.mo share/locale/oc/LC_MESSAGES/kinit5.mo share/locale/or/LC_MESSAGES/kinit5.mo share/locale/pa/LC_MESSAGES/kinit5.mo share/locale/pl/LC_MESSAGES/kinit5.mo share/locale/ps/LC_MESSAGES/kinit5.mo share/locale/pt/LC_MESSAGES/kinit5.mo share/locale/pt_BR/LC_MESSAGES/kinit5.mo share/locale/ro/LC_MESSAGES/kinit5.mo share/locale/ru/LC_MESSAGES/kinit5.mo share/locale/se/LC_MESSAGES/kinit5.mo share/locale/si/LC_MESSAGES/kinit5.mo share/locale/sk/LC_MESSAGES/kinit5.mo share/locale/sl/LC_MESSAGES/kinit5.mo share/locale/sq/LC_MESSAGES/kinit5.mo share/locale/sr/LC_MESSAGES/kinit5.mo share/locale/sr@ijekavian/LC_MESSAGES/kinit5.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kinit5.mo share/locale/sr@latin/LC_MESSAGES/kinit5.mo share/locale/sv/LC_MESSAGES/kinit5.mo share/locale/ta/LC_MESSAGES/kinit5.mo share/locale/te/LC_MESSAGES/kinit5.mo share/locale/tg/LC_MESSAGES/kinit5.mo share/locale/th/LC_MESSAGES/kinit5.mo share/locale/tr/LC_MESSAGES/kinit5.mo share/locale/tt/LC_MESSAGES/kinit5.mo share/locale/ug/LC_MESSAGES/kinit5.mo share/locale/uk/LC_MESSAGES/kinit5.mo share/locale/uz/LC_MESSAGES/kinit5.mo share/locale/uz@cyrillic/LC_MESSAGES/kinit5.mo share/locale/vi/LC_MESSAGES/kinit5.mo share/locale/wa/LC_MESSAGES/kinit5.mo share/locale/xh/LC_MESSAGES/kinit5.mo share/locale/zh_CN/LC_MESSAGES/kinit5.mo share/locale/zh_HK/LC_MESSAGES/kinit5.mo share/locale/zh_TW/LC_MESSAGES/kinit5.mo +share/man/ca/man8/kdeinit5.8.gz +share/man/ca@valencia/man8/kdeinit5.8.gz +share/man/de/man8/kdeinit5.8.gz +share/man/es/man8/kdeinit5.8.gz +share/man/fr/man8/kdeinit5.8.gz +share/man/it/man8/kdeinit5.8.gz +share/man/man8/kdeinit5.8.gz +share/man/nl/man8/kdeinit5.8.gz +share/man/pt/man8/kdeinit5.8.gz +share/man/pt_BR/man8/kdeinit5.8.gz +share/man/sv/man8/kdeinit5.8.gz +share/man/uk/man8/kdeinit5.8.gz share/qlogging-categories5/kinit.categories share/qlogging-categories5/kinit.renamecategories diff --git a/x11/kf5-plasma-framework/Makefile b/x11/kf5-plasma-framework/Makefile index fd21e01547a4..098903c55d2c 100644 --- a/x11/kf5-plasma-framework/Makefile +++ b/x11/kf5-plasma-framework/Makefile @@ -1,21 +1,22 @@ PORTNAME= plasma-framework DISTVERSION= ${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 compiler:c++11-lib gettext gl kde:5 pkgconfig qt:5 \ tar:xz xorg USE_GL= egl gl USE_KDE= activities archive auth codecs completion config configwidgets \ coreaddons dbusaddons globalaccel guiaddons i18n iconthemes \ jobwidgets kdeclarative kio kirigami2 notifications package \ service solid wayland widgetsaddons windowsystem xmlgui \ doctools:build ecm:build USE_QT= concurrent core dbus declarative gui network sql svg widgets \ x11extras xml \ buildtools:build qmake:build USE_XORG= ice sm x11 xcb xext xrandr .include diff --git a/x11/kf5-plasma-framework/pkg-plist b/x11/kf5-plasma-framework/pkg-plist index 4703091a28db..02839600f177 100644 --- a/x11/kf5-plasma-framework/pkg-plist +++ b/x11/kf5-plasma-framework/pkg-plist @@ -1,701 +1,701 @@ 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/Plasma/plasma_version.h 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/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%%/kf5/kirigami/KirigamiPlasmaStyle.so %%QT_PLUGINDIR%%/kpackage/packagestructure/plasma_applet.so %%QT_PLUGINDIR%%/kpackage/packagestructure/plasma_containmentactions.so %%QT_PLUGINDIR%%/kpackage/packagestructure/plasma_dataengine.so %%QT_PLUGINDIR%%/kpackage/packagestructure/plasma_generic.so %%QT_PLUGINDIR%%/kpackage/packagestructure/plasma_theme.so %%QT_PLUGINDIR%%/plasma/scriptengines/plasma_appletscript_declarative.so %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/AbstractButton.qml %%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/MenuSeparator.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/Page.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/PageIndicator.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/Pane.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/Popup.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/ProgressBar.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/README.md %%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/RoundButton.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/ScrollBar.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/ScrollView.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/Slider.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/SpinBox.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/SwipeView.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/mobiletextselection/MobileCursor.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/mobiletextselection/MobileTextActionsToolBar.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/mobiletextselection/qmldir %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/private/ButtonBackground.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/private/ButtonContent.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/private/ButtonFocus.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/private/ButtonHover.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/FlatButtonBackground.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/private/IconLabel.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/private/RaisedButtonBackground.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/private/RoundShadow.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/private/TextFieldFocus.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/private/qmldir %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/qmldir %%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/kirigami.2/styles/Plasma/AbstractApplicationHeader.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/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/AbstractButton.qml %%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/Dialog.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/DialogButtonBox.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/Drawer.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/Menu.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/MenuItem.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/MenuSeparator.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/Page.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/PageIndicator.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/Pane.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/Popup.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/ProgressBar.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/README.md %%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/RoundButton.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/ScrollBar.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/ScrollView.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/SwipeView.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/Switch.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/SwitchDelegate.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/SwitchIndicator.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/ToolTip.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/mobiletextselection/MobileCursor.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/mobiletextselection/MobileTextActionsToolBar.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/mobiletextselection/qmldir %%QT_QMLDIR%%/org/kde/plasma/components.3/private/ButtonBackground.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/private/ButtonContent.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/private/ButtonFocus.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/private/ButtonHover.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/FlatButtonBackground.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/private/IconLabel.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/private/RaisedButtonBackground.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/private/qmldir %%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/ActionTextField.qml %%QT_QMLDIR%%/org/kde/plasma/extras/App.qml %%QT_QMLDIR%%/org/kde/plasma/extras/BasicPlasmoidHeading.qml %%QT_QMLDIR%%/org/kde/plasma/extras/ConditionalLoader.qml %%QT_QMLDIR%%/org/kde/plasma/extras/DescriptiveLabel.qml %%QT_QMLDIR%%/org/kde/plasma/extras/ExpandableListItem.qml %%QT_QMLDIR%%/org/kde/plasma/extras/Heading.qml %%QT_QMLDIR%%/org/kde/plasma/extras/Highlight.qml %%QT_QMLDIR%%/org/kde/plasma/extras/ListItem.qml %%QT_QMLDIR%%/org/kde/plasma/extras/PageRow.qml %%QT_QMLDIR%%/org/kde/plasma/extras/Paragraph.qml %%QT_QMLDIR%%/org/kde/plasma/extras/PasswordField.qml %%QT_QMLDIR%%/org/kde/plasma/extras/PlaceholderMessage.qml %%QT_QMLDIR%%/org/kde/plasma/extras/PlasmoidHeading.qml %%QT_QMLDIR%%/org/kde/plasma/extras/Representation.qml %%QT_QMLDIR%%/org/kde/plasma/extras/ScrollArea.qml %%QT_QMLDIR%%/org/kde/plasma/extras/SearchField.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/private/BackgroundMetrics.qml %%QT_QMLDIR%%/org/kde/plasma/extras/private/qmldir %%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/ca@valencia/man1/plasmapkg2.1.gz -man/de/man1/plasmapkg2.1.gz -man/es/man1/plasmapkg2.1.gz -man/fr/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-with-qml-extension.tar.bz2 share/kdevappwizard/templates/plasma-wallpaper.tar.bz2 share/kdevappwizard/templates/qml-plasmoid-with-qml-extension.tar.bz2 share/kdevappwizard/templates/qml-plasmoid.tar.bz2 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/az/LC_MESSAGES/libplasma5.mo share/locale/be/LC_MESSAGES/libplasma5.mo share/locale/bg/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/id/LC_MESSAGES/libplasma5.mo share/locale/it/LC_MESSAGES/libplasma5.mo share/locale/ja/LC_MESSAGES/libplasma5.mo share/locale/ka/LC_MESSAGES/libplasma5.mo share/locale/ko/LC_MESSAGES/libplasma5.mo share/locale/lt/LC_MESSAGES/libplasma5.mo share/locale/lv/LC_MESSAGES/libplasma5.mo share/locale/ml/LC_MESSAGES/libplasma5.mo 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/ta/LC_MESSAGES/libplasma5.mo share/locale/tg/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/vi/LC_MESSAGES/libplasma5.mo share/locale/zh_CN/LC_MESSAGES/libplasma5.mo share/locale/zh_TW/LC_MESSAGES/libplasma5.mo +share/man/ca/man1/plasmapkg2.1.gz +share/man/ca@valencia/man1/plasmapkg2.1.gz +share/man/de/man1/plasmapkg2.1.gz +share/man/es/man1/plasmapkg2.1.gz +share/man/fr/man1/plasmapkg2.1.gz +share/man/it/man1/plasmapkg2.1.gz +share/man/man1/plasmapkg2.1.gz +share/man/nl/man1/plasmapkg2.1.gz +share/man/pt/man1/plasmapkg2.1.gz +share/man/pt_BR/man1/plasmapkg2.1.gz +share/man/sv/man1/plasmapkg2.1.gz +share/man/uk/man1/plasmapkg2.1.gz 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.json 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/plasmarc share/plasma/desktoptheme/air/translucent/dialogs/background.svgz share/plasma/desktoptheme/air/translucent/dialogs/krunner.svgz share/plasma/desktoptheme/air/translucent/widgets/background.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/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.json share/plasma/desktoptheme/breeze-dark/plasmarc share/plasma/desktoptheme/breeze-light/colors share/plasma/desktoptheme/breeze-light/metadata.json share/plasma/desktoptheme/breeze-light/plasmarc 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/disk.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/kup.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/mobile.svgz share/plasma/desktoptheme/default/icons/network.svgz share/plasma/desktoptheme/default/icons/notification.svgz share/plasma/desktoptheme/default/icons/osd.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/search.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-card.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/yakuake.svgz share/plasma/desktoptheme/default/icons/zoom.svgz share/plasma/desktoptheme/default/metadata.json 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/plasmarc share/plasma/desktoptheme/default/solid/dialogs/background.svgz share/plasma/desktoptheme/default/solid/widgets/background.svgz share/plasma/desktoptheme/default/solid/widgets/panel-background.svgz share/plasma/desktoptheme/default/solid/widgets/tooltip.svgz share/plasma/desktoptheme/default/translucent/dialogs/background.svgz share/plasma/desktoptheme/default/translucent/widgets/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/margins-highlight.svgz share/plasma/desktoptheme/default/widgets/media-delegate.svgz share/plasma/desktoptheme/default/widgets/menubaritem.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/plasmoidheading.svgz share/plasma/desktoptheme/default/widgets/plot-background.svgz share/plasma/desktoptheme/default/widgets/radiobutton.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.json 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/plasmarc 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/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 share/qlogging-categories5/plasma-framework.categories share/qlogging-categories5/plasma-framework.renamecategories