Ticket #18784: Portfile.blb

File Portfile.blb, 1.3 KB (added by blb@…, 15 years ago)

Portfile

Line 
1# $Id$
2
3PortSystem          1.0
4PortGroup           python26 1.0
5name                py26-rpy2
6version             2.0.6
7categories-append   math science
8maintainers         blb snc openmaintainer
9description         Python interface to the R programming language
10long_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
18platforms           darwin
19
20homepage            http://rpy.sourceforge.net/
21master_sites        sourceforge:rpy
22distname            rpy2-${version}
23
24checksums           md5     5c1da09811ead076dc03896ff9307b9d \
25                    sha1    e671c6ff563fad8d387954b7f5a6b284ac5e8d9a \
26                    rmd160  e4a7e9faadd3476510e7740997a9fd5a3cc46287
27
28depends_lib-append  port:R port:py26-numeric
29
30post-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