aboutsummaryrefslogtreecommitdiff
path: root/ports
diff options
context:
space:
mode:
authorDawid Wróbel <me@dawidwrobel.com>2021-09-22 23:15:26 +0300
committerGitHub <noreply@github.com>2021-09-22 13:15:26 -0700
commit3083e1e731ad62f38c1398f81ca90ab3348f5ca2 (patch)
treec3b9ac34eecbc37b10322542ad90acf3eed224b5 /ports
parentb29f8ef37edb1cedd5c2e403dbcb355443b939f6 (diff)
downloadvcpkg-3083e1e731ad62f38c1398f81ca90ab3348f5ca2.tar.gz
vcpkg-3083e1e731ad62f38c1398f81ca90ab3348f5ca2.zip
[kf5diagram] new port (#20234)
* [kf5diagram] new port * [kf5diagram] update versions Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
Diffstat (limited to 'ports')
-rw-r--r--ports/kf5diagram/portfile.cmake29
-rw-r--r--ports/kf5diagram/vcpkg.json19
2 files changed, 48 insertions, 0 deletions
diff --git a/ports/kf5diagram/portfile.cmake b/ports/kf5diagram/portfile.cmake
new file mode 100644
index 000000000..06278643c
--- /dev/null
+++ b/ports/kf5diagram/portfile.cmake
@@ -0,0 +1,29 @@
+vcpkg_from_github(
+ OUT_SOURCE_PATH SOURCE_PATH
+ REPO KDE/kdiagram
+ REF v2.8.0
+ SHA512 5a3b958aaf386b1cde3c840963521306ded5b1975cc293dbb36c60cacd52a62badaf64a6c5f3cd63fc65f02d0ba181d318496d665f08140299720cd022a855e7
+ HEAD_REF master
+)
+
+# 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
+)
+
+vcpkg_cmake_install()
+vcpkg_cmake_config_fixup(PACKAGE_NAME KChart CONFIG_PATH lib/cmake/KChart DO_NOT_DELETE_PARENT_CONFIG_PATH)
+vcpkg_cmake_config_fixup(PACKAGE_NAME KGantt CONFIG_PATH lib/cmake/KGantt)
+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}/LICENSE.GPL.txt" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}/copyright") \ No newline at end of file
diff --git a/ports/kf5diagram/vcpkg.json b/ports/kf5diagram/vcpkg.json
new file mode 100644
index 000000000..0388001e5
--- /dev/null
+++ b/ports/kf5diagram/vcpkg.json
@@ -0,0 +1,19 @@
+{
+ "name": "kf5diagram",
+ "version": "2.8.0",
+ "description": "Powerful libraries (KChart, KGantt) for creating business diagrams",
+ "homepage": "https://api.kde.org/kdiagram/index.html",
+ "dependencies": [
+ "ecm",
+ "qt5-base",
+ "qt5-svg",
+ {
+ "name": "vcpkg-cmake",
+ "host": true
+ },
+ {
+ "name": "vcpkg-cmake-config",
+ "host": true
+ }
+ ]
+}