early-access version 2853
This commit is contained in:
23
externals/vcpkg/ports/libgeotiff/cmakelists.patch
vendored
Executable file
23
externals/vcpkg/ports/libgeotiff/cmakelists.patch
vendored
Executable file
@@ -0,0 +1,23 @@
|
||||
diff --git a/libgeotiff/cmake/CMakeLists.txt b/libgeotiff/cmake/CMakeLists.txt
|
||||
index 47a2b00..3809ba3 100644
|
||||
--- a/libgeotiff/cmake/CMakeLists.txt
|
||||
+++ b/libgeotiff/cmake/CMakeLists.txt
|
||||
@@ -6,6 +6,7 @@
|
||||
# ${INSTALL_CMAKE_DIR} and @PROJECT_ROOT_DIR@ is the relative
|
||||
# path to the root from there. (Note that the whole install tree can
|
||||
# be relocated.)
|
||||
+if (0)
|
||||
if (NOT WIN32)
|
||||
set (INSTALL_CMAKE_DIR "share/cmake/${PROJECT_NAME}")
|
||||
set (PROJECT_ROOT_DIR "../../..")
|
||||
@@ -13,6 +14,10 @@ else ()
|
||||
set (INSTALL_CMAKE_DIR "cmake")
|
||||
set (PROJECT_ROOT_DIR "..")
|
||||
endif ()
|
||||
+else()
|
||||
+ set (INSTALL_CMAKE_DIR "share/${PROJECT_NAME}")
|
||||
+ set (PROJECT_ROOT_DIR "../..")
|
||||
+endif()
|
||||
|
||||
configure_file (project-config.cmake.in project-config.cmake @ONLY)
|
||||
configure_file (project-config-version.cmake.in
|
||||
45
externals/vcpkg/ports/libgeotiff/portfile.cmake
vendored
Executable file
45
externals/vcpkg/ports/libgeotiff/portfile.cmake
vendored
Executable file
@@ -0,0 +1,45 @@
|
||||
vcpkg_from_github(
|
||||
OUT_SOURCE_PATH SOURCE_PATH
|
||||
REPO OSGeo/libgeotiff
|
||||
REF 1.7.1
|
||||
SHA512 3c71a19f02a46a86d546777e2afe6bd715098779845967a5253ca949e0cacc0117c697cabd099611247e85e15cf1813733ae0ef445b136d7001f34667a4c8dd6
|
||||
HEAD_REF master
|
||||
PATCHES
|
||||
cmakelists.patch
|
||||
skip-doc-install.patch
|
||||
)
|
||||
|
||||
vcpkg_check_features(OUT_FEATURE_OPTIONS FEATURE_OPTIONS
|
||||
FEATURES
|
||||
tools WITH_JPEG
|
||||
tools WITH_UTILITIES
|
||||
)
|
||||
|
||||
vcpkg_cmake_configure(
|
||||
SOURCE_PATH "${SOURCE_PATH}/libgeotiff"
|
||||
OPTIONS
|
||||
-DGEOTIFF_BIN_SUBDIR=bin
|
||||
-DWITH_TIFF=1
|
||||
-DHAVE_TIFFOPEN=1
|
||||
-DHAVE_TIFFMERGEFIELDINFO=1
|
||||
-DCMAKE_MACOSX_BUNDLE=0
|
||||
${FEATURE_OPTIONS}
|
||||
)
|
||||
|
||||
vcpkg_cmake_install()
|
||||
|
||||
if(WITH_UTILITIES)
|
||||
vcpkg_copy_tools(TOOL_NAMES applygeo geotifcp listgeo makegeo AUTO_CLEAN)
|
||||
endif()
|
||||
|
||||
vcpkg_copy_pdbs()
|
||||
vcpkg_cmake_config_fixup(PACKAGE_NAME GeoTIFF)
|
||||
|
||||
if(VCPKG_LIBRARY_LINKAGE STREQUAL "static")
|
||||
vcpkg_replace_string("${CURRENT_PACKAGES_DIR}/share/GeoTIFF/geotiff-config.cmake" "if (GeoTIFF_USE_STATIC_LIBS)" "if (1)")
|
||||
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/bin" "${CURRENT_PACKAGES_DIR}/bin")
|
||||
endif()
|
||||
|
||||
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include" "${CURRENT_PACKAGES_DIR}/debug/share")
|
||||
|
||||
file(INSTALL "${SOURCE_PATH}/libgeotiff/LICENSE" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright)
|
||||
20
externals/vcpkg/ports/libgeotiff/skip-doc-install.patch
vendored
Executable file
20
externals/vcpkg/ports/libgeotiff/skip-doc-install.patch
vendored
Executable file
@@ -0,0 +1,20 @@
|
||||
diff --git a/libgeotiff/CMakeLists.txt b/libgeotiff/CMakeLists.txt
|
||||
index 54779a5..30ff29f 100644
|
||||
--- a/libgeotiff/CMakeLists.txt
|
||||
+++ b/libgeotiff/CMakeLists.txt
|
||||
@@ -262,6 +262,7 @@ SET(GEOTIFF_BIN_DIR ${GEOTIFF_BIN_SUBDIR})
|
||||
SET(GEOTIFF_LIB_DIR ${GEOTIFF_LIB_SUBDIR})
|
||||
SET(GEOTIFF_INCLUDE_DIR ${GEOTIFF_INCLUDE_SUBDIR})
|
||||
|
||||
+if(0)
|
||||
# Install doc files
|
||||
INSTALL(FILES
|
||||
AUTHORS ChangeLog COPYING INSTALL LICENSE README README_BIN README.WIN
|
||||
@@ -269,6 +270,7 @@ INSTALL(FILES
|
||||
|
||||
# Install man pages
|
||||
INSTALL(FILES ${GEOTIFF_MAN_PAGES} DESTINATION share/man/man1)
|
||||
+endif()
|
||||
|
||||
|
||||
# Install header files for development distribution
|
||||
5
externals/vcpkg/ports/libgeotiff/usage
vendored
Executable file
5
externals/vcpkg/ports/libgeotiff/usage
vendored
Executable file
@@ -0,0 +1,5 @@
|
||||
The package libgeotiff provides a CMake config file:
|
||||
|
||||
find_package(GeoTIFF CONFIG REQUIRED)
|
||||
target_include_directories(main PRIVATE ${GEOTIFF_INCLUDE_DIR})
|
||||
target_link_libraries(main PRIVATE ${GEOTIFF_LIBRARIES})
|
||||
30
externals/vcpkg/ports/libgeotiff/vcpkg.json
vendored
Executable file
30
externals/vcpkg/ports/libgeotiff/vcpkg.json
vendored
Executable file
@@ -0,0 +1,30 @@
|
||||
{
|
||||
"name": "libgeotiff",
|
||||
"version": "1.7.1",
|
||||
"description": "Libgeotiff is an open source library on top of libtiff for reading and writing GeoTIFF information tags.",
|
||||
"homepage": "https://github.com/OSGeo/libgeotiff",
|
||||
"license": "MIT",
|
||||
"dependencies": [
|
||||
"proj",
|
||||
{
|
||||
"name": "tiff",
|
||||
"default-features": false
|
||||
},
|
||||
{
|
||||
"name": "vcpkg-cmake",
|
||||
"host": true
|
||||
},
|
||||
{
|
||||
"name": "vcpkg-cmake-config",
|
||||
"host": true
|
||||
}
|
||||
],
|
||||
"features": {
|
||||
"tools": {
|
||||
"description": "Install libgeotiff utility programs",
|
||||
"dependencies": [
|
||||
"libjpeg-turbo"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user