graphics/gstreamer1-plugins-openexr: switch from C++98 to C++11 to match new OpenEXR headers and unbreak compilation. Bump PORTREVISION of all ports depending directly on either, based on assessing INDEX-12 (bump_portrevision.pl -l (shallow) used). Release Notes: https://github.com/AcademySoftwareFoundation/openexr/releases/tag/v2.4.0 The update was deliberately deferred until after 2020Q1, and should not be MFH'd back to it.
51 lines
1.4 KiB
Makefile
51 lines
1.4 KiB
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= openvdb
|
|
DISTVERSIONPREFIX= v
|
|
DISTVERSION= 6.1.0
|
|
PORTREVISION= 7
|
|
CATEGORIES= misc
|
|
|
|
MAINTAINER= yuri@FreeBSD.org
|
|
COMMENT= Tools for storage and manipulation of sparse volumetric data
|
|
|
|
LICENSE= MPL20
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
LIB_DEPENDS= libblosc.so:archivers/c-blosc \
|
|
libboost_system.so:devel/boost-libs \
|
|
libHalf.so:graphics/ilmbase \
|
|
libtbb.so:devel/tbb
|
|
|
|
USES= cmake compiler:c++11-lang localbase:ldflags pkgconfig
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= AcademySoftwareFoundation
|
|
USE_LDCONFIG= yes
|
|
|
|
CMAKE_OFF= OPENVDB_CORE_STATIC
|
|
|
|
OPTIONS_DEFINE= PYTHON TOOLS DOCS # TOOLS should be a subpackage
|
|
OPTIONS_DEFAULT= PYTHON TOOLS
|
|
OPTIONS_SUB= yes
|
|
|
|
PYTHON_USES= python:2.7 # 3.6 is broken: https://github.com/AcademySoftwareFoundation/openvdb/issues/427
|
|
PYTHON_CMAKE_BOOL= OPENVDB_BUILD_PYTHON_MODULE
|
|
PYTHON_CMAKE_ON= -DFREEBSD_PYTHON_VER:STRING=${PYTHON_VER} -DUSE_NUMPY:BOOL=ON
|
|
PYTHON_LIB_DEPENDS= ${PY_BOOST}
|
|
PYTHON_BUILD_DEPENDS= ${PYNUMPY}
|
|
PYTHON_RUN_DEPENDS= ${PYNUMPY}
|
|
|
|
TOOLS_DESC= Build CLI tools
|
|
TOOLS_CMAKE_BOOL= OPENVDB_BUILD_BINARIES OPENVDB_BUILD_VDB_LOD \
|
|
OPENVDB_BUILD_VDB_RENDER OPENVDB_BUILD_VDB_VIEW
|
|
TOOLS_LIB_DEPENDS= libglfw.so:graphics/glfw \
|
|
libIlmImf.so:graphics/openexr
|
|
TOOLS_USES= gl xorg
|
|
TOOLS_USE= GL=gl,glu XORG=x11,xcursor,xi,xinerama,xrandr,xxf86vm
|
|
|
|
DOCS_CMAKE_BOOL= OPENVDB_BUILD_DOCS
|
|
DOCS_BUILD_DEPENDS= doxygen:devel/doxygen
|
|
|
|
PORTDOCS= *
|
|
|
|
.include <bsd.port.mk>
|