Commits
Marcus Calhoun-Lopez authored and MarcusCalhoun-Lopez committed 6e7ed75a61f
1 1 | # -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4 |
2 2 | |
3 3 | PortSystem 1.0 |
4 4 | PortGroup github 1.0 |
5 5 | PortGroup compilers 1.0 |
6 6 | |
7 7 | github.setup JuliaLang julia 0.6.2 v |
8 - | revision 1 |
8 + | revision 2 |
9 9 | categories-append lang math science |
10 10 | maintainers {sean @seanfarley} openmaintainer |
11 11 | platforms darwin |
12 12 | license MIT |
13 13 | homepage http://julialang.org |
14 14 | |
15 15 | compilers.choose fc f77 f90 |
16 16 | compilers.setup require_fortran -g95 |
17 17 | |
18 18 | description The Julia Language: A fresh approach to technical computing. |
30 30 | # Force buildbot to skip this since julia builds its own blas; see #45101 |
31 31 | archive_sites |
32 32 | |
33 33 | set llvm_ver 4.0 |
34 34 | |
35 35 | depends_lib-append port:llvm-${llvm_ver} \ |
36 36 | port:curl \ |
37 37 | port:pcre2 \ |
38 38 | port:gmp \ |
39 39 | port:mpfr \ |
40 - | port:SuiteSparse \ |
40 + | port:SuiteSparse_UMFPACK \ |
41 + | port:SuiteSparse_CHOLMOD \ |
42 + | port:SuiteSparse_AMD \ |
43 + | port:SuiteSparse_CAMD \ |
44 + | port:SuiteSparse_COLAMD \ |
45 + | port:SuiteSparse_SPQR \ |
41 46 | port:fftw-3 \ |
42 47 | port:fftw-3-single \ |
43 48 | port:ncurses \ |
44 49 | port:arpack \ |
45 50 | port:libgit2 \ |
46 51 | path:lib/libopenblas.dylib:OpenBLAS |
47 52 | |
48 53 | use_configure no |
49 54 | # use_parallel_build no |
50 55 | |