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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/eric/eric-3.9.5.ebuild,v 1.3 2007/06/24 21:55:36 dev-zero Exp $
NEED_PYTHON=2.3
inherit python eutils multilib
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 )"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86"
IUSE="doc examples idl"
DEPEND=">=dev-python/PyQt-3.13
>=dev-python/pyxml-0.8.4
>=dev-python/qscintilla-1.0"
RDEPEND="${DEPEND}
idl? ( !sparc? ( >=net-misc/omniORB-4.0.3 ) )"
LANGS="de fr ru"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}/${PV}-disable_compilation.patch"
use doc || rm -rf eric/Documentation/Source
use examples || rm -rf eric/Examples
}
src_install() {
python_version
local sitedir="/usr/$(get_libdir)/python${PYVER}/site-packages"
cat > gentoo_config.py <<- _EOF_
cfg = {
'ericDir': r"${sitedir}/eric3",
'ericPixDir': r"/usr/share/eric3/pixmaps",
'ericIconDir': r"/usr/share/eric3/icons",
'ericDTDDir': r"/usr/share/eric3/DTDs",
'ericCSSDir': r"/usr/share/eric3/CSSs",
'ericDocDir': r"/usr/share/doc/${PF}/Documentation",
'ericExamplesDir': r"/usr/share/doc/${PF}/Examples",
'ericTranslationsDir': r"/usr/share/eric3/i18n",
'ericWizardsDir': r"${sitedir}/Wizards",
'ericTemplatesDir': r"/usr/share/eric3/DesignerTemplates",
'ericOthersDir': r"${sitedir}/eric3",
'bindir': r"/usr/bin",
'mdir': r"${sitedir}"
}
_EOF_
"${python}" install.py \
-f "gentoo_config.py" \
-b "/usr/bin" \
-i "${D}" \
-d "${sitedir}" \
-c || die "${python} install.py failed"
dodoc ChangeLog THANKS eric/README*
make_desktop_entry "eric3 --nosplash" \
eric3 \
"/usr/share/eric3/icons/default/eric.png" \
"Development;IDE;Qt"
}
pkg_postinst() {
elog "If you want to use eric3 with mod_python, have a look at"
elog " \"${ROOT}usr/$(get_libdir)/python${PYVER}/site-packages/eric3/patch_modpython.py\"."
python_version
python_mod_optimize "/usr/$(get_libdir)/python${PYVER}/site-packages/eric3"
}
pkg_postrm() {
python_version
python_mod_cleanup "/usr/$(get_libdir)/python${PYVER}/site-packages/eric3"
}
|