From b36055cf9f9eee5bd7515e0733830600763b9cbd Mon Sep 17 00:00:00 2001 From: Yuri Victorovich Date: Mon, 3 May 2021 13:26:18 -0700 Subject: [PATCH] math/cbc: Link with COIN-OR ASL library and add missing dependencies --- math/cbc/Makefile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/math/cbc/Makefile b/math/cbc/Makefile index 8ff2c7d14dd9..f5b24a375d48 100644 --- a/math/cbc/Makefile +++ b/math/cbc/Makefile @@ -1,6 +1,7 @@ PORTNAME= cbc DISTVERSIONPREFIX= releases/ DISTVERSION= 2.10.5 +PORTREVISION= 1 CATEGORIES= math PKGNAMEPREFIX= coin-or- @@ -13,7 +14,11 @@ LICENSE_FILE= ${WRKSRC}/Cbc/LICENSE LIB_DEPENDS= libblas.so:math/blas \ libCgl.so:math/cgl \ libClp.so:math/clp \ - liblapack.so:math/lapack + libcoinasl.so:math/asl \ + libcoinmumps.so:math/ipopt \ + libCoinUtils.so:math/coinutils \ + liblapack.so:math/lapack \ + libopenblas.so:math/openblas USES= compiler:c++11-lang fortran gmake libtool pkgconfig USE_GITHUB= yes