summaryrefslogtreecommitdiff
path: root/math/fftwf/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'math/fftwf/Makefile')
-rw-r--r--math/fftwf/Makefile41
1 files changed, 41 insertions, 0 deletions
diff --git a/math/fftwf/Makefile b/math/fftwf/Makefile
new file mode 100644
index 00000000000..3f38529e592
--- /dev/null
+++ b/math/fftwf/Makefile
@@ -0,0 +1,41 @@
+# $NetBSD: Makefile,v 1.1.1.1 2005/10/02 12:06:42 wulf Exp $
+
+.if (${MACHINE_ARCH} == "powerpc")
+DISTNAME= fftw-3.0.1-fma
+.else
+DISTNAME= fftw-3.0.1
+.endif
+PKGNAME= fftwf-3.0.1
+CATEGORIES= math
+MASTER_SITES= ftp://ftp.fftw.org/pub/fftw/ \
+ http://www.fftw.org/
+
+MAINTAINER= tech-pkg@NetBSD.org
+HOMEPAGE= http://www.fftw.org/
+COMMENT= Collection of fast C routines to compute DFTs
+
+USE_LIBTOOL= yes
+PKGCONFIG_OVERRIDE+= fftw.pc.in
+GNU_CONFIGURE= yes
+CONFIGURE_ARGS+= --enable-shared
+CONFIGURE_ARGS+= --enable-float
+
+DEPENDS+= fftw>=3.0.1:../../math/fftw
+
+.if (${MACHINE_ARCH} == "i386")
+#CONFIGURE_ARGS+= --enable-sse
+CONFIGURE_ARGS+= --with-our-malloc16
+.endif
+USE_LANGUAGES= fortran
+USE_TOOLS+= gmake
+
+TEST_TARGET= check
+
+do-install:
+ ${GMAKE} -C ${WRKSRC} install-libLTLIBRARIES
+ ${GMAKE} -C ${WRKSRC} install-pkgconfigDATA
+ ${GMAKE} -C ${WRKSRC}/tools install-binPROGRAMS
+ ${INSTALL_MAN} ${WRKSRC}/tools/fftwf-wisdom.1 \
+ ${LOCALBASE}/man/man1
+
+.include "../../mk/bsd.pkg.mk"