freebsd-ports/databases/postgis/pkg-install
Edwin Groothuis 0e4f2cc24d [maintainer-update] Postgis upgrade from 1.0.6 to 1.1.0
Postgis upgrade from 1.0.6 to 1.1.0 .

	This release, includes new functionality, performance
	improvements and bug fixes.  Highlights include:

	    * Geometry building functions, including line merging, polygon creation and vertex manipulation,
	    * Linear referencing functions, including support for measures,
	    * Performance improvements to coordinate reference transformations

PR:		ports/91030
Submitted by:	Anderson S. Ferreira <anderson@cnpm.embrapa.br>
2005-12-28 21:10:57 +00:00

36 lines
670 B
Bash

#!/bin/sh
msg(){
echo "
======================= GEOS Support Notice ========================
In order to use the GEOS support, you may need to specially compile
your version of PostgreSQL to link the C++ runtime library.
To do this, invoke the PostgreSQL Makefile script this way:
on csh shell:
setenv LDFLAGS -lstdc++
make
on sh or bash shell:
export LDFLAGS=-lstdc++
make
The initial LDFLAGS variable is passed through to the Makefile and
adds the C++ library to the linking stage.
====================================================================
"
sleep 10
}
case "$2" in
"PRE-INSTALL")
msg
;;
"MESSAGE")
msg
;;
esac