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 105684 2013-05-01 22:47:01Z jmr@macports.org $ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | PortGroup python 1.0 |
---|
6 | |
---|
7 | name py-rpy2 |
---|
8 | version 2.3.6 |
---|
9 | categories-append science |
---|
10 | license {MPL-1.1 LGPL-2.1+} |
---|
11 | platforms darwin |
---|
12 | maintainers nomaintainer |
---|
13 | description A simple and efficient access to R from Python |
---|
14 | long_description rpy2 is a redesign and rewrite of rpy. It is providing a \ |
---|
15 | low-level interface to R, a proposed high-level interface, \ |
---|
16 | including wrappers to graphical libraries, as well as R-like \ |
---|
17 | structures and functions. |
---|
18 | |
---|
19 | homepage http://rpy.sourceforge.net/rpy2.html |
---|
20 | master_sites sourceforge:rpy \ |
---|
21 | http://pypi.python.org/packages/source/r/rpy2/ |
---|
22 | distname rpy2-${version} |
---|
23 | checksums sha1 5b497d49a2b777414de5ea07b2c57c14a6f65255 \ |
---|
24 | rmd160 e77ae3bc100295753f285487d8fb7f3fc09b99de |
---|
25 | |
---|
26 | python.versions 25 26 27 |
---|
27 | |
---|
28 | if {$subport != $name} { |
---|
29 | # To continue using your custom R installation instead of MacPorts' R, |
---|
30 | # you have to remove this dependency line and make sure that your R |
---|
31 | # is in MacPorts' binpath, see your macports.conf for details. |
---|
32 | depends_lib-append port:R |
---|
33 | } |
---|