vcpkg/ports/gdal/vcpkg.json

203 lines
4.3 KiB
JSON
Raw Normal View History

{
"name": "gdal",
"version-semver": "3.5.1",
Audit use of TO_NATIVE_PATH. (#26201) * Audit use of TO_NATIVE_PATH. TO_NATIVE_PATH should only be used when (1) pasting a path into a command line, or (2) displaying a path to a user. It must not be used before calling other CMake operations like file(WRITE. Fixes https://github.com/microsoft/vcpkg/issues/26178 ports/ffmpeg/portfile.cmake: Both uses are being embedded into a command line ✅ ports/gdal/dependency_win.cmake 117: This used TO_NATIVE_PATH but didn't actually connect the result. It's going on a command line so TO_NATIVE_PATH is appropriate. Drive by: Added quotes around other uses (all of which seem to be going to command lines). 202: ${EXPAT_LIBRARY_REL} ${ZLIB_LIBRARY_REL} don't seem to be set even though they are used; I think this is wrong but I don't know for sure that it is so I'm leaving it alone for now. ports/msmpi/portfile.cmake All 3 uses are being embedded into a command line ✅ ports/jemalloc/fix-utilities.patch ports/libproxy/fix-dependency-libmodman.patch ports/qtbase/env.patch These are in upstream content / context so it is not edited. ports/opengl/portfile.cmake Broken! Drive by fixes: * Modernized checking VCPKG_BUILD_TYPE * Ordered things consistently to be release then debug. * Removed funny newlines. ports/openni2/portfile.cmake Borderline OK; it goes into an MSBuild / vcxproj. I'm leaving it alone. Drive by fixes: * Guarded debug-only copies for VCPKG_BUILD_TYPE * Fixed supports expression ports/openssl/unix/CMakeLists.txt: Unused! ports/pthreads/portfile.cmake: Both uses are being embedded into a command line ✅ ports/qt5-base/cmake/qt_fix_makefile_install.cmake I'm not sure if this one is OK but it's being embedded into a file so it's probably fine. ports/qtapplicationmanager/portfile.cmake: I'm pretty sure this one is wrong, but it's guarded by VCPKG_TARGET_IS_WINDOWS so the ability to create damage is limited. ports/readosm/portfile.cmake: The use is being embedded into a command line ✅ ports/spatialite-tools/portfile.cmake: The use is being embedded into a command line ✅ ports/sqlcipher/portfile.cmake: Both uses are being embedded into a command line ✅ scripts/ports.cmake: Some uses were unused, others are immediately used and printed to the console. ✅ scripts/buildsystems/vcpkg.cmake: Fixed :) scripts/cmake/vcpkg_build_qmake: Looks unused. scripts/cmake/vcpkg_build_process.cmake: Added to console message only. ✅ scripts/cmake/vcpkg_execute_required_process_repeat.cmake: Added to console message only. ✅ Drive by: Fixed typo in variable name in the message. scripts/cmake/vcpkg_execute_required_process.cmake: Added to console message only. ✅ * Fix missing license.
2022-08-13 06:21:20 +08:00
"port-version": 5,
"description": "The Geographic Data Abstraction Library for reading and writing geospatial raster and vector data",
"homepage": "https://gdal.org",
"license": null,
"supports": "!uwp",
"dependencies": [
"json-c",
"libgeotiff",
{
"name": "pkgconf",
"host": true
},
"proj",
"tiff",
{
"name": "vcpkg-cmake",
"host": true
},
{
"name": "vcpkg-cmake-config",
"host": true
},
{
"name": "vcpkg-pkgconfig-get-modules",
"host": true
},
"zlib"
],
"default-features": [
"default-features"
],
"features": {
"aws-ec2-windows": {
"description": "Optimized detection of AWS EC2 Windows hosts",
"dependencies": [
"atlmfc"
]
},
"cfitsio": {
"description": "Enable cfitsio support",
"dependencies": [
"cfitsio"
]
},
"curl": {
"description": "Enable CURL network support",
"dependencies": [
{
"name": "curl",
"default-features": false
}
]
},
"default-features": {
"description": "Default set of features, including recommended features",
"dependencies": [
"expat",
{
"name": "gdal",
"default-features": false,
"features": [
"curl",
"geos",
"libspatialite",
"recommended-features"
]
},
{
"name": "gdal",
"default-features": false,
"features": [
"postgresql"
],
"platform": "!uwp"
},
{
"name": "gdal",
"default-features": false,
"features": [
"hdf5",
"netcdf"
],
"platform": "!uwp & !(windows & arm64) & !android"
},
"giflib",
"libiconv",
"libjpeg-turbo",
"liblzma",
"libpng",
"libwebp",
"libxml2",
"openjpeg",
"openssl",
"pcre2",
"qhull",
"zstd"
]
},
"freexl": {
"description": "Enable FREEXL support",
"dependencies": [
"freexl"
]
},
"geos": {
"description": "Enable GEOS support",
"dependencies": [
"geos"
]
},
"hdf5": {
"description": "Enable HDF5 support",
"dependencies": [
{
"name": "hdf5",
"default-features": false,
"features": [
"cpp"
]
}
]
},
"lerc": {
"description": "Enable LERC support",
"dependencies": [
"lerc"
]
},
"libspatialite": {
"description": "Create or update SpatiaLite databases using libspatialite",
"dependencies": [
"libspatialite"
]
},
"mysql-libmariadb": {
"description": "Add mysql support using libmariadb",
"dependencies": [
"libmariadb"
]
},
"netcdf": {
"description": "Enable NetCDF support",
"dependencies": [
{
"name": "netcdf-c",
"default-features": false
}
]
},
"poppler": {
"description": "Enable PDF reading support via poppler",
"dependencies": [
{
"name": "poppler",
"default-features": false,
"features": [
"private-api"
]
}
]
},
"postgresql": {
"description": "Enable PostgreSQL support",
"dependencies": [
"libpq"
]
},
"recommended-features": {
"description": "Features that are explicity marked as recommended by GDAL.",
"dependencies": [
"expat",
{
"name": "sqlite3",
"features": [
"rtree"
]
}
]
},
"supported-default-features": {
"description": "This feature is an alias for default-features. It is retained for compatibility.",
"dependencies": [
{
"name": "gdal",
"features": [
"default-features"
]
}
]
},
"system-libraries": {
"$supports": "!windows",
"description": "This feature does nothing. It is retained for compatibility."
},
"tools": {
"description": "Builds gdal and ogr executables"
}
}
}