Port details on branch 2024Q3 |
- openvdb Tools for storage and manipulation of sparse volumetric data
- 11.0.0_1 misc
=0 11.0.0_1Version of this port present on the latest quarterly branch. - Maintainer: yuri@FreeBSD.org
 - Port Added: 2024-09-10 19:51:12
- Last Update: 2024-09-10 19:49:03
- Commit Hash: c55c3e0
- License: MPL20
- WWW:
- https://www.openvdb.org/
- Description:
- OpenVDB is an Academy Award-winning open-source C++ library comprising a novel
hierarchical data structure and a suite of tools for the efficient storage and
manipulation of sparse volumetric data discretized on three-dimensional grids.
It was developed by DreamWorks Animation for use in volumetric applications
typically encountered in feature film production and is now maintained by the
Academy Software Foundation (ASWF).
¦ ¦ ¦ ¦ 
- Manual pages:
- FreshPorts has no man page information for this port.
- pkg-plist: as obtained via:
make generate-plist - USE_RC_SUBR (Service Scripts)
- no SUBR information found for this port
- Dependency lines:
-
- To install the port:
- cd /usr/ports/misc/openvdb/ && make install clean
- To add the package, run one of these commands:
- pkg install misc/openvdb
- pkg install openvdb
NOTE: If this package has multiple flavors (see below), then use one of them instead of the name specified above.- PKGNAME: openvdb
- Flavors: there is no flavor information for this port.
- distinfo:
- TIMESTAMP = 1712016698
SHA256 (AcademySoftwareFoundation-openvdb-v11.0.0_GH0.tar.gz) = 6314ff1db057ea90050763e7b7d7ed86d8224fcd42a82cdbb9c515e001b96c74
SIZE (AcademySoftwareFoundation-openvdb-v11.0.0_GH0.tar.gz) = 4620858
No package information for this port in our database- Sometimes this happens. Not all ports have packages. Perhaps there is a build error. Check the fallout link:

- Dependencies
- NOTE: FreshPorts displays only information on required and default dependencies. Optional dependencies are not covered.
- Build dependencies:
-
- cmake : devel/cmake-core
- ninja : devel/ninja
- pkgconf>=1.3.0_1 : devel/pkgconf
- xorgproto>=0 : x11/xorgproto
- xorgproto>=0 : x11/xorgproto
- ice.pc : x11/libICE
- sm.pc : x11/libSM
- x11.pc : x11/libX11
- xcursor.pc : x11/libXcursor
- xext.pc : x11/libXext
- xi.pc : x11/libXi
- xinerama.pc : x11/libXinerama
- xrandr.pc : x11/libXrandr
- xxf86vm.pc : x11/libXxf86vm
- Test dependencies:
-
- googletest>0 : devel/googletest
- Runtime dependencies:
-
- ice.pc : x11/libICE
- sm.pc : x11/libSM
- x11.pc : x11/libX11
- xcursor.pc : x11/libXcursor
- xext.pc : x11/libXext
- xi.pc : x11/libXi
- xinerama.pc : x11/libXinerama
- xrandr.pc : x11/libXrandr
- xxf86vm.pc : x11/libXxf86vm
- Library dependencies:
-
- libblosc.so : archivers/c-blosc
- libboost_system.so : devel/boost-libs
- libImath.so : math/Imath
- libtbb.so : devel/onetbb
- libglfw.so : graphics/glfw
- libOpenEXR.so : graphics/openexr
- libGL.so : graphics/libglvnd
- libGLU.so : graphics/libGLU
- There are no ports dependent upon this port
Configuration Options:
- ===> The following configuration options are available for openvdb-11.0.0_1:
TOOLS=on: Build CLI tools
===> Use 'make config' to modify these settings
- Options name:
- misc_openvdb
- USES:
- cmake:testing compiler:c++17-lang localbase:ldflags pkgconfig gl xorg
- FreshPorts was unable to extract/find any pkg message
- Master Sites:
|
Number of commits found: 1
Commit History - (may be incomplete: for full details, see links to repositories near top of page) |
Commit | Credits | Log message |
11.0.0_1 10 Sep 2024 19:49:03
    |
Dimitry Andric (dim)  |
misc/openvdb: fix build with clang 19
Clang 19 now implements CWG 96 [1], which requires a template argument
list after a 'template' keyword, resulting in errors similar to:
/wrkdirs/usr/ports/misc/openvdb/work/openvdb-11.0.0/openvdb/openvdb/../openvdb/tree/NodeManager.h:330:31:
error: a template argument list is expected after a name prefixed by the
template keyword [-Wmissing-template-arg-list-after-template-kw]
330 | OpT::template eval(mNodeOp, it);
| ^
/wrkdirs/usr/ports/misc/openvdb/work/openvdb-11.0.0/openvdb/openvdb/../openvdb/tree/NodeManager.h:350:31:
error: a template argument list is expected after a name prefixed by the
template keyword [-Wmissing-template-arg-list-after-template-kw]
350 | OpT::template eval(mNodeOp, it);
| ^
/wrkdirs/usr/ports/misc/openvdb/work/openvdb-11.0.0/openvdb/openvdb/../openvdb/tree/NodeManager.h:375:31:
error: a template argument list is expected after a name prefixed by the
template keyword [-Wmissing-template-arg-list-after-template-kw]
375 | OpT::template eval(*mNodeOp, it);
| ^
In these cases, appending "<>" is enough to satisfy the constraint.
PR: 281418
Approved by: yuri (maintainer)
MFH: 2024Q3
(cherry picked from commit 1f9773e8d9e41c322b14ae6b199bd5a90de27aae) |
Number of commits found: 1
|