59 lines
1.3 KiB
Makefile
Raw Normal View History

2013-03-21 08:45:11 +00:00
# $OpenBSD: Makefile,v 1.26 2013/03/21 08:46:32 ajacoutot Exp $
COMMENT-main= C routines for computing the Discrete Fourier Transform
COMMENT-common= common files for the fftw3 packages
2009-07-26 20:54:32 +00:00
V= 3.2.2
DISTNAME= fftw-${V}
PKGNAME= fftw3-${V}
2008-10-08 22:27:22 +00:00
FULLPKGNAME-main= fftw3-${V}
# XXX set it to its default value so that bsd.port.mk won't whine
2010-02-26 18:50:32 +00:00
FULLPKGPATH-main= math/fftw3,-main${FLAVOR_EXT:S/-/,/g}
2008-10-08 22:27:22 +00:00
FULLPKGNAME-common= fftw3-common-${V}
REVISION-main= 2
REVISION-common=0
SHARED_LIBS= fftw3 6.0 \
fftw3f 6.0 \
fftw3_threads 0.0 \
fftw3f_threads 0.0
CATEGORIES= math
HOMEPAGE= http://www.fftw.org/
# GPL
PERMIT_PACKAGE_CDROM= Yes
MASTER_SITES= ftp://ftp.fftw.org/pub/fftw/ \
2006-02-18 21:14:42 +00:00
http://fftw.mirror.fr/ \
ftp://ftp.fftw.org/pub/fftw/old/
SEPARATE_BUILD= Yes
2006-11-21 20:42:30 +00:00
MULTI_PACKAGES= -main -common
FLAVORS= double float
FLAVOR?= double
USE_GMAKE= Yes
2010-10-18 20:52:05 +00:00
USE_GROFF = Yes
CONFIGURE_STYLE=gnu
2006-03-05 23:17:29 +00:00
CONFIGURE_ARGS= ${CONFIGURE_SHARED} \
--enable-portable-binary \
--enable-threads
.if ${FLAVOR} == "float"
CONFIGURE_ARGS+=--enable-float
2008-10-08 22:27:22 +00:00
FULLPKGNAME-main= fftw3-float-${V}
.endif
FULLPKGPATH-common= math/fftw3,-common
2010-11-19 07:23:05 +00:00
RUN_DEPENDS-main= ${FULLPKGPATH-common}
WANTLIB-main= c m pthread
2006-11-21 20:42:30 +00:00
PKG_ARCH-common= *
post-install:
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/fftw3
${INSTALL_DATA} ${WRKSRC}/doc/fftw3.pdf ${PREFIX}/share/doc/fftw3
.include <bsd.port.mk>