mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
8721f29715
PR: 14827 Submitted by: maintainer
34 lines
701 B
Makefile
34 lines
701 B
Makefile
# New ports collection makefile for: fftw
|
|
# Version required: 2.1.2
|
|
# Date created: Dec 28 1998
|
|
# Whom: Lars Koeller <Lars.Koeller@Uni-Bielefeld.DE>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
DISTNAME= fftw-2.1.3
|
|
CATEGORIES= math
|
|
MASTER_SITES= ftp://ftp.fftw.org/pub/fftw/ \
|
|
ftp://theory.lcs.mit.edu/pub/fftw/ \
|
|
ftp://pm.cse.rmit.edu.au/pub/dsp/fftw/
|
|
|
|
MAINTAINER= Lars.Koeller@Uni-Bielefeld.DE
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_GMAKE= yes
|
|
|
|
.if ${ARCH} == "i386"
|
|
CONFIGURE_ARGS= --enable-i386-hacks
|
|
.endif
|
|
CONFIGURE_ARGS+=--enable-shared
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${PREFIX}/share/doc/fftw
|
|
${CP} ${WRKSRC}/doc/fftw.ps ${PREFIX}/share/doc/fftw
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|