pkgsrc/math/fftwf/Makefile
jlam 9c8b5ede43 Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no
developer is officially maintaining the package.

The rationale for changing this from "tech-pkg" to "pkgsrc-users" is
that it implies that any user can try to maintain the package (by
submitting patches to the mailing list).  Since the folks most likely
to care about the package are the folks that want to use it or are
already using it, this would leverage the energy of users who aren't
developers.
2006-03-04 21:28:51 +00:00

42 lines
1,022 B
Makefile

# $NetBSD: Makefile,v 1.3 2006/03/04 21:30:03 jlam 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= 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"