47 lines
1.4 KiB
Makefile
47 lines
1.4 KiB
Makefile
PORTNAME= couenne
|
|
DISTVERSIONPREFIX= releases/
|
|
DISTVERSION= 0.5.8
|
|
PORTREVISION= 11
|
|
CATEGORIES= math
|
|
PKGNAMEPREFIX= coin-or-
|
|
|
|
MAINTAINER= yuri@FreeBSD.org
|
|
COMMENT= Convex Over and Under Envelopes for NonliNear Estimation
|
|
WWW= https://projects.coin-or.org/Couenne
|
|
|
|
LICENSE= EPL
|
|
LICENSE_FILE= ${WRKSRC}/Couenne/LICENSE
|
|
|
|
LIB_DEPENDS= libbonmin.so:math/bonmin \
|
|
libCbc.so:math/cbc \
|
|
libCgl.so:math/cgl \
|
|
libClp.so:math/clp \
|
|
libcoinasl.so:math/asl \
|
|
libCoinUtils.so:math/coinutils \
|
|
libipopt.so:math/ipopt \
|
|
libnauty.so:math/nauty \
|
|
libopenblas.so:math/openblas \
|
|
libOsi.so:math/osi
|
|
|
|
USES= blaslapack:netlib fortran gmake libtool pkgconfig
|
|
USE_LDCONFIG= yes
|
|
USE_CXXSTD= c++11 # fix compilation failure: error: ISO C++17 does not allow 'register' storage class specifier, see https://github.com/coin-or/Couenne/issues/75
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= coin-or
|
|
GH_PROJECT= Couenne
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --with-nauty-incdir=${LOCALBASE}/include/nauty --with-nauty-lib=${LOCALBASE}/lib/libnauty.so # see https://github.com/coin-or/Couenne/issues/58
|
|
|
|
INSTALL_TARGET= install-strip
|
|
|
|
SUB_FILES= ${PORTNAME}.msc
|
|
SUB_LIST= PORTVERSION=${PORTVERSION}
|
|
|
|
post-install:
|
|
# install MiniZinc configuration file
|
|
${MKDIR} ${STAGEDIR}${PREFIX}/share/minizinc/solvers
|
|
${INSTALL_DATA} ${WRKDIR}/${PORTNAME}.msc ${STAGEDIR}${PREFIX}/share/minizinc/solvers
|
|
|
|
.include <bsd.port.mk>
|