diff -Nru gdal-1.10.1+dfsg/debian/changelog gdal-1.10.1+dfsg/debian/changelog --- gdal-1.10.1+dfsg/debian/changelog 2014-07-08 20:44:35.000000000 +0200 +++ gdal-1.10.1+dfsg/debian/changelog 2014-07-24 20:18:23.000000000 +0200 @@ -1,3 +1,10 @@ +gdal (1.10.1+dfsg-6.1) unstable; urgency=low + + * Non-maintainer upload. + * Support hdf5 1.8.13 new packaging layout. + + -- Gilles Filippini Thu, 24 Jul 2014 20:18:23 +0200 + gdal (1.10.1+dfsg-6) unstable; urgency=medium [ gregor herrmann ] diff -Nru gdal-1.10.1+dfsg/debian/rules gdal-1.10.1+dfsg/debian/rules --- gdal-1.10.1+dfsg/debian/rules 2014-07-08 20:40:44.000000000 +0200 +++ gdal-1.10.1+dfsg/debian/rules 2014-07-31 09:26:57.000000000 +0200 @@ -18,6 +18,12 @@ GDAL_MINOR=$(word 2,$(GDALVER)) GDAL_PATCH=$(word 3,$(GDALVER)) +ifneq ($(wildcard /usr/lib/$(DEB_HOST_MULTIARCH)/hdf5/serial/libhdf5.so),) + WITH_HDF5:=--with-hdf5=/usr/lib/$(DEB_HOST_MULTIARCH)/hdf5/serial +else + WITH_HDF5:= +endif + versions: @echo Gdal version: $(GDAL_MAJOR).$(GDAL_MINOR).$(GDAL_PATCH) @echo Swig version: $(SWIGVER) @@ -86,6 +92,7 @@ --with-webp \ --with-jasper \ --with-netcdf \ + $(WITH_HDF5) \ --with-xerces \ --with-geos \ --with-sqlite3 \