blob: 4c1f5f1b87bae45051d827885723806c2c2e7e28 (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/winpdb/winpdb-1.4.6.ebuild,v 1.3 2010/08/08 01:49:17 phajdan.jr Exp $
EAPI="3"
PYTHON_DEPEND="2"
SUPPORT_PYTHON_ABIS="1"
# winpdb has (at least partial) support for Python 3, but wxpython does not yet support Python 3.
RESTRICT_PYTHON_ABIS="3.* *-jython"
inherit distutils
DESCRIPTION="Graphical Python debugger"
HOMEPAGE="http://winpdb.org/ http://code.google.com/p/winpdb/ http://pypi.python.org/pypi/winpdb"
SRC_URI="http://${PN}.googlecode.com/files/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~ia64 x86"
IUSE=""
DEPEND=">=dev-python/pycrypto-2.0.1
dev-python/wxpython:2.8"
RDEPEND="${DEPEND}"
PYTHON_MODNAME="rpdb2.py winpdb.py"
|