mirror of
https://git.freebsd.org/ports.git
synced 2025-07-12 14:59:13 -04:00
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>
30 lines
694 B
Text
30 lines
694 B
Text
--- GNUmakefile Mon Dec 19 18:23:23 2005
|
|
+++ GNUmakefile Wed Dec 28 15:38:36 2005
|
|
@@ -4,9 +4,15 @@
|
|
#
|
|
#-----------------------------------------------------
|
|
|
|
-all: Makefile.config liblwgeom loaderdumper utils
|
|
+all: Makefile.config liblwgeom loaderdumper utils
|
|
+ifneq ($(WITH-DOC),)
|
|
+ $(MAKE) -C doc
|
|
+endif
|
|
|
|
-install: all liblwgeom-install loaderdumper-install
|
|
+install: all liblwgeom-install loaderdumper-install utils-install
|
|
+ifneq ($(WITH-DOC),)
|
|
+ $(MAKE) -C doc install
|
|
+endif
|
|
|
|
uninstall: liblwgeom-uninstall loaderdumper-uninstall docs-uninstall
|
|
|
|
@@ -74,6 +80,9 @@
|
|
|
|
utils:
|
|
$(MAKE) -C utils
|
|
+
|
|
+utils-install:
|
|
+ $(MAKE) -C utils install
|
|
|
|
configure: configure.in
|
|
./autogen.sh
|