diff options
Diffstat (limited to 'geography/gdal-lib/Makefile')
-rw-r--r-- | geography/gdal-lib/Makefile | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/geography/gdal-lib/Makefile b/geography/gdal-lib/Makefile new file mode 100644 index 00000000000..2e01fea8368 --- /dev/null +++ b/geography/gdal-lib/Makefile @@ -0,0 +1,43 @@ +# $NetBSD: Makefile,v 1.1.1.1 2006/05/02 20:36:33 wiz Exp $ +# + +DISTNAME= gdal-1.3.1 +PKGNAME= gdal-lib-1.3.1 +CATEGORIES= geography +MASTER_SITES= http://www.gdal.org/dl/ + +MAINTAINER= mchittur@cs.nmsu.edu +HOMEPAGE= http://gdal.org/ +COMMENT= Translator library for raster geospatial data formats + +USE_PKGLOCALEDIR= yes +USE_LIBTOOL= yes + +GNU_CONFIGURE= yes +USE_TOOLS+= gmake + +MAKEFILE= GNUmakefile + +PKG_OPTIONS_VAR= PKG_OPTIONS.gdal-lib +PKG_SUPPORTED_OPTIONS= pgsql +PKG_SUGGESTED_OPTIONS= pgsql + +.include "../../mk/bsd.options.mk" + +.if !empty(PKG_OPTIONS:Mpgsql) +. include "../../mk/pgsql.buildlink3.mk" +CONFIGURE_ARGS+= --with-pg +.else +CONFIGURE_ARGS+= --without-pg +.endif + +CONFIGURE_ARGS+= --with-xerces +CONFIGURE_ARGS+= --with-xerces-inc=${PREFIX:Q}/include +CONFIGURE_ARGS+= --with-xerces-lib=-L${PREFIX:Q}/lib\ -lxerces-c +CONFIGURE_ARGS+= --with-geos +CONFIGURE_ARGS+= --without-python + +.include "../../misc/proj/buildlink3.mk" +.include "../../geography/geos/buildlink3.mk" +.include "../../textproc/xerces-c/buildlink3.mk" +.include "../../mk/bsd.pkg.mk" |