mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-28 03:10:57 +08:00
[kf5kcmutils] new port (#20199)
* Add kf5kcmutils port * Fixed kf5kcmutils for windows * [kf5*] update to 5.75.0 * [kf5kcmutils] update to latest spec * [kf5kcmutils] use semVer * [kf5kcmutils] add PACKAGE_NAME to vcpkg_cmake_config_fixup * [kf5kcmutils] update to 5.84.0 * [kf5kcmutils] fix versioning scheme * [kf5kcmutils] fix SHA sum * [kf5kcmutils] fix cmake config for static builds * [kf5kcmutils] add gettext tools dependency * [kf5kcmutils] update versions * [kf5kcmutils] reduce patch size * [kf5kcmutils] update versions Co-authored-by: Kuntal Majumder <hellozee@disroot.org>
This commit is contained in:
parent
e7e328cf9d
commit
f2608141c5
28
ports/kf5kcmutils/fix_cmake_config.patch
Normal file
28
ports/kf5kcmutils/fix_cmake_config.patch
Normal file
@ -0,0 +1,28 @@
|
||||
diff --git a/KF5KCMUtilsConfig.cmake.in b/KF5KCMUtilsConfig.cmake.in
|
||||
index 9871fba..ddcf6ea 100644
|
||||
--- a/KF5KCMUtilsConfig.cmake.in
|
||||
+++ b/KF5KCMUtilsConfig.cmake.in
|
||||
@@ -4,6 +4,20 @@ include(CMakeFindDependencyMacro)
|
||||
find_dependency(KF5ConfigWidgets "@KF_DEP_VERSION@")
|
||||
find_dependency(KF5Service "@KF_DEP_VERSION@")
|
||||
|
||||
+if (NOT @BUILD_SHARED_LIBS@)
|
||||
+ find_dependency(Qt5DBus "@REQUIRED_QT_VERSION@")
|
||||
+ find_dependency(Qt5Qml "@REQUIRED_QT_VERSION@")
|
||||
+ find_dependency(Qt5Quick "@REQUIRED_QT_VERSION@")
|
||||
+ find_dependency(Qt5QuickWidgets "@REQUIRED_QT_VERSION@")
|
||||
+
|
||||
+ find_dependency(KF5CoreAddons "@KF_DEP_VERSION@")
|
||||
+ find_dependency(KF5GuiAddons "@KF_DEP_VERSION@")
|
||||
+ find_dependency(KF5I18n "@KF_DEP_VERSION@")
|
||||
+ find_dependency(KF5ItemViews "@KF_DEP_VERSION@")
|
||||
+ find_dependency(KF5XmlGui "@KF_DEP_VERSION@")
|
||||
+ find_dependency(KF5Declarative "@KF_DEP_VERSION@")
|
||||
+endif()
|
||||
+
|
||||
@PACKAGE_SETUP_AUTOMOC_VARIABLES@
|
||||
|
||||
include("${CMAKE_CURRENT_LIST_DIR}/KF5KCMUtilsTargets.cmake")
|
||||
--
|
||||
GitLab
|
||||
|
30
ports/kf5kcmutils/portfile.cmake
Normal file
30
ports/kf5kcmutils/portfile.cmake
Normal file
@ -0,0 +1,30 @@
|
||||
vcpkg_from_github(
|
||||
OUT_SOURCE_PATH SOURCE_PATH
|
||||
REPO KDE/kcmutils
|
||||
REF v5.84.0
|
||||
SHA512 e5f6347416143775e660430d582db3a60153b75063e7079bb3743043132f2e2f0d01234229f5eb1b4678e29d6981d03bd826622924ec7e385900df9067676f5b
|
||||
HEAD_REF master
|
||||
PATCHES
|
||||
fix_cmake_config.patch
|
||||
)
|
||||
|
||||
vcpkg_cmake_configure(
|
||||
DISABLE_PARALLEL_CONFIGURE
|
||||
SOURCE_PATH "${SOURCE_PATH}"
|
||||
OPTIONS
|
||||
-DBUILD_TESTING=OFF
|
||||
)
|
||||
|
||||
vcpkg_cmake_install()
|
||||
vcpkg_cmake_config_fixup(PACKAGE_NAME KF5KCMUtils CONFIG_PATH lib/cmake/KF5KCMUtils)
|
||||
|
||||
vcpkg_copy_pdbs()
|
||||
|
||||
if(VCPKG_LIBRARY_LINKAGE STREQUAL "static")
|
||||
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/bin" "${CURRENT_PACKAGES_DIR}/debug/bin")
|
||||
endif()
|
||||
|
||||
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include")
|
||||
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/share")
|
||||
|
||||
file(INSTALL "${SOURCE_PATH}/LICENSES/" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}/copyright")
|
34
ports/kf5kcmutils/vcpkg.json
Normal file
34
ports/kf5kcmutils/vcpkg.json
Normal file
@ -0,0 +1,34 @@
|
||||
{
|
||||
"name": "kf5kcmutils",
|
||||
"version": "5.84.0",
|
||||
"description": "Utilities for KDE System Settings modules",
|
||||
"homepage": "https://api.kde.org/frameworks/kcmutils/html/index.html",
|
||||
"dependencies": [
|
||||
"ecm",
|
||||
{
|
||||
"name": "gettext",
|
||||
"host": true,
|
||||
"features": [
|
||||
"tools"
|
||||
]
|
||||
},
|
||||
"kf5configwidgets",
|
||||
"kf5coreaddons",
|
||||
"kf5declarative",
|
||||
"kf5guiaddons",
|
||||
"kf5i18n",
|
||||
"kf5itemviews",
|
||||
"kf5service",
|
||||
"kf5xmlgui",
|
||||
"qt5-base",
|
||||
"qt5-tools",
|
||||
{
|
||||
"name": "vcpkg-cmake",
|
||||
"host": true
|
||||
},
|
||||
{
|
||||
"name": "vcpkg-cmake-config",
|
||||
"host": true
|
||||
}
|
||||
]
|
||||
}
|
@ -3088,6 +3088,10 @@
|
||||
"baseline": "5.84.0",
|
||||
"port-version": 1
|
||||
},
|
||||
"kf5kcmutils": {
|
||||
"baseline": "5.84.0",
|
||||
"port-version": 0
|
||||
},
|
||||
"kf5kio": {
|
||||
"baseline": "5.84.0",
|
||||
"port-version": 0
|
||||
|
9
versions/k-/kf5kcmutils.json
Normal file
9
versions/k-/kf5kcmutils.json
Normal file
@ -0,0 +1,9 @@
|
||||
{
|
||||
"versions": [
|
||||
{
|
||||
"git-tree": "7faf8114473ed03a92c1d5537e4c07cbf31b0ef2",
|
||||
"version": "5.84.0",
|
||||
"port-version": 0
|
||||
}
|
||||
]
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user