freebsd-ports/math/clp/Makefile
Gerald Pfeifer e9ceef6693 Update to version 1.10.0, fixing an existing build error with GCC 4.4 by
means of an additional patch.

Reported by:	pav and miwi (from pointyhat)
Submitted by:	Pedro F. Giffuni <giffunip@yahoo.com>
Approved by:	maintainer timeout
Feature safe:	yes
2009-09-17 13:02:43 +00:00

40 lines
938 B
Makefile

# New ports collection makefile for: Clp
# Date created: 22 July 2007
# Whom: Robin Schilham
#
# $FreeBSD$
#
PORTNAME= Clp
PORTVERSION= 1.10.0
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
.ifdef WITH_GMPL
LIB_DEPENDS+= glpk.24:${PORTSDIR}/math/glpk
.endif
USE_FORTRAN= yes
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"
.ifdef WITH_GMPL
CONFIGURE_ARGS+=--with-gmpl-incdir=${LOCALBASE}/include \
--with-gmpl-lib="-L${LOCALBASE}/lib -lglpk"
.endif
regression-test: build
(cd ${WRKSRC}/Clp && ${MAKE} unitTest )
.include <bsd.port.mk>