aboutsummaryrefslogtreecommitdiffstats
path: root/math/coinmp/Makefile
blob: dde7fa8fcec0f3644c41277108ef0ed0cbc530af (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
# Created by: Pedro Giffuni
# $FreeBSD$

PORTNAME=   CoinMP
PORTVERSION=    1.7.6
CATEGORIES= math
MASTER_SITES=   http://www.coin-or.org/download/source/CoinMP/

MAINTAINER= cpm@fbsd.es
COMMENT=    Optimization library with support for COIN-OR CLP, CBC, and CGL

LICENSE=    CPL
LICENSE_NAME=   Common Public License, Version 1.0
LICENSE_FILE=   ${WRKSRC}/CoinMP/LICENSE
LICENSE_PERMS=  dist-mirror dist-sell pkg-mirror pkg-sell auto-accept

CONFLICTS=  clp-[0-9]*

GNU_CONFIGURE=  yes
USES=   libtool pkgconfig tar:tgz
USE_LDCONFIG=   yes
INSTALL_TARGET= install-strip
CONFIGURE_ARGS+=    PKG_CONFIG_PATH=${STAGEDIR}${PREFIX}/libdata/pkgconfig

OPTIONS_DEFINE= DEBUG DOCS

PORTDOCS=   *

.include <bsd.port.options.mk>

.if ${PORT_OPTIONS:MGLPK}
BROKEN =    the GLPK option requires math/glpk headers that are not currently installed by that port
CONFIGURE_ARGS+=    --with-gmpl-incdir=${LOCALBASE}/include \
        --with-gmpl-lib="-L${LOCALBASE}/lib -lglpk"
LIB_DEPENDS+=   libglpk.so:${PORTSDIR}/math/glpk
.else
CONFIGURE_ARGS+=    --disable-glpk-libcheck
.endif

CXXFLAGS+=  -ffast-math
.if ${PORT_OPTIONS:MDEBUG}
CXXFLAGS+=  -fomit-frame-pointer
.endif

post-patch::
    @${REINPLACE_CMD} -e \
        's|$$(libdir)/pkgconfig|${PREFIX}/libdata/pkgconfig|' \
        ${WRKSRC}/Clp/Makefile.in ${WRKSRC}/Osi/Makefile.in \
        ${WRKSRC}/Cbc/Makefile.in ${WRKSRC}/Cgl/Makefile.in \
        ${WRKSRC}/CoinUtils/Makefile.in ${WRKSRC}/CoinMP/Makefile.in \
        ${WRKSRC}/Data/Sample/Makefile.in
    @${REINPLACE_CMD} -e 's|$$(DESTDIR)$$(addlibsdir)|$$(addlibsdir)|g' \
        ${WRKSRC}/CoinMP/Makefile.in

post-install:
    ${MV} ${STAGEDIR}${PREFIX}/share/coin/doc ${STAGEDIR}${DOCSDIR}
    ${RM} -rf ${STAGEDIR}${PREFIX}/share/coin

check regression-test test: build
    @(cd ${WRKSRC};  ${SETENV} ${MAKE_ENV} ${MAKE} ${_MAKE_JOBS} \
    ${MAKE_ARGS} test)

.include <bsd.port.mk>