Ticket #26672: Portfile

File Portfile, 1.5 KB (added by mf2k (Frank Schima), 14 years ago)
Line 
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# $Id: Portfile 70685 2010-08-16 22:56:38Z macsforever2000@macports.org $
3
4PortSystem              1.0
5PortGroup               python26 1.0
6
7name                py26-usadel1
8version             0.2.3.2
9categories-append   science
10maintainers         macsforever2000
11description         Usadel equation solver
12long_description    This code solves Usadel equations in a circuit consisting of quasi-1D \
13                    metallic wires. This is an efficient approach for modelling charge and heat \
14                    transport in mesoscopic electronic circuits made of superconducting and normal-state \
15                    metals, in the presence of a sufficient amount of impurities (dirty limit).
16platforms           darwin
17homepage            http://ltl.tkk.fi/~theory/usadel1/
18master_sites        http://ltl.tkk.fi/~theory/usadel1/_static/
19distname            usadel1-${version}
20checksums           md5     486767757709e04d442dbb168211eeaf
21
22depends_lib-append  port:py26-numpy \
23                    port:py26-scipy \
24                    port:py26-tables \
25
26build.args          config_fc \
27                    --fcompiler=gfortran \
28                    --noarch
29build.env-append    F90=${prefix}/bin/gfortran-mp-4.4
30
31#build {
32#    system "cd ${worksrcpath}; ${python.bin} ${worksrcpath}/setup.py config_fc --fcompiler=gfortran-mp-4.4 --noarch build"
33#    system "cd ${worksrcpath}; ${python.bin} ${worksrcpath}/setup.py install --skip-build"
34#}