diff options
author | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2010-09-12 20:43:13 +0000 |
---|---|---|
committer | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2010-09-12 20:43:13 +0000 |
commit | 4cfa8a1ac03061f95f828794b9bb099a127183ea (patch) | |
tree | f6797a922928ae773263b9476be07de45d38309d /dev-python/pygtkhelpers | |
parent | x86 stable wrt bug #335043 (diff) | |
download | historical-4cfa8a1ac03061f95f828794b9bb099a127183ea.tar.gz historical-4cfa8a1ac03061f95f828794b9bb099a127183ea.tar.bz2 historical-4cfa8a1ac03061f95f828794b9bb099a127183ea.zip |
Delete older ebuild.
Diffstat (limited to 'dev-python/pygtkhelpers')
-rw-r--r-- | dev-python/pygtkhelpers/pygtkhelpers-0.4.1.ebuild | 55 |
1 files changed, 0 insertions, 55 deletions
diff --git a/dev-python/pygtkhelpers/pygtkhelpers-0.4.1.ebuild b/dev-python/pygtkhelpers/pygtkhelpers-0.4.1.ebuild deleted file mode 100644 index d12b17d80a04..000000000000 --- a/dev-python/pygtkhelpers/pygtkhelpers-0.4.1.ebuild +++ /dev/null @@ -1,55 +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/pygtkhelpers/pygtkhelpers-0.4.1.ebuild,v 1.1 2010/06/23 23:29:26 arfrever Exp $ - -EAPI="3" -PYTHON_DEPEND="2" -SUPPORT_PYTHON_ABIS="1" -RESTRICT_PYTHON_ABIS="3.*" - -inherit distutils - -DESCRIPTION="PyGTKHelpers is a library to assist the building of PyGTK applications" -HOMEPAGE="http://packages.python.org/pygtkhelpers/ http://pypi.python.org/pypi/pygtkhelpers" -SRC_URI="http://pypi.python.org/packages/source/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="LGPL-3" -SLOT="0" -KEYWORDS="~amd64 ~ppc64 ~x86" -IUSE="doc examples" - -DEPEND="dev-python/setuptools - doc? ( dev-python/sphinx )" -RDEPEND="" - -src_prepare() { - distutils_src_prepare - - # docs/_static/scope.jpg does not exist. - sed -e "s/^\(html_logo =.*\)/#\1/" -i docs/conf.py || die "sed failed" -} - -src_compile() { - distutils_src_compile - - if use doc; then - einfo "Generation of documentation" - "$(PYTHON -f)" setup.py build_sphinx || die "Generation of documentation failed" - fi -} - -src_install() { - distutils_src_install - - if use doc; then - pushd build/sphinx/html > /dev/null - docinto html - cp -R [a-z]* _images _static "${ED}usr/share/doc/${PF}/html" || 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 -} |