Skip to content

Commit

Permalink
[kdreports] new port
Browse files Browse the repository at this point in the history
  • Loading branch information
drdanz committed Dec 12, 2024
1 parent b7601ed commit 06ae453
Show file tree
Hide file tree
Showing 5 changed files with 79 additions and 0 deletions.
38 changes: 38 additions & 0 deletions ports/kdreports/portfile.cmake
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO KDAB/KDReports
REF "kdreports-${VERSION}"
SHA512 f9b3785d71c68d032a0e1420ba3adae517994d257a02df69aaffcff4a8909b24d081c91b4cc9e1cc00311768f92e63b9288a99cfaac8422ebd1cae7321b3edbb
HEAD_REF master
)

string(COMPARE EQUAL "${VCPKG_LIBRARY_LINKAGE}" "static" KDReports_STATIC)

vcpkg_cmake_configure(
SOURCE_PATH ${SOURCE_PATH}
OPTIONS
-DKDReports_QT6=ON
-DKDReports_STATIC=${KDReports_STATIC}
-DKDReports_TESTS=OFF
-DKDReports_EXAMPLES=OFF
-DKDReports_DOCS=OFF
-DCMAKE_DISABLE_FIND_PACKAGE_KDChart-qt6=ON
)
vcpkg_cmake_install()
vcpkg_copy_pdbs()
vcpkg_cmake_config_fixup(PACKAGE_NAME KDReports-qt6 CONFIG_PATH lib/cmake/KDReports-qt6)

file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/share/doc")
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include")
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/share")

vcpkg_install_copyright(FILE_LIST "${SOURCE_PATH}/LICENSE.txt")
file(
COPY
"${SOURCE_PATH}/LICENSES/BSD-3-Clause.txt"
"${SOURCE_PATH}/LICENSES/MIT.txt"
DESTINATION
"${CURRENT_PACKAGES_DIR}/share/${PORT}/LICENSES/"
)

file(INSTALL "${CMAKE_CURRENT_LIST_DIR}/usage" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}")
4 changes: 4 additions & 0 deletions ports/kdreports/usage
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
kdreports provides CMake targets:

find_package(KDReports-qt6 CONFIG REQUIRED)
target_link_libraries(main PRIVATE KDReports::kdreports)
24 changes: 24 additions & 0 deletions ports/kdreports/vcpkg.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"name": "kdreports",
"version": "2.3.0",
"description": "KD Reports is a Qt tool that lets you easily create printable reports by providing all of the necessary features for a variety of applications.",
"homepage": "https://github.com/KDAB/KDReports",
"license": "MIT",
"dependencies": [
{
"name": "qtbase",
"default-features": false,
"features": [
"widgets"
]
},
{
"name": "vcpkg-cmake",
"host": true
},
{
"name": "vcpkg-cmake-config",
"host": true
}
]
}
4 changes: 4 additions & 0 deletions versions/baseline.json
Original file line number Diff line number Diff line change
Expand Up @@ -3952,6 +3952,10 @@
"baseline": "2.1.0",
"port-version": 1
},
"kdreports": {
"baseline": "2.3.0",
"port-version": 0
},
"kdsoap": {
"baseline": "2.2.0",
"port-version": 0
Expand Down
9 changes: 9 additions & 0 deletions versions/k-/kdreports.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"versions": [
{
"git-tree": "b8dc31937f5cb11135b9ffd9a60747a15dc66842",
"version": "2.3.0",
"port-version": 0
}
]
}

0 comments on commit 06ae453

Please sign in to comment.