mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-31 05:41:08 +00:00
38f53fd85b
Upstream release notes: * A patch release that corrects the SO version for the v2.5 release, which missed getting bumped in v2.5.0. * This release also fixes an improper failure in IlmImfTest when running on ARMv7 and AAarch64. Bump PORTREVISION of all port directly requiring ilmbase or openexr that are not marked BROKEN (shlib/.so file version bump). Test build of all port directly depending on ilmbase or openexr succeeded in poudriere in a 12.1-RELEASE amd64 jail.
51 lines
1.2 KiB
Makefile
51 lines
1.2 KiB
Makefile
# Created by: nork@FreeBSD.org
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= ampasCTL
|
|
PORTVERSION= 1.5.2
|
|
PORTREVISION= 6
|
|
CATEGORIES= graphics devel
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Color Transformation Language interpreter
|
|
|
|
LICENSE= AMPAS
|
|
LICENSE_NAME= AMPAS
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
LICENSE_PERMS= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept
|
|
|
|
LIB_DEPENDS= libImath.so:graphics/ilmbase \
|
|
libIlmImf.so:graphics/openexr \
|
|
libtiff.so:graphics/tiff \
|
|
libAcesContainer.so:graphics/ampasACES-container
|
|
|
|
USES= compiler:c++11-lang cmake pathfix pkgconfig
|
|
USE_LDCONFIG= yes
|
|
USE_GITHUB= yes
|
|
|
|
GH_ACCOUNT= ampas
|
|
GH_PROJECT= CTL
|
|
GH_TAGNAME= 57b48a2
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
PORTDOCS= *
|
|
DOCSRCDIR1= ${WRKSRC}
|
|
DOC_FILES1= AUTHORS CHANGELOG README.md
|
|
DOCSRCDIR2= ${WRKSRC}/doc
|
|
DOCSDIR2= ${DOCSDIR}/doc
|
|
DOC_FILES2= CtlManual.pdf CtlManual.doc
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|lib/CMake|lib/cmake|' \
|
|
-e 's|add_subdirectory(doc)||' \
|
|
${WRKSRC}/CMakeLists.txt
|
|
|
|
post-install-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${DOC_FILES1:S|^|${DOCSRCDIR1}/|} ${STAGEDIR}${DOCSDIR}
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR2}
|
|
${INSTALL_DATA} ${DOC_FILES2:S|^|${DOCSRCDIR2}/|} ${STAGEDIR}${DOCSDIR2}
|
|
|
|
.include <bsd.port.mk>
|