b852691a58
-- FFTW is a free collection of fast C routines for computing the Discrete Fourier Transform in one or more dimensions. It includes complex, real, and parallel transforms, and can handle arbitrary array sizes efficiently. FFTW is typically faster than other publically-available FFT implementations, and is even competitive with vendor-tuned libraries. (See our web page for extensive benchmarks.) To achieve this performance, FFTW uses novel code-generation and runtime self-optimization techniques (along with many other tricks). WWW: http://www.fftw.org/ Submitted by Nikolay Sturm <Nikolay.Sturm@desy.de>
39 lines
976 B
Makefile
39 lines
976 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2001/07/01 23:10:44 lebel Exp $
|
|
# $FreeBSD: ports/math/fftw/Makefile,v 1.11 2000/06/16 21:51:38 asami Exp $
|
|
# Original from: Lars Koeller <Lars.Koeller@Uni-Bielefeld.DE>
|
|
|
|
COMMENT= "C routines for computing the Discrete Fourier Transform"
|
|
|
|
DISTNAME= fftw-2.1.3
|
|
CATEGORIES= math
|
|
NEED_VERSION= 1.417
|
|
|
|
HOMEPAGE= http://www.fftw.org/
|
|
|
|
MAINTAINER= Nikolay Sturm <Nikolay.Sturm@desy.de>
|
|
|
|
# GPL
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= ftp://ftp.fftw.org/pub/fftw/ \
|
|
ftp://pm.cse.rmit.edu.au/pub/dsp/fftw/ \
|
|
ftp://ftp.kusastro.kyoto-u.ac.jp/pub/src/GNU/fftw/
|
|
|
|
SEPARATE_BUILD= concurrent
|
|
|
|
CONFIGURE_STYLE= gnu
|
|
|
|
.if ${MACHINE_ARCH} == "i386"
|
|
CONFIGURE_ARGS+= --enable-i386-hacks
|
|
.endif
|
|
CONFIGURE_ARGS+= ${CONFIGURE_SHARED}
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/fftw
|
|
${INSTALL_DATA} ${WRKSRC}/doc/fftw.ps ${PREFIX}/share/doc/fftw
|
|
|
|
.include <bsd.port.mk>
|