View | Details | Raw Unified | Return to bug 207059 | Differences between
and this patch

Collapse All | Expand All

(-)b/math/pdal/Makefile (-14 / +56 lines)
Lines 1-8 Link Here
1
# Created by: bart <bart@bureau>
1
# Created by: bart <coder@tuxfamily.org>
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTNAME=	pdal
4
PORTNAME=	pdal
5
PORTVERSION=	0.9.8
5
PORTVERSION=	1.1.0
6
CATEGORIES=	math databases graphics
6
CATEGORIES=	math databases graphics
7
7
8
MAINTAINER=	coder@tuxfamily.org
8
MAINTAINER=	coder@tuxfamily.org
Lines 11-30 COMMENT= Library for translating and manipulating point cloud data Link Here
11
LICENSE=	BSD3CLAUSE
11
LICENSE=	BSD3CLAUSE
12
LICENSE_FILE=	${WRKSRC}/LICENSE.txt
12
LICENSE_FILE=	${WRKSRC}/LICENSE.txt
13
13
14
USES=		cmake compiler:c++11-lang
14
LIB_DEPENDS=	libgdal.so:${PORTSDIR}/graphics/gdal \
15
		libgeos.so:${PORTSDIR}/graphics/geos \
16
		libboost_thread.so:${PORTSDIR}/devel/boost-libs
17
18
USES=		cmake:outsource compiler:c++11-lib pathfix pkgconfig
15
USE_LDCONFIG=	yes
19
USE_LDCONFIG=	yes
16
USE_GITHUB=	yes
20
USE_GITHUB=	yes
17
GH_ACCOUNT=	${PORTNAME:tu}
21
GH_ACCOUNT=	${PORTNAME:tu}
18
GH_PROJECT=	${GH_ACCOUNT}
22
GH_PROJECT=	${GH_ACCOUNT}
19
23
20
OPTIONS_DEFINE=	GDAL GEOTIFF LIBXML2 EMBED_BOOST
24
CXXFLAGS+=        -D_GLIBCXX_USE_C99
21
OPTIONS_DEFAULT=	GDAL GEOTIFF LIBXML2
25
26
OPTIONS_DEFINE=	GEOTIFF LIBXML2 LASZIP APPS BASH ATTRIBUTE \
27
		ICEBRIDGE PGPOINTCLOUD SQLITE \
28
		PYTHON TESTS
29
OPTIONS_DEFAULT=	GEOTIFF LIBXML2 LASZIP APPS
30
#Plugins with lib not in port:
31
#RivLib, Matlab, MrSID, CPD, GeoWave, GreyHound, HexBin
22
OPTIONS_SUB=	yes
32
OPTIONS_SUB=	yes
23
33
24
GDAL_DESC=		Enable GDAL support
34
PGPOINTCLOUD_DESC=	Enable Coherent PostgreSQL Point Cloud plugin
25
GDAL_CMAKE_ON=		-DWITH_GDAL:BOOL=TRUE
35
PGPOINTCLOUD_CMAKE_ON=	-DBUILD_PLUGIN_PGPOINTCLOUD:BOOL=TRUE
26
GDAL_LIB_DEPENDS=	libgdal.so:${PORTSDIR}/graphics/gdal
36
PGPOINTCLOUD_USES=	pgsql
27
GDAL_CMAKE_OFF=		-DWITH_GDAL:BOOL=FALSE
37
PGPOINTCLOUD_CMAKE_OFF=	-DBUILD_PLUGIN_PGPOINTCLOUD:BOOL=FALSE
38
39
SQLITE_DESC=	Enable SQLite plugin
40
SQLITE_CMAKE_ON=	-DBUILD_PLUGIN_SQLITE:BOOL=TRUE
41
SQLITE_USES=	sqlite
42
SQLITE_CMAKE_OFF=	-DBUILD_PLUGIN_SQLITE:BOOL=FALSE
43
44
PYTHON_DESC=	Enable Python plugin
45
PYTHON_CMAKE_ON=	-DBUILD_PLUGIN_PYTHON:BOOL=TRUE
46
PYTHON_USES=	python
47
PYTHON_BUILD_DEPENDS=	${PYNUMPY}
48
PYTHON_RUN_DEPENDS=	${PYNUMPY}
49
PYTHON_CMAKE_OFF=	-DBUILD_PLUGIN_PYTHON:BOOL=FALSE
50
51
TESTS_DESC=	Enable Tests
52
TESTS_CMAKE_ON=	-DBUILD_PLUGIN_TESTS:BOOL=TRUE
53
TESTS_CMAKE_OFF=	DBUILD_PLUGIN_TESTS:BOOL=FALSE
54
55
ATTRIBUTE_DESC=	Enable attribute plugin
56
ATTRIBUTE_CMAKE_ON=	-DBUILD_PLUGIN_ATTRIBUTE:BOOL=TRUE
57
ATTRIBUTE_CMAKE_OFF=	-DBUILD_PLUGIN_ATTRIBUTE:BOOL=FALSE
58
59
ICEBRIDGE_DESC=	Enable Icebridge plugin
60
ICEBRIDGE_LIB_DEPENDS=	libhdf5.so:${PORTSDIR}/science/hdf5
61
ICEBRIDGE_CMAKE_ON=	-DBUILD_PLUGIN_ICEBRIDGE:BOOL=TRUE
62
ICEBRIDGE_CMAKE_OFF=	-DBUILD_PLUGIN_ICEBRIDGE:BOOL=FALSE
63
64
APPS_DESC=	PDAL command line application
65
APPS_CMAKE_ON=	-DWITH_APPS:BOOL=TRUE
66
APPS_CMAKE_OFF=	-DWITH_APPS:BOOL=FALSE
67
68
BASH_DESC=	BASH completion
69
BASH_CMAKE_ON=	-DWITH_BASH:BOOL=TRUE
70
BASH_RUN_DEPENDS=	bash:${PORTSDIR}/shells/bash
71
BASH_CMAKE_OFF=	-DWITH_BASH:BOOL=FALSE
72
73
LASZIP_DESC=	Enable LASZip support (Recommended)
74
LASZIP_LIB_DEPENDS=	liblaszip.so:${PORTSDIR}/archivers/laszip
28
75
29
GEOTIFF_CMAKE_ON=	-DWITH_GEOTIFF:BOOL=TRUE
76
GEOTIFF_CMAKE_ON=	-DWITH_GEOTIFF:BOOL=TRUE
30
GEOTIFF_LIB_DEPENDS=	libgeotiff.so:${PORTSDIR}/graphics/libgeotiff
77
GEOTIFF_LIB_DEPENDS=	libgeotiff.so:${PORTSDIR}/graphics/libgeotiff
Lines 34-42 LIBXML2_CMAKE_ON= -DWITH_LIBXML2:BOOL=TRUE Link Here
34
LIBXML2_LIB_DEPENDS=	libxml2.so:${PORTSDIR}/textproc/libxml2
81
LIBXML2_LIB_DEPENDS=	libxml2.so:${PORTSDIR}/textproc/libxml2
35
LIBXML2_CMAKE_OFF=	-DWITH_LIBXML2:BOOL=FALSE
82
LIBXML2_CMAKE_OFF=	-DWITH_LIBXML2:BOOL=FALSE
36
83
37
EMBED_BOOST_DESC=	Use embedded rather than system boost
38
EMBED_BOOST_CMAKE_ON=	-DPDAL_EMBED_BOOST:BOOL=TRUE
39
EMBED_BOOST_CMAKE_OFF=	-DPDAL_EMBED_BOOST:BOOL=FALSE
40
EMBED_BOOST_LIB_DEPENDS_OFF=	libboost_thread.so:${PORTSDIR}/devel/boost-libs
41
42
.include <bsd.port.mk>
84
.include <bsd.port.mk>
(-)b/math/pdal/distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
SHA256 (PDAL-PDAL-0.9.8_GH0.tar.gz) = aef41ae7c8b87541eb9cc11c2e17f086ac26799f3e4da0f19f8e78e0538060ff
1
SHA256 (PDAL-PDAL-1.1.0_GH0.tar.gz) = 70e0c84035b3fdc75c4eb72dde62a7a2138171d249f2a607170f79d5cafe589d
2
SIZE (PDAL-PDAL-0.9.8_GH0.tar.gz) = 11046030
2
SIZE (PDAL-PDAL-1.1.0_GH0.tar.gz) = 37323319
(-)b/math/pdal/files/patch-include_pdal_util_portable__endian.hpp (+23 lines)
Added Link Here
1
--- include/pdal/util/portable_endian.hpp.orig	2015-11-25 18:45:33 UTC
2
+++ include/pdal/util/portable_endian.hpp
3
@@ -49,14 +49,14 @@
4
                
5
 #   include <sys/endian.h>
6
                 
7
-#   define be16toh betoh16
8
-#   define le16toh letoh16
9
+#   define betoh16 be16toh
10
+#   define letoh16 le16toh
11
                  
12
-#   define be32toh betoh32
13
-#   define le32toh letoh32
14
+#   define betoh32 be32toh
15
+#   define letoh32 le32toh
16
                   
17
-#   define be64toh betoh64
18
-#   define le64toh letoh64
19
+#   define betoh64 be64toh
20
+#   define letoh64 le64toh
21
                    
22
 #elif defined(__WINDOWS__)
23
                     
(-)a/math/pdal/files/patch-src-Utils.cpp (-10 lines)
Removed Link Here
1
--- src/Utils.cpp.orig	2014-07-27 19:02:59.456832475 +0200
2
+++ src/Utils.cpp	2014-07-27 19:03:23.513363445 +0200
3
@@ -37,6 +37,7 @@
4
 #include <cassert>
5
 #include <cstdlib>
6
 #include <cctype>
7
+#include <sys/wait.h>
8
 
9
 #ifdef PDAL_COMPILER_MSVC
10
 #  pragma warning(disable: 4127)  // conditional expression is constant
(-)b/math/pdal/files/patch-src_PluginManager.cpp (+11 lines)
Added Link Here
1
--- src/PluginManager.cpp.orig	2015-11-25 18:45:33 UTC
2
+++ src/PluginManager.cpp
3
@@ -58,7 +58,7 @@ namespace
4
 {
5
 #if defined(__APPLE__) && defined(__MACH__)
6
     const std::string dynamicLibraryExtension(".dylib");
7
-#elif defined __linux__
8
+#elif defined __linux__ || __FreeBSD__
9
     const std::string dynamicLibraryExtension(".so");
10
 #elif defined _WIN32
11
     const std::string dynamicLibraryExtension(".dll");
(-)b/math/pdal/files/patch-src_util_CMakeLists.txt (+16 lines)
Added Link Here
1
--- src/util/CMakeLists.txt.orig	2016-03-24 21:27:02 UTC
2
+++ src/util/CMakeLists.txt
3
@@ -41,11 +41,11 @@ set_target_properties(${PDAL_UTIL_LIB_NA
4
     CLEAN_DIRECT_OUTPUT 1)
5
 
6
 if (NOT WIN32)
7
-    target_link_libraries(${PDAL_UTIL_LIB_NAME} dl)
8
+    target_link_libraries(${PDAL_UTIL_LIB_NAME})
9
 endif (NOT WIN32)
10
 
11
 if (NOT WIN32)
12
-    target_link_libraries(${PDAL_UTIL_LIB_NAME} dl)
13
+    target_link_libraries(${PDAL_UTIL_LIB_NAME})
14
 endif (NOT WIN32)
15
 
16
 set_property(GLOBAL PROPERTY _UTIL_INCLUDED TRUE)
(-)b/math/pdal/files/patch-src_util_Utils.cpp (+10 lines)
Added Link Here
1
--- src/util/Utils.cpp.orig	2015-11-25 18:45:33 UTC
2
+++ src/util/Utils.cpp
3
@@ -41,6 +41,7 @@
4
 #include <cstdlib>
5
 #include <cctype>
6
 #include <random>
7
+#include <sys/wait.h>
8
 
9
 #ifndef _WIN32
10
 #include <cxxabi.h>
(-)b/math/pdal/files/patch-vendor_gtest-1.7.0_include_gtest_internal_gtest-port.h (+28 lines)
Added Link Here
1
--- vendor/gtest-1.7.0/include/gtest/internal/gtest-port.h.orig	2016-03-24 21:27:13 UTC
2
+++ vendor/gtest-1.7.0/include/gtest/internal/gtest-port.h
3
@@ -92,6 +92,7 @@
4
 // the given platform; otherwise undefined):
5
 //   GTEST_OS_AIX      - IBM AIX
6
 //   GTEST_OS_CYGWIN   - Cygwin
7
+//   GTEST_OS_FREEBSD     - FreeBSD
8
 //   GTEST_OS_HPUX     - HP-UX
9
 //   GTEST_OS_LINUX    - Linux
10
 //     GTEST_OS_LINUX_ANDROID - Google Android
11
@@ -267,6 +268,8 @@
12
 # define GTEST_OS_OPENBSD 1
13
 #elif defined __QNX__
14
 # define GTEST_OS_QNX 1
15
+#elif defined __FreeBSD__
16
+# define GTEST_OS_FREEBSD 1
17
 #endif  // __CYGWIN__
18
 
19
 #ifndef GTEST_LANG_CXX11
20
@@ -646,7 +649,7 @@ using ::std::tuple_size;
21
      (GTEST_OS_MAC && !GTEST_OS_IOS) || GTEST_OS_IOS_SIMULATOR || \
22
      (GTEST_OS_WINDOWS_DESKTOP && _MSC_VER >= 1400) || \
23
      GTEST_OS_WINDOWS_MINGW || GTEST_OS_AIX || GTEST_OS_HPUX || \
24
-     GTEST_OS_OPENBSD || GTEST_OS_QNX)
25
+     GTEST_OS_OPENBSD || GTEST_OS_QNX || GTEST_OS_FREEBSD)
26
 # define GTEST_HAS_DEATH_TEST 1
27
 # include <vector>  // NOLINT
28
 #endif
(-)b/math/pdal/files/patch-vendor_nanoflann-1.1.8_nanoflann.hpp (+10 lines)
Added Link Here
1
--- vendor/nanoflann-1.1.8/nanoflann.hpp.orig	2015-11-25 18:45:33 UTC
2
+++ vendor/nanoflann-1.1.8/nanoflann.hpp
3
@@ -38,6 +38,7 @@
4
 #include <algorithm>
5
 #include <stdexcept>
6
 #include <cstdio>  // for fwrite()
7
+#include <cstdlib> // for malloc()
8
 #include <cmath>   // for fabs(),...
9
 #include <limits>
10
 
(-)b/math/pdal/pkg-plist (-75 / +117 lines)
Lines 1-103 Link Here
1
bin/pc2pc
1
bin/pdal
2
bin/pcequal
3
bin/pcinfo
4
bin/pcpipeline
5
bin/pcquery
6
bin/pdal-config
2
bin/pdal-config
7
include/pdal/Bounds.hpp
3
include/pdal/BpfCompressor.hpp
4
include/pdal/BpfHeader.hpp
5
include/pdal/BpfReader.hpp
6
include/pdal/BpfWriter.hpp
7
include/pdal/BufferReader.hpp
8
include/pdal/ChipperFilter.hpp
9
include/pdal/ColorizationFilter.hpp
10
include/pdal/Compression.hpp
11
include/pdal/CropFilter.hpp
12
include/pdal/DbReader.hpp
13
include/pdal/DbWriter.hpp
14
include/pdal/DecimationFilter.hpp
15
include/pdal/DeltaKernel.hpp
16
include/pdal/DerivativeWriter.hpp
17
include/pdal/DiffKernel.hpp
8
include/pdal/Dimension.hpp
18
include/pdal/Dimension.hpp
9
include/pdal/Endian.hpp
19
include/pdal/DividerFilter.hpp
10
include/pdal/FileUtils.hpp
20
include/pdal/FauxReader.hpp
21
include/pdal/FerryFilter.hpp
11
include/pdal/Filter.hpp
22
include/pdal/Filter.hpp
12
include/pdal/FilterIterator.hpp
23
include/pdal/FlexWriter.hpp
24
include/pdal/GDALReader.hpp
13
include/pdal/GDALUtils.hpp
25
include/pdal/GDALUtils.hpp
26
include/pdal/Geometry.hpp
27
include/pdal/GeotiffSupport.hpp
14
include/pdal/GlobalEnvironment.hpp
28
include/pdal/GlobalEnvironment.hpp
29
include/pdal/HeaderVal.hpp
30
include/pdal/Ilvis2Reader.hpp
31
include/pdal/InfoKernel.hpp
32
include/pdal/KDIndex.hpp
33
include/pdal/Kernel.hpp
34
include/pdal/KernelFactory.hpp
35
include/pdal/KernelSupport.hpp
36
include/pdal/LasError.hpp
37
include/pdal/LasHeader.hpp
38
include/pdal/LasReader.hpp
39
include/pdal/LasUtils.hpp
40
include/pdal/LasWriter.hpp
15
include/pdal/Log.hpp
41
include/pdal/Log.hpp
42
include/pdal/MergeFilter.hpp
43
include/pdal/MergeKernel.hpp
16
include/pdal/Metadata.hpp
44
include/pdal/Metadata.hpp
17
include/pdal/MultiFilter.hpp
45
include/pdal/MortonOrderFilter.hpp
18
include/pdal/MultiFilterIterator.hpp
46
include/pdal/NullWriter.hpp
19
include/pdal/Object.hpp
47
include/pdal/OptechCommon.hpp
48
include/pdal/OptechReader.hpp
49
include/pdal/OptechRotationMatrix.hpp
20
include/pdal/Options.hpp
50
include/pdal/Options.hpp
51
include/pdal/PDALUtils.hpp
52
include/pdal/PipelineKernel.hpp
21
include/pdal/PipelineManager.hpp
53
include/pdal/PipelineManager.hpp
22
include/pdal/PipelineReader.hpp
54
include/pdal/PipelineReader.hpp
23
include/pdal/PipelineWriter.hpp
55
include/pdal/PipelineWriter.hpp
24
include/pdal/PointBuffer.hpp
56
include/pdal/PluginManager.hpp
25
include/pdal/Range.hpp
57
include/pdal/PlyReader.hpp
58
include/pdal/PlyWriter.hpp
59
include/pdal/PointLayout.hpp
60
include/pdal/PointTable.hpp
61
include/pdal/PointView.hpp
62
include/pdal/PointViewIter.hpp
63
include/pdal/QfitReader.hpp
64
include/pdal/QuadIndex.hpp
65
include/pdal/QuickInfo.hpp
66
include/pdal/RandomKernel.hpp
67
include/pdal/RandomizeFilter.hpp
68
include/pdal/RangeFilter.hpp
26
include/pdal/Reader.hpp
69
include/pdal/Reader.hpp
27
include/pdal/ReaderIterator.hpp
70
include/pdal/ReprojectionFilter.hpp
28
include/pdal/Schema.hpp
71
include/pdal/SbetCommon.hpp
72
include/pdal/SbetReader.hpp
73
include/pdal/SbetWriter.hpp
74
include/pdal/SortFilter.hpp
75
include/pdal/SortKernel.hpp
29
include/pdal/SpatialReference.hpp
76
include/pdal/SpatialReference.hpp
77
include/pdal/SplitKernel.hpp
78
include/pdal/SplitterFilter.hpp
30
include/pdal/Stage.hpp
79
include/pdal/Stage.hpp
31
include/pdal/StageBase.hpp
32
include/pdal/StageFactory.hpp
80
include/pdal/StageFactory.hpp
33
include/pdal/StageIterator.hpp
81
include/pdal/StageWrapper.hpp
34
include/pdal/StreamFactory.hpp
82
include/pdal/StatsFilter.hpp
35
include/pdal/ThreadEnvironment.hpp
83
include/pdal/SummaryData.hpp
84
include/pdal/TIndexKernel.hpp
85
include/pdal/TIndexReader.hpp
86
include/pdal/TerrasolidReader.hpp
87
include/pdal/TextWriter.hpp
88
include/pdal/TransformationFilter.hpp
89
include/pdal/TranslateKernel.hpp
36
include/pdal/UserCallback.hpp
90
include/pdal/UserCallback.hpp
37
include/pdal/Utils.hpp
91
include/pdal/VariableLengthRecord.hpp
38
include/pdal/Vector.hpp
39
include/pdal/Writer.hpp
92
include/pdal/Writer.hpp
40
include/pdal/XMLSchema.hpp
93
include/pdal/XMLSchema.hpp
41
include/pdal/drivers/buffer/Reader.hpp
94
include/pdal/ZipPoint.hpp
42
include/pdal/drivers/caris/CloudIterator.hpp
43
include/pdal/drivers/caris/CloudReader.hpp
44
include/pdal/drivers/faux/Reader.hpp
45
include/pdal/drivers/faux/Writer.hpp
46
include/pdal/drivers/las/Header.hpp
47
include/pdal/drivers/las/Reader.hpp
48
include/pdal/drivers/las/ReaderBase.hpp
49
include/pdal/drivers/las/SummaryData.hpp
50
include/pdal/drivers/las/Support.hpp
51
include/pdal/drivers/las/VariableLengthRecord.hpp
52
include/pdal/drivers/las/Writer.hpp
53
include/pdal/drivers/mrsid/Reader.hpp
54
include/pdal/drivers/nitf/Reader.hpp
55
include/pdal/drivers/nitf/Writer.hpp
56
include/pdal/drivers/oci/Reader.hpp
57
include/pdal/drivers/oci/Writer.hpp
58
include/pdal/drivers/oci/common.hpp
59
include/pdal/drivers/oci/oci_wrapper.h
60
include/pdal/drivers/p2g/Writer.hpp
61
include/pdal/drivers/pgpointcloud/Reader.hpp
62
include/pdal/drivers/pgpointcloud/Writer.hpp
63
include/pdal/drivers/pgpointcloud/common.hpp
64
include/pdal/drivers/pipeline/Reader.hpp
65
include/pdal/drivers/qfit/Reader.hpp
66
include/pdal/drivers/soci/Reader.hpp
67
include/pdal/drivers/soci/Writer.hpp
68
include/pdal/drivers/soci/common.hpp
69
include/pdal/drivers/terrasolid/Reader.hpp
70
include/pdal/drivers/text/Writer.hpp
71
include/pdal/filters/ByteSwap.hpp
72
include/pdal/filters/Cache.hpp
73
include/pdal/filters/Chipper.hpp
74
include/pdal/filters/Color.hpp
75
include/pdal/filters/Colorization.hpp
76
include/pdal/filters/Crop.hpp
77
include/pdal/filters/Decimation.hpp
78
include/pdal/filters/HexBin.hpp
79
include/pdal/filters/InPlaceReprojection.hpp
80
include/pdal/filters/Index.hpp
81
include/pdal/filters/Mosaic.hpp
82
include/pdal/filters/PointBufferCache.hpp
83
include/pdal/filters/Predicate.hpp
84
include/pdal/filters/Programmable.hpp
85
include/pdal/filters/Reprojection.hpp
86
include/pdal/filters/Scaling.hpp
87
include/pdal/filters/Selector.hpp
88
include/pdal/filters/Stats.hpp
89
include/pdal/gitsha.h
95
include/pdal/gitsha.h
96
include/pdal/pdal.hpp
90
include/pdal/pdal_config.hpp
97
include/pdal/pdal_config.hpp
91
include/pdal/pdal_defines.h
98
include/pdal/pdal_defines.h
92
include/pdal/pdal_error.hpp
93
include/pdal/pdal_export.hpp
99
include/pdal/pdal_export.hpp
94
include/pdal/pdal_internal.hpp
100
include/pdal/pdal_internal.hpp
95
include/pdal/pdal_macros.hpp
101
include/pdal/pdal_macros.hpp
102
include/pdal/pdal_test_main.hpp
96
include/pdal/pdal_types.hpp
103
include/pdal/pdal_types.hpp
104
include/pdal/plang/Array.hpp
97
include/pdal/plang/BufferedInvocation.hpp
105
include/pdal/plang/BufferedInvocation.hpp
106
include/pdal/plang/Environment.hpp
98
include/pdal/plang/Invocation.hpp
107
include/pdal/plang/Invocation.hpp
99
include/pdal/plang/PythonEnvironment.hpp
108
include/pdal/plang/Redirector.hpp
100
include/pdal/plang/Script.hpp
109
include/pdal/plang/Script.hpp
101
include/pdal/third/nanoflann.hpp
110
include/pdal/plugin.hpp
102
lib/libpdal.so
111
include/pdal/util/Algorithm.hpp
103
lib/libpdal.so.0
112
include/pdal/util/Bounds.hpp
113
include/pdal/util/Charbuf.hpp
114
include/pdal/util/Endian.hpp
115
include/pdal/util/Extractor.hpp
116
include/pdal/util/FileUtils.hpp
117
include/pdal/util/Georeference.hpp
118
include/pdal/util/IStream.hpp
119
include/pdal/util/Inserter.hpp
120
include/pdal/util/OStream.hpp
121
include/pdal/util/Utils.hpp
122
include/pdal/util/portable_endian.hpp
123
lib/libpdal_base.so
124
lib/libpdal_base.so.1
125
lib/libpdal_base.so.2.0.0
126
lib/libpdal_util.so
127
lib/libpdal_util.so.1
128
lib/libpdal_util.so.2.0.0
129
lib/libpdalcpp.so
130
%%PYTHON%%lib/libpdal_plang.so
131
%%PYTHON%%lib/libpdal_plang.so.1
132
%%PYTHON%%lib/libpdal_plang.so.2.0.0
133
%%PYTHON%%lib/libpdal_plugin_filter_predicate.so
134
%%PYTHON%%lib/libpdal_plugin_filter_programmable.so
135
%%ATTRIBUTE%%lib/libpdal_plugin_filter_attribute.so
136
%%ICEBRIDGE%%lib/libpdal_plugin_reader_icebridge.so
137
%%SQLITE%%lib/libpdal_plugin_reader_sqlite.so
138
%%SQLITE%%lib/libpdal_plugin_writer_sqlite.so
139
%%PGPOINTCLOUD%%lib/libpdal_plugin_reader_pgpointcloud.so
140
%%PGPOINTCLOUD%%lib/libpdal_plugin_writer_pgpointcloud.so
141
lib/pdal/cmake/PDALConfig.cmake
142
lib/pdal/cmake/PDALConfigVersion.cmake
143
lib/pdal/cmake/PDALTargets-%%CMAKE_BUILD_TYPE%%.cmake
144
lib/pdal/cmake/PDALTargets.cmake
145
libdata/pkgconfig/pdal.pc

Return to bug 207059