mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-12 07:27:57 +00:00
db0013e446
"Patch release with various bug/sanitizer/security fixes, primarily related to
reading corrupted input files."
<https://github.com/AcademySoftwareFoundation/openexr/releases/tag/v2.5.4>
Cherry-pick upstream commit for GCC 11 compatibility:
<a40a6151c4
>
Since this changes the patchlevel of the solibs, bump PORTREVISION of dependent
ports just to be sure.
(graphics/py-openshadinglanguage is unaltered and .includes the revision bump
from .../openshadinglanguage.)
MFH: 2021Q1 (this requires discussion by ports-secteam@!)
35 lines
711 B
Makefile
35 lines
711 B
Makefile
# Created by: Alexey Dokuchaev <danfe@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= alembic
|
|
PORTVERSION= 1.7.16
|
|
PORTREVISION= 1
|
|
CATEGORIES= graphics
|
|
|
|
MAINTAINER= danfe@FreeBSD.org
|
|
COMMENT= Open framework for storing and sharing graphic scene data
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
|
|
LIB_DEPENDS= libImath.so:graphics/ilmbase
|
|
|
|
USES= cmake compiler:c++11-lang
|
|
USE_CXXSTD= c++11
|
|
USE_GITHUB= yes
|
|
USE_LDCONFIG= yes
|
|
|
|
OPTIONS_DEFINE= HDF5
|
|
OPTIONS_DEFAULT= HDF5
|
|
OPTIONS_SUB= yes
|
|
|
|
HDF5_LIB_DEPENDS= libhdf5.so:science/hdf5
|
|
HDF5_CMAKE_ON= -DUSE_HDF5:BOOL=ON
|
|
|
|
PLIST_FILES= lib/libAlembic.so.${PORTVERSION} \
|
|
lib/libAlembic.so.${PORTVERSION:R}
|
|
|
|
do-test:
|
|
@cd ${TEST_WRKSRC} && ctest -C ${CMAKE_BUILD_TYPE} ${_MAKE_JOBS}
|
|
|
|
.include <bsd.port.mk>
|