diff options
author | Patrick Lauer <patrick@gentoo.org> | 2009-06-01 00:38:29 +0000 |
---|---|---|
committer | Patrick Lauer <patrick@gentoo.org> | 2009-06-01 00:38:29 +0000 |
commit | 890706ee4297d478c2aeb99c6489a1e8e45b0412 (patch) | |
tree | e73d1a6b55e58ee49cdba4090bbd1d8af0481bb8 /dev-python/pyro/pyro-3.9.1.ebuild | |
parent | Bump to 2.2.4, thanks to Alessio Cassibba. Fixes #271983 #271341 #269335 (diff) | |
download | gentoo-2-890706ee4297d478c2aeb99c6489a1e8e45b0412.tar.gz gentoo-2-890706ee4297d478c2aeb99c6489a1e8e45b0412.tar.bz2 gentoo-2-890706ee4297d478c2aeb99c6489a1e8e45b0412.zip |
Bump to 3.9.1, fixes #271202
(Portage version: 2.2_rc33/cvs/Linux x86_64)
Diffstat (limited to 'dev-python/pyro/pyro-3.9.1.ebuild')
-rw-r--r-- | dev-python/pyro/pyro-3.9.1.ebuild | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/dev-python/pyro/pyro-3.9.1.ebuild b/dev-python/pyro/pyro-3.9.1.ebuild new file mode 100644 index 000000000000..b3a48b90b4ba --- /dev/null +++ b/dev-python/pyro/pyro-3.9.1.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pyro/pyro-3.9.1.ebuild,v 1.1 2009/06/01 00:38:29 patrick Exp $ + +inherit distutils eutils + +MY_P="Pyro-${PV}" +DESCRIPTION="advanced and powerful Distributed Object Technology system written entirely in Python" +HOMEPAGE="http://pyro.sourceforge.net/" +SRC_URI="mirror://sourceforge/pyro/${MY_P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~ia64 ~ppc ~x86" +IUSE="doc examples" + +S="${WORKDIR}/${MY_P}" + +src_install() { + distutils_src_install + + if use examples; then + insinto /usr/share/doc/${PF} + doins -r examples + fi + + if use doc; then + dohtml -r docs/* + fi +} |