diff options
Diffstat (limited to 'dev-python/elixir')
-rw-r--r-- | dev-python/elixir/elixir-0.7.1.ebuild | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/dev-python/elixir/elixir-0.7.1.ebuild b/dev-python/elixir/elixir-0.7.1.ebuild index f964751669f8..52322d2d07dd 100644 --- a/dev-python/elixir/elixir-0.7.1.ebuild +++ b/dev-python/elixir/elixir-0.7.1.ebuild @@ -1,8 +1,9 @@ -# Copyright 1999-2009 Gentoo Foundation +# Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/elixir/elixir-0.7.1.ebuild,v 1.1 2009/12/21 06:37:53 arfrever Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/elixir/elixir-0.7.1.ebuild,v 1.2 2010/02/06 14:32:25 arfrever Exp $ EAPI="2" +PYTHON_DEPEND="2" SUPPORT_PYTHON_ABIS="1" inherit distutils @@ -36,10 +37,9 @@ src_compile() { distutils_src_compile if use doc; then - python_version einfo "Generation of documentation" - "${python}" setup.py addcommand -p buildutils.pudge_command - PYTHONPATH=. "${python}" setup.py pudge || die "Generation of documentation failed" + "$(PYTHON -f)" setup.py addcommand -p buildutils.pudge_command + PYTHONPATH=. "$(PYTHON -f)" setup.py pudge || die "Generation of documentation failed" fi } |