diff options
author | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2010-02-06 14:45:53 +0000 |
---|---|---|
committer | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2010-02-06 14:45:53 +0000 |
commit | 541cac465878ecaa7660775787fa7f03d9971eba (patch) | |
tree | d1b050c8177185e06e91b7e2b8e46d725da53198 /dev-python/chaco | |
parent | Added missed inherit eutils, bug #303709, thank Dan W. for report. (diff) | |
download | historical-541cac465878ecaa7660775787fa7f03d9971eba.tar.gz historical-541cac465878ecaa7660775787fa7f03d9971eba.tar.bz2 historical-541cac465878ecaa7660775787fa7f03d9971eba.zip |
Use $(PYTHON -f) instead of ${python}.
Package-Manager: portage-15324-svn/cvs/Linux x86_64
Diffstat (limited to 'dev-python/chaco')
-rw-r--r-- | dev-python/chaco/chaco-3.2.0.ebuild | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/dev-python/chaco/chaco-3.2.0.ebuild b/dev-python/chaco/chaco-3.2.0.ebuild index 39438b7e9853..7e60fe3532f7 100644 --- a/dev-python/chaco/chaco-3.2.0.ebuild +++ b/dev-python/chaco/chaco-3.2.0.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/chaco/chaco-3.2.0.ebuild,v 1.2 2009/09/05 23:26:11 arfrever Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/chaco/chaco-3.2.0.ebuild,v 1.3 2010/02/06 14:41:49 arfrever Exp $ EAPI="2" +PYTHON_DEPEND="2" SUPPORT_PYTHON_ABIS="1" inherit distutils @@ -43,9 +44,9 @@ src_prepare() { src_compile() { find "${S}" -name \*LICENSE.txt -delete distutils_src_compile + #if use doc; then - # ${python} setup.py build_docs --formats=html,pdf \ - # || die "doc building failed" + # "$(PYTHON -f)" setup.py build_docs --formats=html,pdf || die "Generation of documentation failed" #fi } |