aboutsummaryrefslogtreecommitdiff
path: root/graphics/openexr/Makefile
diff options
context:
space:
mode:
authorMatthias Andree <mandree@FreeBSD.org>2020-01-11 19:17:37 +0000
committerMatthias Andree <mandree@FreeBSD.org>2020-01-11 19:17:37 +0000
commitdce9e747daf6d5bf8a0f1d226578dd4843d22834 (patch)
tree9a87ea319056622054bddf7cc3838987b7054e08 /graphics/openexr/Makefile
parent339f59d1cf856d76bbd505ad72ce7373c1f42040 (diff)
downloadports-dce9e747daf6d5bf8a0f1d226578dd4843d22834.tar.gz
ports-dce9e747daf6d5bf8a0f1d226578dd4843d22834.zip
Port ilmbase build fixes including WITH_DEBUG=yes builds.
- under WITH_DEBUG=yes builds, avoid renaming the libraries with _d suffix. (else it breaks packaging, and we don't want separate lib names) [1] - while here, avoid creating symlinks from cmake, this causes staging violations due to cmake bug #17340, (poudriere testport) see https://gitlab.kitware.com/cmake/cmake/issues/17340 - while here, fix "make test" target - it is a left over from 2.3's gmake build. Use ctest instead. Removes TEST_TARGET. No PORTREVISION bump necessary because each and every fixed bug would cause a broken build and no install. PR: 243274 [1] Reported by: Marcin Cieslak [1] against graphics/ilmbase
Notes
Notes: svn path=/head/; revision=522707
Diffstat (limited to 'graphics/openexr/Makefile')
-rw-r--r--graphics/openexr/Makefile3
1 files changed, 1 insertions, 2 deletions
diff --git a/graphics/openexr/Makefile b/graphics/openexr/Makefile
index 8dd18401c7bc..df86ff3d1bfb 100644
--- a/graphics/openexr/Makefile
+++ b/graphics/openexr/Makefile
@@ -17,7 +17,6 @@ LIB_DEPENDS= libImath-2_4.so.24:graphics/ilmbase
USES= cmake compiler:c++14-lang libtool pathfix pkgconfig
USE_LDCONFIG= yes
-TEST_TARGET= check
USE_GITHUB= yes
GH_TUPLE= AcademySoftwareFoundation:openexr:v2.4.0
@@ -93,7 +92,7 @@ post-install-DOCS-on:
post-install-DOCS-off:
@${RMDIR} ${STAGEDIR}${PREFIX}/share/doc/${PORTNAME} 2>/dev/null || :
-regression-test check:
+regression-test check test:
cd ${BUILD_WRKSRC} && ctest -j ${MAKE_JOBS_NUMBER}
.include <bsd.port.post.mk>