Date: Mon, 13 Feb 2017 15:17:51 +0000 (UTC) From: Li-Wen Hsu <lwhsu@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r433996 - in head/lang/julia: . files Message-ID: <201702131517.v1DFHpHQ001928@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: lwhsu Date: Mon Feb 13 15:17:51 2017 New Revision: 433996 URL: https://svnweb.freebsd.org/changeset/ports/433996 Log: - Link to libopenblasp (threaded version) for better performace - Point to correct depend: math/arpack-ng - Bump PORTREVISION PR: 217056 Submitted by: Iblis Lin <iblis@hs.ntnu.edu.tw> Modified: head/lang/julia/Makefile head/lang/julia/files/patch-Make.user Modified: head/lang/julia/Makefile ============================================================================== --- head/lang/julia/Makefile Mon Feb 13 14:32:28 2017 (r433995) +++ head/lang/julia/Makefile Mon Feb 13 15:17:51 2017 (r433996) @@ -4,7 +4,7 @@ PORTNAME= julia PORTVERSION= 0.5.0 DISTVERSIONSUFFIX= -full -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= lang math MASTER_SITES= https://github.com/JuliaLang/julia/releases/download/v${PORTVERSION}/ @@ -16,11 +16,12 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.md LIB_DEPENDS= libunwind.so:devel/libunwind \ libutf8proc.so:textproc/utf8proc \ - libopenblas.so:math/openblas \ + libopenblasp.so:math/openblas \ libgit2.so:devel/libgit2 \ libgmp.so:math/gmp \ libmpfr.so:math/mpfr \ - libpcre2-8.so:devel/pcre2 + libpcre2-8.so:devel/pcre2 \ + libarpack.so:math/arpack-ng BUILD_DEPENDS= llvm-config38:devel/llvm38 \ pcre2-config:devel/pcre2 \ patchelf:sysutils/patchelf Modified: head/lang/julia/files/patch-Make.user ============================================================================== --- head/lang/julia/files/patch-Make.user Mon Feb 13 14:32:28 2017 (r433995) +++ head/lang/julia/files/patch-Make.user Mon Feb 13 15:17:51 2017 (r433996) @@ -21,8 +21,8 @@ +USE_SYSTEM_FFTW= 1 +USE_SYSTEM_SUITESPARSE= 1 + -+LIBBLAS= -lopenblas -L$(LOCALBASE)/lib -+LIBBLASNAME= libopenblas ++LIBBLAS= -lopenblasp -L$(LOCALBASE)/lib ++LIBBLASNAME= libopenblasp + +LIBLAPACK= $(LIBBLAS) +LIBLAPACKNAME= $(LIBBLASNAME)
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201702131517.v1DFHpHQ001928>