summaryrefslogtreecommitdiff
blob: e30dc0a5a2de304252fb3ba1808c32f0de05f200 (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
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$

EAPI=5
PYTHON_COMPAT=( python2_7 )

inherit distutils-r1

DESCRIPTION="An IDE/editor for several programming languages, including Python, Java, C, Perl and others"
HOMEPAGE="http://eggy.yolky.org/eggy/default/about"
SRC_URI="https://eggy.googlecode.com/files/${P}.tar.bz2"

LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""

DEPEND="dev-python/PyQt4[X,${PYTHON_USEDEP}]
	dev-python/qscintilla-python[${PYTHON_USEDEP}]
	dev-python/chardet[${PYTHON_USEDEP}]"
RDEPEND="${DEPEND}"

python_prepare_all() {
	# remove the bundled chardet library
	sed -i "s:'eggy\\.chardet', ::" setup.py || die
	rm -rf ${P}/${PN}/chardet || die
	distutils-r1_python_prepare_all
}