diff options
author | 2009-09-06 15:39:25 +0000 | |
---|---|---|
committer | 2009-09-06 15:39:25 +0000 | |
commit | 9f1bf61c128ef81f2c9570c24306429674313bf5 (patch) | |
tree | deae35d22cd9493d5ad02635acab1f77d55eb01d /dev-python/envisagecore/envisagecore-3.1.1.ebuild | |
parent | amd64/x86 stable, bug #282353 (diff) | |
download | gentoo-2-9f1bf61c128ef81f2c9570c24306429674313bf5.tar.gz gentoo-2-9f1bf61c128ef81f2c9570c24306429674313bf5.tar.bz2 gentoo-2-9f1bf61c128ef81f2c9570c24306429674313bf5.zip |
Version bump. Set SUPPORT_PYTHON_ABIS.
(Portage version: 14208-svn/cvs/Linux x86_64)
Diffstat (limited to 'dev-python/envisagecore/envisagecore-3.1.1.ebuild')
-rw-r--r-- | dev-python/envisagecore/envisagecore-3.1.1.ebuild | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/dev-python/envisagecore/envisagecore-3.1.1.ebuild b/dev-python/envisagecore/envisagecore-3.1.1.ebuild new file mode 100644 index 000000000000..9f4c97389ef6 --- /dev/null +++ b/dev-python/envisagecore/envisagecore-3.1.1.ebuild @@ -0,0 +1,64 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/envisagecore/envisagecore-3.1.1.ebuild,v 1.1 2009/09/06 15:39:25 arfrever Exp $ + +EAPI="2" +SUPPORT_PYTHON_ABIS="1" + +inherit distutils + +MY_PN="EnvisageCore" +MY_P="${MY_PN}-${PV}" +DESCRIPTION="Enthought Tool Suite extensible application framework" +HOMEPAGE="http://code.enthought.com/projects/envisage/" +SRC_URI="http://www.enthought.com/repo/ETS/${MY_P}.tar.gz" + +IUSE="doc examples test" +SLOT="0" +KEYWORDS="~amd64 ~x86" +LICENSE="BSD" + +RDEPEND=">=dev-python/apptools-3.3.0 + >=dev-python/traits-3.2.0 + >=dev-python/enthoughtbase-3.0.3" +DEPEND="dev-python/setuptools + doc? ( dev-python/setupdocs ) + test? ( >=dev-python/nose-0.10.3 + >=dev-python/apptools-3.3.0 + >=dev-python/enthoughtbase-3.0.3 )" +RESTRICT_PYTHON_ABIS="3.*" + +S="${WORKDIR}/${MY_P}" + +PYTHON_MODNAME="enthought" + +src_prepare() { + sed -e "s/self.run_command('build_docs')/pass/" -i setup.py || die +} + +src_compile() { + distutils_src_compile + if use doc; then + "${python}" setup.py build_docs --formats=html,pdf \ + || die "doc building failed" + fi +} + +src_test() { + testing() { + PYTHONPATH="build-${PYTHON_ABI}/lib" "$(PYTHON)" setup.py build -b "build-${PYTHON_ABI}" test + } + python_execute_function testing +} + +src_install() { + distutils_src_install + insinto /usr/share/doc/${PF} + if use doc; then + doins -r build/docs/html || die + doins build/docs/latex/*.pdf || die + fi + if use examples; then + doins -r examples || die + fi +} |