diff --git a/python/py26-scipy/Portfile b/python/py26-scipy/Portfile
index 24b6af0..ffb2da8 100644
a
|
b
|
PortSystem 1.0 |
5 | 5 | PortGroup python26 1.0 |
6 | 6 | |
7 | 7 | name py26-scipy |
8 | | version 0.6.0 |
| 8 | version 0.7.0 |
9 | 9 | categories python |
10 | 10 | platforms darwin |
11 | 11 | maintainers jmr openmaintainer |
12 | 12 | description An opensource library of scientific tools for Python |
13 | | long_description ${description}. WARNING: scipy 0.6.0 is not yet fully \ |
14 | | functional under Python 2.6. |
| 13 | long_description ${description}. |
15 | 14 | |
16 | 15 | homepage http://www.scipy.org/ |
17 | 16 | master_sites sourceforge:scipy |
18 | 17 | distname scipy-${version} |
19 | 18 | |
20 | | checksums md5 417adf3bfe03f4c23c9fb265018e545c \ |
21 | | sha1 65eff3e245f59b2af9adc70fad11daa40f0ba3e0 \ |
22 | | rmd160 391f2067f7dcc133e7e8622df93a2a0cd5ebbe5b |
| 19 | checksums md5 80078ed5f47a48aec2cde3769ba39972 \ |
| 20 | sha1 7daef781253bafccf3be54b9eb3541f084503076 \ |
| 21 | rmd160 3583901f679cbc7f91560626f437d7edcd2bf6cf |
23 | 22 | |
24 | 23 | depends_lib-append port:py26-numpy \ |
| 24 | port:py26-nose \ |
25 | 25 | port:SuiteSparse \ |
26 | 26 | port:swig |
27 | 27 | |
28 | 28 | worksrcdir ${distname} |
29 | 29 | |
30 | | patchfiles patch-changeset_r3387.diff \ |
31 | | patch-abs-r4767.diff |
32 | | |
33 | 30 | build.env CCFLAGS="-I${prefix}/include -L${prefix}/lib" |
34 | 31 | |
35 | 32 | pre-fetch { |
… |
… |
post-patch { |
46 | 43 | reinplace "s|include <\\(umfpack\.*.h\\)>|include <${prefix}/include/ufsparse/\\1>|g" ${worksrcpath}/scipy/linsolve/umfpack/umfpack.i |
47 | 44 | } |
48 | 45 | |
49 | | post-activate { |
50 | | ui_msg "\n\nWarning: scipy version 0.6.0 is not yet fully functional under python 2.6" |
51 | | ui_msg "Testing fails: ${prefix}/bin/python2.6 -c 'import scipy; scipy.test()'\n\n" |
52 | | } |
53 | | |
54 | 46 | variant gcc42 conflicts gcc43 description "Use gfortran-mp-4.2 as fortran compiler" { |
55 | 47 | depends_lib-append port:gcc42 |
56 | 48 | set fc_options "config_fc --fcompiler gnu95 --f77exec ${prefix}/bin/gfortran-mp-4.2 --f90exec ${prefix}/bin/gfortran-mp-4.2" |
… |
… |
variant gcc43 conflicts gcc42 description "Use gfortran-mp-4.3 as fortran compil |
65 | 57 | destroot.cmd-append ${fc_options} |
66 | 58 | } |
67 | 59 | |
68 | | variant gnuplot description "Depend on GNUPlot" { |
69 | | depends_lib-append port:gnuplot |
70 | | } |
71 | | |
72 | 60 | if { ![variant_isset gcc42] && ![variant_isset gcc43] } { |
73 | 61 | default_variants +gcc43 |
74 | 62 | } |