Skip to content

Commit

Permalink
[libical] new port (#20965)
Browse files Browse the repository at this point in the history
* new port for libical

* ports/libical/portfile.cmake - cleanup

* [libical] implement fixes from pull request

* [libical] update to 3.0.11, modernize port file

* [libical] make rscale a default feature

* [libical] update versions

* [libical] don't make rscale deault for now, disable on static

* [libical] update versions

Co-authored-by: Allen Winter <[email protected]>
  • Loading branch information
wrobelda and winterz authored Nov 19, 2021
1 parent 4389f62 commit fa145bc
Show file tree
Hide file tree
Showing 4 changed files with 79 additions and 0 deletions.
41 changes: 41 additions & 0 deletions ports/libical/portfile.cmake
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO libical/libical
REF v3.0.11
SHA512 cdee86c50edc2373ab2024d7d4ae26dd4b9a728dbc13083472c4923c67f61ff3cef7d43edca762c6a11979d2040fc1576a033eaa23a19e58af8f14a7d67fc139
)

vcpkg_find_acquire_program(PERL)
get_filename_component(PERL_PATH ${PERL} DIRECTORY)
vcpkg_add_to_path(${PERL_PATH})

vcpkg_check_features(OUT_FEATURE_OPTIONS FEATURE_OPTIONS
INVERTED_FEATURES
"rscale" CMAKE_DISABLE_FIND_PACKAGE_ICU
)

if(VCPKG_LIBRARY_LINKAGE STREQUAL "static")
list(APPEND FEATURE_OPTIONS -DSTATIC_ONLY=ON)
else()
list(APPEND FEATURE_OPTIONS -DSHARED_ONLY=ON)
endif()

vcpkg_cmake_configure(
SOURCE_PATH "${SOURCE_PATH}"
OPTIONS
-DCMAKE_DISABLE_FIND_PACKAGE_BDB=ON
-DUSE_BUILTIN_TZDATA=ON
-DICAL_GLIB=OFF
-DICAL_BUILD_DOCS=OFF
-DLIBICAL_BUILD_TESTING=OFF
${FEATURE_OPTIONS}
)

vcpkg_cmake_install()
vcpkg_copy_pdbs()
vcpkg_cmake_config_fixup(PACKAGE_NAME LibIcal CONFIG_PATH CONFIG_PATH lib/cmake/LibIcal)

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

file(INSTALL "${SOURCE_PATH}/COPYING" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright)
25 changes: 25 additions & 0 deletions ports/libical/vcpkg.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"name": "libical",
"version": "3.0.11",
"description": "Reference implementation of the iCalendar data type and serialization format",
"homepage": "https://github.com/libical/libical",
"dependencies": [
{
"name": "vcpkg-cmake",
"host": true
},
{
"name": "vcpkg-cmake-config",
"host": true
}
],
"features": {
"rscale": {
"description": "Support for RSCALE element",
"supports": "!static",
"dependencies": [
"icu"
]
}
}
}
4 changes: 4 additions & 0 deletions versions/baseline.json
Original file line number Diff line number Diff line change
Expand Up @@ -3524,6 +3524,10 @@
"baseline": "2019-08-11",
"port-version": 1
},
"libical": {
"baseline": "3.0.11",
"port-version": 0
},
"libiconv": {
"baseline": "1.16",
"port-version": 11
Expand Down
9 changes: 9 additions & 0 deletions versions/l-/libical.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"versions": [
{
"git-tree": "f4ab3492c90b3d683702cacb90aaea839cfc3d8f",
"version": "3.0.11",
"port-version": 0
}
]
}

0 comments on commit fa145bc

Please sign in to comment.