svn commit: r376984 - head/math/ipopt

Thierry Thomas thierry at FreeBSD.org
Tue Jan 13 20:23:59 UTC 2015


Author: thierry
Date: Tue Jan 13 20:23:58 2015
New Revision: 376984
URL: https://svnweb.freebsd.org/changeset/ports/376984
QAT: https://qat.redports.org/buildarchive/r376984/

Log:
  Patch to use blaslapack framework.
  Includes some cleanups but no functional change.
  
  PR:		ports/196648
  Submitted by:	pfg (maintainer)

Modified:
  head/math/ipopt/Makefile

Modified: head/math/ipopt/Makefile
==============================================================================
--- head/math/ipopt/Makefile	Tue Jan 13 19:24:42 2015	(r376983)
+++ head/math/ipopt/Makefile	Tue Jan 13 20:23:58 2015	(r376984)
@@ -17,16 +17,14 @@ COMMENT=	Software package for large-scal
 
 LICENSE=	EPL
 
-LIB_DEPENDS=	liblapack.so:${PORTSDIR}/math/lapack
-
-USES=		fortran libtool pkgconfig tar:tgz
+USES=		blaslapack fortran libtool pkgconfig tar:tgz
 GNU_CONFIGURE=	yes
 USE_LDCONFIG=	yes
 INSTALL_TARGET=	install-strip
 
 CONFIGURE_ENV+=	PKG_CONFIG_PATH=${STAGEDIR}${PREFIX}/libdata/pkgconfig
-CONFIGURE_ARGS=	--with-lapack-lib="-llapack -L/${LOCALBASE}/lib"	\
-		--with-lapack-incdir=${LOCALBASE}/include/lapack
+CONFIGURE_ARGS=	--with-lapack-lib="${LAPACKLIB} -L${LOCALBASE}/lib"	\
+		--with-blas-lib="${BLASLIB} -L${LOCALBASE}/lib"
 
 CXXFLAGS+=	-ffast-math
 


More information about the svn-ports-all mailing list