# -*- 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
# $Id: Portfile 78587 2011-05-13 06:27:50Z jmr@macports.org $

PortSystem              1.0
PortGroup               python24 1.0
PortGroup               select 1.0

name                    py-ipython
set my_name             ipython
version                 0.9.1
revision                2
categories              python
platforms               darwin
maintainers             nomaintainer
supported_archs         noarch

description             An enhanced Interactive Python shell
long_description        Provide an interactive shell superior to Python's default. \
                        Serve as an embeddable, ready to use interpreter for your own programs. \
                        Offer a flexible framework which can be used as the base environment for \
                        other systems with Python as the underlying language.  \
                        Allow interactive testing of threaded graphical toolkits.

homepage                http://ipython.scipy.org/
master_sites            ${homepage}dist/
distname                ${my_name}-${version}
checksums               md5 8a1bd1a9be272f4ddf4de99e5c1ad0dc \
                        sha1 2d069416b31ed03eb1cad36f84ef2337362ac6a9 \
                        rmd160 3d522f80290caa72e1c4fc60b2d56369c8c66eba

use_parallel_build      yes

depends_lib-append      port:py-readline
depends_run             port:ipython_select

test.run                yes

post-destroot {
    foreach f {ipcluster ipcontroller ipengine iptest ipython ipython-wx ipythonx irunner pycolor} {
        move ${destroot}${prefix}/bin/${f} ${destroot}${prefix}/bin/${f}${python.branch}
    }
    foreach f {ipython pycolor} {
        move ${destroot}${prefix}/share/man/man1/${f}.1.gz \
            ${destroot}${prefix}/share/man/man1/${f}${python.branch}.1.gz
    }
    move ${destroot}${prefix}/share/doc/${my_name} ${destroot}${prefix}/share/doc/${name}
}

select.group            $my_name
select.file             ${filespath}/${my_name}[string map {. ""} ${python.branch}]

notes \
"To make the Python ${python.branch} version of IPython the one that is run
when you execute the commands without a version suffix, e.g. 'ipython',
run:
    port select --set ${select.group} [file tail ${select.file}]"

variant scientific description "Use ScientificPython to provide physical quantities support" {
    depends_lib-append      port:py-scientific
}

default_variants        +scientific

livecheck.type          regex
livecheck.url           ${master_sites}?C=M&O=D
livecheck.regex         ${my_name}-(\\d+(?:\\.\\d+)*)
