diff options
author | Patrick Lauer <patrick@gentoo.org> | 2009-02-04 16:04:45 +0000 |
---|---|---|
committer | Patrick Lauer <patrick@gentoo.org> | 2009-02-04 16:04:45 +0000 |
commit | dee3ca1f37164a2d75c792d86feac727815a790f (patch) | |
tree | 1d1f2ca1f1a13c6b18609fd1c415e0f36da32920 /dev-util/spe | |
parent | Version bump, add new appareo(manifest) client. (diff) | |
download | gentoo-2-dee3ca1f37164a2d75c792d86feac727815a790f.tar.gz gentoo-2-dee3ca1f37164a2d75c792d86feac727815a790f.tar.bz2 gentoo-2-dee3ca1f37164a2d75c792d86feac727815a790f.zip |
Bump to 0.8.4h. Fixes #216970
(Portage version: 2.2_rc23/cvs/Linux x86_64)
Diffstat (limited to 'dev-util/spe')
-rw-r--r-- | dev-util/spe/ChangeLog | 9 | ||||
-rw-r--r-- | dev-util/spe/spe-0.8.4h.ebuild | 50 |
2 files changed, 57 insertions, 2 deletions
diff --git a/dev-util/spe/ChangeLog b/dev-util/spe/ChangeLog index 81c3132b2d73..fa98f9a611cf 100644 --- a/dev-util/spe/ChangeLog +++ b/dev-util/spe/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-util/spe -# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/spe/ChangeLog,v 1.38 2008/05/02 18:46:17 pythonhead Exp $ +# Copyright 2000-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/spe/ChangeLog,v 1.39 2009/02/04 16:04:45 patrick Exp $ + +*spe-0.8.4h (04 Feb 2009) + + 04 Feb 2009; Patrick Lauer <patrick@gentoo.org> +spe-0.8.4h.ebuild: + Bump to 0.8.4h. Fixes #216970 02 May 2008; Rob Cakebread <pythonhead@gentoo.org> spe-0.8.2.ebuild, spe-0.8.3c-r1.ebuild: diff --git a/dev-util/spe/spe-0.8.4h.ebuild b/dev-util/spe/spe-0.8.4h.ebuild new file mode 100644 index 000000000000..376c9d404ae3 --- /dev/null +++ b/dev-util/spe/spe-0.8.4h.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/spe/spe-0.8.4h.ebuild,v 1.1 2009/02/04 16:04:45 patrick Exp $ + +inherit eutils python + +MY_PV="0.8.4.h" + +DESCRIPTION="Python IDE with Blender support" +HOMEPAGE="http://pythonide.stani.be/" +SRC_URI="mirror://berlios/python/spe-${MY_PV}-wx2.6.1.0.tar.gz" + +IUSE="" +SLOT="0" +LICENSE="GPL-3" +KEYWORDS="~amd64 ~x86 ~ppc ~sparc" +DEPEND=">=dev-lang/python-2.5" +RDEPEND="${DEPEND} + =dev-python/wxpython-2.6* + >=dev-python/pychecker-0.8.18 + >=dev-util/wxglade-0.3.2" + +S="${WORKDIR}/spe-${MY_PV}/" + +src_compile() { + python setup.py build || die "build failed" +} + +src_install() { + python_version + local mypyconf + local site_pkgs=/usr/$(get_libdir)/python${PYVER}/site-packages + dodir ${site_pkgs} + + python setup.py install --prefix=/usr --root="${D}" || die + + doicon "${S}/build/lib/_spe/images/spe.png" + insinto /usr/share/applications + doins "${S}/spe.desktop" +} + +pkg_postinst() { + python_version + python_mod_optimize /usr/$(get_libdir)/python${PYVER}/site-packages/ +} + +pkg_postrm() { + python_version + python_mod_cleanup /usr/$(get_libdir)/python${PYVER}/site-packages/ +} |