Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 27 Feb 2017 17:25:32 +0000 (UTC)
From:      Thomas Zander <riggs@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org
Subject:   svn commit: r434978 - in branches/2017Q1/math/pdal: . files
Message-ID:  <201702271725.v1RHPX1h084495@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: riggs
Date: Mon Feb 27 17:25:32 2017
New Revision: 434978
URL: https://svnweb.freebsd.org/changeset/ports/434978

Log:
  MFH: r434977
  
  Update to upstream version 1.4.0; un-breank build; changed OPTIONs
  
  Details:
  - Update to upstream version 1.4.0
  - Fix build
  - Update maintainer e-mail address
  - Removed OPTIONs: GEOTIFF LIBXML2 LASZIP APPS ATTRIBUTE
  - New OPTIONs: PGPOINTCLOUD SQLITE PYTHON TESTS
  
  PR:		215842
  Submitted by:	lbartoletti@tuxfamily.org
  Reviewed by:	riggs
  Approved by:	maintainer timeout
  
  Approved by:	ports-secteam (build fix blanket)

Added:
  branches/2017Q1/math/pdal/files/patch-apps_CMakeLists.txt
     - copied unchanged from r434977, head/math/pdal/files/patch-apps_CMakeLists.txt
  branches/2017Q1/math/pdal/files/patch-dimbuilder_CMakeLists.txt
     - copied unchanged from r434977, head/math/pdal/files/patch-dimbuilder_CMakeLists.txt
  branches/2017Q1/math/pdal/files/patch-pdal_util_CMakeLists.txt
     - copied unchanged from r434977, head/math/pdal/files/patch-pdal_util_CMakeLists.txt
  branches/2017Q1/math/pdal/files/patch-vendor_gtest_include_gtest_internal_gtest-port.h
     - copied unchanged from r434977, head/math/pdal/files/patch-vendor_gtest_include_gtest_internal_gtest-port.h
Deleted:
  branches/2017Q1/math/pdal/files/patch-git_080e614
  branches/2017Q1/math/pdal/files/patch-git_3c7e997
  branches/2017Q1/math/pdal/files/patch-git_5a0b123
  branches/2017Q1/math/pdal/files/patch-git_c8a1f88
  branches/2017Q1/math/pdal/files/patch-src_PluginManager.cpp
  branches/2017Q1/math/pdal/files/patch-vendor_gtest-1.7.0_include_gtest_internal_gtest-port.h
Modified:
  branches/2017Q1/math/pdal/Makefile
  branches/2017Q1/math/pdal/distinfo
  branches/2017Q1/math/pdal/pkg-plist
Directory Properties:
  branches/2017Q1/   (props changed)

Modified: branches/2017Q1/math/pdal/Makefile
==============================================================================
--- branches/2017Q1/math/pdal/Makefile	Mon Feb 27 17:23:58 2017	(r434977)
+++ branches/2017Q1/math/pdal/Makefile	Mon Feb 27 17:25:32 2017	(r434978)
@@ -2,11 +2,10 @@
 # $FreeBSD$
 
 PORTNAME=	pdal
-PORTVERSION=	1.1.0
-PORTREVISION=	3
+PORTVERSION=	1.4.0
 CATEGORIES=	math databases graphics
 
-MAINTAINER=	coder@tuxfamily.org
+MAINTAINER=	lbartoletti@tuxfamily.org
 COMMENT=	Library for translating and manipulating point cloud data
 
 LICENSE=	BSD3CLAUSE
@@ -14,11 +13,13 @@ LICENSE_FILE=	${WRKSRC}/LICENSE.txt
 
 LIB_DEPENDS=	libgdal.so:graphics/gdal \
 		libgeos.so:graphics/geos \
-		libboost_thread.so:devel/boost-libs
+		libboost_thread.so:devel/boost-libs \
+		libcurl.so:ftp/curl \
+		libgeotiff.so:graphics/libgeotiff \
+		libxml2.so:textproc/libxml2 \
+		liblaszip.so:archivers/laszip
 
-BROKEN=		does not build (error: typedef redefinition with different types ('struct GTIFS *' vs 'struct gtiff'))
-
-USES=		cmake:outsource compiler:c++11-lib pathfix pkgconfig
+USES=		cmake:outsource compiler:c++11-lib pathfix pkgconfig execinfo
 USE_LDCONFIG=	yes
 USE_GITHUB=	yes
 GH_ACCOUNT=	${PORTNAME:tu}
@@ -27,10 +28,12 @@ GH_PROJECT=	${GH_ACCOUNT}
 # Unhide std::to_string() to fix build with GCC (see ports/193528 for details).
 CXXFLAGS+=	-D_GLIBCXX_USE_C99
 
-OPTIONS_DEFINE=	GEOTIFF LIBXML2 LASZIP APPS BASH ATTRIBUTE \
+CMAKE_ARGS+=	-DWITH_LASZIP:BOOL=TRUE #Doesn't build without laszip. LASZIP is recommended
+
+OPTIONS_DEFINE=	BASH \
 		ICEBRIDGE PGPOINTCLOUD SQLITE \
 		PYTHON TESTS
-OPTIONS_DEFAULT=	GEOTIFF LIBXML2 LASZIP APPS
+OPTIONS_DEFAULT=	PYTHON TESTS
 #Plugins with lib not in port:
 #RivLib, Matlab, MrSID, CPD, GeoWave, GreyHound, HexBin
 OPTIONS_SUB=	yes
@@ -56,33 +59,19 @@ TESTS_DESC=	Enable Tests
 TESTS_CMAKE_ON=	-DBUILD_PLUGIN_TESTS:BOOL=TRUE
 TESTS_CMAKE_OFF=	DBUILD_PLUGIN_TESTS:BOOL=FALSE
 
-ATTRIBUTE_DESC=	Enable attribute plugin
-ATTRIBUTE_CMAKE_ON=	-DBUILD_PLUGIN_ATTRIBUTE:BOOL=TRUE
-ATTRIBUTE_CMAKE_OFF=	-DBUILD_PLUGIN_ATTRIBUTE:BOOL=FALSE
-
 ICEBRIDGE_DESC=	Enable Icebridge plugin
 ICEBRIDGE_LIB_DEPENDS=	libhdf5.so:science/hdf5
 ICEBRIDGE_CMAKE_ON=	-DBUILD_PLUGIN_ICEBRIDGE:BOOL=TRUE
 ICEBRIDGE_CMAKE_OFF=	-DBUILD_PLUGIN_ICEBRIDGE:BOOL=FALSE
 
-APPS_DESC=	PDAL command line application
-APPS_CMAKE_ON=	-DWITH_APPS:BOOL=TRUE
-APPS_CMAKE_OFF=	-DWITH_APPS:BOOL=FALSE
-
 BASH_DESC=	BASH completion
-BASH_CMAKE_ON=	-DWITH_BASH:BOOL=TRUE
+BASH_CMAKE_ON=	-DWITH_COMPLETION:BOOL=TRUE
 BASH_RUN_DEPENDS=	bash:shells/bash
-BASH_CMAKE_OFF=	-DWITH_BASH:BOOL=FALSE
-
-LASZIP_DESC=	Enable LASZip support (Recommended)
-LASZIP_LIB_DEPENDS=	liblaszip.so:archivers/laszip
+BASH_CMAKE_OFF=	-DWITH_COMPLETION:BOOL=FALSE
 
-GEOTIFF_CMAKE_ON=	-DWITH_GEOTIFF:BOOL=TRUE
-GEOTIFF_LIB_DEPENDS=	libgeotiff.so:graphics/libgeotiff
-GEOTIFF_CMAKE_OFF=	-DWITH_GEOTIFF:BOOL=FALSE
-
-LIBXML2_CMAKE_ON=	-DWITH_LIBXML2:BOOL=TRUE
-LIBXML2_LIB_DEPENDS=	libxml2.so:textproc/libxml2
-LIBXML2_CMAKE_OFF=	-DWITH_LIBXML2:BOOL=FALSE
+post-install-BASH-on:
+	${MKDIR} ${STAGEDIR}${PREFIX}/share/bash-completion/completions
+	${INSTALL_DATA} ${WRKSRC}/scripts/bash-completion/pdal \
+		${STAGEDIR}${PREFIX}/share/bash-completion/completions
 
 .include <bsd.port.mk>

Modified: branches/2017Q1/math/pdal/distinfo
==============================================================================
--- branches/2017Q1/math/pdal/distinfo	Mon Feb 27 17:23:58 2017	(r434977)
+++ branches/2017Q1/math/pdal/distinfo	Mon Feb 27 17:25:32 2017	(r434978)
@@ -1,2 +1,3 @@
-SHA256 (PDAL-PDAL-1.1.0_GH0.tar.gz) = 70e0c84035b3fdc75c4eb72dde62a7a2138171d249f2a607170f79d5cafe589d
-SIZE (PDAL-PDAL-1.1.0_GH0.tar.gz) = 37323319
+TIMESTAMP = 1482219332
+SHA256 (PDAL-PDAL-1.4.0_GH0.tar.gz) = 199b34f77d48e468ff2dd2077766b63893d6be99a1db28cadfaee4f92978aed1
+SIZE (PDAL-PDAL-1.4.0_GH0.tar.gz) = 65673606

Copied: branches/2017Q1/math/pdal/files/patch-apps_CMakeLists.txt (from r434977, head/math/pdal/files/patch-apps_CMakeLists.txt)
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ branches/2017Q1/math/pdal/files/patch-apps_CMakeLists.txt	Mon Feb 27 17:25:32 2017	(r434978, copy of r434977, head/math/pdal/files/patch-apps_CMakeLists.txt)
@@ -0,0 +1,11 @@
+--- apps/CMakeLists.txt.orig	2017-01-06 20:53:26 UTC
++++ apps/CMakeLists.txt
+@@ -60,7 +60,7 @@ file(MAKE_DIRECTORY "${PDAL_OUTPUT_LIB_D
+ configure_file(${CMAKE_CURRENT_SOURCE_DIR}/pdal.pc.in
+                ${CMAKE_CURRENT_BINARY_DIR}/pdal.pc @ONLY)
+ install(FILES ${CMAKE_CURRENT_BINARY_DIR}/pdal.pc
+-    DESTINATION "${PDAL_LIB_INSTALL_DIR}/pkgconfig/"
++    DESTINATION "${CMAKE_INSTALL_PREFIX}/libdata/pkgconfig/"
+     PERMISSIONS OWNER_READ OWNER_WRITE GROUP_READ WORLD_READ)
+ 
+ if(UNIX OR APPLE)

Copied: branches/2017Q1/math/pdal/files/patch-dimbuilder_CMakeLists.txt (from r434977, head/math/pdal/files/patch-dimbuilder_CMakeLists.txt)
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ branches/2017Q1/math/pdal/files/patch-dimbuilder_CMakeLists.txt	Mon Feb 27 17:25:32 2017	(r434978, copy of r434977, head/math/pdal/files/patch-dimbuilder_CMakeLists.txt)
@@ -0,0 +1,9 @@
+--- dimbuilder/CMakeLists.txt.orig	2017-01-06 20:52:21 UTC
++++ dimbuilder/CMakeLists.txt
+@@ -30,5 +30,5 @@ if (PDAL_HAVE_JSONCPP)
+     target_link_libraries(dimbuilder PRIVATE ${PDAL_JSONCPP_LIB_NAME})
+ endif()
+ if (UNIX AND NOT APPLE)
+-    target_link_libraries(dimbuilder PRIVATE dl)
++    target_link_libraries(dimbuilder PRIVATE ${CMAKE_DL_LIBS} execinfo)
+ endif()

Copied: branches/2017Q1/math/pdal/files/patch-pdal_util_CMakeLists.txt (from r434977, head/math/pdal/files/patch-pdal_util_CMakeLists.txt)
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ branches/2017Q1/math/pdal/files/patch-pdal_util_CMakeLists.txt	Mon Feb 27 17:25:32 2017	(r434978, copy of r434977, head/math/pdal/files/patch-pdal_util_CMakeLists.txt)
@@ -0,0 +1,11 @@
+--- pdal/util/CMakeLists.txt.orig	2017-01-06 20:52:21 UTC
++++ pdal/util/CMakeLists.txt
+@@ -25,7 +25,7 @@ target_include_directories(${PDAL_UTIL_L
+ if (UNIX AND NOT APPLE)
+     target_link_libraries(${PDAL_UTIL_LIB_NAME}
+         PRIVATE
+-            dl
++            ${CMAKE_DL_LIBS} execinfo
+     )
+ endif()
+ 

Copied: branches/2017Q1/math/pdal/files/patch-vendor_gtest_include_gtest_internal_gtest-port.h (from r434977, head/math/pdal/files/patch-vendor_gtest_include_gtest_internal_gtest-port.h)
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ branches/2017Q1/math/pdal/files/patch-vendor_gtest_include_gtest_internal_gtest-port.h	Mon Feb 27 17:25:32 2017	(r434978, copy of r434977, head/math/pdal/files/patch-vendor_gtest_include_gtest_internal_gtest-port.h)
@@ -0,0 +1,28 @@
+--- vendor/gtest/include/gtest/internal/gtest-port.h.orig	2016-12-15 17:52:00 UTC
++++ vendor/gtest/include/gtest/internal/gtest-port.h
+@@ -92,6 +92,7 @@
+ // the given platform; otherwise undefined):
+ //   GTEST_OS_AIX      - IBM AIX
+ //   GTEST_OS_CYGWIN   - Cygwin
++//   GTEST_OS_FREEBSD     - FreeBSD
+ //   GTEST_OS_HPUX     - HP-UX
+ //   GTEST_OS_LINUX    - Linux
+ //     GTEST_OS_LINUX_ANDROID - Google Android
+@@ -267,6 +268,8 @@
+ # define GTEST_OS_OPENBSD 1
+ #elif defined __QNX__
+ # define GTEST_OS_QNX 1
++#elif defined __FreeBSD__ || defined __DragonFly__
++# define GTEST_OS_FREEBSD 1
+ #endif  // __CYGWIN__
+ 
+ #ifndef GTEST_LANG_CXX11
+@@ -646,7 +649,7 @@ using ::std::tuple_size;
+      (GTEST_OS_MAC && !GTEST_OS_IOS) || GTEST_OS_IOS_SIMULATOR || \
+      (GTEST_OS_WINDOWS_DESKTOP && _MSC_VER >= 1400) || \
+      GTEST_OS_WINDOWS_MINGW || GTEST_OS_AIX || GTEST_OS_HPUX || \
+-     GTEST_OS_OPENBSD || GTEST_OS_QNX)
++     GTEST_OS_OPENBSD || GTEST_OS_QNX || GTEST_OS_FREEBSD)
+ # define GTEST_HAS_DEATH_TEST 1
+ # include <vector>  // NOLINT
+ #endif

Modified: branches/2017Q1/math/pdal/pkg-plist
==============================================================================
--- branches/2017Q1/math/pdal/pkg-plist	Mon Feb 27 17:23:58 2017	(r434977)
+++ branches/2017Q1/math/pdal/pkg-plist	Mon Feb 27 17:25:32 2017	(r434978)
@@ -1,98 +1,132 @@
 bin/pdal
 bin/pdal-config
-include/pdal/BpfCompressor.hpp
-include/pdal/BpfHeader.hpp
-include/pdal/BpfReader.hpp
-include/pdal/BpfWriter.hpp
-include/pdal/BufferReader.hpp
-include/pdal/ChipperFilter.hpp
-include/pdal/ColorizationFilter.hpp
 include/pdal/Compression.hpp
-include/pdal/CropFilter.hpp
 include/pdal/DbReader.hpp
 include/pdal/DbWriter.hpp
-include/pdal/DecimationFilter.hpp
-include/pdal/DeltaKernel.hpp
-include/pdal/DerivativeWriter.hpp
-include/pdal/DiffKernel.hpp
+include/pdal/DimDetail.hpp
+include/pdal/DimType.hpp
+include/pdal/DimUtil.hpp
 include/pdal/Dimension.hpp
-include/pdal/DividerFilter.hpp
-include/pdal/FauxReader.hpp
-include/pdal/FerryFilter.hpp
+include/pdal/EigenUtils.hpp
 include/pdal/Filter.hpp
 include/pdal/FlexWriter.hpp
-include/pdal/GDALReader.hpp
 include/pdal/GDALUtils.hpp
+include/pdal/GEOSUtils.hpp
 include/pdal/Geometry.hpp
-include/pdal/GeotiffSupport.hpp
-include/pdal/GlobalEnvironment.hpp
-include/pdal/HeaderVal.hpp
-include/pdal/Ilvis2Reader.hpp
-include/pdal/InfoKernel.hpp
 include/pdal/KDIndex.hpp
 include/pdal/Kernel.hpp
 include/pdal/KernelFactory.hpp
-include/pdal/KernelSupport.hpp
-include/pdal/LasError.hpp
-include/pdal/LasHeader.hpp
-include/pdal/LasReader.hpp
-include/pdal/LasUtils.hpp
-include/pdal/LasWriter.hpp
 include/pdal/Log.hpp
-include/pdal/MergeFilter.hpp
-include/pdal/MergeKernel.hpp
 include/pdal/Metadata.hpp
-include/pdal/MortonOrderFilter.hpp
-include/pdal/NullWriter.hpp
-include/pdal/OptechCommon.hpp
-include/pdal/OptechReader.hpp
-include/pdal/OptechRotationMatrix.hpp
 include/pdal/Options.hpp
 include/pdal/PDALUtils.hpp
-include/pdal/PipelineKernel.hpp
+include/pdal/PipelineExecutor.hpp
 include/pdal/PipelineManager.hpp
-include/pdal/PipelineReader.hpp
+include/pdal/PipelineReaderJSON.hpp
 include/pdal/PipelineWriter.hpp
 include/pdal/PluginManager.hpp
-include/pdal/PlyReader.hpp
-include/pdal/PlyWriter.hpp
+include/pdal/PointContainer.hpp
 include/pdal/PointLayout.hpp
+include/pdal/PointRef.hpp
 include/pdal/PointTable.hpp
 include/pdal/PointView.hpp
 include/pdal/PointViewIter.hpp
-include/pdal/QfitReader.hpp
+include/pdal/Polygon.hpp
 include/pdal/QuadIndex.hpp
 include/pdal/QuickInfo.hpp
-include/pdal/RandomKernel.hpp
-include/pdal/RandomizeFilter.hpp
-include/pdal/RangeFilter.hpp
 include/pdal/Reader.hpp
-include/pdal/ReprojectionFilter.hpp
-include/pdal/SbetCommon.hpp
-include/pdal/SbetReader.hpp
-include/pdal/SbetWriter.hpp
-include/pdal/SortFilter.hpp
-include/pdal/SortKernel.hpp
+include/pdal/Scaling.hpp
 include/pdal/SpatialReference.hpp
-include/pdal/SplitKernel.hpp
-include/pdal/SplitterFilter.hpp
 include/pdal/Stage.hpp
 include/pdal/StageFactory.hpp
 include/pdal/StageWrapper.hpp
-include/pdal/StatsFilter.hpp
-include/pdal/SummaryData.hpp
-include/pdal/TIndexKernel.hpp
-include/pdal/TIndexReader.hpp
-include/pdal/TerrasolidReader.hpp
-include/pdal/TextWriter.hpp
-include/pdal/TransformationFilter.hpp
-include/pdal/TranslateKernel.hpp
-include/pdal/UserCallback.hpp
-include/pdal/VariableLengthRecord.hpp
 include/pdal/Writer.hpp
 include/pdal/XMLSchema.hpp
-include/pdal/ZipPoint.hpp
+include/pdal/filters/ApproximateCoplanarFilter.hpp
+include/pdal/filters/AttributeFilter.hpp
+include/pdal/filters/ChipperFilter.hpp
+include/pdal/filters/ColorInterpRamps.hpp
+include/pdal/filters/ColorinterpFilter.hpp
+include/pdal/filters/ColorizationFilter.hpp
+include/pdal/filters/ComputeRangeFilter.hpp
+include/pdal/filters/CropFilter.hpp
+include/pdal/filters/DecimationFilter.hpp
+include/pdal/filters/DividerFilter.hpp
+include/pdal/filters/EigenvaluesFilter.hpp
+include/pdal/filters/EstimateRankFilter.hpp
+include/pdal/filters/FerryFilter.hpp
+include/pdal/filters/HAGFilter.hpp
+include/pdal/filters/IQRFilter.hpp
+include/pdal/filters/KDistanceFilter.hpp
+include/pdal/filters/LOFFilter.hpp
+include/pdal/filters/MADFilter.hpp
+include/pdal/filters/MergeFilter.hpp
+include/pdal/filters/MongusFilter.hpp
+include/pdal/filters/MortonOrderFilter.hpp
+include/pdal/filters/NormalFilter.hpp
+include/pdal/filters/OutlierFilter.hpp
+include/pdal/filters/PMFFilter.hpp
+include/pdal/filters/RadialDensityFilter.hpp
+include/pdal/filters/RandomizeFilter.hpp
+include/pdal/filters/RangeFilter.hpp
+include/pdal/filters/ReprojectionFilter.hpp
+include/pdal/filters/SMRFilter.hpp
+include/pdal/filters/SampleFilter.hpp
+include/pdal/filters/SortFilter.hpp
+include/pdal/filters/SplitterFilter.hpp
+include/pdal/filters/StatsFilter.hpp
+include/pdal/filters/StreamCallbackFilter.hpp
+include/pdal/filters/TransformationFilter.hpp
 include/pdal/gitsha.h
+include/pdal/io/BpfCompressor.hpp
+include/pdal/io/BpfHeader.hpp
+include/pdal/io/BpfReader.hpp
+include/pdal/io/BpfWriter.hpp
+include/pdal/io/BufferReader.hpp
+include/pdal/io/DerivativeWriter.hpp
+include/pdal/io/FauxReader.hpp
+include/pdal/io/GDALGrid.hpp
+include/pdal/io/GDALReader.hpp
+include/pdal/io/GDALWriter.hpp
+include/pdal/io/GeotiffSupport.hpp
+include/pdal/io/HeaderVal.hpp
+include/pdal/io/Ilvis2MetadataReader.hpp
+include/pdal/io/Ilvis2Reader.hpp
+include/pdal/io/LasError.hpp
+include/pdal/io/LasHeader.hpp
+include/pdal/io/LasReader.hpp
+include/pdal/io/LasSummaryData.hpp
+include/pdal/io/LasUtils.hpp
+include/pdal/io/LasVLR.hpp
+include/pdal/io/LasWriter.hpp
+include/pdal/io/LasZipPoint.hpp
+include/pdal/io/NullWriter.hpp
+include/pdal/io/OptechCommon.hpp
+include/pdal/io/OptechReader.hpp
+include/pdal/io/OptechRotationMatrix.hpp
+include/pdal/io/PlyReader.hpp
+include/pdal/io/PlyWriter.hpp
+include/pdal/io/PtsReader.hpp
+include/pdal/io/QfitReader.hpp
+include/pdal/io/SbetCommon.hpp
+include/pdal/io/SbetReader.hpp
+include/pdal/io/SbetWriter.hpp
+include/pdal/io/TIndexReader.hpp
+include/pdal/io/TerrasolidReader.hpp
+include/pdal/io/TextReader.hpp
+include/pdal/io/TextWriter.hpp
+include/pdal/kernels/DeltaKernel.hpp
+include/pdal/kernels/DiffKernel.hpp
+include/pdal/kernels/GroundKernel.hpp
+include/pdal/kernels/HausdorffKernel.hpp
+include/pdal/kernels/InfoKernel.hpp
+include/pdal/kernels/MergeKernel.hpp
+include/pdal/kernels/PipelineKernel.hpp
+include/pdal/kernels/RandomKernel.hpp
+include/pdal/kernels/SortKernel.hpp
+include/pdal/kernels/SplitKernel.hpp
+include/pdal/kernels/TIndexKernel.hpp
+include/pdal/kernels/TranslateKernel.hpp
 include/pdal/pdal.hpp
 include/pdal/pdal_config.hpp
 include/pdal/pdal_defines.h
@@ -111,35 +145,54 @@ include/pdal/plugin.hpp
 include/pdal/util/Algorithm.hpp
 include/pdal/util/Bounds.hpp
 include/pdal/util/Charbuf.hpp
-include/pdal/util/Endian.hpp
 include/pdal/util/Extractor.hpp
 include/pdal/util/FileUtils.hpp
 include/pdal/util/Georeference.hpp
 include/pdal/util/IStream.hpp
 include/pdal/util/Inserter.hpp
 include/pdal/util/OStream.hpp
+include/pdal/util/ProgramArgs.hpp
 include/pdal/util/Utils.hpp
+include/pdal/util/Uuid.hpp
+include/pdal/util/pdal_util_export.hpp
 include/pdal/util/portable_endian.hpp
+lib/libpdal_arbiter.a
 lib/libpdal_base.so
-lib/libpdal_base.so.1
-lib/libpdal_base.so.2.0.0
-lib/libpdal_util.so
-lib/libpdal_util.so.1
-lib/libpdal_util.so.2.0.0
-lib/libpdalcpp.so
+lib/libpdal_base.so.4
+lib/libpdal_base.so.5.0.0
+lib/libpdal_boost.a
+lib/libpdal_jsoncpp.a
 %%PYTHON%%lib/libpdal_plang.so
-%%PYTHON%%lib/libpdal_plang.so.1
-%%PYTHON%%lib/libpdal_plang.so.2.0.0
+%%PYTHON%%lib/libpdal_plang.so.4
+%%PYTHON%%lib/libpdal_plang.so.5.0.0
 %%PYTHON%%lib/libpdal_plugin_filter_predicate.so
+%%PYTHON%%lib/libpdal_plugin_filter_predicate.so.4
+%%PYTHON%%lib/libpdal_plugin_filter_predicate.so.5.0.0
 %%PYTHON%%lib/libpdal_plugin_filter_programmable.so
-%%ATTRIBUTE%%lib/libpdal_plugin_filter_attribute.so
+%%PYTHON%%lib/libpdal_plugin_filter_programmable.so.4
+%%PYTHON%%lib/libpdal_plugin_filter_programmable.so.5.0.0
 %%ICEBRIDGE%%lib/libpdal_plugin_reader_icebridge.so
-%%SQLITE%%lib/libpdal_plugin_reader_sqlite.so
-%%SQLITE%%lib/libpdal_plugin_writer_sqlite.so
+%%ICEBRIDGE%%lib/libpdal_plugin_reader_icebridge.so.4
+%%ICEBRIDGE%%lib/libpdal_plugin_reader_icebridge.so.5.0.0
 %%PGPOINTCLOUD%%lib/libpdal_plugin_reader_pgpointcloud.so
+%%PGPOINTCLOUD%%lib/libpdal_plugin_reader_pgpointcloud.so.4
+%%PGPOINTCLOUD%%lib/libpdal_plugin_reader_pgpointcloud.so.5.0.0
+%%SQLITE%%lib/libpdal_plugin_reader_sqlite.so
+%%SQLITE%%lib/libpdal_plugin_reader_sqlite.so.4
+%%SQLITE%%lib/libpdal_plugin_reader_sqlite.so.5.0.0
 %%PGPOINTCLOUD%%lib/libpdal_plugin_writer_pgpointcloud.so
+%%PGPOINTCLOUD%%lib/libpdal_plugin_writer_pgpointcloud.so.4
+%%PGPOINTCLOUD%%lib/libpdal_plugin_writer_pgpointcloud.so.5.0.0
+%%SQLITE%%lib/libpdal_plugin_writer_sqlite.so
+%%SQLITE%%lib/libpdal_plugin_writer_sqlite.so.4
+%%SQLITE%%lib/libpdal_plugin_writer_sqlite.so.5.0.0
+lib/libpdal_util.so
+lib/libpdal_util.so.4
+lib/libpdal_util.so.5.0.0
+lib/libpdalcpp.so
 lib/pdal/cmake/PDALConfig.cmake
 lib/pdal/cmake/PDALConfigVersion.cmake
 lib/pdal/cmake/PDALTargets-%%CMAKE_BUILD_TYPE%%.cmake
 lib/pdal/cmake/PDALTargets.cmake
 libdata/pkgconfig/pdal.pc
+%%BASH%%share/bash-completion/completions/pdal



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201702271725.v1RHPX1h084495>