# Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-util/spe/spe-0.8.3c-r1.ebuild,v 1.2 2008/05/02 18:46:17 pythonhead Exp $ inherit distutils eutils MY_P="SPE-0.8.3.c-wx2.6.1.0" DESCRIPTION="Python IDE with Blender support" HOMEPAGE="http://pythonide.stani.be/" SRC_URI="mirror://berlios/python/${MY_P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~ppc ~sparc ~x86" IUSE="" S=${WORKDIR}/${MY_P} DEPEND=">=virtual/python-2.3 app-arch/unzip" RDEPEND="=dev-python/wxpython-2.6* >=dev-util/wxglade-0.3.2 >=dev-python/pychecker-0.8.13 ${DEPEND}" src_unpack() { unpack ${A} cd "${S}" epatch "${FILESDIR}"/${PN}-0.8.3-wxversion.patch chmod -R go-w "${S}"/* } src_install() { distutils_src_install distutils_python_version SITEPATH="${ROOT}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" ln -svf "../../pychecker" "${D}${SITEPATH}/_spe/plugins/pychecker" doicon "${S}/build/lib/_spe/images/spe.png" make_desktop_entry "${PN}" "SPE - Stani's Python Editor" "spe" "Development" } pkg_postinst() { distutils_python_version SPEPATH="/usr/lib/python${PYVER}/site-packages" elog elog "To be able to use spe in blender, be sure that the path where spe is" elog "installed ($SPEPATH) is included in your PYTHONPATH" elog "environment variable. See the installation section in the manual for" elog "more information ($SPEPATH/_spe/doc/manual.pdf)." elog }