blob: c13c1849dcbf6fac437d05ae934ccaf9416aebf8 (
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
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
PYTHON_COMPAT=( python2_7 )
inherit python-single-r1
DESCRIPTION="A system for interactive experimentation with Python"
HOMEPAGE="http://fishsoup.net/software/reinteract/"
SRC_URI="http://download.reinteract.org/sources/${P}.tar.bz2"
LICENSE="BSD-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="sound"
DEPEND=""
RDEPEND="
dev-python/pygtk[${PYTHON_USEDEP}]
dev-python/numpy[${PYTHON_USEDEP}]
dev-python/matplotlib[${PYTHON_USEDEP}]
sound? ( media-sound/sox )"
src_install() {
default
python_optimize
}
|