summaryrefslogtreecommitdiff
path: root/geography/gdal-lib/patches
diff options
context:
space:
mode:
authorgdt <gdt>2007-02-23 22:22:38 +0000
committergdt <gdt>2007-02-23 22:22:38 +0000
commit09fcce04c3f32ba4e24bdb7326d0b7dad495df7b (patch)
treeaa465cdddf9ba68aa7dd31c72dda5b954870ad7e /geography/gdal-lib/patches
parente973c91939e5e07931559a00bdf6d0f9ce8f9f85 (diff)
downloadpkgsrc-09fcce04c3f32ba4e24bdb7326d0b7dad495df7b.tar.gz
Update to 1.4.0, supplied by Brook Milligan in PR 35752.
The package now has a mysql option in addition to the default pgsql. GDAL/OGR 1.4.0 - General Changes -------------------------------- Perl Bindings: - Added doxygen based documentation. NG Python Bindings: - Implemented numpy support. CSharp Bindings: - Now mostly operational. WinCE Porting: - CPL - base OGR, OSR and mitab and shape drivers. - GDAL, including GeoTIFF, DTED, AAIGrid drivers - Added test suite (gdalautotest/cpp) Mac OSX Port: - Added framework support (--with-macosx-framework) GDAL 1.4.0 - Overview Of Changes -------------------------------- WCS Driver: - New PDS (Planetary Data Set) Driver: - New ISIS (Mars Qubes) Driver: - New HFA (.img) Driver: - Support reading ProjectionX PE strings. - Support producing .aux files with statistics. - Fix serious bugs with u1, u2 and u4 compressed data. NITF Driver: - Added BLOCKA reading support. - Added ICORDS='D' - Added jpeg compression support (readonly) - Support multiple images as subdatasets. - Support CGM data (as metadata) AIGrid Driver: - Use VSI*L API (large files, in memory, etc) - Support upper case filenames. - Support .clr file above coverage. HDF4 Driver: - Added support for access to geolocation arrays (see RFC 4). - External raw raster bands supported. PCIDSK (.pix) Driver: - Support METER/FEET as LOCAL_CS. - Fix serious byte swapping error on creation. BMP Driver: - Various fixes, including 16bit combinations, and non-intel byte swapping. GeoTIFF Driver: - Fixed in place update for LZW and Deflated compressed images. JP2KAK (JPEG2000) Driver: - Added support for reading and writing gmljp2 headers. - Read xml boxes as metadata. - Accelerate YCbCr handling. JP2MrSID (JPEG2000) Driver: - Added support for reading gmljp2 headers. EHDR (ESRI BIL) Driver: - Support 1-7 bit data. - Added statistics support. OGR 1.4.0 - Overview of Changes ------------------------------- OGR SQL: - RFC 6: Added support for SQL/attribute filter access to geometry, and style strings. OGRSpatialReference: - Support for OGC SRS URNs. - Support for +wktext/EXTENSION stuff for preserving PROJ.4 string in WKT. - Added Two Point Equidistant projection. - Added Krovak projection. - Updated support files to EPSG 6.11. OGRCoordinateTransformation: - Support source and destination longitude wrapping control. OGRFeatureStyle: - Various extensions and improvements. INFORMIX Driver: - New KML Driver: - New (write only) E00 Driver: - New (read only) - Polygon (PAL) likely not working properly. Postgres/PostGIS Driver: - Updated to support new EWKB results (PostGIS 1.1?) - Fixed serious bug with writing SRSes. - Added schema support. GML Driver: - Strip namespaces off field names. - Handle very large geometries gracefully. ODBC Driver: - Added support for spatial_ref_sys table. SDE Driver: - Added logic to speed things up while actually detecting layer geometry types PGeo Driver: - Added support for MDB Tools ODBC driver on linux/unix. VRT Driver: - Added useSpatialSubquery support.
Diffstat (limited to 'geography/gdal-lib/patches')
-rw-r--r--geography/gdal-lib/patches/patch-aa27
-rw-r--r--geography/gdal-lib/patches/patch-ab13
-rw-r--r--geography/gdal-lib/patches/patch-ac13
-rw-r--r--geography/gdal-lib/patches/patch-ad22
4 files changed, 17 insertions, 58 deletions
diff --git a/geography/gdal-lib/patches/patch-aa b/geography/gdal-lib/patches/patch-aa
index f891b48f9d2..3b847d6e54e 100644
--- a/geography/gdal-lib/patches/patch-aa
+++ b/geography/gdal-lib/patches/patch-aa
@@ -1,13 +1,20 @@
-$NetBSD: patch-aa,v 1.1.1.1 2006/05/02 20:36:33 wiz Exp $
+$NetBSD: patch-aa,v 1.2 2007/02/23 22:22:38 gdt Exp $
---- GDALmake.opt.in.orig 2005-12-30 22:14:55.000000000 +0000
-+++ GDALmake.opt.in
-@@ -34,7 +34,7 @@ C_DBGFLAGS = -g -DDEBUG
- CXX_PROFFLAGS = -g3 -pg -DDEBUG
- C_PROFFLAGS = -g3 -pg -DDEBUG
+--- configure.orig 2007-02-16 08:57:36.000000000 -0700
++++ configure
+@@ -28245,13 +28245,13 @@ fi
--LIBS = @LIBS@
-+LIBS = @LIBS@ -lcompat
+ echo "$as_me:$LINENO: checking for special pymod link hacks" >&5
+ echo $ECHO_N "checking for special pymod link hacks... $ECHO_C" >&6
+-if test ! -z "`uname | grep Darwin`" -a ${with_libtool} == no ; then
++if test ! -z "`uname | grep Darwin`" -a ${with_libtool} = no ; then
+ echo "$as_me:$LINENO: result: darwin-nonlibtool" >&5
+ echo "${ECHO_T}darwin-nonlibtool" >&6
+
+ PY_LD_SHARED='g++ -bundle -framework Python'
+ PY_SO_EXT='so'
+-elif test ! -z "`uname | grep Darwin`" -a ${with_libtool} == yes ; then
++elif test ! -z "`uname | grep Darwin`" -a ${with_libtool} = yes ; then
+ echo "$as_me:$LINENO: result: darwin-libtool" >&5
+ echo "${ECHO_T}darwin-libtool" >&6
- PYTHON_INCLUDES = @PYTHON_INCLUDES@
- PYTHON_LIBS = @PYTHON_LIBS@
diff --git a/geography/gdal-lib/patches/patch-ab b/geography/gdal-lib/patches/patch-ab
deleted file mode 100644
index d9b8ead49c9..00000000000
--- a/geography/gdal-lib/patches/patch-ab
+++ /dev/null
@@ -1,13 +0,0 @@
-$NetBSD: patch-ab,v 1.1.1.1 2006/05/02 20:36:33 wiz Exp $
-
---- ogr/GNUmakefile.orig 2005-12-30 22:09:11.000000000 +0000
-+++ ogr/GNUmakefile
-@@ -16,7 +16,7 @@ CPPFLAGS := -Iogrsf_frmts -I. $(GDAL_INC
-
- default: lib apps
-
--all: sublibs apps test_ogrsf$(EXE) docs
-+all: sublibs apps test_ogrsf$(EXE)
-
- ifeq ($(OGR_ENABLED),yes)
-
diff --git a/geography/gdal-lib/patches/patch-ac b/geography/gdal-lib/patches/patch-ac
deleted file mode 100644
index 2bb878a676b..00000000000
--- a/geography/gdal-lib/patches/patch-ac
+++ /dev/null
@@ -1,13 +0,0 @@
-$NetBSD: patch-ac,v 1.1 2006/08/27 18:28:37 kristerw Exp $
-
---- frmts/fit/fitdataset.cpp.orig 2006-08-27 19:45:01.000000000 +0200
-+++ frmts/fit/fitdataset.cpp 2006-08-27 19:45:36.000000000 +0200
-@@ -174,7 +174,7 @@ class FITRasterBand : public GDALPamRast
-
- public:
-
-- FITRasterBand::FITRasterBand( FITDataset *, int );
-+ FITRasterBand( FITDataset *, int );
- ~FITRasterBand();
-
- // should override RasterIO eventually.
diff --git a/geography/gdal-lib/patches/patch-ad b/geography/gdal-lib/patches/patch-ad
deleted file mode 100644
index 290055ac513..00000000000
--- a/geography/gdal-lib/patches/patch-ad
+++ /dev/null
@@ -1,22 +0,0 @@
-$NetBSD: patch-ad,v 1.1 2006/10/22 20:37:01 rillig Exp $
-
---- mkbindist.sh.orig 2003-07-02 08:38:27.000000000 +0200
-+++ mkbindist.sh 2006-10-22 22:36:02.000000000 +0200
-@@ -7,7 +7,7 @@ if [ $# -lt 2 ] ; then
- exit
- fi
-
--if [ $1 == "-dev" ] ; then
-+if [ "x$1" == "x-dev" ] ; then
- STRIP_DEV=0
- shift
- else
-@@ -59,7 +59,7 @@ cc -o $DIST_DIR/bin/burnpath dist_docs/b
- #
- # Clean anything we don't want for non-developer releases.
- #
--if [ "$STRIP_DEV" == "1" ] ; then
-+if [ "$STRIP_DEV" = "1" ] ; then
- rm -f $DIST_DIR/html/class_*
- rm -f $DIST_DIR/html/struct_*
- rm -f $DIST_DIR/html/*-source.html