aboutsummaryrefslogtreecommitdiffstats
path: root/science/mpb/Makefile
blob: 90a523b7ebd4ac36fb43c5c6e3807fa3762bef12 (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
# ex:ts=8
# Ports collection makefile for:    mpb
# Date created:         Apr 4, 2003
# Whom:             ijliao
#
# $FreeBSD$
#

PORTNAME=   mpb
PORTVERSION=    1.4.2
PORTREVISION=   7
CATEGORIES= science
MASTER_SITES=   http://ab-initio.mit.edu/mpb/

MAINTAINER= ports@FreeBSD.org
COMMENT=    MIT Photonic-Bands

BUILD_DEPENDS=  bash:${PORTSDIR}/shells/bash
LIB_DEPENDS=    fftw.2:${PORTSDIR}/math/fftw \
        hdf5.0:${PORTSDIR}/science/hdf5 \
        ctl.3:${PORTSDIR}/science/libctl \
        guile.19:${PORTSDIR}/lang/guile

USE_FORTRAN=    yes

.include <bsd.port.pre.mk>
GNU_CONFIGURE=  yes
CONFIGURE_ENV+= CPPFLAGS="${CPPFLAGS} -I${LOCALBASE}/include" \
        LDFLAGS="-L${LOCALBASE}/lib"

.if exists(${LOCALBASE}/lib/libatlas_r.so) && !defined(WITH_BLAS)
WITH_ATLAS= yes
.endif
.if defined(WITH_ATLAS)
LIB_DEPENDS+=   atlas.2:${PORTSDIR}/math/atlas
CONFIGURE_ARGS+=    --with-lapack=-lalapack
.else
LIB_DEPENDS+=   blas.2:${PORTSDIR}/math/blas
LIB_DEPENDS+=   lapack.4:${PORTSDIR}/math/lapack
CONFIGURE_ARGS+=    --with-lapack=-llapack
.endif

MAN1=   mpb.1 mpb-data.1 mpb-split.1

post-patch:
    @${REINPLACE_CMD} -e 's|-lhdf5 |-lhdf5 ${PTHREAD_LIBS} |g' \
        ${WRKSRC}/configure

.include <bsd.port.post.mk>