freebsd-ports/devel/spatialindex/Makefile
Martin Wilke 3ab06a3b26 This package provides a general framework for developing spatial indices.
Currently it defines generic interfaces, provides simple main memory and
disk based storage managers and a robust implementation of an R*-tree, an
MVR-tree and a TPR-tree.

Supported Features:
	* Generic main memory and disk based storage managers.
	* R*-tree index (also supports linear and quadratic splitting).
	* MVR-tree index (a.k.a. PPR-tree).
	* TPR-tree index.
	* Advanced query capabilities, using Strategy and Visitor patterns.
	* Arbitrary shaped range queries, by defining generic geometry interfaces.
	* Large parameterization capabilities, including dimensionality,
	  fill factor, node capacity, etc.
	* STR packing / bulk loading.

WWW:   http://trac.gispython.org/projects/SpatialIndex/wiki

PR:		ports/124628
Submitted by:	Wen Heping <wenheping at gmail.com>
2008-06-20 13:20:47 +00:00

22 lines
528 B
Makefile

# New ports collection makefile for: spatialindex
# Date created: 15 June 2008
# Whom: Wen Heping <wenheping@gmail.com>
# $FreeBSD$
PORTNAME= spatialindex
PORTVERSION= 1.3.2
CATEGORIES= devel
MASTER_SITES= http://www.edu-linux.org/down/
MAINTAINER= wenheping@gmail.com
COMMENT= A General Framework for Developing Spatial Indices
USE_AUTOTOOLS= libtool:15:env
GNU_CONFIGURE= yes
USE_GMAKE= yes
USE_LDCONFIG= yes
post-patch:
@${REINPLACE_CMD} -e 's|\(objformat=\).*|\1elf|' ${WRKSRC}/configure
.include <bsd.port.mk>