freebsd-ports/math/pffft/Makefile
Piotr Kubaj b9385345c2 math/pffft: fix build on powerpc*
SIMD is currently broken.
2022-02-20 11:51:01 +00:00

34 lines
916 B
Makefile

PORTNAME= pffft
PORTVERSION= g20210806
CATEGORIES= math
MAINTAINER= yuri@FreeBSD.org
COMMENT= Pretty Fast FFT (PFFFT) library
LICENSE= BSD3CLAUSE
LICENSE_FILE= ${WRKSRC}/LICENSE.txt
USES= cmake
USE_LDCONFIG= yes
USE_GITHUB= yes
GH_ACCOUNT= marton78
GH_TAGNAME= 9603871
CMAKE_ON= BUILD_SHARED_LIBS INSTALL_PFDSP INSTALL_PFFASTCONV
.include <bsd.port.pre.mk>
.if ${ARCH} == i386
CFLAGS+= -msse2
CXXFLAGS+= -msse2 # fixes error: always_inline function '_mm_unpacklo_ps' requires target feature 'sse', but would be inlined into function 'pffft_zreorder' that is compiled without support for 'sse'
.elif ${ARCH:Mpowerpc*}
CMAKE_ARGS+= -DUSE_SIMD:BOOL=OFF #https://github.com/marton78/pffft/issues/55
.endif
post-install: # move headers into a dedicated directory
cd ${STAGEDIR}${PREFIX} && \
${MKDIR} include/${PORTNAME} && \
${MV} include/*.h include/*.hpp include/${PORTNAME}
.include <bsd.port.post.mk>