aboutsummaryrefslogtreecommitdiffstats
path: root/math/levmar/Makefile
blob: fd0af9f6fd110b74ce2ed0e0a789b15cef1ec837 (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
81
# New ports collection makefile for:    levmar
# Date created: 18 May 2010
# Whom:         Eijiro Shibusawa <ej-sib@ice.uec.ac.jp>
#
# $FreeBSD$
#

PORTNAME=   levmar
PORTVERSION=    2.5
CATEGORIES= math
MASTER_SITES=   http://www.ics.forth.gr/~lourakis/levmar/
EXTRACT_SUFX=   .tgz

MAINTAINER= phd_kimberlite@yahoo.co.jp
COMMENT=    A GPL-licensed library implementing the Levenberg-Marquardt algorithm

LICENSE=    GPLv2

USE_LDCONFIG=   yes
USE_FORTRAN=    yes

.if exists(${LOCALBASE}/lib/libatlas.so)
WITH_BLAS?= atlas
.else
WITH_BLAS?= reference
.endif

.if ${WITH_BLAS} == "reference"
LIB_DEPENDS=    blas.2:${PORTSDIR}/math/blas \
    lapack.4:${PORTSDIR}/math/lapack
BLAS=   -lblas
LAPACK =    -llapack
.elif ${WITH_BLAS} == "atlas"
LIB_DEPENDS=    atlas:${PORTSDIR}/math/atlas
BLAS=   -lf77blas -lcblas -latlas
LAPACK =    -lalapack
.endif

LDFLAGS+=   -L${LOCALBASE}/lib
MAKE_ENV=   LDADD="${LAPACK} ${BLAS}" LDFLAGS="${LDFLAGS}"
.for _u in AR NM RANLIB
MAKE_ENV+=  ${_u}="${LOCALBASE}/bin/${_u:L}"
.endfor

.if !defined(NOPORTDOCS)
PORTDOCS=   README.txt
.endif
.if !defined(NOPORTEXAMPLES)
PORTEXAMPLES=   lmdemo.c Makefile.demo
.endif
PLIST_FILES=    include/levmar.h \
    lib/liblevmar.a \
    lib/liblevmar.so \
    lib/liblevmar.so.2

.if !(defined(NOPROFILE) || defined(NO_PROFILE) || defined(WITHOUT_PROFILE))
PLIST_FILES+=   lib/liblevmar_p.a
.endif

post-extract:
    @${MV} ${WRKSRC}/Makefile ${WRKSRC}/Makefile.dist
    @${CP} ${FILESDIR}/Makefile.lib ${WRKSRC}/Makefile
    @${CP} ${FILESDIR}/Makefile.demo ${WRKSRC}/
    @${REINPLACE_CMD} -e 's+%%CC%%+${CC}+g' \
        -e 's+%%CFLAGS%%+${CFLAGS} -I${LOCALBASE}/include+g' \
        -e 's+%%LDFLAGS%%+${LDFLAGS} -L${LOCALBASE}/lib+g' \
        -e 's+%%BLAS%%+${BLAS}+g' \
        -e 's+%%LAPACK%%+${LAPACK}+g' \
            ${WRKSRC}/Makefile.demo

post-install:
.if !defined(NOPORTDOCS)
    @${MKDIR} ${DOCSDIR}
    @(cd ${WRKSRC}/ && ${INSTALL_DATA} ${PORTDOCS} ${DOCSDIR})
.endif
.if !defined(NOPORTEXAMPLES)
    @${MKDIR} ${EXAMPLESDIR}
    @(cd ${WRKSRC}/ && ${INSTALL_DATA} ${PORTEXAMPLES} ${EXAMPLESDIR})
.endif

.include <bsd.port.mk>