1 | # $Id$ |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | PortGroup python26 1.0 |
---|
5 | name py26-rpy2 |
---|
6 | version 2.0.6 |
---|
7 | categories-append math science |
---|
8 | maintainers blb snc openmaintainer |
---|
9 | description Python interface to the R programming language |
---|
10 | long_description \ |
---|
11 | RPy2 is a very simple, yet robust, Python interface to the R Programming \ |
---|
12 | Language. It can manage all kinds of R objects and can execute arbitrary \ |
---|
13 | R functions (including the graphic functions). All the errors from the R \ |
---|
14 | language are converted to Python exceptions. Any module that later were \ |
---|
15 | installed on the R system, can easily be used from within Python, without \ |
---|
16 | introducing any changes. |
---|
17 | |
---|
18 | platforms darwin |
---|
19 | |
---|
20 | homepage http://rpy.sourceforge.net/ |
---|
21 | master_sites sourceforge:rpy |
---|
22 | distname rpy2-${version} |
---|
23 | |
---|
24 | checksums md5 5c1da09811ead076dc03896ff9307b9d \ |
---|
25 | sha1 e671c6ff563fad8d387954b7f5a6b284ac5e8d9a \ |
---|
26 | rmd160 e4a7e9faadd3476510e7740997a9fd5a3cc46287 |
---|
27 | |
---|
28 | depends_lib-append port:R port:py26-numeric |
---|
29 | |
---|
30 | post-destroot { |
---|
31 | xinstall -m 755 -d ${destroot}${prefix}/share/doc/${name} |
---|
32 | xinstall -m 644 -W ${worksrcpath} AUTHORS GPL_LICENSE LGPL_LICENSE \ |
---|
33 | MPL_LICENSE README ${destroot}${prefix}/share/doc/${name} |
---|
34 | } |
---|
35 | |
---|