blob: 64be226ce34ad628dda32c970e28c5550a01c3de (
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/eric/eric-3.6.2.ebuild,v 1.1 2005/02/20 16:32:58 carlo Exp $
inherit python eutils
MY_PV=${PV/"?.?_pre"/"snapshot-"}
S=${WORKDIR}/${PN}-${MY_PV}
DESCRIPTION="eric3 is a full featured Python IDE that is written in PyQt using the QScintilla editor widget"
HOMEPAGE="http://www.die-offenbachs.de/detlev/eric3.html"
SRC_URI="mirror://sourceforge/eric-ide/${P}.tar.gz
linguas_de? ( mirror://sourceforge/eric-ide/${PN}-i18n-de-${PV}.tar.gz )
linguas_fr? ( mirror://sourceforge/eric-ide/${PN}-i18n-fr-${PV}.tar.gz )
linguas_ru? ( mirror://sourceforge/eric-ide/${PN}-i18n-ru-${PV}.tar.gz )"
#SRC_URI="http://www.die-offenbachs.de/detlev/snapshots/${PN}-${MY_PV}.tar.gz
# linguas_de? ( http://www.die-offenbachs.de/detlev/snapshots/${PN}-i18n-de-${MY_PV}.tar.gz )
# linguas_fr? ( http://www.die-offenbachs.de/detlev/snapshots/${PN}-i18n-fr-${MY_PV}.tar.gz )
# linguas_ru? ( http://www.die-offenbachs.de/detlev/snapshots/${PN}-i18n-ru-${MY_PV}.tar.gz )"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~x86 ~ppc ~sparc ~amd64 ~ppc64"
IUSE="idl"
python_version
IDIR="/usr/$(get_libdir)/python${PYVER}/site-packages/eric3/"
DEPEND="sys-devel/libtool
<dev-python/qscintilla-1.6
>=dev-python/sip-4.2
>=dev-python/PyQt-3.14
>=dev-python/pyxml-0.8.4"
RDEPEND="<dev-python/qscintilla-1.6
>=dev-python/sip-4.2
>=dev-python/PyQt-3.14
>=dev-python/pyxml-0.8.4
idl? ( !sparc? ( >=net-misc/omniORB-4.0.3 ) )"
LANGS="de fr ru"
src_install() {
python install.py \
-b /usr/bin \
-i ${D} \
-d "/usr/$(get_libdir)/python${PYVER}/site-packages" \
-c
cp ${S}/patch_modpython.py ${D}/${IDIR}
dodoc HISTORY LICENSE.GPL THANKS eric/README*
}
pkg_postinst() {
echo ""
einfo "If you want to use eric3 with mod_python, have a look at"
einfo "\"${IDIR}patch_modpython.py\"."
echo ""
}
|