diff options
author | Edwin Groothuis <edwin@FreeBSD.org> | 2006-01-02 22:11:12 +0000 |
---|---|---|
committer | Edwin Groothuis <edwin@FreeBSD.org> | 2006-01-02 22:11:12 +0000 |
commit | 20e59bae9d6dd03dade812622213b37a9d71d0a9 (patch) | |
tree | d2eda24f22258366a490daee8e6fd3a8f086c9f2 /databases | |
parent | fa04496b26ad496792aaa99fc0f088e6597b22a6 (diff) |
[maintainer-update] databases/postgis fix
This patch adds the missing configure argument '--with-proj',
as reported in PR ports/91112
PR: ports/91220
Submitted by: Anderson S. Ferreira <anderson@cnpm.embrapa.br>
Notes
Notes:
svn path=/head/; revision=152611
Diffstat (limited to 'databases')
-rw-r--r-- | databases/postgis/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/databases/postgis/Makefile b/databases/postgis/Makefile index f0795f3d782b..9ff2781be87f 100644 --- a/databases/postgis/Makefile +++ b/databases/postgis/Makefile @@ -7,6 +7,7 @@ PORTNAME= postgis DISTVERSION= 1.1.0 +PORTREVISION= 1 CATEGORIES= databases MASTER_SITES= http://postgis.refractions.net/download/ @@ -30,7 +31,8 @@ OPTIONS= GEOS "Include GEOS - the OpenGIS 'Simple Features for SQL'" off \ GNU_CONFIGURE= yes CONFIGURE_ARGS= --datadir=${PREFIX}/share/postgis \ --bindir=${PREFIX}/bin \ - --libdir=${PREFIX}/lib + --libdir=${PREFIX}/lib \ + --with-proj .include <bsd.port.pre.mk> |