Ticket #40085: Portfile

File Portfile, 1.4 KB (added by jdswinbank (John Swinbank), 11 years ago)

Portfile for rpy2 version 2.3.6

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 105684 2013-05-01 22:47:01Z jmr@macports.org $
3
4PortSystem 1.0
5PortGroup           python 1.0
6
7name                py-rpy2
8version             2.3.6
9categories-append   science
10license             {MPL-1.1 LGPL-2.1+}
11platforms           darwin
12maintainers         nomaintainer
13description         A simple and efficient access to R from Python
14long_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
19homepage            http://rpy.sourceforge.net/rpy2.html
20master_sites        sourceforge:rpy \
21                    http://pypi.python.org/packages/source/r/rpy2/
22distname            rpy2-${version}
23checksums           sha1    5b497d49a2b777414de5ea07b2c57c14a6f65255 \
24                    rmd160  e77ae3bc100295753f285487d8fb7f3fc09b99de
25
26python.versions     25 26 27
27
28if {$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}