blob: 18d4ad9404ae5fff4e93b20fa0c3915e5d2dc84f (
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/ipython/ipython-0.10.ebuild,v 1.2 2009/08/18 16:47:06 bicatali Exp $
NEED_PYTHON=2.4
EAPI=2
inherit eutils distutils elisp-common
DESCRIPTION="An advanced interactive shell for Python."
HOMEPAGE="http://ipython.scipy.org/"
SRC_URI="http://ipython.scipy.org/dist/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~ia64 ~ppc ~ppc64 ~s390 ~x86"
IUSE="doc emacs examples gnuplot readline smp test wxwidgets"
CDEPEND="dev-python/pexpect
wxwidgets? ( dev-python/wxpython )
readline? ( sys-libs/readline )
emacs? ( app-emacs/python-mode virtual/emacs )
smp? ( net-zope/zopeinterface
dev-python/foolscap
dev-python/pyopenssl )"
RDEPEND="${CDEPEND}
gnuplot? ( dev-python/gnuplot-py )"
DEPEND="${CDEPEND}
test? ( dev-python/nose )"
PYTHON_MODNAME="IPython"
SITEFILE="62ipython-gentoo.el"
src_prepare() {
epatch "${FILESDIR}"/${PN}-0.9.1-globalpath.patch
sed -i \
-e "s:share/doc/ipython:share/doc/${PF}:" \
setupbase.py || die "sed failed"
if ! use doc; then
sed -i \
-e '/extensions/d' \
-e 's/+ manual_files//' \
setupbase.py || die "sed failed"
fi
if ! use examples; then
sed -i \
-e 's/+ example_files//' \
setupbase.py || die "sed failed"
fi
}
src_compile() {
distutils_src_compile
if use emacs ; then
elisp-compile docs/emacs/ipython.el || die "elisp-compile failed"
fi
}
src_test() {
"${python}" setup.py \
install --home="${WORKDIR}/test" > /dev/null \
|| die "fake install for testing failed"
cd "${WORKDIR}"/test
# first initialize .ipython stuff
PATH="${WORKDIR}/test/bin:${PATH}" \
PYTHONPATH="${WORKDIR}/test/lib/python" ipython > /dev/null <<-EOF
EOF
# test ( -v for more verbosity)
PATH="${WORKDIR}/test/bin:${PATH}" \
PYTHONPATH="${WORKDIR}/test/lib/python" iptest || die "test failed"
}
src_install() {
DOCS="docs/source/changes.txt"
distutils_src_install
if use emacs ; then
pushd docs/emacs
elisp-install ${PN} ${PN}.el* || die "elisp-install failed"
elisp-site-file-install "${FILESDIR}/${SITEFILE}"
popd
fi
}
pkg_postinst() {
distutils_pkg_postinst
use emacs && elisp-site-regen
}
pkg_postrm() {
distutils_pkg_postrm
use emacs && elisp-site-regen
}
|