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 | |
---|
4 | PortSystem 1.0 |
---|
5 | PortGroup python26 1.0 |
---|
6 | |
---|
7 | name py26-usadel1 |
---|
8 | version 0.2.3.2 |
---|
9 | categories-append science |
---|
10 | platforms darwin |
---|
11 | maintainers macsforever2000 |
---|
12 | |
---|
13 | description Usadel equation solver |
---|
14 | |
---|
15 | long_description This code solves Usadel equations in a circuit consisting of quasi-1D \ |
---|
16 | metallic wires. This is an efficient approach for modelling charge and heat \ |
---|
17 | transport in mesoscopic electronic circuits made of superconducting and normal-state \ |
---|
18 | metals, in the presence of a sufficient amount of impurities (dirty limit). |
---|
19 | |
---|
20 | homepage http://ltl.tkk.fi/~theory/usadel1/ |
---|
21 | master_sites ${homepage}_static/ |
---|
22 | distname usadel1-${version} |
---|
23 | |
---|
24 | checksums sha1 ffde19a5dd8a5977d99b00d88ec40873f9a904d1 \ |
---|
25 | rmd160 bef6ce3a839866bab5f69b3cc986d92c32765828 |
---|
26 | |
---|
27 | depends_lib-append port:py26-numpy \ |
---|
28 | port:py26-scipy \ |
---|
29 | port:py26-tables |
---|
30 | |
---|
31 | # variants to select a gcc compiler would go here; for now, hardcoding gcc 4.4 |
---|
32 | depends_lib-append port:gcc44 |
---|
33 | configure.compiler macports-gcc-4.4 |
---|
34 | |
---|
35 | build.args config_fc \ |
---|
36 | --fcompiler=gnu95 \ |
---|
37 | --noarch |
---|
38 | |
---|
39 | build.env-append CC=${configure.cc} \ |
---|
40 | F90=${configure.fc} |
---|