mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-10 07:04:03 +00:00
fb44dca45d
* Fix build on i386 [1] * Fix science/code_saturne build with new openblas [2] * Avoid installing private headers [3] * Prevent build from optimizing for host by correcting build confg [4] * Bump portrevision of dependent ports [5] This is correcting issues from r523749 [1][2][4] and r515970 [3] PR: 231371 Reported by: build cluster [1] Reported by: Dima Pasechnik <dimpase+freebsd@gmail.com> [2] Reported by: many [5] Reviewed by: mat, bapt Approved by: implicit, since this is a build fix
37 lines
791 B
Makefile
37 lines
791 B
Makefile
# Created by: Robin Schilham
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= Clp
|
|
DISTVERSION= 1.17.3
|
|
PORTREVISION= 1
|
|
CATEGORIES= math
|
|
MASTER_SITES= http://www.coin-or.org/download/source/${PORTNAME}/ \
|
|
http://www.mavetju.org/download/adopted/
|
|
PKGNAMEPREFIX= coin-or-
|
|
|
|
MAINTAINER= co9co9@gmail.com
|
|
COMMENT= Linear Programming Solver
|
|
|
|
LICENSE= EPL
|
|
|
|
USES= blaslapack compiler:c++11-lang fortran libtool pathfix tar:tgz
|
|
GNU_CONFIGURE= yes
|
|
USE_LDCONFIG= yes
|
|
|
|
INSTALL_TARGET= install-strip
|
|
|
|
CONFIGURE_ARGS= --with-lapack-lib="${LAPACKLIB} -L${LOCALBASE}/lib" \
|
|
--with-blas-lib="${BLASLIB} -L${LOCALBASE}/lib" \
|
|
--datadir=${DATADIR}
|
|
|
|
TEST_TARGET= unitTest
|
|
TEST_WRKSRC= ${WRKSRC}/${PORTNAME}
|
|
|
|
OPTIONS_DEFINE= DEBUG DOCS
|
|
PORTDOCS= *
|
|
|
|
CXXFLAGS+= -ffast-math
|
|
DEBUG_CXXFLAGS= -fomit-frame-pointer
|
|
|
|
.include <bsd.port.mk>
|