1 | # -*- coding: utf-8; mode: tcl; tab-width: 4; truncate-lines: t; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:et:sw=4:ts=4:sts=4 |
---|
2 | # $Id: Portfile 72493 2010-10-18 09:41:13Z stromnov@macports.org $ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | PortGroup python27 1.0 |
---|
6 | |
---|
7 | name py27-ipython |
---|
8 | set my_name ipython |
---|
9 | version 0.10.1 |
---|
10 | categories python |
---|
11 | platforms darwin |
---|
12 | maintainers akitada openmaintainer |
---|
13 | description An enhanced Interactive Python shell |
---|
14 | long_description Provide an interactive shell superior to Python's default. \ |
---|
15 | Serve as an embeddable, ready to use interpreter for your own programs. \ |
---|
16 | Offer a flexible framework which can be used as the base environment for \ |
---|
17 | other systems with Python as the underlying language. \ |
---|
18 | Allow interactive testing of threaded graphical toolkits. |
---|
19 | |
---|
20 | homepage http://ipython.scipy.org/ |
---|
21 | master_sites ${homepage}dist/ |
---|
22 | distname ${my_name}-${version} |
---|
23 | checksums md5 54ae47079b0e9a0998593a99ce76ec1f \ |
---|
24 | sha1 1e5cfde5ba6d704e0ccd414e633116e4199d0d7a \ |
---|
25 | rmd160 c4f0177f466f6bfb32d98e73b5235885bc470871 |
---|
26 | |
---|
27 | use_parallel_build yes |
---|
28 | |
---|
29 | test.run no |
---|
30 | |
---|
31 | post-destroot { |
---|
32 | foreach f {ipython pycolor} { |
---|
33 | ln -s ${python.prefix}/share/man/man1/${f}.1.gz ${destroot}${prefix}/share/man/man1/${f}${python.branch}.1.gz |
---|
34 | } |
---|
35 | } |
---|
36 | |
---|
37 | variant scientific description "Use ScientificPython to provide physical quantities support" { |
---|
38 | depends_lib-append port:py27-scientific |
---|
39 | } |
---|
40 | |
---|
41 | default_variants +scientific |
---|
42 | universal_variant no |
---|
43 | |
---|
44 | livecheck.type regex |
---|
45 | livecheck.url ${homepage}/moin/Download |
---|
46 | livecheck.regex ${my_name}-(\\d+(?:\\.\\d+)*) |
---|