diff options
author | Bryan Østergaard <kloeri@gentoo.org> | 2003-12-28 00:07:14 +0000 |
---|---|---|
committer | Bryan Østergaard <kloeri@gentoo.org> | 2003-12-28 00:07:14 +0000 |
commit | 426e0233eba3aa3550cbcd604ebcf91bfe04e238 (patch) | |
tree | cefddfb5694172123126ef10dc6a70338f39ec58 /dev-util | |
parent | Fixed the integer problem. (diff) | |
download | gentoo-2-426e0233eba3aa3550cbcd604ebcf91bfe04e238.tar.gz gentoo-2-426e0233eba3aa3550cbcd604ebcf91bfe04e238.tar.bz2 gentoo-2-426e0233eba3aa3550cbcd604ebcf91bfe04e238.zip |
Version bump. Closes bug 35374 and 36079.
Diffstat (limited to 'dev-util')
-rw-r--r-- | dev-util/spe/ChangeLog | 7 | ||||
-rw-r--r-- | dev-util/spe/Manifest | 8 | ||||
-rw-r--r-- | dev-util/spe/files/digest-spe-0.4.2c | 1 | ||||
-rw-r--r-- | dev-util/spe/spe-0.4.2c.ebuild | 38 |
4 files changed, 50 insertions, 4 deletions
diff --git a/dev-util/spe/ChangeLog b/dev-util/spe/ChangeLog index 98ecb1f38c14..3686fc139ced 100644 --- a/dev-util/spe/ChangeLog +++ b/dev-util/spe/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-util/spe # Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/spe/ChangeLog,v 1.3 2003/10/22 16:53:32 pythonhead Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/spe/ChangeLog,v 1.4 2003/12/28 00:07:01 kloeri Exp $ + +*spe-0.4.2c (28 Dec 2003) + + 28 Dec 2003; Bryan Østergaard,,, <kloeri@gentoo.org> spe-0.4.2c.ebuild: + Version bump. Closes bug 35374 and 36079. *spe-0.4.1d-r1 (22 Oct 2003) diff --git a/dev-util/spe/Manifest b/dev-util/spe/Manifest index 7b53db85879c..42e24f341c66 100644 --- a/dev-util/spe/Manifest +++ b/dev-util/spe/Manifest @@ -1,6 +1,8 @@ +MD5 89e969c50ce7dea3a66a745dee58a512 spe-0.4.1d-r1.ebuild 692 +MD5 9b99b4ad39bd3d2e9f1f0a61bb4b7a7c ChangeLog 641 MD5 06f74d9822637a108032e9e185865dd2 metadata.xml 376 +MD5 1683c0dca2574a7417ff8bfb9394c051 spe-0.4.2c.ebuild 1155 MD5 4d2cd9a00f7ecc96cf0f4856a14fe5ee spe-0.4.1d.ebuild 630 -MD5 89e969c50ce7dea3a66a745dee58a512 spe-0.4.1d-r1.ebuild 692 -MD5 cd980287983c73ed4dd9ca04a12a9743 ChangeLog 499 -MD5 d21fe6f2ee85dc9213a464be3243d83b files/digest-spe-0.4.1d 79 MD5 d21fe6f2ee85dc9213a464be3243d83b files/digest-spe-0.4.1d-r1 79 +MD5 d21fe6f2ee85dc9213a464be3243d83b files/digest-spe-0.4.1d 79 +MD5 a54b36e3505ebc449a948f7a97d438cb files/digest-spe-0.4.2c 79 diff --git a/dev-util/spe/files/digest-spe-0.4.2c b/dev-util/spe/files/digest-spe-0.4.2c new file mode 100644 index 000000000000..454685c80e01 --- /dev/null +++ b/dev-util/spe/files/digest-spe-0.4.2c @@ -0,0 +1 @@ +MD5 c044ed8d7ac3b0ce263f423de84bca9c SPE-0.4.2.c-wx2.4.2.4.-bl2.31.zip 1572396 diff --git a/dev-util/spe/spe-0.4.2c.ebuild b/dev-util/spe/spe-0.4.2c.ebuild new file mode 100644 index 000000000000..7105abb754d0 --- /dev/null +++ b/dev-util/spe/spe-0.4.2c.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/spe/spe-0.4.2c.ebuild,v 1.1 2003/12/28 00:07:01 kloeri Exp $ + +inherit distutils + +MY_P="SPE-0.4.2.c-wx2.4.2.4.-bl2.31" +S="${WORKDIR}/${MY_P}" +DESCRIPTION="Python IDE with Blender support" +HOMEPAGE="http://spe.pycs.net/" +SRC_URI="http://projects.blender.org/download.php/66/${MY_P}.zip" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86" +IUSE="" +DEPEND=">=dev-lang/python-2.2.3-r1 + >=dev-python/wxPython-2.4.2.4" + +src_unpack() { + unpack ${A} + rm -fr ${S}/build/scripts* + cd ${S} + epatch ${FILESDIR}/spe_setup.patch +} + +src_install() { + export PREFIX="/usr" + distutils_src_install +} + +pkg_postinst() { + SPEPATH="$PREFIX/lib/`python -c "import sys; print 'python%s.%s'%(sys.version_info[0], sys.version_info[1])"`/site-packages" + + einfo "To be able to use spe in blender, be sure that the path where spe" + einfo "is installed ($SPEPATH) is included in your" + einfo "PYTHONPATH environment variable. See the installation section in the manual" + einfo "for more information ($SPEPATH/spe/doc/manual.html).\n\n" +} |