1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-11 07:22:22 +00:00
freebsd-ports/misc/vxl/Makefile

41 lines
1.1 KiB
Makefile
Raw Normal View History

# $FreeBSD$
PORTNAME= vxl
DISTVERSIONPREFIX= v
DISTVERSION= 2.0.2-629
DISTVERSIONSUFFIX= -g9f915deec4
CATEGORIES= misc science
MAINTAINER= yuri@FreeBSD.org
COMMENT= C++ libraries for computer vision and image understanding
LIB_DEPENDS= libpng16.so:graphics/png \
libtiff.so:graphics/tiff
USES= cmake compiler:c++11-lang jpeg
USE_GITHUB= yes
USE_LDCONFIG= yes
CONFLICTS_BUILD= openjpeg15
CMAKE_ON= BUILD_SHARED_LIBS
CMAKE_OFF= BUILD_TESTING
do-test:
@cd ${BUILD_WRKSRC} && \
${SETENV} ${CONFIGURE_ENV} ${CMAKE_BIN} ${CMAKE_ARGS} -DBUILD_TESTING:BOOL=ON ${CMAKE_SOURCE_PATH} && \
${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} ${ALL_TARGET} && \
${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} test
.include <bsd.port.pre.mk>
.if ${ARCH} == "amd64" || ${ARCH} == "i386"
PLIST_SUB+= X86=""
CMAKE_ON+= VIL_CONFIG_ENABLE_SSE2_ROUNDING # the automatic SSE2 test fails on i386: Performing Try-Run Test VXL_HAS_SSE2_HARDWARE_SUPPORT - Test Compilation Failed
.else
PLIST_SUB+= X86="@comment "
CMAKE_OFF+= VIL_CONFIG_ENABLE_SSE2_ROUNDING
.endif
.include <bsd.port.post.mk>