blob: a9796616d8f8c279cbccb609b664c943dc7e60eb (
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
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/eric/eric-3.1.ebuild,v 1.4 2004/01/11 21:36:32 pythonhead Exp $
IUSE=""
DESCRIPTION="The eric3 Python IDE"
HOMEPAGE="http://www.die-offenbachs.de/detlev/eric3.html"
SRC_URI="http://www.die-offenbachs.de/detlev/files/${P}.tar.gz"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 ~ppc"
DEPEND="virtual/glibc
sys-devel/libtool
>=x11-libs/qt-3.0.4.1
>=dev-python/qscintilla-1.52
>=dev-lang/python-2.2.1
>=dev-python/sip-3.6
<=dev-python/PyQt-3.8.1"
src_install() {
python install.py \
-b /usr/bin \
-i ${D}
dodoc HISTORY LICENSE.GPL README THANKS
}
|