- Update to 1.1.0

PR:		202597
Submitted by:	coder@tuxfamily.org (maintainer)
This commit is contained in:
Dmitry Marakasov 2015-08-27 09:01:50 +00:00
parent 8e892696d3
commit 69b49c55cf
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=395405
4 changed files with 22 additions and 7 deletions

View File

@ -2,15 +2,15 @@
# $FreeBSD$
PORTNAME= sfcgal
PORTVERSION= 1.0.5
PORTVERSION= 1.1.0
DISTVERSIONPREFIX= v
PORTREVISION= 1
CATEGORIES= databases math graphics
MAINTAINER= coder@tuxfamily.org
COMMENT= Wrapper library around CGAL for PostGIS
LICENSE= GPLv2
LICENSE_FILE= ${WRKSRC}/LICENSE
LIB_DEPENDS= libCGAL.so:${PORTSDIR}/math/cgal \
libboost_system.so:${PORTSDIR}/devel/boost-libs \

View File

@ -1,2 +1,2 @@
SHA256 (Oslandia-SFCGAL-v1.0.5_GH0.tar.gz) = a9cdaf7334bf28dc71c6338d090c1d1402041c5e320b6c2e3669f7758946a01c
SIZE (Oslandia-SFCGAL-v1.0.5_GH0.tar.gz) = 2376514
SHA256 (Oslandia-SFCGAL-v1.1.0_GH0.tar.gz) = 00e1bde3e1353592700bcc36d62cb31fec3b61c31c0fb93a0c74873bccf7b102
SIZE (Oslandia-SFCGAL-v1.1.0_GH0.tar.gz) = 2393394

View File

@ -0,0 +1,15 @@
--- src/detail/GeometrySet.cpp.orig 2015-01-14 13:59:05 UTC
+++ src/detail/GeometrySet.cpp
@@ -557,10 +557,10 @@ void recompose_points( const typename Ge
// compare less than
struct ComparePoints {
- bool operator()( const CGAL::Point_2<Kernel>& lhs, const CGAL::Point_2<Kernel>& rhs ) {
+ bool operator()( const CGAL::Point_2<Kernel>& lhs, const CGAL::Point_2<Kernel>& rhs ) const {
return lhs.x() < rhs.x() || lhs.y() < rhs.y();
}
- bool operator()( const CGAL::Point_3<Kernel>& lhs, const CGAL::Point_3<Kernel>& rhs ) {
+ bool operator()( const CGAL::Point_3<Kernel>& lhs, const CGAL::Point_3<Kernel>& rhs ) const {
return lhs.x() < rhs.x() || lhs.y() < rhs.y() || lhs.z() < rhs.z();
}
};

View File

@ -33,6 +33,7 @@ include/SFCGAL/algorithm/connection.h
include/SFCGAL/algorithm/convexHull.h
include/SFCGAL/algorithm/covers.h
include/SFCGAL/algorithm/difference.h
include/SFCGAL/algorithm/differencePrimitives.h
include/SFCGAL/algorithm/distance.h
include/SFCGAL/algorithm/distance3d.h
include/SFCGAL/algorithm/extrude.h
@ -50,10 +51,10 @@ include/SFCGAL/algorithm/plane.h
include/SFCGAL/algorithm/straightSkeleton.h
include/SFCGAL/algorithm/tesselate.h
include/SFCGAL/algorithm/translate.h
include/SFCGAL/algorithm/union.h
include/SFCGAL/algorithm/volume.h
include/SFCGAL/capi/sfcgal_c.h
include/SFCGAL/config.h
include/SFCGAL/config.h.cmake
include/SFCGAL/detail/ComplexComparator.h
include/SFCGAL/detail/EnvelopeVisitor.h
include/SFCGAL/detail/GeometrySet.h
@ -103,7 +104,6 @@ include/SFCGAL/numeric.h
include/SFCGAL/triangulate/triangulate2DZ.h
include/SFCGAL/triangulate/triangulatePolygon.h
include/SFCGAL/version.h
include/SFCGAL/version.h.cmake
lib/libSFCGAL.so
lib/libSFCGAL.so.1
lib/libSFCGAL.so.1.0.5
lib/libSFCGAL.so.1.1.0