diff options
author | edwin <edwin@FreeBSD.org> | 2006-01-03 06:11:12 +0800 |
---|---|---|
committer | edwin <edwin@FreeBSD.org> | 2006-01-03 06:11:12 +0800 |
commit | c8a8965903824b5994571e1942331f2bc790fcf8 (patch) | |
tree | 02c2208bc58348eb7b109b7594b19a86059cd4ac /databases | |
parent | 662300744c5e07a2b43cd3f34cd75eff7401d13d (diff) | |
download | freebsd-ports-gnome-c8a8965903824b5994571e1942331f2bc790fcf8.tar.gz freebsd-ports-gnome-c8a8965903824b5994571e1942331f2bc790fcf8.tar.zst freebsd-ports-gnome-c8a8965903824b5994571e1942331f2bc790fcf8.zip |
[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>
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> |