mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-27 12:58:59 +08:00
a868d7ed21
* [kf5*] Update to 5.88 * [kf5*] Update versions * [kf5*] fix QML plugins location diff --git a/ports/kf5i18n/portfile.cmake b/ports/kf5i18n/portfile.cmake index 610182e49..5a0fd5e21 100644 --- a/ports/kf5i18n/portfile.cmake +++ b/ports/kf5i18n/portfile.cmake @@ -20,6 +20,7 @@ vcpkg_cmake_configure( OPTIONS -DBUILD_TESTING=OFF -DKDE_INSTALL_PLUGINDIR=plugins + -DKDE_INSTALL_QMLDIR=qml -DPYTHON_EXECUTABLE=${PYTHON3} ) diff --git a/ports/kf5notifications/portfile.cmake b/ports/kf5notifications/portfile.cmake index e41fee015..bc93cf6af 100644 --- a/ports/kf5notifications/portfile.cmake +++ b/ports/kf5notifications/portfile.cmake @@ -13,6 +13,7 @@ vcpkg_cmake_configure( SOURCE_PATH "${SOURCE_PATH}" OPTIONS -DBUILD_TESTING=OFF + -DKDE_INSTALL_QMLDIR=qml ) vcpkg_cmake_install() diff --git a/ports/kf5sonnet/portfile.cmake b/ports/kf5sonnet/portfile.cmake index 7e2820ce4..a2d1adfcc 100644 --- a/ports/kf5sonnet/portfile.cmake +++ b/ports/kf5sonnet/portfile.cmake @@ -16,6 +16,7 @@ vcpkg_cmake_configure( -DBUILD_EXAMPLES=OFF -DKDE_INSTALL_PLUGINDIR=plugins -DKDE_INSTALL_QTPLUGINDIR=plugins + -DKDE_INSTALL_QMLDIR=qml ) vcpkg_add_to_path(PREPEND "${CURRENT_INSTALLED_DIR}/bin") * [kf5*] update versions * [ecm] fix ECMGenerateQmlTypes * [ecm] update version
67 lines
2.1 KiB
CMake
67 lines
2.1 KiB
CMake
if(VCPKG_TARGET_IS_WINDOWS AND VCPKG_LIBRARY_LINKAGE STREQUAL static)
|
|
list(APPEND PATCHES fix_libiconv.patch)
|
|
endif()
|
|
|
|
vcpkg_from_github(
|
|
OUT_SOURCE_PATH SOURCE_PATH
|
|
REPO KDE/kio
|
|
REF v5.88.0
|
|
SHA512 c2f98b7286c4e9cef6e63a620077273630ea01cc74266170008731c080dde73dff9cbe289a0a2fe3c1423014ed2627cec3ead332ba90321b43b6a287a85ed5d9
|
|
HEAD_REF master
|
|
PATCHES
|
|
${PATCHES}
|
|
)
|
|
|
|
vcpkg_check_features(OUT_FEATURE_OPTIONS FEATURE_OPTIONS
|
|
INVERTED_FEATURES
|
|
"kf5notifications" CMAKE_DISABLE_FIND_PACKAGE_KF5Notifications
|
|
"kf5wallet" CMAKE_DISABLE_FIND_PACKAGE_KF5Wallet
|
|
)
|
|
|
|
# Prevent KDEClangFormat from writing to source effectively blocking parallel configure
|
|
file(WRITE ${SOURCE_PATH}/.clang-format "DisableFormat: true\nSortIncludes: false\n")
|
|
|
|
vcpkg_cmake_configure(
|
|
SOURCE_PATH "${SOURCE_PATH}"
|
|
OPTIONS
|
|
-DBUILD_TESTING=OFF
|
|
-DCMAKE_DISABLE_FIND_PACKAGE_KF5DocTools=ON
|
|
-DCMAKE_VERBOSE_MAKEFILE=ON
|
|
-DKDE_INSTALL_QTPLUGINDIR=plugins
|
|
-DKDE_INSTALL_PLUGINDIR=plugins
|
|
-DKDE_INSTALL_LIBEXECDIR=bin
|
|
${FEATURE_OPTIONS}
|
|
MAYBE_UNUSED_VARIABLES CMAKE_DISABLE_FIND_PACKAGE_KF5Notifications
|
|
)
|
|
|
|
vcpkg_cmake_install()
|
|
vcpkg_cmake_config_fixup(PACKAGE_NAME KF5KIO CONFIG_PATH lib/cmake/KF5KIO)
|
|
vcpkg_copy_pdbs()
|
|
|
|
set(LIBEXEC_TOOLS kio_http_cache_cleaner kiod5 kioexec kioslave5)
|
|
|
|
if(NOT VCPKG_TARGET_IS_WINDOWS)
|
|
if(NOT VCPKG_TARGET_IS_ANDROID)
|
|
list(APPEND LIBEXEC_TOOLS kpac_dhcp_helper)
|
|
endif()
|
|
|
|
list(TRANSFORM LIBEXEC_TOOLS PREPEND "kf5/")
|
|
endif()
|
|
|
|
vcpkg_copy_tools(
|
|
TOOL_NAMES kcookiejar5 ktelnetservice5 ktrash5 protocoltojson ${LIBEXEC_TOOLS}
|
|
AUTO_CLEAN
|
|
)
|
|
|
|
file(APPEND "${CURRENT_PACKAGES_DIR}/tools/${PORT}/qt.conf" "Data = ../../share")
|
|
|
|
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include")
|
|
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/share")
|
|
|
|
if(VCPKG_LIBRARY_LINKAGE STREQUAL "static")
|
|
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/bin" "${CURRENT_PACKAGES_DIR}/debug/bin")
|
|
endif()
|
|
|
|
file(INSTALL "${SOURCE_PATH}/LICENSES/" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}/copyright")
|
|
|