Thu Jun 16 09:24:05 2011 UTC ()
Changes 3.3.0:
- New things:
  - CAPI: GEOSBufferWithParams (allows single sided buffers)
  - CAPI: GEOSOffsetCurve deprecates GEOSSingleSidedBuffer
  - CAPI: GEOSUnaryUnion deprecates GEOSCascadedUnion
  - CAPI: GEOSisValidDetail: tell state, reason & location apart. allows
          passing flags.
  - CAPI: GEOSContext_setNoticeHandler_r, GEOSContext_setErrorHandler_r
  - CAPI: GEOSGeom_createEmptyPoint, GEOSGeom_createEmptyLineString
          GEOSGeom_createEmptyPolygon, GEOSGeom_createEmptyCollection
  - CAPI: GEOSGeom_extractUniquePoints
  - CAPI: GEOSGetGeometryN support for single geometries
  - CAPI: GEOSPolygonize_full to return all informations computed by
          the polygonizer
  - CAPI: GEOSOrientationIndex
  - CAPI: GEOSSharedPaths to find shared paths and their orientation
  - CAPI: GEOSSnap
  - CAPI: GEOSRelatePatternMatch
  - CAPI: GEOSCovers, GEOSCoveredBy
  - CAPI: GEOSRelateBoundaryNodeRule
  -  PHP: new PHP5 bindings based on CAPI
- Semantic C++ API changes:
  - Geometry inheritance chain changed to introduce Puntal, Lineal
    and Polygonal classes (virtual inheritance introduced)
  - Polygonizer::getInvalidRingLines retains ownership of vector elements
  - Geometry::isWithinDistance method is now const
  - Polygonizer::getCutEdges returns by const ref
  - Polygonizer::getDangles returns by const ref
  - Empty LinearRings are closed by definition
- Bug fixes / improvements
  - Fixed Geometry.distance() and DistanceOp to return 0.0 for empty inputs
  - Invalid compound geometries reported as valid
  - Return up to 15 digits of precision from GEOSisValidReason_t
  - CAPI: do not leak contexts when using the non-reentrant interface
  - Fix duplicated dangles returned by Polygonizer
  - Fix SnapIfNeededOverlayOp to throw the originating exception
  - Fixed LineMerger to skip lines with only a single unique coordinate
  - Fix NodedSegmentString to handle zero-length line segments correctly
    (via safeOctant)
  - Fixed buffer OffsetCurveSetBuilder to handle "flat" rings correctly
  - Added illegal state check in LineSegment::pointAlongOffset()
  - Improved performance of RectangleIntersects by always using
    segment-scanning and refining SegmentIntersectionTester
  - Reduce memory use in PreparedGeometry predicates
  - Fix infinite loop in RobustDeterminant with nan/inf input


(adam)
diff -r1.13 -r1.14 pkgsrc/geography/geos/Makefile
diff -r1.9 -r1.10 pkgsrc/geography/geos/PLIST
diff -r1.9 -r1.10 pkgsrc/geography/geos/buildlink3.mk
diff -r1.10 -r1.11 pkgsrc/geography/geos/distinfo

cvs diff -r1.13 -r1.14 pkgsrc/geography/geos/Makefile (expand / switch to unified diff)

--- pkgsrc/geography/geos/Makefile 2011/02/15 09:19:29 1.13
+++ pkgsrc/geography/geos/Makefile 2011/06/16 09:24:05 1.14
@@ -1,22 +1,22 @@ @@ -1,22 +1,22 @@
1# $NetBSD: Makefile,v 1.13 2011/02/15 09:19:29 adam Exp $ 1# $NetBSD: Makefile,v 1.14 2011/06/16 09:24:05 adam Exp $
2 2
3DISTNAME= geos-3.2.2 3DISTNAME= geos-3.3.0
4CATEGORIES= geography 4CATEGORIES= geography
5MASTER_SITES= http://download.osgeo.org/geos/ 5MASTER_SITES= http://download.osgeo.org/geos/
6EXTRACT_SUFX= .tar.bz2 6EXTRACT_SUFX= .tar.bz2
7 7
8MAINTAINER= gdt@NetBSD.org 8MAINTAINER= gdt@NetBSD.org
9HOMEPAGE= http://geos.refractions.net/ 9HOMEPAGE= http://geos.refractions.net/
10COMMENT= C++ port of the Java Topology Suite (JTS) 10COMMENT= C++ port of the Java Topology Suite (JTS)
11LICENSE= gnu-lgpl-v2.1 11LICENSE= gnu-lgpl-v2.1
12 12
13PKG_DESTDIR_SUPPORT= user-destdir 13PKG_DESTDIR_SUPPORT= user-destdir
14 14
15USE_PKGLOCALEDIR= yes 15USE_LANGUAGES= c c++
16USE_LIBTOOL= yes 16USE_LIBTOOL= yes
 17USE_PKGLOCALEDIR= yes
17GNU_CONFIGURE= yes 18GNU_CONFIGURE= yes
18USE_LANGUAGES= c c++ 
19 19
20TEST_TARGET= check 20TEST_TARGET= check
21 21
22.include "../../mk/bsd.pkg.mk" 22.include "../../mk/bsd.pkg.mk"

cvs diff -r1.9 -r1.10 pkgsrc/geography/geos/PLIST (expand / switch to unified diff)

--- pkgsrc/geography/geos/PLIST 2009/12/14 23:31:06 1.9
+++ pkgsrc/geography/geos/PLIST 2011/06/16 09:24:05 1.10
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1@comment $NetBSD: PLIST,v 1.9 2009/12/14 23:31:06 gdt Exp $ 1@comment $NetBSD: PLIST,v 1.10 2011/06/16 09:24:05 adam Exp $
2bin/geos-config 2bin/geos-config
3include/geos.h 3include/geos.h
4include/geos/algorithm/Angle.h 4include/geos/algorithm/Angle.h
5include/geos/algorithm/BoundaryNodeRule.h 5include/geos/algorithm/BoundaryNodeRule.h
6include/geos/algorithm/CGAlgorithms.h 6include/geos/algorithm/CGAlgorithms.h
7include/geos/algorithm/CentralEndpointIntersector.h 7include/geos/algorithm/CentralEndpointIntersector.h
8include/geos/algorithm/CentroidArea.h 8include/geos/algorithm/CentroidArea.h
9include/geos/algorithm/CentroidLine.h 9include/geos/algorithm/CentroidLine.h
10include/geos/algorithm/CentroidPoint.h 10include/geos/algorithm/CentroidPoint.h
11include/geos/algorithm/ConvexHull.h 11include/geos/algorithm/ConvexHull.h
12include/geos/algorithm/ConvexHull.inl 12include/geos/algorithm/ConvexHull.inl
13include/geos/algorithm/ExtractLineByLocation.h 13include/geos/algorithm/ExtractLineByLocation.h
14include/geos/algorithm/HCoordinate.h 14include/geos/algorithm/HCoordinate.h
@@ -46,73 +46,77 @@ include/geos/geom/Coordinate.h @@ -46,73 +46,77 @@ include/geos/geom/Coordinate.h
46include/geos/geom/Coordinate.inl 46include/geos/geom/Coordinate.inl
47include/geos/geom/CoordinateArraySequence.h 47include/geos/geom/CoordinateArraySequence.h
48include/geos/geom/CoordinateArraySequenceFactory.h 48include/geos/geom/CoordinateArraySequenceFactory.h
49include/geos/geom/CoordinateArraySequenceFactory.inl 49include/geos/geom/CoordinateArraySequenceFactory.inl
50include/geos/geom/CoordinateFilter.h 50include/geos/geom/CoordinateFilter.h
51include/geos/geom/CoordinateList.h 51include/geos/geom/CoordinateList.h
52include/geos/geom/CoordinateSequence.h 52include/geos/geom/CoordinateSequence.h
53include/geos/geom/CoordinateSequenceFactory.h 53include/geos/geom/CoordinateSequenceFactory.h
54include/geos/geom/CoordinateSequenceFilter.h 54include/geos/geom/CoordinateSequenceFilter.h
55include/geos/geom/Dimension.h 55include/geos/geom/Dimension.h
56include/geos/geom/Envelope.h 56include/geos/geom/Envelope.h
57include/geos/geom/Envelope.inl 57include/geos/geom/Envelope.inl
58include/geos/geom/Geometry.h 58include/geos/geom/Geometry.h
59include/geos/geom/Geometry.inl 
60include/geos/geom/GeometryCollection.h 59include/geos/geom/GeometryCollection.h
61include/geos/geom/GeometryCollection.inl 60include/geos/geom/GeometryCollection.inl
62include/geos/geom/GeometryComponentFilter.h 61include/geos/geom/GeometryComponentFilter.h
63include/geos/geom/GeometryFactory.h 62include/geos/geom/GeometryFactory.h
64include/geos/geom/GeometryFactory.inl 63include/geos/geom/GeometryFactory.inl
65include/geos/geom/GeometryFilter.h 64include/geos/geom/GeometryFilter.h
66include/geos/geom/GeometryList.h 65include/geos/geom/GeometryList.h
67include/geos/geom/IntersectionMatrix.h 66include/geos/geom/IntersectionMatrix.h
68include/geos/geom/LineSegment.h 67include/geos/geom/LineSegment.h
69include/geos/geom/LineSegment.inl 68include/geos/geom/LineSegment.inl
70include/geos/geom/LineString.h 69include/geos/geom/LineString.h
 70include/geos/geom/Lineal.h
71include/geos/geom/LinearRing.h 71include/geos/geom/LinearRing.h
72include/geos/geom/Location.h 72include/geos/geom/Location.h
73include/geos/geom/MultiLineString.h 73include/geos/geom/MultiLineString.h
74include/geos/geom/MultiLineString.inl 74include/geos/geom/MultiLineString.inl
75include/geos/geom/MultiPoint.h 75include/geos/geom/MultiPoint.h
76include/geos/geom/MultiPolygon.h 76include/geos/geom/MultiPolygon.h
77include/geos/geom/MultiPolygon.inl 77include/geos/geom/MultiPolygon.inl
78include/geos/geom/Point.h 78include/geos/geom/Point.h
79include/geos/geom/Polygon.h 79include/geos/geom/Polygon.h
 80include/geos/geom/Polygonal.h
80include/geos/geom/PrecisionModel.h 81include/geos/geom/PrecisionModel.h
81include/geos/geom/PrecisionModel.inl 82include/geos/geom/PrecisionModel.inl
 83include/geos/geom/Puntal.h
82include/geos/geom/Triangle.h 84include/geos/geom/Triangle.h
83include/geos/geom/prep/AbstractPreparedPolygonContains.h 85include/geos/geom/prep/AbstractPreparedPolygonContains.h
84include/geos/geom/prep/BasicPreparedGeometry.h 86include/geos/geom/prep/BasicPreparedGeometry.h
85include/geos/geom/prep/PreparedGeometry.h 87include/geos/geom/prep/PreparedGeometry.h
86include/geos/geom/prep/PreparedGeometryFactory.h 88include/geos/geom/prep/PreparedGeometryFactory.h
87include/geos/geom/prep/PreparedLineString.h 89include/geos/geom/prep/PreparedLineString.h
88include/geos/geom/prep/PreparedLineStringIntersects.h 90include/geos/geom/prep/PreparedLineStringIntersects.h
89include/geos/geom/prep/PreparedPoint.h 91include/geos/geom/prep/PreparedPoint.h
90include/geos/geom/prep/PreparedPolygon.h 92include/geos/geom/prep/PreparedPolygon.h
91include/geos/geom/prep/PreparedPolygonContains.h 93include/geos/geom/prep/PreparedPolygonContains.h
92include/geos/geom/prep/PreparedPolygonContainsProperly.h 94include/geos/geom/prep/PreparedPolygonContainsProperly.h
93include/geos/geom/prep/PreparedPolygonCovers.h 95include/geos/geom/prep/PreparedPolygonCovers.h
94include/geos/geom/prep/PreparedPolygonIntersects.h 96include/geos/geom/prep/PreparedPolygonIntersects.h
95include/geos/geom/prep/PreparedPolygonPredicate.h 97include/geos/geom/prep/PreparedPolygonPredicate.h
96include/geos/geom/util/ComponentCoordinateExtracter.h 98include/geos/geom/util/ComponentCoordinateExtracter.h
97include/geos/geom/util/CoordinateOperation.h 99include/geos/geom/util/CoordinateOperation.h
98include/geos/geom/util/GeometryCombiner.h 100include/geos/geom/util/GeometryCombiner.h
99include/geos/geom/util/GeometryEditor.h 101include/geos/geom/util/GeometryEditor.h
100include/geos/geom/util/GeometryEditorOperation.h 102include/geos/geom/util/GeometryEditorOperation.h
 103include/geos/geom/util/GeometryExtracter.h
101include/geos/geom/util/GeometryTransformer.h 104include/geos/geom/util/GeometryTransformer.h
102include/geos/geom/util/LinearComponentExtracter.h 105include/geos/geom/util/LinearComponentExtracter.h
103include/geos/geom/util/PointExtracter.h 106include/geos/geom/util/PointExtracter.h
104include/geos/geom/util/PolygonExtracter.h 107include/geos/geom/util/PolygonExtracter.h
105include/geos/geom/util/ShortCircuitedGeometryVisitor.h 108include/geos/geom/util/ShortCircuitedGeometryVisitor.h
 109include/geos/geom/util/SineStarFactory.h
106include/geos/geomUtil.h 110include/geos/geomUtil.h
107include/geos/geomgraph.h 111include/geos/geomgraph.h
108include/geos/geomgraph/Depth.h 112include/geos/geomgraph/Depth.h
109include/geos/geomgraph/DirectedEdge.h 113include/geos/geomgraph/DirectedEdge.h
110include/geos/geomgraph/DirectedEdge.inl 114include/geos/geomgraph/DirectedEdge.inl
111include/geos/geomgraph/DirectedEdgeStar.h 115include/geos/geomgraph/DirectedEdgeStar.h
112include/geos/geomgraph/Edge.h 116include/geos/geomgraph/Edge.h
113include/geos/geomgraph/EdgeEnd.h 117include/geos/geomgraph/EdgeEnd.h
114include/geos/geomgraph/EdgeEndStar.h 118include/geos/geomgraph/EdgeEndStar.h
115include/geos/geomgraph/EdgeIntersection.h 119include/geos/geomgraph/EdgeIntersection.h
116include/geos/geomgraph/EdgeIntersectionList.h 120include/geos/geomgraph/EdgeIntersectionList.h
117include/geos/geomgraph/EdgeList.h 121include/geos/geomgraph/EdgeList.h
118include/geos/geomgraph/EdgeNodingValidator.h 122include/geos/geomgraph/EdgeNodingValidator.h
@@ -206,57 +210,59 @@ include/geos/noding/MCIndexNoder.h @@ -206,57 +210,59 @@ include/geos/noding/MCIndexNoder.h
206include/geos/noding/MCIndexNoder.inl 210include/geos/noding/MCIndexNoder.inl
207include/geos/noding/MCIndexSegmentSetMutualIntersector.h 211include/geos/noding/MCIndexSegmentSetMutualIntersector.h
208include/geos/noding/NodableSegmentString.h 212include/geos/noding/NodableSegmentString.h
209include/geos/noding/NodedSegmentString.h 213include/geos/noding/NodedSegmentString.h
210include/geos/noding/Noder.h 214include/geos/noding/Noder.h
211include/geos/noding/NodingValidator.h 215include/geos/noding/NodingValidator.h
212include/geos/noding/Octant.h 216include/geos/noding/Octant.h
213include/geos/noding/OrientedCoordinateArray.h 217include/geos/noding/OrientedCoordinateArray.h
214include/geos/noding/ScaledNoder.h 218include/geos/noding/ScaledNoder.h
215include/geos/noding/SegmentIntersectionDetector.h 219include/geos/noding/SegmentIntersectionDetector.h
216include/geos/noding/SegmentIntersector.h 220include/geos/noding/SegmentIntersector.h
217include/geos/noding/SegmentNode.h 221include/geos/noding/SegmentNode.h
218include/geos/noding/SegmentNodeList.h 222include/geos/noding/SegmentNodeList.h
 223include/geos/noding/SegmentPointComparator.h
219include/geos/noding/SegmentSetMutualIntersector.h 224include/geos/noding/SegmentSetMutualIntersector.h
220include/geos/noding/SegmentString.h 225include/geos/noding/SegmentString.h
221include/geos/noding/SegmentString.inl 226include/geos/noding/SegmentString.inl
222include/geos/noding/SegmentStringUtil.h 227include/geos/noding/SegmentStringUtil.h
223include/geos/noding/SimpleNoder.h 228include/geos/noding/SimpleNoder.h
224include/geos/noding/SingleInteriorIntersectionFinder.h 229include/geos/noding/SingleInteriorIntersectionFinder.h
225include/geos/noding/SinglePassNoder.h 230include/geos/noding/SinglePassNoder.h
226include/geos/noding/snapround/HotPixel.h 231include/geos/noding/snapround/HotPixel.h
227include/geos/noding/snapround/HotPixel.inl 232include/geos/noding/snapround/HotPixel.inl
228include/geos/noding/snapround/MCIndexPointSnapper.h 233include/geos/noding/snapround/MCIndexPointSnapper.h
229include/geos/noding/snapround/MCIndexSnapRounder.h 234include/geos/noding/snapround/MCIndexSnapRounder.h
230include/geos/noding/snapround/MCIndexSnapRounder.inl 
231include/geos/noding/snapround/SimpleSnapRounder.h 235include/geos/noding/snapround/SimpleSnapRounder.h
232include/geos/nodingSnapround.h 236include/geos/nodingSnapround.h
233include/geos/opBuffer.h 237include/geos/opBuffer.h
234include/geos/opDistance.h 238include/geos/opDistance.h
235include/geos/opLinemerge.h 239include/geos/opLinemerge.h
236include/geos/opOverlay.h 240include/geos/opOverlay.h
237include/geos/opPolygonize.h 241include/geos/opPolygonize.h
238include/geos/opPredicate.h 242include/geos/opPredicate.h
239include/geos/opRelate.h 243include/geos/opRelate.h
240include/geos/opValid.h 244include/geos/opValid.h
241include/geos/operation.h 245include/geos/operation.h
242include/geos/operation/GeometryGraphOperation.h 246include/geos/operation/GeometryGraphOperation.h
243include/geos/operation/IsSimpleOp.h 247include/geos/operation/IsSimpleOp.h
244include/geos/operation/buffer/BufferBuilder.h 248include/geos/operation/buffer/BufferBuilder.h
245include/geos/operation/buffer/BufferOp.h 249include/geos/operation/buffer/BufferOp.h
246include/geos/operation/buffer/BufferParameters.h 250include/geos/operation/buffer/BufferParameters.h
247include/geos/operation/buffer/BufferSubgraph.h 251include/geos/operation/buffer/BufferSubgraph.h
248include/geos/operation/buffer/OffsetCurveBuilder.h 252include/geos/operation/buffer/OffsetCurveBuilder.h
249include/geos/operation/buffer/OffsetCurveSetBuilder.h 253include/geos/operation/buffer/OffsetCurveSetBuilder.h
 254include/geos/operation/buffer/OffsetSegmentGenerator.h
 255include/geos/operation/buffer/OffsetSegmentString.h
250include/geos/operation/buffer/RightmostEdgeFinder.h 256include/geos/operation/buffer/RightmostEdgeFinder.h
251include/geos/operation/buffer/SubgraphDepthLocater.h 257include/geos/operation/buffer/SubgraphDepthLocater.h
252include/geos/operation/distance/ConnectedElementLocationFilter.h 258include/geos/operation/distance/ConnectedElementLocationFilter.h
253include/geos/operation/distance/ConnectedElementPointFilter.h 259include/geos/operation/distance/ConnectedElementPointFilter.h
254include/geos/operation/distance/DistanceOp.h 260include/geos/operation/distance/DistanceOp.h
255include/geos/operation/distance/GeometryLocation.h 261include/geos/operation/distance/GeometryLocation.h
256include/geos/operation/linemerge/EdgeString.h 262include/geos/operation/linemerge/EdgeString.h
257include/geos/operation/linemerge/LineMergeDirectedEdge.h 263include/geos/operation/linemerge/LineMergeDirectedEdge.h
258include/geos/operation/linemerge/LineMergeEdge.h 264include/geos/operation/linemerge/LineMergeEdge.h
259include/geos/operation/linemerge/LineMergeGraph.h 265include/geos/operation/linemerge/LineMergeGraph.h
260include/geos/operation/linemerge/LineMerger.h 266include/geos/operation/linemerge/LineMerger.h
261include/geos/operation/linemerge/LineSequencer.h 267include/geos/operation/linemerge/LineSequencer.h
262include/geos/operation/overlay/EdgeSetNoder.h 268include/geos/operation/overlay/EdgeSetNoder.h
@@ -283,27 +289,32 @@ include/geos/operation/polygonize/Polygo @@ -283,27 +289,32 @@ include/geos/operation/polygonize/Polygo
283include/geos/operation/polygonize/PolygonizeGraph.h 289include/geos/operation/polygonize/PolygonizeGraph.h
284include/geos/operation/polygonize/Polygonizer.h 290include/geos/operation/polygonize/Polygonizer.h
285include/geos/operation/predicate/RectangleContains.h 291include/geos/operation/predicate/RectangleContains.h
286include/geos/operation/predicate/RectangleIntersects.h 292include/geos/operation/predicate/RectangleIntersects.h
287include/geos/operation/predicate/SegmentIntersectionTester.h 293include/geos/operation/predicate/SegmentIntersectionTester.h
288include/geos/operation/relate/EdgeEndBuilder.h 294include/geos/operation/relate/EdgeEndBuilder.h
289include/geos/operation/relate/EdgeEndBundle.h 295include/geos/operation/relate/EdgeEndBundle.h
290include/geos/operation/relate/EdgeEndBundleStar.h 296include/geos/operation/relate/EdgeEndBundleStar.h
291include/geos/operation/relate/RelateComputer.h 297include/geos/operation/relate/RelateComputer.h
292include/geos/operation/relate/RelateNode.h 298include/geos/operation/relate/RelateNode.h
293include/geos/operation/relate/RelateNodeFactory.h 299include/geos/operation/relate/RelateNodeFactory.h
294include/geos/operation/relate/RelateNodeGraph.h 300include/geos/operation/relate/RelateNodeGraph.h
295include/geos/operation/relate/RelateOp.h 301include/geos/operation/relate/RelateOp.h
 302include/geos/operation/sharedpaths/SharedPathsOp.h
296include/geos/operation/union/CascadedPolygonUnion.h 303include/geos/operation/union/CascadedPolygonUnion.h
 304include/geos/operation/union/CascadedUnion.h
 305include/geos/operation/union/GeometryListHolder.h
 306include/geos/operation/union/PointGeometryUnion.h
 307include/geos/operation/union/UnaryUnionOp.h
297include/geos/operation/valid/ConnectedInteriorTester.h 308include/geos/operation/valid/ConnectedInteriorTester.h
298include/geos/operation/valid/ConsistentAreaTester.h 309include/geos/operation/valid/ConsistentAreaTester.h
299include/geos/operation/valid/IsValidOp.h 310include/geos/operation/valid/IsValidOp.h
300include/geos/operation/valid/QuadtreeNestedRingTester.h 311include/geos/operation/valid/QuadtreeNestedRingTester.h
301include/geos/operation/valid/RepeatedPointTester.h 312include/geos/operation/valid/RepeatedPointTester.h
302include/geos/operation/valid/SimpleNestedRingTester.h 313include/geos/operation/valid/SimpleNestedRingTester.h
303include/geos/operation/valid/SweeplineNestedRingTester.h 314include/geos/operation/valid/SweeplineNestedRingTester.h
304include/geos/operation/valid/TopologyValidationError.h 315include/geos/operation/valid/TopologyValidationError.h
305include/geos/planargraph.h 316include/geos/planargraph.h
306include/geos/planargraph/DirectedEdge.h 317include/geos/planargraph/DirectedEdge.h
307include/geos/planargraph/DirectedEdgeStar.h 318include/geos/planargraph/DirectedEdgeStar.h
308include/geos/planargraph/Edge.h 319include/geos/planargraph/Edge.h
309include/geos/planargraph/GraphComponent.h 320include/geos/planargraph/GraphComponent.h
@@ -328,21 +339,23 @@ include/geos/simplify/TaggedLineString.h @@ -328,21 +339,23 @@ include/geos/simplify/TaggedLineString.h
328include/geos/simplify/TaggedLineStringSimplifier.h 339include/geos/simplify/TaggedLineStringSimplifier.h
329include/geos/simplify/TaggedLinesSimplifier.h 340include/geos/simplify/TaggedLinesSimplifier.h
330include/geos/simplify/TopologyPreservingSimplifier.h 341include/geos/simplify/TopologyPreservingSimplifier.h
331include/geos/spatialIndex.h 342include/geos/spatialIndex.h
332include/geos/timeval.h 343include/geos/timeval.h
333include/geos/unload.h 344include/geos/unload.h
334include/geos/util.h 345include/geos/util.h
335include/geos/util/Assert.h 346include/geos/util/Assert.h
336include/geos/util/AssertionFailedException.h 347include/geos/util/AssertionFailedException.h
337include/geos/util/CoordinateArrayFilter.h 348include/geos/util/CoordinateArrayFilter.h
338include/geos/util/GEOSException.h 349include/geos/util/GEOSException.h
339include/geos/util/GeometricShapeFactory.h 350include/geos/util/GeometricShapeFactory.h
340include/geos/util/IllegalArgumentException.h 351include/geos/util/IllegalArgumentException.h
 352include/geos/util/IllegalStateException.h
 353include/geos/util/Machine.h
341include/geos/util/TopologyException.h 354include/geos/util/TopologyException.h
342include/geos/util/UniqueCoordinateArrayFilter.h 355include/geos/util/UniqueCoordinateArrayFilter.h
343include/geos/util/UnsupportedOperationException.h 356include/geos/util/UnsupportedOperationException.h
344include/geos/util/math.h 357include/geos/util/math.h
345include/geos/version.h 358include/geos/version.h
346include/geos_c.h 359include/geos_c.h
347lib/libgeos.la 360lib/libgeos.la
348lib/libgeos_c.la 361lib/libgeos_c.la

cvs diff -r1.9 -r1.10 pkgsrc/geography/geos/buildlink3.mk (expand / switch to unified diff)

--- pkgsrc/geography/geos/buildlink3.mk 2009/12/14 23:36:05 1.9
+++ pkgsrc/geography/geos/buildlink3.mk 2011/06/16 09:24:05 1.10
@@ -1,13 +1,13 @@ @@ -1,13 +1,13 @@
1# $NetBSD: buildlink3.mk,v 1.9 2009/12/14 23:36:05 gdt Exp $ 1# $NetBSD: buildlink3.mk,v 1.10 2011/06/16 09:24:05 adam Exp $
2 2
3BUILDLINK_TREE+= geos 3BUILDLINK_TREE+= geos
4 4
5.if !defined(GEOS_BUILDLINK3_MK) 5.if !defined(GEOS_BUILDLINK3_MK)
6GEOS_BUILDLINK3_MK:= 6GEOS_BUILDLINK3_MK:=
7 7
8BUILDLINK_API_DEPENDS.geos+= geos>=2.2.3 8BUILDLINK_API_DEPENDS.geos+= geos>=2.2.3
9BUILDLINK_ABI_DEPENDS.geos?= geos>=3.2.0 9BUILDLINK_ABI_DEPENDS.geos+= geos>=3.2.0
10BUILDLINK_PKGSRCDIR.geos?= ../../geography/geos 10BUILDLINK_PKGSRCDIR.geos?= ../../geography/geos
11.endif # GEOS_BUILDLINK3_MK 11.endif # GEOS_BUILDLINK3_MK
12 12
13BUILDLINK_TREE+= -geos 13BUILDLINK_TREE+= -geos

cvs diff -r1.10 -r1.11 pkgsrc/geography/geos/distinfo (expand / switch to unified diff)

--- pkgsrc/geography/geos/distinfo 2010/04/20 18:35:29 1.10
+++ pkgsrc/geography/geos/distinfo 2011/06/16 09:24:05 1.11
@@ -1,6 +1,6 @@ @@ -1,6 +1,6 @@
1$NetBSD: distinfo,v 1.10 2010/04/20 18:35:29 zafer Exp $ 1$NetBSD: distinfo,v 1.11 2011/06/16 09:24:05 adam Exp $
2 2
3SHA1 (geos-3.2.2.tar.bz2) = 6917d6d1d4e79f58d9f931bf351024709fabbc5a 3SHA1 (geos-3.3.0.tar.bz2) = f6c6e3398d5c7bf389a0610a0d06896d76ad4480
4RMD160 (geos-3.2.2.tar.bz2) = 95342be083175f38c8c87b5682271253320f3d60 4RMD160 (geos-3.3.0.tar.bz2) = 724f535739ec88607083b72452481b155297fd2b
5Size (geos-3.2.2.tar.bz2) = 1664073 bytes 5Size (geos-3.3.0.tar.bz2) = 1765056 bytes
6SHA1 (patch-ae) = b687857a95931a7f9a0dc5e1c2290db0e76f603e 6SHA1 (patch-ae) = b687857a95931a7f9a0dc5e1c2290db0e76f603e