diff options
author | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2001-10-17 19:02:21 +0000 |
---|---|---|
committer | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2001-10-17 19:02:21 +0000 |
commit | 37ed1ab7a968eb51196f6f1d27b4caeae1177b49 (patch) | |
tree | 106a55b3fab325bb1532414b9f507f9d6a5f6f5c /graphics/gdal/Makefile | |
parent | add WWW: (diff) |
add gdal
A translator library for raster geospatial data formats
PR: 30828
Submitted by: Randall Hopper <aa8vb@nc.rr.com>
Notes
Notes:
svn path=/head/; revision=48883
Diffstat (limited to 'graphics/gdal/Makefile')
-rw-r--r-- | graphics/gdal/Makefile | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/graphics/gdal/Makefile b/graphics/gdal/Makefile new file mode 100644 index 000000000000..a4f580ca9c2a --- /dev/null +++ b/graphics/gdal/Makefile @@ -0,0 +1,33 @@ +# New ports collection makefile for: Geospatial Data Abstraction Library +# Date created: 27 Aug 2001 +# Whom: Randall Hopper +# +# $FreeBSD$ +# + +PORTNAME= gdal +PORTVERSION= 1.1.5 +CATEGORIES= graphics +MASTER_SITES= ftp://ftp.remotesensing.org/pub/gdal/ + +MAINTAINER= aa8vb@nc.rr.com + +LIB_DEPENDS= png.4:${PORTSDIR}/graphics/png \ + jpeg.9:${PORTSDIR}/graphics/jpeg \ + tiff.4:${PORTSDIR}/graphics/tiff + +USE_PYTHON= yes +GNU_CONFIGURE= yes +CONFIGURE_ARGS= --prefix=${PREFIX} \ + --with-libz=internal \ + --with-png=internal \ + --with-libtiff=internal \ + --with-libgeotiff=internal \ + --with-libjpeg=internal \ + --with-libgif=internal \ + --with-python +MAKEFILE= GNUmakefile +USE_GMAKE= yes +INSTALLS_SHLIB= yes + +.include <bsd.port.mk> |