Ticket #16238: Portfile.gdal-grass

File Portfile.gdal-grass, 900 bytes (added by mf2k (Frank Schima), 15 years ago)

I'm not able to get gdal-grass to install. Here's my modified version of the portfile. Any ideas would be appreciated!

Line 
1# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4
2# $Id$
3
4PortSystem          1.0
5
6name                gdal-grass
7version             1.4.3
8platforms           darwin
9categories          gis
10maintainers         nomaintainer
11
12description         OGR/GRASS plugin for GDAL
13long_description    A plugin which allows GDAL to access GRASS databases.
14
15homepage            http://www.gdal.org/
16master_sites        http://www.gdal.org/dl \
17                    http://download.osgeo.org/gdal/
18
19checksums           md5 2bfb7640e03b4d9d012f1a5d62c0351d
20
21depends_lib         port:gdal \
22                    port:grass
23
24configure.args \
25    --with-grass=${prefix}/share/grass-6.3.0 \
26    --with-autoload=${prefix}/lib/gdalplugins
27
28build.target        default
29
30pre-destroot {
31    file mkdir ${destroot}/${prefix}/share/gdal/grass
32}