diff --git a/graphics/osgearth/Makefile b/graphics/osgearth/Makefile index e60947f3e3e5..4575b146d7b1 100644 --- a/graphics/osgearth/Makefile +++ b/graphics/osgearth/Makefile @@ -1,58 +1,57 @@ PORTNAME= osgearth -PORTVERSION= 3.5 +PORTVERSION= 3.6.1 DISTVERSIONPREFIX= ${PORTNAME}- -PORTREVISION= 3 CATEGORIES= graphics geography MAINTAINER= zirias@FreeBSD.org COMMENT= C++ terrain rendering toolkit for OpenSceneGraph WWW= http://osgearth.org/ LICENSE= LGPL3 LICENSE_FILE= ${WRKSRC}/LICENSE.txt LIB_DEPENDS= libcurl.so:ftp/curl \ libgdal.so:graphics/gdal \ libgeos_c.so:graphics/geos \ libosg.so:graphics/osg \ libprotobuf.so:devel/protobuf \ libwebp.so:graphics/webp USES= cmake compiler:c++17-lang gl pkgconfig sqlite USE_CXXSTD= c++17 USE_GITHUB= yes GH_ACCOUNT= gwaldron ocornut:imgui Esri:lerc Tencent:rapidjson GH_PROJECT= imgui:imgui lerc:lerc rapidjson:rapidjson -GH_TAGNAME= 9e8e5ac:imgui 19542a0:lerc f54b0e4:rapidjson +GH_TAGNAME= cab7edd:imgui 19542a0:lerc f54b0e4:rapidjson USE_GL= gl USE_LDCONFIG= yes CMAKE_ARGS+= -DCMAKE_INCLUDE_PATH:PATH=${LOCALBASE}/include \ -DCMAKE_LIBRARY_PATH:PATH=${LOCALBASE}/lib \ -DLIB_POSTFIX:STRING="" LDFLAGS+= -Wl,--as-needed PLIST_SUB= PORTVERSION=${PORTVERSION} OPTIONS_DEFINE= SPDLOG OPTIONS_DEFAULT= SPDLOG SPDLOG_DESC= Logging support via devel/spdlog SPDLOG_LIB_DEPENDS= libspdlog.so:devel/spdlog post-extract: .for sm in imgui lerc rapidjson @${MV} ${WRKSRC_${sm}}/* ${WRKSRC}/src/third_party/${sm}/ .endfor post-patch-SPDLOG-off: @${REINPLACE_CMD} '/find_package(spdlog)/d' ${WRKSRC}/CMakeLists.txt .include .if ${ARCH} != amd64 EXTRA_PATCHES+= ${FILESDIR}/extra-patch-no-ia32-sse .endif .include diff --git a/graphics/osgearth/distinfo b/graphics/osgearth/distinfo index 2d0aa6d34d2f..3dcacd9a3310 100644 --- a/graphics/osgearth/distinfo +++ b/graphics/osgearth/distinfo @@ -1,9 +1,9 @@ -TIMESTAMP = 1698300300 -SHA256 (gwaldron-osgearth-osgearth-3.5_GH0.tar.gz) = 9204759f3df0d05356bdead71c13b9e9a086c9ebfa3daa93c149dd7aa664d378 -SIZE (gwaldron-osgearth-osgearth-3.5_GH0.tar.gz) = 119658258 -SHA256 (ocornut-imgui-9e8e5ac_GH0.tar.gz) = da877be818e7f4f20915c9982081f958bf5f68b26a5afde64c263427aff8097b -SIZE (ocornut-imgui-9e8e5ac_GH0.tar.gz) = 1592220 +TIMESTAMP = 1724998365 +SHA256 (gwaldron-osgearth-osgearth-3.6.1_GH0.tar.gz) = 38069c30520331b476c9cd3833e0471c3fc96e12e327404aa0ad13fc2c58c9fe +SIZE (gwaldron-osgearth-osgearth-3.6.1_GH0.tar.gz) = 119666978 +SHA256 (ocornut-imgui-cab7edd_GH0.tar.gz) = aab343459ef16baab1ace818296220ff11c5c0140dca832bef82c646adb9f3b2 +SIZE (ocornut-imgui-cab7edd_GH0.tar.gz) = 1806446 SHA256 (Esri-lerc-19542a0_GH0.tar.gz) = 5d48ae91b45343c68da336ef6996af3b9495452970185244e21253f4c711e529 SIZE (Esri-lerc-19542a0_GH0.tar.gz) = 4247805 SHA256 (Tencent-rapidjson-f54b0e4_GH0.tar.gz) = 35c330d40ed9def99e8dea8f3b0e4fda7610b813b6f4aac9a70ffefcb9ab1f1e SIZE (Tencent-rapidjson-f54b0e4_GH0.tar.gz) = 1019457 diff --git a/graphics/osgearth/files/extra-patch-no-ia32-sse b/graphics/osgearth/files/extra-patch-no-ia32-sse index ae7e8a338d36..9fc54fdcac0b 100644 --- a/graphics/osgearth/files/extra-patch-no-ia32-sse +++ b/graphics/osgearth/files/extra-patch-no-ia32-sse @@ -1,21 +1,23 @@ ---- src/osgEarthDrivers/fastdxt/CMakeLists.txt.orig 2023-05-16 14:53:59 UTC +--- src/osgEarthDrivers/fastdxt/CMakeLists.txt.orig 2024-08-31 11:55:43 UTC +++ src/osgEarthDrivers/fastdxt/CMakeLists.txt -@@ -30,7 +30,6 @@ SET(TARGET_SRC - dxt.cpp - util.cpp - libdxt.cpp -- intrinsic.cpp - ) +@@ -11,8 +11,7 @@ if(OSGEARTH_ENABLE_FASTDXT) + FastDXTImageProcessor.cpp + dxt.cpp + util.cpp +- libdxt.cpp +- intrinsic.cpp ) ++ libdxt.cpp ) - SETUP_PLUGIN(fastdxt) ---- src/osgEarthDrivers/fastdxt/dxt.cpp.orig 2023-05-16 14:53:59 UTC + ENDIF() + +--- src/osgEarthDrivers/fastdxt/dxt.cpp.orig 2024-08-31 11:55:04 UTC +++ src/osgEarthDrivers/fastdxt/dxt.cpp @@ -6,7 +6,7 @@ #include "dxt.h" #include "util.h" -#define DXT_INTR 1 +#define DXT_INTR 0 void ExtractBlock( const byte *inPtr, int width, byte *colorBlock ); void ExtractBlock_Intrinsics( const byte *inPtr, int width, byte *colorBlock ); diff --git a/graphics/osgearth/files/patch-CMakeLists.txt b/graphics/osgearth/files/patch-CMakeLists.txt index 105746ac83b5..ebd04a0b9d90 100644 --- a/graphics/osgearth/files/patch-CMakeLists.txt +++ b/graphics/osgearth/files/patch-CMakeLists.txt @@ -1,8 +1,13 @@ ---- CMakeLists.txt.orig 2023-10-23 13:54:59 UTC +--- CMakeLists.txt.orig 2024-08-30 10:19:42 UTC +++ CMakeLists.txt -@@ -302,4 +302,4 @@ install( - ${CMAKE_CURRENT_BINARY_DIR}/osgEarthConfig.cmake - ${CMAKE_CURRENT_BINARY_DIR}/osgEarthConfigVersion.cmake - DESTINATION -- ${CMAKE_INSTALL_PREFIX}/cmake ) -+ ${CMAKE_INSTALL_PREFIX}/share/cmake/Modules/osgEarth ) +@@ -26,8 +26,8 @@ set(OSGEARTH_SOVERSION 158) + # Increment this each time the ABI changes + set(OSGEARTH_SOVERSION 158) + +-# Require C++14 +-set(CMAKE_CXX_STANDARD 14) ++# Require C++17 ++set(CMAKE_CXX_STANDARD 17) + set(CMAKE_CXX_STANDARD_REQUIRED ON) + + # Detect out-of-source build. We'll need this for protobuf generated files. diff --git a/graphics/osgearth/files/patch-cmake_install-package-config-files.cmake b/graphics/osgearth/files/patch-cmake_install-package-config-files.cmake new file mode 100644 index 000000000000..f9be9fbeaffc --- /dev/null +++ b/graphics/osgearth/files/patch-cmake_install-package-config-files.cmake @@ -0,0 +1,11 @@ +--- cmake/install-package-config-files.cmake.orig 2024-08-30 10:43:51 UTC ++++ cmake/install-package-config-files.cmake +@@ -2,7 +2,7 @@ function(osgearth_install_package_config_files TARGET + + include(CMakePackageConfigHelpers) + +- set(PACKAGE_INSTALL_DIR share/osgearth) ++ set(PACKAGE_INSTALL_DIR share/cmake/Modules/osgEarth) + #set(INCLUDE_INSTALL_DIR ${CMAKE_INSTALL_INCLUDEDIR}) + #set(LIBRARY_INSTALL_DIR ${CMAKE_INSTALL_LIBDIR}) + diff --git a/graphics/osgearth/files/patch-cmake_oe__unix.cmake b/graphics/osgearth/files/patch-cmake_oe__unix.cmake new file mode 100644 index 000000000000..d38f3a3c5c7a --- /dev/null +++ b/graphics/osgearth/files/patch-cmake_oe__unix.cmake @@ -0,0 +1,13 @@ +--- cmake/oe_unix.cmake.orig 2024-07-24 17:28:38 UTC ++++ cmake/oe_unix.cmake +@@ -12,8 +12,7 @@ if(UNIX AND NOT ANDROID) + # for ptheads in linux + find_package(Threads REQUIRED) + +- # add 64 to the lib prefix. +- set(INSTALL_LIBRARY_FOLDER "lib64") +- set(INSTALL_PLUGINS_FOLDER "lib64") ++ set(INSTALL_LIBRARY_FOLDER "lib") ++ set(INSTALL_PLUGINS_FOLDER "lib") + + endif(UNIX AND NOT ANDROID) diff --git a/graphics/osgearth/files/patch-protobuf b/graphics/osgearth/files/patch-protobuf index 981fffb56167..7a745293db8e 100644 --- a/graphics/osgearth/files/patch-protobuf +++ b/graphics/osgearth/files/patch-protobuf @@ -1,22 +1,11 @@ ---- CMakeLists.txt.orig 2023-11-03 04:00:05.529976000 +0800 -+++ CMakeLists.txt 2023-11-03 04:02:22.522059000 +0800 -@@ -23,7 +23,7 @@ - set(OSGEARTH_SOVERSION 149) - - # Require C++11 --set_property(GLOBAL PROPERTY CXX_STANDARD 11) -+set_property(GLOBAL PROPERTY CXX_STANDARD 17) - set_property(GLOBAL PROPERTY CXX_STANDARD_REQUIRED ON) - - # Detect out-of-source build. You should always do an out-of-source build! --- src/osgEarthDrivers/fastdxt/intrinsic.cpp.orig 2023-05-16 14:53:59 UTC +++ src/osgEarthDrivers/fastdxt/intrinsic.cpp @@ -45,7 +45,7 @@ void ExtractBlock_Intrinsics( const byte *inPtr, int width, byte *colorBlock ) { __m128i t0, t1, t2, t3; - register int w = width << 2; // width*4 + int w = width << 2; // width*4 t0 = _mm_load_si128 ( (__m128i*) inPtr ); _mm_store_si128 ( (__m128i*) &colorBlock[0], t0 ); // copy first row, 16bytes diff --git a/graphics/osgearth/files/patch-src_osgEarthDrivers_lerc_CMakeLists.txt b/graphics/osgearth/files/patch-src_osgEarthDrivers_lerc_CMakeLists.txt deleted file mode 100644 index 7c50938eb372..000000000000 --- a/graphics/osgearth/files/patch-src_osgEarthDrivers_lerc_CMakeLists.txt +++ /dev/null @@ -1,8 +0,0 @@ ---- src/osgEarthDrivers/lerc/CMakeLists.txt.orig 2023-05-16 14:53:59 UTC -+++ src/osgEarthDrivers/lerc/CMakeLists.txt -@@ -1,4 +1,4 @@ --INCLUDE_DIRECTORIES( ../../third_party/lerc/include ) -+INCLUDE_DIRECTORIES( BEFORE ../../third_party/lerc/include ) - - SET(TARGET_SRC - ReaderWriterLERC.cpp diff --git a/graphics/osgearth/pkg-plist b/graphics/osgearth/pkg-plist index 0b9c9ee1476c..a807d8eafca3 100644 --- a/graphics/osgearth/pkg-plist +++ b/graphics/osgearth/pkg-plist @@ -1,453 +1,425 @@ bin/osgearth_3pv bin/osgearth_annotation bin/osgearth_atlas bin/osgearth_bakefeaturetiles bin/osgearth_boundarygen -bin/osgearth_city bin/osgearth_clamp -bin/osgearth_cluster bin/osgearth_conv -bin/osgearth_createtile -bin/osgearth_eci -bin/osgearth_ephemeris bin/osgearth_featurefilter bin/osgearth_features -bin/osgearth_graticule bin/osgearth_heatmap bin/osgearth_infinitescroll -bin/osgearth_lights bin/osgearth_los -bin/osgearth_magnify -bin/osgearth_manip bin/osgearth_map bin/osgearth_minimap bin/osgearth_mrt -bin/osgearth_mvtindex bin/osgearth_occlusionculling +bin/osgearth_simple bin/osgearth_skyview bin/osgearth_terrainprofile bin/osgearth_tfs -bin/osgearth_toc -bin/osgearth_tracks -bin/osgearth_transform bin/osgearth_version bin/osgearth_video bin/osgearth_viewer include/osgEarth/AGG.h -include/osgEarth/ActivityMonitorTool include/osgEarth/AltitudeFilter include/osgEarth/AltitudeSymbol include/osgEarth/AnnotationData include/osgEarth/AnnotationLayer include/osgEarth/AnnotationNode include/osgEarth/AnnotationRegistry include/osgEarth/AnnotationSettings include/osgEarth/AnnotationUtils include/osgEarth/ArcGISServer include/osgEarth/ArcGISTilePackage include/osgEarth/AtlasBuilder include/osgEarth/AttributesFilter include/osgEarth/AutoClipPlaneHandler include/osgEarth/AutoScaleCallback include/osgEarth/BBoxSymbol include/osgEarth/BboxDrawable include/osgEarth/BillboardResource include/osgEarth/BillboardSymbol include/osgEarth/Bing include/osgEarth/Bounds include/osgEarth/BufferFilter +include/osgEarth/BuildConfig include/osgEarth/BuildGeometryFilter include/osgEarth/BuildTextFilter include/osgEarth/Cache include/osgEarth/CacheBin include/osgEarth/CachePolicy include/osgEarth/CacheSeed +include/osgEarth/Callbacks include/osgEarth/Callouts include/osgEarth/CameraUtils include/osgEarth/Capabilities include/osgEarth/CascadeDrapingDecorator include/osgEarth/CentroidFilter include/osgEarth/CesiumIon include/osgEarth/Chonk include/osgEarth/CircleNode include/osgEarth/ClampCallback include/osgEarth/ClampableNode include/osgEarth/Clamping include/osgEarth/ClampingTechnique include/osgEarth/ClipSpace include/osgEarth/ClusterNode include/osgEarth/Color include/osgEarth/ColorFilter include/osgEarth/Common include/osgEarth/Composite +include/osgEarth/CompositeTiledModelLayer +include/osgEarth/CompressedArray include/osgEarth/Config include/osgEarth/Containers include/osgEarth/ContourMap include/osgEarth/Controls include/osgEarth/ConvertTypeFilter include/osgEarth/Coverage include/osgEarth/CoverageLayer include/osgEarth/CoverageSymbol include/osgEarth/CropFilter include/osgEarth/CssUtils include/osgEarth/Cube include/osgEarth/CullingUtils include/osgEarth/DateTime include/osgEarth/DateTimeRange include/osgEarth/DebugImageLayer include/osgEarth/DecalLayer include/osgEarth/DepthOffset include/osgEarth/Draggers include/osgEarth/DrapeableNode include/osgEarth/DrapingCullSet include/osgEarth/DrapingTechnique include/osgEarth/DrawInstanced include/osgEarth/ECEF include/osgEarth/EarthManipulator include/osgEarth/Elevation include/osgEarth/ElevationLOD include/osgEarth/ElevationLayer include/osgEarth/ElevationPool include/osgEarth/ElevationQuery include/osgEarth/ElevationRanges include/osgEarth/EllipseNode include/osgEarth/Ellipsoid include/osgEarth/Endian include/osgEarth/Ephemeris include/osgEarth/ExampleResources include/osgEarth/Export include/osgEarth/Expression include/osgEarth/Extension include/osgEarth/ExtrudeGeometryFilter include/osgEarth/ExtrusionSymbol include/osgEarth/FadeEffect include/osgEarth/Feature include/osgEarth/FeatureCursor include/osgEarth/FeatureDisplayLayout include/osgEarth/FeatureElevationLayer include/osgEarth/FeatureImageLayer include/osgEarth/FeatureIndex include/osgEarth/FeatureModelGraph include/osgEarth/FeatureModelLayer include/osgEarth/FeatureModelSource include/osgEarth/FeatureNode include/osgEarth/FeatureRasterizer include/osgEarth/FeatureSDFLayer include/osgEarth/FeatureSource include/osgEarth/FeatureSourceIndexNode -include/osgEarth/FileGDBFeatureSource include/osgEarth/FileUtils include/osgEarth/Fill include/osgEarth/Filter include/osgEarth/FilterContext include/osgEarth/FilteredFeatureSource include/osgEarth/FlatteningLayer include/osgEarth/Formatter include/osgEarth/FractalElevationLayer include/osgEarth/FrameClock include/osgEarth/GARSGraticule include/osgEarth/GDAL include/osgEarth/GDALDEM include/osgEarth/GEOS include/osgEarth/GLSLChunker include/osgEarth/GLUtils include/osgEarth/GeoCommon include/osgEarth/GeoData include/osgEarth/GeoMath include/osgEarth/GeoPositionNode include/osgEarth/GeoPositionNodeAutoScaler include/osgEarth/GeoTransform include/osgEarth/GeodeticGraticule include/osgEarth/GeodeticLabelingEngine include/osgEarth/Geoid include/osgEarth/Geometry include/osgEarth/GeometryClamper include/osgEarth/GeometryCloud include/osgEarth/GeometryCompiler include/osgEarth/GeometryFactory include/osgEarth/GeometryRasterizer include/osgEarth/GeometryUtils include/osgEarth/GraticuleLabelingEngine include/osgEarth/HTM include/osgEarth/HTTPClient include/osgEarth/HeightFieldUtils include/osgEarth/Horizon include/osgEarth/HorizonClipPlane include/osgEarth/IOTypes include/osgEarth/IconResource include/osgEarth/IconSymbol include/osgEarth/ImageLayer include/osgEarth/ImageMosaic include/osgEarth/ImageOverlay include/osgEarth/ImageOverlayEditor include/osgEarth/ImageToFeatureLayer include/osgEarth/ImageToHeightFieldConverter include/osgEarth/ImageUtils include/osgEarth/InstanceBuilder include/osgEarth/InstanceCloud include/osgEarth/InstanceResource include/osgEarth/InstanceSymbol include/osgEarth/IntersectionPicker include/osgEarth/JoinPointsLinesFilter include/osgEarth/JsonUtils +include/osgEarth/LODGenerator include/osgEarth/LabelNode include/osgEarth/LandCover include/osgEarth/LandCoverLayer include/osgEarth/LatLongFormatter include/osgEarth/Layer include/osgEarth/LayerReference include/osgEarth/LayerShader include/osgEarth/Lighting include/osgEarth/LineDrawable include/osgEarth/LineFunctor include/osgEarth/LineOfSight include/osgEarth/LineSymbol include/osgEarth/LinearLineOfSight include/osgEarth/LoadableNode include/osgEarth/LocalGeometryNode include/osgEarth/LocalTangentPlane include/osgEarth/Locators include/osgEarth/LogarithmicDepthBuffer include/osgEarth/MBTiles include/osgEarth/MGRSFormatter include/osgEarth/MGRSGraticule include/osgEarth/MVT include/osgEarth/Map include/osgEarth/MapboxGLGlyphManager include/osgEarth/MapCallback include/osgEarth/MapModelChange include/osgEarth/MapNode include/osgEarth/MapNodeObserver include/osgEarth/MapboxGLImageLayer include/osgEarth/MaterialLoader include/osgEarth/Math include/osgEarth/MeasureTool include/osgEarth/MemCache -include/osgEarth/Memory +include/osgEarth/MemoryUtils include/osgEarth/MeshConsolidator include/osgEarth/MeshFlattener include/osgEarth/MeshSubdivider include/osgEarth/MetaTile include/osgEarth/MetadataNode include/osgEarth/Metrics include/osgEarth/ModelLayer include/osgEarth/ModelNode include/osgEarth/ModelResource include/osgEarth/ModelSource include/osgEarth/ModelSymbol -include/osgEarth/MouseCoordsTool include/osgEarth/NativeProgramAdapter include/osgEarth/NetworkMonitor include/osgEarth/NodeUtils +include/osgEarth/NoiseTextureFactory include/osgEarth/Notify include/osgEarth/OGRFeatureSource include/osgEarth/ObjectIDPicker include/osgEarth/ObjectIndex include/osgEarth/OgrUtils include/osgEarth/OverlayDecorator +include/osgEarth/PBRMaterial include/osgEarth/PagedNode include/osgEarth/PatchLayer include/osgEarth/PhongLightingEffect include/osgEarth/Picker include/osgEarth/PlaceNode include/osgEarth/PluginLoader include/osgEarth/PointDrawable include/osgEarth/PointSymbol include/osgEarth/PolygonSymbol include/osgEarth/PolygonizeLines include/osgEarth/PowerlineLayer include/osgEarth/PrimitiveIntersector include/osgEarth/Profile include/osgEarth/Progress include/osgEarth/Query include/osgEarth/RTTPicker include/osgEarth/RadialLineOfSight include/osgEarth/Random include/osgEarth/RectangleNode include/osgEarth/RefinePolicy include/osgEarth/Registry include/osgEarth/RenderSymbol include/osgEarth/ResampleFilter include/osgEarth/Resource include/osgEarth/ResourceCache include/osgEarth/ResourceLibrary -include/osgEarth/ResourceReleaser include/osgEarth/Revisioning include/osgEarth/SDF include/osgEarth/ScaleFilter include/osgEarth/ScatterFilter include/osgEarth/SceneGraphCallback include/osgEarth/ScreenSpaceLayout include/osgEarth/ScreenSpaceLayoutCallout include/osgEarth/ScreenSpaceLayoutDeclutter include/osgEarth/ScreenSpaceLayoutImpl include/osgEarth/Script include/osgEarth/ScriptEngine include/osgEarth/ScriptFilter include/osgEarth/SelectExtentTool include/osgEarth/Session include/osgEarth/ShaderFactory include/osgEarth/ShaderGenerator include/osgEarth/ShaderLayer include/osgEarth/ShaderLoader include/osgEarth/ShaderMerger include/osgEarth/ShaderUtils include/osgEarth/Shaders include/osgEarth/Shadowing include/osgEarth/SimpleOceanLayer include/osgEarth/SimplePager include/osgEarth/SimplexNoise +include/osgEarth/SimplifyFilter include/osgEarth/Skins include/osgEarth/Sky include/osgEarth/SkyView include/osgEarth/SpatialReference include/osgEarth/StarData include/osgEarth/StateSetCache include/osgEarth/StateTransition include/osgEarth/Status include/osgEarth/StringUtils include/osgEarth/Stroke include/osgEarth/Style include/osgEarth/StyleSelector include/osgEarth/StyleSheet include/osgEarth/SubstituteModelFilter include/osgEarth/Symbol include/osgEarth/TDTiles include/osgEarth/TFS include/osgEarth/TFSPackager include/osgEarth/TMS include/osgEarth/TMSBackFiller include/osgEarth/Tags include/osgEarth/Terrain include/osgEarth/TerrainConstraintLayer include/osgEarth/TerrainEffect include/osgEarth/TerrainEngineNode include/osgEarth/TerrainEngineRequirements include/osgEarth/TerrainLayer include/osgEarth/TerrainMeshLayer include/osgEarth/TerrainOptions include/osgEarth/TerrainProfile include/osgEarth/TerrainResources include/osgEarth/TerrainTileModel include/osgEarth/TerrainTileModelFactory include/osgEarth/TerrainTileNode include/osgEarth/TessellateOperator include/osgEarth/Tessellator include/osgEarth/Text include/osgEarth/TextSymbol include/osgEarth/TextSymbolizer include/osgEarth/TextureArena include/osgEarth/TextureBuffer include/osgEarth/Threading include/osgEarth/ThreeDTilesLayer include/osgEarth/TileCache include/osgEarth/TileEstimator include/osgEarth/TileHandler include/osgEarth/TileIndex include/osgEarth/TileIndexBuilder include/osgEarth/TileKey include/osgEarth/TileLayer include/osgEarth/TileMesher include/osgEarth/TileRasterizer include/osgEarth/TileSource include/osgEarth/TileSourceElevationLayer include/osgEarth/TileSourceImageLayer include/osgEarth/TileVisitor -include/osgEarth/TiledFeatureModelGraph include/osgEarth/TiledFeatureModelLayer include/osgEarth/TiledModelLayer include/osgEarth/TimeControl include/osgEarth/TimeSeriesImage include/osgEarth/TopologyGraph include/osgEarth/TrackNode include/osgEarth/TransformFilter include/osgEarth/URI include/osgEarth/UTMGraticule include/osgEarth/UTMLabelingEngine include/osgEarth/Units include/osgEarth/Utils include/osgEarth/Version include/osgEarth/VerticalDatum include/osgEarth/VideoLayer include/osgEarth/ViewFitter include/osgEarth/Viewpoint include/osgEarth/VirtualProgram include/osgEarth/VisibleLayer include/osgEarth/WFS include/osgEarth/WMS include/osgEarth/WindLayer include/osgEarth/WireLines include/osgEarth/XYZ include/osgEarth/XYZFeatureSource -include/osgEarth/XYZModelGraph include/osgEarth/XYZModelLayer include/osgEarth/XmlUtils include/osgEarth/glyphs.pb.h include/osgEarth/optional include/osgEarth/rtree.h include/osgEarth/tinystr.h include/osgEarth/tinyxml.h include/osgEarth/vector_tile.pb.h +include/osgEarth/weejobs.h include/osgEarth/weemesh.h +include/osgEarthDrivers/bumpmap/BumpMapOptions include/osgEarthDrivers/cache_filesystem/FileSystemCache include/osgEarthDrivers/colorramp/ColorRampOptions -include/osgEarthDrivers/engine_rex/Common -include/osgEarthDrivers/engine_rex/CreateTileImplementation -include/osgEarthDrivers/engine_rex/DrawState -include/osgEarthDrivers/engine_rex/DrawTileCommand -include/osgEarthDrivers/engine_rex/EngineContext -include/osgEarthDrivers/engine_rex/GeometryPool -include/osgEarthDrivers/engine_rex/LayerDrawable -include/osgEarthDrivers/engine_rex/LoadTileData -include/osgEarthDrivers/engine_rex/Loader -include/osgEarthDrivers/engine_rex/RenderBindings -include/osgEarthDrivers/engine_rex/RexTerrainEngineNode -include/osgEarthDrivers/engine_rex/SelectionInfo -include/osgEarthDrivers/engine_rex/Shaders -include/osgEarthDrivers/engine_rex/SurfaceNode -include/osgEarthDrivers/engine_rex/TerrainCuller -include/osgEarthDrivers/engine_rex/TerrainRenderData -include/osgEarthDrivers/engine_rex/TileDrawable -include/osgEarthDrivers/engine_rex/TileNode -include/osgEarthDrivers/engine_rex/TileNodeRegistry -include/osgEarthDrivers/engine_rex/TileRenderModel -include/osgEarthDrivers/engine_rex/Unloader +include/osgEarthDrivers/detail/DetailExtension +include/osgEarthDrivers/detail/DetailOptions +include/osgEarthDrivers/detail/DetailTerrainEffect include/osgEarthDrivers/featurefilter_intersect/IntersectFeatureFilterOptions include/osgEarthDrivers/featurefilter_join/JoinFeatureFilterOptions include/osgEarthDrivers/kml/KML include/osgEarthDrivers/kml/KMLOptions -include/osgEarthDrivers/scriptengine_javascript/DuktapeEngine -include/osgEarthDrivers/scriptengine_javascript/JSGeometry -include/osgEarthDrivers/scriptengine_javascript/duk_config.h -include/osgEarthDrivers/scriptengine_javascript/duktape.h include/osgEarthDrivers/sky_gl/GLSkyOptions include/osgEarthDrivers/sky_simple/SimpleSkyOptions +include/osgEarthDrivers/terrainshader/TerrainShaderExtension +include/osgEarthDrivers/terrainshader/TerrainShaderOptions +include/osgEarthDrivers/viewpoints/ViewpointsExtension lib/libosgEarth.so -lib/libosgEarth.so.149 -lib/libosgEarth.so.%%PORTVERSION%%.0 +lib/libosgEarth.so.158 +lib/libosgEarth.so.%%PORTVERSION%% lib/osgPlugins-3.6.5/osgdb_earth.so lib/osgPlugins-3.6.5/osgdb_fastdxt.so lib/osgPlugins-3.6.5/osgdb_gltf.so lib/osgPlugins-3.6.5/osgdb_kml.so lib/osgPlugins-3.6.5/osgdb_lerc.so lib/osgPlugins-3.6.5/osgdb_osgearth_bumpmap.so lib/osgPlugins-3.6.5/osgdb_osgearth_cache_filesystem.so lib/osgPlugins-3.6.5/osgdb_osgearth_colorramp.so lib/osgPlugins-3.6.5/osgdb_osgearth_detail.so lib/osgPlugins-3.6.5/osgdb_osgearth_engine_rex.so lib/osgPlugins-3.6.5/osgdb_osgearth_featurefilter_intersect.so lib/osgPlugins-3.6.5/osgdb_osgearth_featurefilter_join.so -lib/osgPlugins-3.6.5/osgdb_osgearth_mapinspector.so -lib/osgPlugins-3.6.5/osgdb_osgearth_monitor.so lib/osgPlugins-3.6.5/osgdb_osgearth_scriptengine_javascript.so lib/osgPlugins-3.6.5/osgdb_osgearth_sky_gl.so lib/osgPlugins-3.6.5/osgdb_osgearth_sky_simple.so lib/osgPlugins-3.6.5/osgdb_osgearth_terrainshader.so lib/osgPlugins-3.6.5/osgdb_osgearth_vdatum_egm2008.so lib/osgPlugins-3.6.5/osgdb_osgearth_vdatum_egm84.so lib/osgPlugins-3.6.5/osgdb_osgearth_vdatum_egm96.so lib/osgPlugins-3.6.5/osgdb_osgearth_viewpoints.so lib/osgPlugins-3.6.5/osgdb_template.so -lib/osgPlugins-3.6.5/osgdb_webp.so -share/cmake/Modules/osgEarth/osgEarthConfig.cmake -share/cmake/Modules/osgEarth/osgEarthConfigVersion.cmake +share/cmake/Modules/osgEarth/osgEarth-config.cmake +share/cmake/Modules/osgEarth/osgEarth-configVersion.cmake +share/cmake/Modules/osgEarth/osgEarth-targets-%%CMAKE_BUILD_TYPE%%.cmake +share/cmake/Modules/osgEarth/osgEarth-targets.cmake