Date: Thu, 27 Aug 2015 09:01:50 +0000 (UTC) From: Dmitry Marakasov <amdmi3@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r395405 - in head/databases/sfcgal: . files Message-ID: <201508270901.t7R91opZ050255@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: amdmi3 Date: Thu Aug 27 09:01:50 2015 New Revision: 395405 URL: https://svnweb.freebsd.org/changeset/ports/395405 Log: - Update to 1.1.0 PR: 202597 Submitted by: coder@tuxfamily.org (maintainer) Added: head/databases/sfcgal/files/ head/databases/sfcgal/files/patch-src-detail-GeometrySet.cpp (contents, props changed) Modified: head/databases/sfcgal/Makefile head/databases/sfcgal/distinfo head/databases/sfcgal/pkg-plist Modified: head/databases/sfcgal/Makefile ============================================================================== --- head/databases/sfcgal/Makefile Thu Aug 27 09:00:47 2015 (r395404) +++ head/databases/sfcgal/Makefile Thu Aug 27 09:01:50 2015 (r395405) @@ -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 \ Modified: head/databases/sfcgal/distinfo ============================================================================== --- head/databases/sfcgal/distinfo Thu Aug 27 09:00:47 2015 (r395404) +++ head/databases/sfcgal/distinfo Thu Aug 27 09:01:50 2015 (r395405) @@ -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 Added: head/databases/sfcgal/files/patch-src-detail-GeometrySet.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/sfcgal/files/patch-src-detail-GeometrySet.cpp Thu Aug 27 09:01:50 2015 (r395405) @@ -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(); + } + }; Modified: head/databases/sfcgal/pkg-plist ============================================================================== --- head/databases/sfcgal/pkg-plist Thu Aug 27 09:00:47 2015 (r395404) +++ head/databases/sfcgal/pkg-plist Thu Aug 27 09:01:50 2015 (r395405) @@ -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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201508270901.t7R91opZ050255>