pkgsrc/math/fftwf/Makefile
rillig 144a1ee175 Added "c" to USE_LANGUAGES for packages that use GNU configure scripts,
since they always need a C compiler, even when the source code is
completely in C++.

For some other packages, stated in the comment that a C compiler is
really not needed.
2006-07-22 04:46:13 +00:00

42 lines
1 KiB
Makefile

# $NetBSD: Makefile,v 1.4 2006/07/22 04:46:16 rillig Exp $
.if (${MACHINE_ARCH} == "powerpc")
DISTNAME= fftw-3.0.1-fma
.else
DISTNAME= fftw-3.0.1
.endif
PKGNAME= fftwf-3.0.1
PKGREVISION= 1
CATEGORIES= math
MASTER_SITES= ftp://ftp.fftw.org/pub/fftw/ \
http://www.fftw.org/
MAINTAINER= pkgsrc-users@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= c 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"