diff options
author | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2011-01-30 17:58:33 +0000 |
---|---|---|
committer | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2011-01-30 17:58:33 +0000 |
commit | fdd5e503935105d37f461caad4b488b0020d1f5e (patch) | |
tree | 50028ada77796862c6bb2d840ea5a4b98e058dfb /dev-python/envisagecore | |
parent | alpha/arm/ia64/sh/sparc stable wrt #348987 (diff) | |
download | historical-fdd5e503935105d37f461caad4b488b0020d1f5e.tar.gz historical-fdd5e503935105d37f461caad4b488b0020d1f5e.tar.bz2 historical-fdd5e503935105d37f461caad4b488b0020d1f5e.zip |
Delete older ebuild.
Diffstat (limited to 'dev-python/envisagecore')
-rw-r--r-- | dev-python/envisagecore/envisagecore-3.1.3.ebuild | 74 |
1 files changed, 0 insertions, 74 deletions
diff --git a/dev-python/envisagecore/envisagecore-3.1.3.ebuild b/dev-python/envisagecore/envisagecore-3.1.3.ebuild deleted file mode 100644 index e02d0e4d6516..000000000000 --- a/dev-python/envisagecore/envisagecore-3.1.3.ebuild +++ /dev/null @@ -1,74 +0,0 @@ -# Copyright 1999-2010 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/envisagecore/envisagecore-3.1.3.ebuild,v 1.1 2010/10/18 14:34:38 arfrever Exp $ - -EAPI="3" -PYTHON_DEPEND="2" -SUPPORT_PYTHON_ABIS="1" -RESTRICT_PYTHON_ABIS="3.*" -DISTUTILS_SRC_TEST="setup.py" - -inherit distutils virtualx - -MY_PN="EnvisageCore" -MY_P="${MY_PN}-${PV}" - -DESCRIPTION="Enthought Tool Suite extensible application framework" -HOMEPAGE="http://code.enthought.com/projects/envisage/ http://pypi.python.org/pypi/EnvisageCore" -SRC_URI="http://www.enthought.com/repo/ETS/${MY_P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="doc examples test" - -RDEPEND=">=dev-python/apptools-3.4.0 - >=dev-python/enthoughtbase-3.0.6 - >=dev-python/traits-3.5.0" -DEPEND="${RDEPEND} - dev-python/setuptools - doc? ( dev-python/setupdocs ) - test? ( - dev-python/coverage - >=dev-python/nose-0.10.3 - media-fonts/font-cursor-misc - media-fonts/font-misc-misc - x11-apps/xhost - )" - -S="${WORKDIR}/${MY_P}" - -PYTHON_MODNAME="enthought" - -src_prepare() { - distutils_src_prepare - - sed \ - -e "s/self.run_command('build_docs')/pass/" \ - -e "/setupdocs>=1.0/d" \ - -i setup.py || die "sed setup.py failed" -} - -src_compile() { - distutils_src_compile - - if use doc; then - "$(PYTHON -f)" setup.py build_docs --formats=html,pdf || die "Generation of documentation failed" - fi -} - -src_test() { - maketype="distutils_src_test" virtualmake -} - -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 -} |