diff options
author | lawrance <lawrance@FreeBSD.org> | 2005-06-15 11:44:52 +0000 |
---|---|---|
committer | lawrance <lawrance@FreeBSD.org> | 2005-06-15 11:44:52 +0000 |
commit | 86d8a80ab5dff63e14cfab56efa9fc4ff9f1af43 (patch) | |
tree | 520163f490596f9b30e7bc0f9d32f79104ffcadd /graphics/gdal | |
parent | 247b94836da4d9f3009a3bfc9a2b9ead02720862 (diff) | |
download | FreeBSD-ports-86d8a80ab5dff63e14cfab56efa9fc4ff9f1af43.zip FreeBSD-ports-86d8a80ab5dff63e14cfab56efa9fc4ff9f1af43.tar.gz |
Use png from ports rather than builtin version to avoid conflicts.
PR: ports/81704
Submitted by: David Marshall <marshall@chezmarshall.com>
Diffstat (limited to 'graphics/gdal')
-rw-r--r-- | graphics/gdal/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/graphics/gdal/Makefile b/graphics/gdal/Makefile index 2947c54..cc04a83 100644 --- a/graphics/gdal/Makefile +++ b/graphics/gdal/Makefile @@ -7,6 +7,7 @@ PORTNAME= gdal PORTVERSION= 1.2.1 +PORTREVISION= 1 CATEGORIES= graphics MASTER_SITES= ftp://ftp.remotesensing.org/pub/gdal/ @@ -14,14 +15,15 @@ MAINTAINER= lawrance@FreeBSD.org COMMENT= A translator library for raster geospatial data formats BUILD_DEPENDS= ${LOCALBASE}/bin/doxygen:${PORTSDIR}/devel/doxygen -LIB_DEPENDS= jasper.4:${PORTSDIR}/graphics/jasper +LIB_DEPENDS= jasper.4:${PORTSDIR}/graphics/jasper \ + png.5:${PORTSDIR}/graphics/png USE_PYTHON= yes USE_GMAKE= yes USE_REINPLACE= yes GNU_CONFIGURE= yes CONFIGURE_ARGS= --with-libz=internal \ - --with-png=internal \ + --with-png=${LOCALBASE} \ --with-libtiff=internal \ --with-libgeotiff=internal \ --with-libjpeg=internal \ |