freebsd-ports/math/fftw/Makefile

68 lines
1.5 KiB
Makefile
Raw Normal View History

# New ports collection makefile for: fftw
# Date created: Dec 28 1998
# Whom: Lars Koeller <Lars.Koeller@Uni-Bielefeld.DE>
#
1999-08-25 03:23:21 -04:00
# $FreeBSD$
#
2000-04-14 03:20:58 -04:00
PORTNAME= fftw
2003-03-24 12:26:24 -05:00
PORTVERSION= 2.1.5
PORTREVISION?= 5
CATEGORIES= math
2003-03-24 12:26:24 -05:00
MASTER_SITES= ftp://ftp.fftw.org/pub/fftw/ \
ftp://ftp.fftw.org/pub/fftw/old/ \
ftp://theory.lcs.mit.edu/pub/fftw/ \
ftp://pm.cse.rmit.edu.au/pub/dsp/fftw/
2004-11-10 06:29:18 -05:00
PKGNAMESUFFIX= ${FFTW_PKGNAMESUFFIX}
MAINTAINER= ports@FreeBSD.org
2004-11-10 06:29:18 -05:00
COMMENT?= Fast C routines to compute the Discrete Fourier Transform
2004-11-10 06:29:18 -05:00
# current flavors: default, float
FFTW_FLAVOR?= default
FFTW_SUFIX=
USE_AUTOTOOLS= libtool:22
USE_FORTRAN= yes
USE_GMAKE= yes
GNU_CONFIGURE= yes
CONFIGURE_ENV= MAKEINFO="makeinfo --no-split"
CONFIGURE_ARGS= --enable-shared
USE_LDCONFIG= yes
2004-11-10 06:29:18 -05:00
PLIST_SUB= FFTW_SUFX="${FFTW_SUFX}"
.include <bsd.port.pre.mk>
2004-11-10 06:29:18 -05:00
.if ${FFTW_FLAVOR}=="float"
CONFIGURE_ARGS+= --enable-float --enable-type-prefix
FFTW_SUFX= s
FFTW_PKGNAMESUFFIX= -float
PLIST_SUB+= DEF="@comment "
.else
INFO= fftw
PLIST_SUB+= DEF=""
.endif
.if ${ARCH} == "i386"
CONFIGURE_ARGS+= --enable-i386-hacks
.endif
2004-11-10 06:29:18 -05:00
post-patch:
@${RM} ${WRKSRC}/doc/fftw.info*
2007-02-10 17:46:34 -05:00
.if ${FFTW_FLAVOR}=="float"
@${REINPLACE_CMD} -e '/^SUBDIRS/s|doc||' ${WRKSRC}/Makefile.in
.endif
post-install:
2004-11-10 06:29:18 -05:00
.if ${FFTW_FLAVOR}=="default"
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
2004-11-10 06:29:18 -05:00
${INSTALL_DATA} ${WRKSRC}/doc/fftw.ps ${DOCSDIR}/fftw.ps
.endif
.endif
regression-test: build
@cd ${WRKSRC}/tests && ${SETENV} ${MAKE_ENV} ${MAKE} check
.include <bsd.port.post.mk>