Skip to content

Commit

Permalink
[kf5codecs] new port (#16561)
Browse files Browse the repository at this point in the history
* Add kf5codecs port

* Fixed KF5Codecs for windows

* [kf5*] update to 5.75.0

* [kf5codecs] update versions

* [kf5codecs] convert CONTROL to manifest

* [kf5codecs] update to 5.81

* [kf5codecs] update versions

* [kf5codecs] update versions

* [kf5codecs] migrate to vcpkg_cmake_configure

* [kf5codecs] update versions

Co-authored-by: Kuntal Majumder <hellozee@disroot.org>
  • Loading branch information
wrobelda and hellozee committed May 28, 2021
1 parent a29126f commit 1c4fb01
Show file tree
Hide file tree
Showing 4 changed files with 69 additions and 0 deletions.
37 changes: 37 additions & 0 deletions ports/kf5codecs/portfile.cmake
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO KDE/kcodecs
REF v5.81.0
SHA512 65db534f32b81b8b10840233981e8a790a8fe17ddb9e64304f2ea8b817b4125ae737574a7235aa20b8b3766bd4c59bb8fb49dafa19a8a89160ab1e06d7d333b5
HEAD_REF master
)

vcpkg_find_acquire_program(GPERF)
get_filename_component(GPERF_EXE_PATH ${GPERF} DIRECTORY)
vcpkg_add_to_path(${GPERF_EXE_PATH})

vcpkg_cmake_configure(
DISABLE_PARALLEL_CONFIGURE
SOURCE_PATH ${SOURCE_PATH}
OPTIONS
-DBUILD_HTML_DOCS=OFF
-DBUILD_MAN_DOCS=OFF
-DBUILD_QTHELP_DOCS=OFF
-DBUILD_TESTING=OFF
)

vcpkg_cmake_install()
vcpkg_cmake_config_fixup(PACKAGE_NAME KF5Codecs CONFIG_PATH lib/cmake/KF5Codecs)

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/bin/data)
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/etc)
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)
19 changes: 19 additions & 0 deletions ports/kf5codecs/vcpkg.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"name": "kf5codecs",
"version": "5.81.0",
"description": "String encoding library",
"homepage": "https://api.kde.org/frameworks/kcodecs/html/index.html",
"dependencies": [
"ecm",
"qt5-base",
"qt5-tools",
{
"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 @@ -2820,6 +2820,10 @@
"baseline": "5.81.0",
"port-version": 0
},
"kf5codecs": {
"baseline": "5.81.0",
"port-version": 0
},
"kf5completion": {
"baseline": "5.81.0",
"port-version": 0
Expand Down
9 changes: 9 additions & 0 deletions versions/k-/kf5codecs.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"versions": [
{
"git-tree": "2014209bef9c534b16f81cefadc0745d25b9a761",
"version": "5.81.0",
"port-version": 0
}
]
}

0 comments on commit 1c4fb01

Please sign in to comment.