diff options
Diffstat (limited to 'dev-python/rpy/rpy-0.99.2.ebuild')
-rw-r--r-- | dev-python/rpy/rpy-0.99.2.ebuild | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/dev-python/rpy/rpy-0.99.2.ebuild b/dev-python/rpy/rpy-0.99.2.ebuild new file mode 100644 index 000000000000..c02ecdc18fd9 --- /dev/null +++ b/dev-python/rpy/rpy-0.99.2.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/rpy/rpy-0.99.2.ebuild,v 1.1 2006/07/28 12:17:18 liquidx Exp $ + +inherit distutils + +DESCRIPTION="RPy is a very simple, yet robust, Python interface to the R Programming Language." +HOMEPAGE="http://rpy.sourceforge.net" +SRC_URI="mirror://sourceforge/rpy/${P}.tar.gz" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ia64 ~x86" +IUSE="" +DEPEND="virtual/python + >=dev-lang/R-2.3 + dev-python/numeric" + +src_unpack() { + unpack ${A} + cd "${S}" + epatch ${FILESDIR}/${P}-version-detect.patch + +} + +src_install() { + distutils_src_install + + # add R libs to ld.so.conf + insinto /etc/env.d + doins ${FILESDIR}/90rpy +} + +pkg_postinst() { + env-update +} |