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: <https://github.com/AcademySoftwareFoundation/openexr/commit/a40a6151c4e746eb8f93c7c06992d0ec11289fdc> 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@!)
56 lines
1.2 KiB
Makefile
56 lines
1.2 KiB
Makefile
# Created by: nork@FreeBSD.org
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= ilmbase
|
|
PORTVERSION= 2.5.4
|
|
CATEGORIES= graphics devel
|
|
|
|
MAINTAINER= mandree@FreeBSD.org
|
|
COMMENT= ILM Base libraries a.k.a. Half, IlmThread, Imath, and Iex
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
|
|
USES= cmake compiler:c++14-lang libtool pkgconfig
|
|
|
|
USE_GITHUB= yes
|
|
GH_TUPLE= AcademySoftwareFoundation:openexr:v${PORTVERSION}
|
|
USE_LDCONFIG= yes
|
|
|
|
CMAKE_ARGS+= --target \
|
|
-DCMAKE_INSTALL_PREFIX=${PREFIX} \
|
|
install
|
|
|
|
WRKSRC_SUBDIR= IlmBase
|
|
|
|
PLIST_SUB= MAJORVER=${_MAJORVER} \
|
|
VER=${_VER} \
|
|
MINVER=${_MINVER} \
|
|
PLVER=${_PLVER}
|
|
PORTDOCS= README.md
|
|
|
|
OPTIONS_DEFINE= DOCS LARGE_STACK
|
|
OPTIONS_SUB= yes
|
|
|
|
LARGE_STACK_DESC= Enable sys-dependent large stack optimizations
|
|
LARGE_STACK_CMAKE_BOOL= ILMBASE_ENABLE_LARGE_STACK
|
|
LARGE_STACK_CONFIGURE_ENABLE= large-stack
|
|
|
|
_MAJORVER= 2_5
|
|
_VER= 25
|
|
_MINVER= 0
|
|
_PLVER= 3
|
|
|
|
post-install:
|
|
${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libHalf-${_MAJORVER}.so
|
|
.for l in libHalf libIex libIexMath libImath libIlmThread
|
|
${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/${l}-${_MAJORVER}.so
|
|
.endfor
|
|
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR}
|
|
|
|
do-test:
|
|
cd ${BUILD_WRKSRC} && ctest
|
|
|
|
.include <bsd.port.mk>
|