summaryrefslogtreecommitdiff
path: root/geography/gdal-lib
diff options
context:
space:
mode:
authoradam <adam>2010-08-27 11:14:23 +0000
committeradam <adam>2010-08-27 11:14:23 +0000
commit7c9b2f33ad919c192bb5a871ee5720ee0c5aec92 (patch)
treed94888953d766b00a7fb0777241ebf8052a3eca5 /geography/gdal-lib
parent74cce1d18cac6ec1150e8aad7d5f3c8831ef127c (diff)
downloadpkgsrc-7c9b2f33ad919c192bb5a871ee5720ee0c5aec92.tar.gz
Changes 1.7.2:
* configure/libtool/etc regenerated with newer versions. * Fix definition of CPL atomic function with CPL_INLINE undefined * Clean out remnants of old generation python support in configure * Fix build problems on systems with 64bit pointer and 32bit long * C#: Fixed ambiguous reference to SpatialReference in C# sample apps * C#: Fix crash on memory release of string from ExportToWkt() * Java: Handle transparency better in color tables * Python 2.x/3.0 compatability fixes for scripts * Python fixes for numpy array io * stateplane.csv updated for Kentuky and California fixes
Diffstat (limited to 'geography/gdal-lib')
-rw-r--r--geography/gdal-lib/Makefile10
-rw-r--r--geography/gdal-lib/distinfo8
-rw-r--r--geography/gdal-lib/options.mk11
3 files changed, 18 insertions, 11 deletions
diff --git a/geography/gdal-lib/Makefile b/geography/gdal-lib/Makefile
index daf4b0c4a54..1ddb82e89a7 100644
--- a/geography/gdal-lib/Makefile
+++ b/geography/gdal-lib/Makefile
@@ -1,18 +1,18 @@
-# $NetBSD: Makefile,v 1.29 2010/07/30 11:03:27 asau Exp $
+# $NetBSD: Makefile,v 1.30 2010/08/27 11:14:23 adam Exp $
-DISTNAME= gdal-1.7.1
-PKGNAME= gdal-lib-1.7.1
-PKGREVISION= 1
+DISTNAME= gdal-1.7.2
+PKGNAME= gdal-lib-1.7.2
CATEGORIES= geography
MASTER_SITES= http://download.osgeo.org/gdal/
MAINTAINER= brook@nmsu.edu
HOMEPAGE= http://www.gdal.org/
COMMENT= Translator library for raster geospatial data formats
+LICENSE= mit
PKG_DESTDIR_SUPPORT= user-destdir
-USE_LANGUAGES= c c++ fortran77
+USE_LANGUAGES= c c++ fortran
USE_LIBTOOL= yes
USE_PKGLOCALEDIR= yes
USE_TOOLS+= gmake
diff --git a/geography/gdal-lib/distinfo b/geography/gdal-lib/distinfo
index 95b5e50731b..319343726f4 100644
--- a/geography/gdal-lib/distinfo
+++ b/geography/gdal-lib/distinfo
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.8 2010/03/10 11:45:26 adam Exp $
+$NetBSD: distinfo,v 1.9 2010/08/27 11:14:23 adam Exp $
-SHA1 (gdal-1.7.1.tar.gz) = 1ff42b51f416da966ee25c42631a3faa3cca5d4d
-RMD160 (gdal-1.7.1.tar.gz) = 337502e12e0eb4b5ff5fad806545752e677a4ab8
-Size (gdal-1.7.1.tar.gz) = 7709157 bytes
+SHA1 (gdal-1.7.2.tar.gz) = a03127530708e3924aec7b505cc2ca4f8153f13c
+RMD160 (gdal-1.7.2.tar.gz) = a3f7950798448d8179f899dc095a83e23dcc269b
+Size (gdal-1.7.2.tar.gz) = 7755378 bytes
SHA1 (patch-aa) = 2c017bda45d4ed4fb10f7e70d33b707ca33149d1
diff --git a/geography/gdal-lib/options.mk b/geography/gdal-lib/options.mk
index 4ab2e30bf47..091ddda8ee2 100644
--- a/geography/gdal-lib/options.mk
+++ b/geography/gdal-lib/options.mk
@@ -1,7 +1,7 @@
-# $NetBSD: options.mk,v 1.1 2010/01/18 09:36:09 adam Exp $
+# $NetBSD: options.mk,v 1.2 2010/08/27 11:14:23 adam Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.gdal-lib
-PKG_SUPPORTED_OPTIONS= pgsql mysql
+PKG_SUPPORTED_OPTIONS= pgsql mysql sqlite
PKG_SUGGESTED_OPTIONS= pgsql
.include "../../mk/bsd.options.mk"
@@ -19,3 +19,10 @@ CONFIGURE_ARGS+= --with-mysql
.else
CONFIGURE_ARGS+= --without-mysql
.endif
+
+.if !empty(PKG_OPTIONS:Msqlite)
+. include "../../databases/sqlite3/buildlink3.mk"
+CONFIGURE_ARGS+= --with-sqlite3=${BUILDLINK_PREFIX.sqlite3}
+.else
+CONFIGURE_ARGS+= --without-sqlite3
+.endif