diff options
author | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2003-10-31 01:47:04 +0000 |
---|---|---|
committer | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2003-10-31 01:47:04 +0000 |
commit | 11f91702a0fd3bf54e6250f221aba58f9770375b (patch) | |
tree | c8161de820bc2fc0a305942f3b0d905b1d1e6c0b /math/rpy2 | |
parent | b90670448cfd2b2212a078d762a02dfbe0d3316b (diff) | |
download | ports-11f91702a0fd3bf54e6250f221aba58f9770375b.tar.gz ports-11f91702a0fd3bf54e6250f221aba58f9770375b.zip |
Notes
Diffstat (limited to 'math/rpy2')
-rw-r--r-- | math/rpy2/Makefile | 26 | ||||
-rw-r--r-- | math/rpy2/distinfo | 1 | ||||
-rw-r--r-- | math/rpy2/files/patch-src:setenv.c | 11 | ||||
-rw-r--r-- | math/rpy2/pkg-descr | 8 | ||||
-rw-r--r-- | math/rpy2/pkg-plist | 9 |
5 files changed, 55 insertions, 0 deletions
diff --git a/math/rpy2/Makefile b/math/rpy2/Makefile new file mode 100644 index 000000000000..269723e0d864 --- /dev/null +++ b/math/rpy2/Makefile @@ -0,0 +1,26 @@ +# ex:ts=8 +# Ports collection makefile for: rpy +# Date created: Jan 14, 2003 +# Whom: ijliao +# +# $FreeBSD$ +# + +PORTNAME= rpy +PORTVERSION= 0.3.1 +CATEGORIES= math +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITE_SUBDIR= ${PORTNAME} + +MAINTAINER= ports@FreeBSD.org +COMMENT= Python interface to the R Programming Language + +BUILD_DEPENDS= ${PYTHON_SITELIBDIR}/Numeric.pth:${PORTSDIR}/math/py-numeric \ + R:${PORTSDIR}/math/R-letter +RUN_DEPENDS= ${BUILD_DEPENDS} + +USE_PYTHON= yes +USE_PYDISTUTILS= yes +MAKE_ENV= LDFLAGS="-L${LOCALBASE}/lib/R/modules" + +.include <bsd.port.mk> diff --git a/math/rpy2/distinfo b/math/rpy2/distinfo new file mode 100644 index 000000000000..7b8070ca160a --- /dev/null +++ b/math/rpy2/distinfo @@ -0,0 +1 @@ +MD5 (rpy-0.3.1.tar.gz) = 3fd3e825523521bd5084748a60ba4a37 diff --git a/math/rpy2/files/patch-src:setenv.c b/math/rpy2/files/patch-src:setenv.c new file mode 100644 index 000000000000..adce3e597b9f --- /dev/null +++ b/math/rpy2/files/patch-src:setenv.c @@ -0,0 +1,11 @@ +--- src/setenv.c.orig Wed Oct 29 14:47:12 2003 ++++ src/setenv.c Wed Oct 29 14:47:19 2003 +@@ -26,8 +26,6 @@ + + int setenv(const char *name, const char *value, int clobber) + { +- char *malloc(); +- char *getenv(); + char *cp; + + if (clobber == 0 && getenv(name) != 0) diff --git a/math/rpy2/pkg-descr b/math/rpy2/pkg-descr new file mode 100644 index 000000000000..d0dfbb55b2bf --- /dev/null +++ b/math/rpy2/pkg-descr @@ -0,0 +1,8 @@ +RPy is a very simple, yet robust, Python interface to the R Programming +Language. It can manage all kinds of R objects and can execute arbitrary +R functions (including the graphic functions). All the errors from the +R language are converted to Python exceptions. Any module that later were +installed on the R system, can easily be used from within Python, without +introducing any changes. + +WWW: http://rpy.sourceforge.net/ diff --git a/math/rpy2/pkg-plist b/math/rpy2/pkg-plist new file mode 100644 index 000000000000..a2013ba86a99 --- /dev/null +++ b/math/rpy2/pkg-plist @@ -0,0 +1,9 @@ +%%PYTHON_SITELIBDIR%%/io.py +%%PYTHON_SITELIBDIR%%/io.pyc +%%PYTHON_SITELIBDIR%%/io.pyo +%%PYTHON_SITELIBDIR%%/rpy.py +%%PYTHON_SITELIBDIR%%/rpy.pyc +%%PYTHON_SITELIBDIR%%/rpy.pyo +%%PYTHON_SITELIBDIR%%/rpy_version.py +%%PYTHON_SITELIBDIR%%/rpy_version.pyc +%%PYTHON_SITELIBDIR%%/rpy_version.pyo |