has an additional grid shift file. Add a test target; regression tests now pass at least on NetBSD/i386 5.1_STABLE. 4.8.0 Release Notes ------------------- o Added the Natural Earth projection. o Added HEALPIX, rHEALPIX and Icosahedral Snyder Equal Area projections. o nad2bin now produces "CTable2" format grid shift files by default which are platform independent. o nad2nad removed, use cs2cs for datum shift operations. o projects.h no longer installed as a public include file. Please try to only use proj_api.h. o Add pj_get_spheroid_defn() accessor. o Added an alternate version of pj_init() that takes a projCtx (execution context) structure to address multithreading issues with error management and to provide a support for application hookable error reporting and logging. o Upgrade to EPSG 7.9. Some changes in ideal datum selection. o JNI bindings reworked, org.proj4.Projections deprecated in favor of org.proj4.PJ. o Added preliminary vertical datum support. o Fix various multithreading issues, particular in datum grid handling code. o Added support for the +axis= option for alternate axis orientations as part of a coordinate system (used for TM South Orientated support). o +proj=omerc implementatioin replaced with code from libproj4. +rot_conv flag no longer works, and some coordinate systems (ie. Malaysian) will need to use +gamma instead. "epsg" init file updated accordingly.
35 lines
930 B
Makefile
35 lines
930 B
Makefile
# $NetBSD: Makefile,v 1.2 2012/03/14 23:36:06 gdt Exp $
|
|
|
|
VERSION= 4.8.0
|
|
DISTNAME= proj-${VERSION}
|
|
CATEGORIES= geography
|
|
MASTER_SITES= http://download.osgeo.org/proj/
|
|
DISTFILES= ${DISTNAME}${EXTRACT_SUFX} proj-datumgrid-1.5${EXTRACT_SUFX}
|
|
|
|
MAINTAINER= gdt@NetBSD.org
|
|
HOMEPAGE= http://trac.osgeo.org/proj/
|
|
COMMENT= Cartographic projection software
|
|
|
|
LICENSE= mit
|
|
|
|
PREV_PKGPATH= misc/proj
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
USE_LIBTOOL= yes
|
|
USE_TOOLS+= gmake
|
|
GNU_CONFIGURE= yes
|
|
|
|
TEST_TARGET= check
|
|
|
|
# The last file is out of order to avoid reordering the whole list
|
|
# from datumgrid-1.4 to datumgrid-1.5
|
|
DATUMGRID_FILES= \
|
|
FL.lla MD.lla README.NADUS TN.lla WI.lla WO.lla alaska.lla \
|
|
conus.lla hawaii.lla ntv1_can.dat null.lla nzgd2kgrid0005.gsb \
|
|
prvi.lla stgeorge.lla stlrnc.lla stpaul.lla ntf_r93.gsb
|
|
|
|
post-extract:
|
|
cd ${WRKDIR} && ${LN} ${DATUMGRID_FILES} ${WRKDIR}/${PKGNAME}/nad
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|