41 lines
1.0 KiB
Makefile
41 lines
1.0 KiB
Makefile
# $OpenBSD: Makefile,v 1.6 2003/01/22 15:45:35 sturm 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
|
|
|
|
HOMEPAGE= http://www.fftw.org/
|
|
|
|
MAINTAINER= Nikolay Sturm <sturm@openbsd.org>
|
|
|
|
# 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://ftp.kusastro.kyoto-u.ac.jp/pub/src/GNU/fftw/
|
|
|
|
PATCH_LIST= ${PORTSDIR}/infrastructure/patches/patch-lt1.3.3-ltconfig \
|
|
${PORTSDIR}/infrastructure/patches/patch-lt1.3.3-ltmain_sh \
|
|
patch-*
|
|
|
|
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>
|