diff options
author | miwi <miwi@FreeBSD.org> | 2008-06-20 21:20:47 +0800 |
---|---|---|
committer | miwi <miwi@FreeBSD.org> | 2008-06-20 21:20:47 +0800 |
commit | 9d876a2d0575dc1404e7c929766012974ed8f73d (patch) | |
tree | 2b3573d501c068c49f062d778bd0d4a5096de51e /devel | |
parent | d7bd66f8c3d86c1c89e2f8579a21cfddc9259deb (diff) | |
download | freebsd-ports-gnome-9d876a2d0575dc1404e7c929766012974ed8f73d.tar.gz freebsd-ports-gnome-9d876a2d0575dc1404e7c929766012974ed8f73d.tar.zst freebsd-ports-gnome-9d876a2d0575dc1404e7c929766012974ed8f73d.zip |
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>
Diffstat (limited to 'devel')
-rw-r--r-- | devel/Makefile | 1 | ||||
-rw-r--r-- | devel/spatialindex/Makefile | 22 | ||||
-rw-r--r-- | devel/spatialindex/distinfo | 3 | ||||
-rw-r--r-- | devel/spatialindex/pkg-descr | 17 | ||||
-rw-r--r-- | devel/spatialindex/pkg-plist | 23 |
5 files changed, 66 insertions, 0 deletions
diff --git a/devel/Makefile b/devel/Makefile index b4294dfeed24..bbe3e5b0ec9b 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -2376,6 +2376,7 @@ SUBDIR += sparc-rtems-gcc SUBDIR += sparc-rtems-gdb SUBDIR += sparc-rtems-objc + SUBDIR += spatialindex SUBDIR += spdict SUBDIR += spin SUBDIR += splint diff --git a/devel/spatialindex/Makefile b/devel/spatialindex/Makefile new file mode 100644 index 000000000000..2ce3ea603994 --- /dev/null +++ b/devel/spatialindex/Makefile @@ -0,0 +1,22 @@ +# 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> diff --git a/devel/spatialindex/distinfo b/devel/spatialindex/distinfo new file mode 100644 index 000000000000..c4e6e9f546a0 --- /dev/null +++ b/devel/spatialindex/distinfo @@ -0,0 +1,3 @@ +MD5 (spatialindex-1.3.2.tar.gz) = 648058d64837779cda5c91f2f3dea74f +SHA256 (spatialindex-1.3.2.tar.gz) = 4532f91db1a96fbab696620a28361b3beb2c50d1177115dc7288fcef317f2de1 +SIZE (spatialindex-1.3.2.tar.gz) = 467645 diff --git a/devel/spatialindex/pkg-descr b/devel/spatialindex/pkg-descr new file mode 100644 index 000000000000..d00ed63cf21f --- /dev/null +++ b/devel/spatialindex/pkg-descr @@ -0,0 +1,17 @@ +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 diff --git a/devel/spatialindex/pkg-plist b/devel/spatialindex/pkg-plist new file mode 100644 index 000000000000..dbd587686fa8 --- /dev/null +++ b/devel/spatialindex/pkg-plist @@ -0,0 +1,23 @@ +include/spatialindex/LineSegment.h +include/spatialindex/MVRTree.h +include/spatialindex/MovingPoint.h +include/spatialindex/MovingRegion.h +include/spatialindex/Point.h +include/spatialindex/RTree.h +include/spatialindex/Region.h +include/spatialindex/SpatialIndex.h +include/spatialindex/TPRTree.h +include/spatialindex/TimePoint.h +include/spatialindex/TimeRegion.h +include/spatialindex/tools/PointerPool.h +include/spatialindex/tools/PoolPointer.h +include/spatialindex/tools/SmartPointer.h +include/spatialindex/tools/TemporaryFile.h +include/spatialindex/tools/Tools.h +include/spatialindex/tools/rand48.h +lib/libspatialindex.a +lib/libspatialindex.la +lib/libspatialindex.so +lib/libspatialindex.so.1 +@dirrm include/spatialindex/tools +@dirrm include/spatialindex |