69d0da7b90
See NEWS for full changelog. Besides Bug fixes, notable changes are: o Function proj_errno_string() added to proj.h API (#847) o Validate units between pipeline steps and ensure transformation sanity (#906) o Print help when calling cct and gie without arguments (#907) o CITATION file added to source distribution (#914) o Webmercator operation added (#925) o Enhanced numerical precision of forward spherical Mercator near the Equator (#928) o Added --skip-lines option to cct (#923) o Consistently return NaN values on NaN input (#949) o Removed unused src/org_proj4_Projections.h file (#956) o Java Native Interface bindings updated (#957, #969) o Horizontal and vertical gridshift operations extended to the temporal domain (#1015)
37 lines
1,005 B
Makefile
37 lines
1,005 B
Makefile
# $NetBSD: Makefile,v 1.10 2018/06/01 23:41:31 gdt Exp $
|
|
|
|
VERSION_BASE= 5.1.0
|
|
VERSION_RC=
|
|
VERSION= ${VERSION_BASE}${VERSION_RC}
|
|
# proj RCs have names like 5.1.0RC1 but unpack to 5.1.0
|
|
WRKSRC= ${WRKDIR}/proj-${VERSION_BASE}
|
|
DISTNAME= proj-${VERSION}
|
|
CATEGORIES= geography
|
|
MASTER_SITES= https://download.osgeo.org/proj/
|
|
DISTFILES= ${DISTNAME}${EXTRACT_SUFX} proj-datumgrid-1.7${EXTRACT_SUFX}
|
|
|
|
MAINTAINER= gdt@NetBSD.org
|
|
HOMEPAGE= http://proj4.org/
|
|
COMMENT= Cartographic projection software
|
|
|
|
LICENSE= mit
|
|
|
|
PREV_PKGPATH= misc/proj
|
|
|
|
USE_LIBTOOL= yes
|
|
USE_TOOLS+= gmake
|
|
GNU_CONFIGURE= yes
|
|
|
|
TEST_TARGET= check
|
|
|
|
# \todo Ideally, the files would be unpacked directly in nad.
|
|
DATUMGRID_FILES= \
|
|
BETA2007.gsb FL MD README.DATUMGRID TN WI WO alaska conus \
|
|
egm96_15.gtx hawaii ntf_r93.gsb ntv1_can.dat null \
|
|
nzgd2kgrid0005.gsb prvi stgeorge stlrnc stpaul
|
|
|
|
post-extract:
|
|
cd ${WRKDIR} && ${LN} ${DATUMGRID_FILES} ${WRKSRC}/nad
|
|
|
|
.include "../../mk/pthread.buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|