2021-03-11 03:14:36 +08:00
|
|
|
set(GEOS_VERSION 3.9.1)
|
2017-09-27 04:29:24 +08:00
|
|
|
|
2016-10-17 08:22:00 +08:00
|
|
|
vcpkg_download_distfile(ARCHIVE
|
2018-10-16 09:56:14 +08:00
|
|
|
URLS "http://download.osgeo.org/geos/geos-${GEOS_VERSION}.tar.bz2"
|
|
|
|
FILENAME "geos-${GEOS_VERSION}.tar.bz2"
|
2021-03-11 03:14:36 +08:00
|
|
|
SHA512 7ea131685cd110ec5e0cb7c214b52b75397371e75f011e1410b6770b6a48ca492a02337d86a7be35c852ef94604fe9d6f49634c79d4946df611aaa4f5cbaee28
|
2016-10-17 08:22:00 +08:00
|
|
|
)
|
2018-10-16 09:56:14 +08:00
|
|
|
vcpkg_extract_source_archive_ex(
|
|
|
|
OUT_SOURCE_PATH SOURCE_PATH
|
2021-05-27 04:29:02 +08:00
|
|
|
ARCHIVE "${ARCHIVE}"
|
2018-10-16 09:56:14 +08:00
|
|
|
REF ${GEOS_VERSION}
|
2020-09-01 08:45:58 +08:00
|
|
|
PATCHES
|
|
|
|
dont-build-docs.patch
|
|
|
|
dont-build-astyle.patch
|
2021-05-27 04:29:02 +08:00
|
|
|
pc-file-libs-private.patch
|
|
|
|
make-geos-config-relocatable.patch
|
2017-10-04 02:37:23 +08:00
|
|
|
)
|
2016-10-17 08:22:00 +08:00
|
|
|
|
2017-09-27 04:29:24 +08:00
|
|
|
# NOTE: GEOS provides CMake as optional build configuration, it might not be actively
|
|
|
|
# maintained, so CMake build issues may happen between releases.
|
|
|
|
|
2020-09-10 03:26:45 +08:00
|
|
|
if(VCPKG_TARGET_IS_MINGW)
|
|
|
|
set(_CMAKE_EXTRA_OPTIONS "-DDISABLE_GEOS_INLINE=ON")
|
|
|
|
else()
|
|
|
|
set(_CMAKE_EXTRA_OPTIONS "")
|
|
|
|
endif()
|
|
|
|
|
2021-05-27 04:29:02 +08:00
|
|
|
vcpkg_cmake_configure(
|
|
|
|
SOURCE_PATH "${SOURCE_PATH}"
|
2018-10-16 09:56:14 +08:00
|
|
|
PREFER_NINJA
|
2018-05-01 16:14:18 +08:00
|
|
|
OPTIONS
|
2018-10-16 09:56:14 +08:00
|
|
|
-DCMAKE_DEBUG_POSTFIX=d
|
2020-09-01 08:45:58 +08:00
|
|
|
-DBUILD_TESTING=OFF
|
2021-05-27 04:29:02 +08:00
|
|
|
-DBUILD_BENCHMARKS=OFF
|
2020-09-10 03:26:45 +08:00
|
|
|
${_CMAKE_EXTRA_OPTIONS}
|
2016-10-17 08:22:00 +08:00
|
|
|
)
|
2021-05-27 04:29:02 +08:00
|
|
|
vcpkg_cmake_install()
|
|
|
|
vcpkg_cmake_config_fixup(CONFIG_PATH lib/cmake/GEOS)
|
|
|
|
vcpkg_fixup_pkgconfig()
|
2018-10-16 09:56:14 +08:00
|
|
|
|
2021-05-27 04:29:02 +08:00
|
|
|
function(geos_add_debug_postfix config_file)
|
|
|
|
file(READ "${config_file}" contents)
|
|
|
|
string(REGEX REPLACE "(-lgeos(_c)?)d?([^-_d])" "\\1d\\3" fixed_contents "${contents}")
|
|
|
|
file(WRITE "${config_file}" "${fixed_contents}")
|
|
|
|
endfunction()
|
|
|
|
if(EXISTS "${CURRENT_PACKAGES_DIR}/debug/lib/pkgconfig/geos.pc")
|
|
|
|
geos_add_debug_postfix("${CURRENT_PACKAGES_DIR}/debug/lib/pkgconfig/geos.pc")
|
|
|
|
endif()
|
|
|
|
if(EXISTS "${CURRENT_PACKAGES_DIR}/bin/geos-config")
|
|
|
|
file(MAKE_DIRECTORY "${CURRENT_PACKAGES_DIR}/tools/${PORT}/bin")
|
|
|
|
file(RENAME "${CURRENT_PACKAGES_DIR}/bin/geos-config" "${CURRENT_PACKAGES_DIR}/tools/${PORT}/bin/geos-config")
|
|
|
|
endif()
|
|
|
|
if(EXISTS "${CURRENT_PACKAGES_DIR}/debug/bin/geos-config")
|
|
|
|
file(MAKE_DIRECTORY "${CURRENT_PACKAGES_DIR}/tools/${PORT}/debug/bin")
|
|
|
|
file(RENAME "${CURRENT_PACKAGES_DIR}/debug/bin/geos-config" "${CURRENT_PACKAGES_DIR}/tools/${PORT}/debug/bin/geos-config")
|
|
|
|
geos_add_debug_postfix("${CURRENT_PACKAGES_DIR}/tools/${PORT}/debug/bin/geos-config")
|
2018-12-13 20:06:27 +08:00
|
|
|
endif()
|
|
|
|
|
2021-05-27 04:29:02 +08:00
|
|
|
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include")
|
|
|
|
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/share") # vcpkg-cmake-config quirk, cf. GH-18063
|
|
|
|
if(VCPKG_LIBRARY_LINKAGE STREQUAL "static" OR NOT VCPKG_TARGET_IS_WINDOWS)
|
|
|
|
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/bin" "${CURRENT_PACKAGES_DIR}/debug/bin")
|
2016-11-01 03:34:04 +08:00
|
|
|
endif()
|
|
|
|
|
2018-10-16 09:56:14 +08:00
|
|
|
# Handle copyright
|
2021-05-27 04:29:02 +08:00
|
|
|
configure_file("${SOURCE_PATH}/COPYING" "${CURRENT_PACKAGES_DIR}/share/geos/copyright" COPYONLY)
|
2018-10-16 09:56:14 +08:00
|
|
|
|
2017-10-04 20:36:30 +08:00
|
|
|
vcpkg_copy_pdbs()
|
2021-05-27 04:29:02 +08:00
|
|
|
file(INSTALL "${CMAKE_CURRENT_LIST_DIR}/usage" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}")
|