aboutsummaryrefslogtreecommitdiffstats
path: root/math/sdpa/Makefile
blob: 0cd243730f57296a26b6d4df8a822c6c1433ad02 (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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
# New ports collection makefile for:    sdpa
# Date created:                         October 4 2003
# Whom:                                 NAKATA, Maho <maho@FreeBSD.org>
#
# $FreeBSD$
#

PORTNAME=   sdpa
PORTVERSION=    6.2.1
CATEGORIES= math
MASTER_SITES=   http://grid.r.dendai.ac.jp/sdpa/files/
DISTFILES=  ${PORTNAME}.${PORTVERSION}.src.tar.gz
.if !defined(NOPORTDOCS)
DISTFILES+= ${PORTNAME}.${OLDVERSION}.manual.ps.gz \
        ${PORTNAME}.${OLDVERSION}.manual.pdf \
        ${PORTNAME}.${OLDVERSION}.install.txt
.endif
DIST_SUBDIR=    sdpa
EXTRACT_ONLY=   ${PORTNAME}.${PORTVERSION}.src.tar.gz

MAINTAINER= maho@FreeBSD.org
COMMENT=    SDPA(SemiDefinite Programming Algorithm) Very efficent SDP Solver

.if defined(WITH_ICC)
BUILD_DEPENDS=  ${LOCALBASE}/intel_cc_80/bin/icc:${PORTSDIR}/lang/icc
.endif
LIB_DEPENDS=    atlas:${PORTSDIR}/math/atlas

OLDVERSION= 6.2.0
USE_GMAKE=  yes
WRKSRC=     ${WRKDIR}/${PORTNAME}
.if defined(WITH_SMP)
LAPACK=     -lalapack_r
CBLAS=      -lptcblas -lptf77blas -latlas_r -lg2c ${PTHREAD_LIBS}
.else
LAPACK=     -lalapack
CBLAS=      -lcblas -lf77blas -latlas -lg2c
.endif
PLIST_SUB+=     PORTVERSION="${PORTVERSION}"
#WITH_SMP=  yes
#WITH_ICC=  yes

.include <bsd.port.pre.mk>

.if defined(WITH_OPTIMIZED_FLAGS)
.if ${ARCH} == "amd64"
CFLAGS+=    -pipe -O3 -ffast-math -funroll-all-loops -fpeel-loops -ftracer -funswitch-loops -funit-at-a-time
CXXFLAGS+=  -pipe -O3 -ffast-math -funroll-all-loops -fpeel-loops -ftracer -funswitch-loops -funit-at-a-time
.elif ${ARCH} == "i386"
CFLAGS+=    -O3 -ffast-math -finline-functions -fomit-frame-pointer -funroll-loops -fexpensive-optimizations -malign-double -mcpu=i686 -march=i686 -mfancy-math-387 -mpreferred-stack-boundary=3
CXXFLAGS+=  -O3 -ffast-math -finline-functions -fomit-frame-pointer -funroll-loops -fexpensive-optimizations -Wno-multichar -malign-double -mcpu=i686 -march=i686 -mfancy-math-387 -mpreferred-stack-boundary=3
.else
CFLAGS+=    -O3 -ffast-math -finline-functions -fomit-frame-pointer -funroll-loops -fexpensive-optimizations
CXXFLAGS+=  -O3 -ffast-math -finline-functions -fomit-frame-pointer -funroll-loops -fexpensive-optimizations -Wno-multichar
.endif
.endif

.if defined(WITH_ICC)
CC=     ${LOCALBASE}/intel_cc_80/bin/icc
CXX=        ${LOCALBASE}/intel_cc_80/bin/icpc
CFLAGS=     -O3 -tpp7 -axN -Vaxlib
CXXFLAGS=   -O3 -tpp7 -axN -Vaxlib
.endif

pre-build:
    ${CP} ${FILESDIR}/Makefile ${WRKDIR}
    @${REINPLACE_CMD} -e 's|%%PREFIX%%|${PREFIX}|g ; \
                  s|%%LAPACK%%|${LAPACK}|g ; \
                  s|%%LOCALBASE%%|${LOCALBASE}|g ; \
                  s|%%CBLAS%%|${CBLAS}|g'  ${WRKDIR}/Makefile
    @${REINPLACE_CMD} -e 's|%%PREFIX%%|${PREFIX}|g ; \
                  s|%%LOCALBASE%%|${LOCALBASE}|g ; \
                  s|%%CXX%%|${CXX}| g ; \
                  s|%%CXXFLAGS%%|${CXXFLAGS}|g ; \
                  s|%%LAPACK%%|${LAPACK}|g ; \
                  s|%%CBLAS%%|${CBLAS}|g'  ${WRKSRC}/Makefile
.if !defined(WITH_OPTIMIZED_FLAGS)
    @${ECHO} "You can optimize by setting WITH_OPTIMIZED_FLAGS=yes."
.endif

do-install:
    ${INSTALL_PROGRAM} ${WRKSRC}/sdpa ${PREFIX}/bin
    ${INSTALL_DATA}    ${WRKSRC}/libsdpa.a ${PREFIX}/lib
    ${INSTALL_DATA}    ${WRKSRC}/sdpa-lib.hpp ${PREFIX}/include
    ${INSTALL_DATA}    ${WRKSRC}/sdpa-lib2.hpp  ${PREFIX}/include
    @${MKDIR} ${DATADIR}
    ${INSTALL_DATA}    ${WRKSRC}/param.sdpa ${DATADIR}
.if !defined(NOPORTDOCS)
    @${MKDIR} ${DOCSDIR}
.for i in ${PORTNAME}.${OLDVERSION}.manual.ps.gz ${PORTNAME}.${OLDVERSION}.manual.pdf ${PORTNAME}.${OLDVERSION}.install.txt
    ${INSTALL_DATA} ${DISTDIR}/${DIST_SUBDIR}/${i} ${DOCSDIR}
.endfor
    @${MKDIR} ${EXAMPLESDIR}
.for i in example1-1.cpp example1-2.cpp example1.dat example1.dat-s example1.ini \
    example1.ini-s example1.result example2-1.cpp example2-2.cpp \
    example2.dat example2.result example3.cpp example4.cpp \
    example5.cpp example6.cpp
    ${INSTALL_DATA}    ${WRKSRC}/${i} ${EXAMPLESDIR}
.endfor
    ${INSTALL_DATA}    ${WRKSRC}/param.sdpa ${EXAMPLESDIR}
    ${INSTALL_DATA}    ${WRKDIR}/Makefile ${EXAMPLESDIR}

.endif

.include <bsd.port.post.mk>