diff --git a/math/cadabra/Portfile b/math/cadabra/Portfile
index 6677e51be7..8552b86aef 100644
a
|
b
|
|
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 | PortGroup github 1.0 |
4 | 5 | |
5 | | name cadabra |
6 | | version 1.33 |
7 | | revision 1 |
| 6 | github.setup kpeeters cadabra 1.46 |
8 | 7 | categories math |
9 | 8 | platforms darwin |
10 | 9 | license GPL-3+ |
… |
… |
long_description Cadabra is a computer algebra system for the \ |
21 | 20 | algebra systems. |
22 | 21 | |
23 | 22 | homepage http://cadabra.phi-sci.com/ |
24 | | master_sites ${homepage} |
25 | 23 | |
26 | | checksums rmd160 52686bdd7a635a6db30a91add951720f14c1ddc6 \ |
27 | | sha256 075dad3a1a9fd8774473f6d28f036f65629a286304c02f0ac1e10be3cb2ebd12 |
| 24 | checksums rmd160 58a5eabc25d8b2d5c5ef826d83584727d16efc4f \ |
| 25 | sha256 4a810bcb2b9870adffa53a1a0e84480a25d56d0cd12807c923f2e2f2ce3e5e37 |
28 | 26 | |
29 | 27 | depends_build port:pkgconfig \ |
30 | 28 | port:pcrexx |
… |
… |
depends_lib port:modglue \ |
34 | 32 | port:gmp \ |
35 | 33 | port:LiE |
36 | 34 | |
37 | | # Invalid C++, ticket #33045 |
38 | | # |
39 | | # Cannot use clang because xperm uses nested functions and variable |
40 | | # sized arrays, both of which clang will never support. Silly llvm makes |
41 | | # cadabra crash all over the place for no good reason, so that's out |
42 | | # too. Furthermore, we cannot use any GCC other than Apple's because |
43 | | # that will lead to cadabra being linked to two different libstdc++ |
44 | | # libraries, with malloc failures as a result. |
45 | | compiler.whitelist gcc-4.2 gcc-4.0 apple-gcc-4.2 |
46 | | |
47 | 35 | configure.args --disable-gui \ |
48 | 36 | --disable-runtime-dependency-check |
49 | 37 | |