blob: 28dfbcc3e4239310fe16d2c2ab94c03aec712236 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/spe/spe-0.5.1d.ebuild,v 1.8 2005/07/09 16:32:58 swegener Exp $
inherit distutils eutils
MY_P="SPE-0.5.1.d-wx2.4.2.4.-bl2.31"
DESCRIPTION="Python IDE with Blender support"
HOMEPAGE="http://spe.pycs.net/"
SRC_URI="http://projects.blender.org/download.php/162/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ~ppc"
IUSE=""
S="${WORKDIR}/${MY_P}"
DEPEND=">=virtual/python-2.2.3-r1"
RDEPEND=">=dev-python/wxpython-2.4.2.4
>=dev-util/wxglade-0.3.2
>=dev-python/pychecker-0.8.13
${DEPEND}"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/spe_setup.patch
}
src_install() {
distutils_src_install
distutils_python_version
SITEPATH="/usr/lib/python${PYVER}/site-packages"
dobin spe
rm -rf "${D}${SITEPATH}/_spe/plugins/wxGlade"
rm -rf "${D}${SITEPATH}/_spe/plugins/pychecker"
ln -svf "../../wxglade" "${D}${SITEPATH}/_spe/plugins/wxGlade"
dodir "${SITEPATH}/wxglade"
touch "${D}${SITEPATH}/wxglade/__init__.py"
ln -svf "../../pychecker" "${D}${SITEPATH}/_spe/plugins/pychecker"
}
pkg_postinst() {
distutils_python_version
SPEPATH="/usr/lib/python${PYVER}/site-packages"
einfo
einfo "To be able to use spe in blender, be sure that the path where spe is"
einfo "installed ($SPEPATH) is included in your PYTHONPATH"
einfo "environment variable. See the installation section in the manual for"
einfo "more information ($SPEPATH/_spe/doc/manual.pdf)."
einfo
}
|