blob: b5473e2616a4261764801c2338e531e39fb0dc75 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/rpy/rpy-1.0.2-r1.ebuild,v 1.2 2008/06/05 10:19:21 bicatali Exp $
inherit distutils eutils
DESCRIPTION="Python interface to the R Programming Language"
HOMEPAGE="http://rpy.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="GPL-2 LGPL-2.1 MPL-1.1"
SLOT="0"
KEYWORDS="~amd64 ~ia64 ~x86"
IUSE="doc examples"
RDEPEND=">=dev-lang/R-2.6.1
dev-python/numpy"
DEPEND="${RDEPEND}
doc? ( || ( dev-texlive/texlive-texinfo virtual/tetex ) )"
src_unpack() {
distutils_src_unpack
epatch "${FILESDIR}"/${PN}-1.0_rc3-version-detect.patch
epatch "${FILESDIR}"/${PN}-testfiles.patch
epatch "${FILESDIR}"/${P}-rpymodule-R-2.7.patch
# this module should exist only if R was built with USE=lapack
if [[ ! -e /usr/$(get_libdir)/R/lib/libRlapack.so ]]; then
sed -i \
-e 's:Rlapack:lapack:g' \
setup.py || die "sed in setup.py failed"
fi
}
src_test() {
cd tests
PYTHONPATH=$(ls -d ../build/lib.*) \
"${python}" testall.py || die "tests failed"
}
src_install() {
distutils_src_install
if use examples; then
insinto /usr/share/doc/${PF}
doins -r examples || die
fi
if use doc; then
cd doc
emake html pdf || die "emake docs failed"
dohtml rpy_html/* || die
insinto /usr/share/doc/${PF}
doins rpy.pdf || die
fi
}
|