blob: 0680093d06e46292e18467b9612b6bd717113989 (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/ropeide/ropeide-1.5.1.ebuild,v 1.1 2008/09/02 22:17:37 pythonhead Exp $
NEED_PYTHON="2.5"
inherit distutils
DESCRIPTION="Python refactoring IDE"
HOMEPAGE="http://rope.sourceforge.net/"
SRC_URI="mirror://sourceforge/rope/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE="doc"
DEPEND=">=dev-python/rope-0.8.4"
pkg_setup() {
distutils_python_tkinter
}
src_install() {
distutils_src_install
use doc && dodoc docs/*.txt
}
src_test() {
#Tests require a running X server and test module from dev-python/rope
#which isn't installed.
true
}
|