diff options
author | Sebastien Fabbro <bicatali@gentoo.org> | 2011-08-03 23:49:29 +0000 |
---|---|---|
committer | Sebastien Fabbro <bicatali@gentoo.org> | 2011-08-03 23:49:29 +0000 |
commit | 2ed241c2fe474af2ac691e258cdee5a6682bcd6f (patch) | |
tree | 3931e7b53070768608e8e3126e01f474ed1471db /dev-python/envisage | |
parent | Add ~x86-linux keyword. (diff) | |
download | historical-2ed241c2fe474af2ac691e258cdee5a6682bcd6f.tar.gz historical-2ed241c2fe474af2ac691e258cdee5a6682bcd6f.tar.bz2 historical-2ed241c2fe474af2ac691e258cdee5a6682bcd6f.zip |
Initial import
Package-Manager: portage-2.1.10.10/cvs/Linux x86_64
Diffstat (limited to 'dev-python/envisage')
-rw-r--r-- | dev-python/envisage/ChangeLog | 10 | ||||
-rw-r--r-- | dev-python/envisage/envisage-4.0.0.ebuild | 59 | ||||
-rw-r--r-- | dev-python/envisage/metadata.xml | 15 |
3 files changed, 84 insertions, 0 deletions
diff --git a/dev-python/envisage/ChangeLog b/dev-python/envisage/ChangeLog new file mode 100644 index 000000000000..24590511e273 --- /dev/null +++ b/dev-python/envisage/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for dev-python/envisage +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/envisage/ChangeLog,v 1.1 2011/08/03 23:47:33 bicatali Exp $ + +*envisage-4.0.0 (03 Aug 2011) + + 03 Aug 2011; SĂ©bastien Fabbro <bicatali@gentoo.org> +envisage-4.0.0.ebuild, + +metadata.xml: + Initial import + diff --git a/dev-python/envisage/envisage-4.0.0.ebuild b/dev-python/envisage/envisage-4.0.0.ebuild new file mode 100644 index 000000000000..19b8a740df65 --- /dev/null +++ b/dev-python/envisage/envisage-4.0.0.ebuild @@ -0,0 +1,59 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/envisage/envisage-4.0.0.ebuild,v 1.1 2011/08/03 23:47:33 bicatali Exp $ + +EAPI="3" +PYTHON_DEPEND="2" +SUPPORT_PYTHON_ABIS="1" +RESTRICT_PYTHON_ABIS="3.* *-jython" +DISTUTILS_SRC_TEST="nosetests" + +inherit distutils virtualx + +DESCRIPTION="Enthought Tool Suite: extensible application framework" +HOMEPAGE="http://code.enthought.com/projects/envisage/ http://pypi.python.org/pypi/envisage" +SRC_URI="http://www.enthought.com/repo/ets/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="doc examples test" + +RDEPEND=">=dev-python/traits-4.0" +DEPEND="dev-python/setuptools + doc? ( dev-python/sphinx ) + test? ( + >=dev-python/traits-4.0 + media-fonts/font-cursor-misc + media-fonts/font-misc-misc + )" + +src_compile() { + distutils_src_compile + if use doc; then + einfo "Generation of documentation" + pushd docs > /dev/null + emake html || die "Generation of documentation failed" + popd > /dev/null + fi +} + +src_test() { + VIRTUALX_COMMAND="distutils_src_test" virtualmake +} + +src_install() { + distutils_src_install + + if use doc; then + pushd docs/build/html > /dev/null + insinto /usr/share/doc/${PF}/html + doins -r [a-z]* _static || die "Installation of documentation failed" + popd > /dev/null + fi + + if use examples; then + insinto /usr/share/doc/${PF}/examples + doins -r examples/* || die "Installation of examples failed" + fi +} diff --git a/dev-python/envisage/metadata.xml b/dev-python/envisage/metadata.xml new file mode 100644 index 000000000000..c3a0dcdf8a1f --- /dev/null +++ b/dev-python/envisage/metadata.xml @@ -0,0 +1,15 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>python</herd> +<longdescription lang="en"> + Envisage is a Python-based framework for building extensible + applications, that is, applications whose functionality can be + extended by adding "plug-ins". Envisage provides a standard + mechanism for features to be added to an application, whether by the + original developer or by someone else. In fact, when you build an + application using Envisage, the entire application consists + primarily of plug-ins. In this respect, it is similar to the Eclipse + and Netbeans frameworks for Java applications. +</longdescription> +</pkgmetadata> |