blob: d098244939222978266d37e11e1e8c6cb0f8cf90 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
# New ports collection makefile for: fftw
# Date created: Dec 28 1998
# Whom: Lars Koeller <Lars.Koeller@Uni-Bielefeld.DE>
#
# $FreeBSD$
#
PORTNAME= fftw
PORTVERSION= 2.1.5
PORTREVISION?= 6
CATEGORIES= math
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/
PKGNAMESUFFIX= ${FFTW_PKGNAMESUFFIX}
MAINTAINER= ports@FreeBSD.org
COMMENT?= Fast C routines to compute the Discrete Fourier Transform
LICENSE= GPLv2
# current flavors: default, float
FFTW_FLAVOR?= default
FFTW_SUFIX=
USE_FORTRAN= yes
USE_GMAKE= yes
USE_AUTOTOOLS= aclocal automake autoconf libtool
ACLOCAL_ARGS= -I ${LOCALBASE}/share/aclocal
CONFIGURE_ENV= MAKEINFO="makeinfo --no-split"
CONFIGURE_ARGS= --enable-shared
USE_LDCONFIG= yes
MAKE_JOBS_SAFE= yes
PLIST_SUB= FFTW_SUFX="${FFTW_SUFX}"
PORTSCOUT= limit:^2\.
.include <bsd.port.pre.mk>
.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
.if ${ARCH} == "sparc64"
BROKEN= does not build
.endif
post-patch:
@${REINPLACE_CMD} -e '/^SUBDIRS/s|doc | |' ${WRKSRC}/Makefile.am
post-build:
.if ${FFTW_FLAVOR}=="default"
@cd ${WRKSRC}/doc && makeinfo fftw.texi
.endif
post-install:
.if ${FFTW_FLAVOR}=="default"
${INSTALL_DATA} ${WRKSRC}/doc/fftw.info ${PREFIX}/${INFO_PATH}
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
${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>
|