mirror of
https://git.FreeBSD.org/ports.git
synced 2025-02-03 11:12:13 +00:00
564a799c71
USE_GCC=yes has been omitted though. Remove USE_FORTRAN handling from bsd.port.mk and bsd.gcc.mk. Minor cleanups in some ports like USE_GMAKE, NOPORTDOCS,... Exp-run: bdrewery Approved by: portmgr (bdrewery)
32 lines
678 B
Makefile
32 lines
678 B
Makefile
# Created by: Robin Schilham
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= Clp
|
|
PORTVERSION= 1.12.1
|
|
PORTREVISION= 1
|
|
CATEGORIES= math
|
|
MASTER_SITES= http://www.coin-or.org/download/source/Clp/ \
|
|
http://www.mavetju.org/download/adopted/
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
MAINTAINER= co9co9@gmail.com
|
|
COMMENT= Linear Programming Solver
|
|
|
|
LIB_DEPENDS= lapack.4:${PORTSDIR}/math/lapack
|
|
|
|
USES= fortran
|
|
CXXFLAGS+= -ffast-math -fomit-frame-pointer
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_LDCONFIG= yes
|
|
|
|
CONFIGURE_ENV+= ${MAKE_ENV}
|
|
CONFIGURE_ARGS= --with-blas="-L${LOCALBASE}/lib -lblas" \
|
|
--with-lapack="-L${LOCALBASE}/lib -llapack"
|
|
|
|
regression-test: build
|
|
(cd ${WRKSRC}/Clp && ${MAKE} unitTest )
|
|
|
|
NO_STAGE= yes
|
|
.include <bsd.port.mk>
|