41 lines
893 B
Makefile
41 lines
893 B
Makefile
# $OpenBSD: Makefile,v 1.6 2006/07/14 14:37:40 steven Exp $
|
|
|
|
COMMENT= "C routines for computing the Discrete Fourier Transform"
|
|
|
|
V= 3.1.2
|
|
DISTNAME= fftw-${V}
|
|
PKGNAME= fftw3-${V}
|
|
SHARED_LIBS= fftw3 4.2
|
|
CATEGORIES= math
|
|
|
|
HOMEPAGE= http://www.fftw.org/
|
|
|
|
MAINTAINER= Steven Mestdagh <steven@openbsd.org>
|
|
|
|
# GPL
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
WANTLIB= c m
|
|
|
|
MASTER_SITES= ftp://ftp.fftw.org/pub/fftw/ \
|
|
http://fftw.mirror.fr/ \
|
|
ftp://ftp.fftw.org/pub/fftw/old/
|
|
|
|
SEPARATE_BUILD= concurrent
|
|
|
|
USE_GMAKE= Yes
|
|
USE_LIBTOOL= Yes
|
|
CONFIGURE_STYLE=gnu
|
|
CONFIGURE_ARGS= ${CONFIGURE_SHARED} \
|
|
--with-portable-binary \
|
|
--infodir=${LOCALBASE}/info \
|
|
--mandir=${LOCALBASE}/man
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/fftw3
|
|
${INSTALL_DATA} ${WRKSRC}/doc/fftw3.pdf ${PREFIX}/share/doc/fftw3
|
|
|
|
.include <bsd.port.mk>
|