pkgsrc/geography/py-gdal/Makefile

36 lines
1,015 B
Makefile
Raw Normal View History

# $NetBSD: Makefile,v 1.17 2020/01/18 21:49:33 jperkin Exp $
geography/gdal-lib: Update to 2.3.3 2.3.3: bug fixes and minor improvements 2.3.2: bug fixes and minor improvements 2.3.1: bug fixes and minor improvements = GDAL/OGR 2.3.0 Release Notes = Note: due to the change of SCM during the development, #XXXX still refers to Trac tickets. GitHub tickets are explicitly indicated with github #XXXX == In a nutshell... == * New GDAL drivers: - PDS4: read/write - RDA: DigitalGlobe Raster Data Access (read-only) * New OGR drivers: - MVT: add read/write driver for Mapbox Vector Tile standalone files or tilesets - ESRIJson and TopoJSON: read-only, splitted from existing code of the GeoJSON driver - WFS3: *experimental* read-only driver * RFC 68: Make C++11 a build requirement https://trac.osgeo.org/gdal/wiki/rfc68_cplusplus11 * RFC 70: Guess output format from extension of output filename, if no explicit format passed to C++ or Python utilities https://trac.osgeo.org/gdal/wiki/rfc70_output_format_guess * RFC 71: Move to GitHub for source code repository and issue tracker. https://trac.osgeo.org/gdal/wiki/rfc71_github_migration * Significantly improved drivers: - MBTiles (vector tiles support) - DXF - GRIB (GRIB2 write support) - WCS (support WCS 2.0) * Improvements in network-based /vsi handlers: /vsicurl, /vsis3, /vsigs. Add: - /vsiaz for Microsoft Azure Blobs - /vsioss for Alibaba Cloud Object Storage Service - /vsiswift/ for OpenStack Swift object storage * Command line utilities: use Unicode main on Windows to avoid issues with non-ASCII characters (#7065) * Update to EPSG v9.2 (#7125) * Update data/esri_extra.wkt and add data/esri_epsg.wkt, taken from https://github.com/Esri/projection-engine-db-doc (Apache v2 license) (#2163) * Add support for PROJ.5 new API (requires proj 5.0.1 or later). PROJ 4.X is still supported. * More than 1000 fixes for issues/vulnerabilities found by OSS-Fuzz * Remove raster OGDI driver (vector OGDI driver still there) (#7087) == New installed files == * data/pds4_template.xml * data/esri_epsg.wkt == Backward compatibility issues == See MIGRATION_GUIDE.TXT Note that changes are extensive; see NEWS in the distfile.
2019-03-09 02:54:59 +01:00
#PKGREVISION= 0
PKGREVISION= 2
.include "../../geography/gdal-lib/Makefile.common"
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
HOMEPAGE= http://www.gdal.org/
COMMENT= Translator library for raster geospatial data formats, Python binding
LICENSE= mit
BUILD_DIRS= swig/python
MAKE_FILE= GNUmakefile
REPLACE_PYTHON+= swig/python/scripts/*py
INSTALLATION_DIRS= bin
.include "../../mk/bsd.prefs.mk"
geography/gdal-lib: Update to 2.3.3 2.3.3: bug fixes and minor improvements 2.3.2: bug fixes and minor improvements 2.3.1: bug fixes and minor improvements = GDAL/OGR 2.3.0 Release Notes = Note: due to the change of SCM during the development, #XXXX still refers to Trac tickets. GitHub tickets are explicitly indicated with github #XXXX == In a nutshell... == * New GDAL drivers: - PDS4: read/write - RDA: DigitalGlobe Raster Data Access (read-only) * New OGR drivers: - MVT: add read/write driver for Mapbox Vector Tile standalone files or tilesets - ESRIJson and TopoJSON: read-only, splitted from existing code of the GeoJSON driver - WFS3: *experimental* read-only driver * RFC 68: Make C++11 a build requirement https://trac.osgeo.org/gdal/wiki/rfc68_cplusplus11 * RFC 70: Guess output format from extension of output filename, if no explicit format passed to C++ or Python utilities https://trac.osgeo.org/gdal/wiki/rfc70_output_format_guess * RFC 71: Move to GitHub for source code repository and issue tracker. https://trac.osgeo.org/gdal/wiki/rfc71_github_migration * Significantly improved drivers: - MBTiles (vector tiles support) - DXF - GRIB (GRIB2 write support) - WCS (support WCS 2.0) * Improvements in network-based /vsi handlers: /vsicurl, /vsis3, /vsigs. Add: - /vsiaz for Microsoft Azure Blobs - /vsioss for Alibaba Cloud Object Storage Service - /vsiswift/ for OpenStack Swift object storage * Command line utilities: use Unicode main on Windows to avoid issues with non-ASCII characters (#7065) * Update to EPSG v9.2 (#7125) * Update data/esri_extra.wkt and add data/esri_epsg.wkt, taken from https://github.com/Esri/projection-engine-db-doc (Apache v2 license) (#2163) * Add support for PROJ.5 new API (requires proj 5.0.1 or later). PROJ 4.X is still supported. * More than 1000 fixes for issues/vulnerabilities found by OSS-Fuzz * Remove raster OGDI driver (vector OGDI driver still there) (#7087) == New installed files == * data/pds4_template.xml * data/esri_epsg.wkt == Backward compatibility issues == See MIGRATION_GUIDE.TXT Note that changes are extensive; see NEWS in the distfile.
2019-03-09 02:54:59 +01:00
EGG_NAME?= GDAL-${VERSION}
EGG_INFODIR?= ${EGG_NAME}-py${PYVERSSUFFIX}.egg-info
PLIST_SUBST+= PYSITELIB=${PYSITELIB}
PLIST_SUBST+= EGG_NAME=${EGG_NAME}-py${PYVERSSUFFIX}
PLIST_SUBST+= EGG_INFODIR=${EGG_INFODIR}
PRINT_PLIST_AWK+= { gsub(/${EGG_NAME}-py${PYVERSSUFFIX}.egg-info/, \
"$${EGG_INFODIR}") }
.include "../../geography/gdal-lib/buildlink3.mk"
.include "../../lang/python/tool.mk"
.include "../../lang/python/application.mk"
.include "../../lang/python/extension.mk"
.include "../../math/py-numpy/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"