Commit Graph

32 Commits

Author SHA1 Message Date
Alexander Neumann
0413c73fd7 [CURL] Remove unnecessary renaming. (#6386)
* removed unnecessary renaming.

CMake updated its module file for FindCURL. so the renaming is not required anymore.

* bump control

* fix curl in static builds

* fix gdal regression

* fix typo

* fixed alignment

* fix libideviceactivation regression

* fix idevicerestore regression
2019-05-13 08:57:55 -07:00
JackBoosY
14bfca23c5 [gdal]Add Linux/Unix support. (#6335) 2019-05-10 13:07:14 -07:00
Daniele Lupo
e2f45664c9 [gdal] fixed compilation issue with std::fabs (#6336) 2019-05-09 15:00:16 -07:00
Jackie Ng
d70c4e356c [gdal] Fix linker error with static libpng (#6305)
* When linking gdal with static libpng, it fails because the libpng vcpkg port has references to zlib symbols that aren't present in the internal copy of zlib that gdal builds/links against.

To fix this, have the gdal port pull in a vcpkg zlib port as another dependency and have it build/link against that instead.

* [gdal]: Bump portfile version as master is already at 2.4.1-2
2019-05-06 10:44:27 -07:00
Jeremy
4c7f464233 [gdal] Add libspatialite build-dependency (#6251)
* add libspatialite for gdal

* add libspatialite

* Bump version

* Add libspatialite as feature

* Do not use gen expressions as nmake does not support
2019-05-04 18:35:25 -07:00
Victor Romero
050e71d01d
Remove references to CMAKE_WINDOWS_EXPORT_ALL_SYMBOLS (#5937)
* [various ports] remove references to CMAKE_WINDOWS_EXPORT_ALL_SYMBOLS

* [alac,benchmark,capnproto] Fix  check_linkage call

* [fastlz] Fix SHA512

* [coroutine] Fix dynamic build

* [folly] Find double-conversion

* [gamma] Use vcpkg_from_github

* [librsync] Enable static builds

* [netcdf-cxx4] Fix SHA512

* [octomap] Fix static build

* [tidy-html5] Fix static build

* [various ports] remove custom messages for shared/static builds, modernize some scripts in the meantime

* [folly] Use ras0219's fix for link paths

* [octomap] Fix exported targets

* [uvatlas] Set tool download SHA512

* [duktape+python2] fix portfile to call configure with correct python version, manage python2 also outside win32

* [suitesparse] osx fix

* [gtkmm] Call vcpkg_check_linkage after including vcpkg functions

* [duktape] Resolve conflicts

* [duktape] FIxed typo in Python paths

* [wangle] Find zlib

* [openssl-uwp] Fix SHA512

* [glib] Allow static builds on non-Windows

* [suitesparse] Fix build on Windows

* [multiple ports] Bump CONTROL version

* [multiple ports] Fix description indent

* [directxtk] Fix CONTROL file

* [bde,duktape,qpid-proton] Build packages with python2 installed

* [binn] remove CMAKE_WINDOWS_EXPORT_ALL_SYMBOLS

* [gdal,live555,uriparser] Fix regressions

* [live555] Update to 2019.04.24
2019-05-02 22:57:43 -07:00
wangli28
8ad2ae0d34 [gdal/pmdk]Update to new version (#6173) 2019-04-23 13:15:23 -07:00
Victor Romero
03981bb560
[gdal] Apply conditional patching (#5940) 2019-04-05 01:38:24 -07:00
Asozial
4590b6a2ff gdal: fixed typo (#5904)
* gdal: fixed typo

* Update CONTROL file
2019-04-02 10:44:46 -07:00
JuttaAnders
6f0923ae93 Fix for shared build broken due to #5839 (#5882) 2019-03-31 09:32:29 -07:00
JuttaAnders
c88974a223 [gdal] fix for building static library (#5839) 2019-03-27 11:47:15 -07:00
shelltdf
99ec372755 install gdal tools (#5644) 2019-03-12 15:58:40 -07:00
hlysunnaram
a26c95b0e3 [gdal] update to 2.4.0 (#5195)
* [gdal] update to 2.4.0 (#5132)

* [gdal] update CONTROL file (#5132)
2019-01-25 18:34:31 -08:00
Robert Schumacher
ff659ef957 [gdal] Fix build failure in finding license file 2018-10-25 10:28:09 -07:00
hlysunnaram
38c741f390 [gdal] update port to 2.3.2 and mysql support as port feature (#4413)
* [gdal] update port from 2.3.0 to 2.3.2

* [libmariadb] fix build failure when VCPKG_BUILD_TYPE is set

* [gdal] remove libmysql dependency from port core to allow x86 build

* create new port features: mysql-libmysql and mysql-libmariadb
* add mysql-libmysql as default feature: to build on x86, install gdal[core] or gdal[core,mysql-libmariadb] if mysql support is needed
2018-10-12 15:12:15 -07:00
hlysunnaram
008c5d8668 Handle VCPKG_BUILD_TYPE (#4287)
* [curl] fix build failure when VCPKG_BUILD_TYPE is set

* [libmysql] fix build failure when VCPKG_BUILD_TYPE is set

* [openssl-windows] use VCPKG_BUILD_TYPE to build release or debug only

* [icu] use VCPKG_BUILD_TYPE to build release or debug only

* [gdal] use VCPKG_BUILD_TYPE to build release or debug only

* bump versions of curl, gdal, icu, libmysql and openssl-windows
2018-10-03 23:09:42 -07:00
Mateusz Loskot
0aad7df944 [GDAL] Update to 2.3.0 (#3478)
Update portfile.cmake for easier version/checksum maintenance.
Update and rename 0001 patch fixing debug build.
Update no-my-bool.patch following source file changes.
Remove no patches which are no longer required due to corresponding
changes in the GDAL source code.

Supports PROJ 4.9.x and 5.x - the latter not in vcpkg ports.
2018-05-17 23:46:04 -07:00
Mateusz Loskot
793019b9cd [GEOS] Generate debug library names with d suffix (#3371)
* [GEOS] Generate debug library names with `d` suffix

Currently geos.lib name is used for both, debug and optimised
GEOS libraries. This leads to situation when:
```
find_library(GEOS_LIBRARY_DEBUG NAMES geos)
find_library(GEOS_LIBRARY_RELEASE NAMES geos)
```

finds the same library for both
```
GEOS_LIBRARY_DEBUG=D:/vcpkg/installed/x64-windows/debug/lib/geos.lib
GEOS_LIBRARY_RELEASE=D:/vcpkg/installed/x64-windows/debug/lib/geos.lib
```

This is minimal patch that works around the problem.

Next, complete fix should be submitted to GEOS upstream,
preferably using exported targets.

* [libspatialite] Add missing geos suffixes in static builds
2018-05-01 01:14:18 -07:00
Robert Schumacher
d9abd619fa [gdal] Fix regression due to libmysql upgrade 2018-03-18 04:17:26 -07:00
Robert Schumacher
e033dcd649 [gdal] Add early checks for incompatible target settings 2018-02-27 10:14:30 -08:00
Mateusz Loskot
6df1629d4d [gdal] Update port to latest GDAL 2.2.2
* Bump GDAL version wherever necessary
* Update download package and checksum.
* Remove 0001-Add-support-for-MSVC1900-backported-from-GDAL2.patch
  no longer necessary.
* Recalculate 000N prefix in patche filenames after the removal.
* Update 0002-Ensures-inclusion-of-PDB-in-release-dll-if-so-reques.patch
  * Patch pushed upstream https://trac.osgeo.org/gdal/ticket/7055
    and should no longer be necessary in GDAL 2.2.3 or later
* Update 0003-Fix-openjpeg-include.patch
2017-09-26 19:13:28 +02:00
Albert Ziegenhagel
f2482d3af9 [gdal] fix linking to curl libraries 2017-08-16 16:32:33 +02:00
codicodi
7c4aa34216 [gdal] fix build with updated openjpeg 2017-08-11 16:50:07 +02:00
Jackie Ng
65fff24ff5 [gdal] Add dependencies for openjpeg, libwebp, libxml2 and liblzma
This enables support for 2 additional raster data formats and enables extra capabilities on certain format drivers
2017-04-29 14:38:35 +10:00
Jackie Ng
83686b514c [gdal]: Build with support for sqlite3, curl, expat, libpq and libmysql sibling ports. This activates GDAL support for 14 additional vector data formats and 6 additonal raster data formats 2017-04-29 00:54:01 +10:00
Jackie Ng
0701a70027 Light up GEOS support in GDAL 2017-04-24 05:05:05 +10:00
Manuel Massing
23ac6d0c19 [gdal] Link against external libpng 2017-01-25 08:59:40 +01:00
Robert Schumacher
55605c73e0 [gdal] Use CURRENT_INSTALLED_DIR instead of calculating it out. Use VCPKG_TARGET_ARCHITECTURE instead of parsing the triplet. 2016-12-06 00:57:58 -08:00
Manuel Massing
05f9b3a164 [gdal] Rename dynamic gdal libraries to match static library naming, add "d" suffix for debug libraries 2016-11-30 10:38:56 +01:00
Manuel Massing
e3001c78b9 [gdal] Enable building of PDBs in release builds as well, copy PDBs over 2016-11-30 10:38:56 +01:00
Manuel Massing
e7f0cf8694 [gdal] Separate build directories for dynamic and static build 2016-11-30 10:38:56 +01:00
Manuel Massing
167f82b804 [ports] Initial commit of GDAL 1.11.3 port 2016-11-28 22:01:06 +01:00