mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-02 01:20:54 +00:00
d7e8cf2227
On i386 architectures projects that need SSE2 have to explicitly enable it using -msse2. Also fix WWW. MFH: 2020Q3
46 lines
1.4 KiB
Makefile
46 lines
1.4 KiB
Makefile
# $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"
|
|
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
|
|
.elif ${ARCH} == "i386"
|
|
CFLAGS+= -msse2 # sse2 is not enabled on i386 by default as it is enabled on amd64, see https://github.com/vxl/vxl/issues/795
|
|
CXXFLAGS+= -msse2
|
|
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>
|