Sat Aug 13 13:24:19 2022 UTC ()
Mark as only for x86_64.  The ffts library does support some other
platforms, but the pkgsrc package currently does not yet support
configuring the library for them.


(gson)
diff -r1.2 -r1.3 pkgsrc/math/ffts/Makefile

cvs diff -r1.2 -r1.3 pkgsrc/math/ffts/Makefile (expand / switch to unified diff)

--- pkgsrc/math/ffts/Makefile 2017/07/04 19:51:42 1.2
+++ pkgsrc/math/ffts/Makefile 2022/08/13 13:24:19 1.3
@@ -1,27 +1,29 @@ @@ -1,27 +1,29 @@
1# $NetBSD: Makefile,v 1.2 2017/07/04 19:51:42 gson Exp $ 1# $NetBSD: Makefile,v 1.3 2022/08/13 13:24:19 gson Exp $
2 2
3GIT_COMMIT= fe86885ecafd0d16eb122f3212403d1d5a86e24e 3GIT_COMMIT= fe86885ecafd0d16eb122f3212403d1d5a86e24e
4 4
5DISTNAME= ${GIT_COMMIT} 5DISTNAME= ${GIT_COMMIT}
6PKGNAME= ffts-20170617 6PKGNAME= ffts-20170617
7CATEGORIES= math 7CATEGORIES= math
8MASTER_SITES= ${MASTER_SITE_GITHUB:=anthonix/}/ffts/archive/ 8MASTER_SITES= ${MASTER_SITE_GITHUB:=anthonix/}/ffts/archive/
9 9
10MAINTAINER= gson@NetBSD.org 10MAINTAINER= gson@NetBSD.org
11HOMEPAGE= https://github.com/anthonix/ffts 11HOMEPAGE= https://github.com/anthonix/ffts
12COMMENT= The Fastest Fourier Transform in the South 12COMMENT= The Fastest Fourier Transform in the South
13LICENSE= modified-bsd 13LICENSE= modified-bsd
14 14
15WRKSRC= ${WRKDIR}/ffts-${GIT_COMMIT} 15WRKSRC= ${WRKDIR}/ffts-${GIT_COMMIT}
16 16
17USE_TOOLS+= gmake autoconf automake autoheader aclocal 17USE_TOOLS+= gmake autoconf automake autoheader aclocal
18USE_LANGUAGES= c c++ 18USE_LANGUAGES= c c++
19USE_LIBTOOL= yes 19USE_LIBTOOL= yes
20GNU_CONFIGURE= yes 20GNU_CONFIGURE= yes
21CONFIGURE_ARGS= --enable-sse --enable-single 21CONFIGURE_ARGS= --enable-sse --enable-single
22 22
 23ONLY_FOR_PLATFORM= *-*-x86_64
 24
23pre-configure: 25pre-configure:
24 set -e; cd ${WRKSRC}; \ 26 set -e; cd ${WRKSRC}; \
25 aclocal; autoheader; automake -a --foreign -i; autoconf 27 aclocal; autoheader; automake -a --foreign -i; autoconf
26 28
27.include "../../mk/bsd.pkg.mk" 29.include "../../mk/bsd.pkg.mk"