aboutsummaryrefslogtreecommitdiffstats
path: root/math/py-cvxopt/Makefile
blob: adf4750827a081738dbb7556e14983479249b9ad (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
# $FreeBSD$

PORTNAME=   cvxopt
DISTVERSION=    1.2.2
CATEGORIES= math python
PKGNAMEPREFIX=  ${PYTHON_PKGNAMEPREFIX}

MAINTAINER= yuri@FreeBSD.org
COMMENT=    Python software for convex optimization

LICENSE=    GPLv3
LICENSE_FILE=   ${WRKSRC}/LICENSE

LIB_DEPENDS=    libblas.so:math/blas \
        liblapack.so:math/lapack \
        libumfpack.so:math/suitesparse

USES=       python localbase:ldflags
USE_GITHUB= yes
USE_PYTHON= distutils autoplist

CFLAGS+=    -I${LOCALBASE}/include/suitesparse

OPTIONS_DEFINE=     GSL FFTW GLPK DSDP
OPTIONS_DEFAULT=    GSL FFTW GLPK DSDP

GSL_DESC=       Build with GSL, the GNU scientific library
GSL_MAKE_ENV=       CVXOPT_BUILD_GSL=1
GSL_LIB_DEPENDS=    libgsl.so:math/gsl

FFTW_MAKE_ENV=      CVXOPT_BUILD_FFTW=1
FFTW_LIB_DEPENDS=   libfftw3.so:math/fftw3

GLPK_DESC=      Build with GLPK, the linear programming solver
GLPK_MAKE_ENV=      CVXOPT_BUILD_GLPK=1
GLPK_LIB_DEPENDS=   libglpk.so:math/glpk

DSDP_DESC=      Build with DSDP, the interior-point method
DSDP_MAKE_ENV=      CVXOPT_BUILD_DSDP=1
DSDP_CFLAGS=        -I${LOCALBASE}/include/dsdp
DSDP_LIB_DEPENDS=   libdsdp.so:math/dsdp

post-install:
    @${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/cvxopt/*.so

.include <bsd.port.mk>