diff options
Diffstat (limited to 'dev-python/docutils/docutils-0.4.ebuild')
-rw-r--r-- | dev-python/docutils/docutils-0.4.ebuild | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/dev-python/docutils/docutils-0.4.ebuild b/dev-python/docutils/docutils-0.4.ebuild index 297ee431c208..cdcda975a769 100644 --- a/dev-python/docutils/docutils-0.4.ebuild +++ b/dev-python/docutils/docutils-0.4.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/docutils/docutils-0.4.ebuild,v 1.13 2007/03/30 19:07:38 grobian Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/docutils/docutils-0.4.ebuild,v 1.14 2007/04/04 18:28:41 pythonhead Exp $ inherit distutils eutils elisp-common multilib @@ -27,6 +27,8 @@ src_unpack() { # simplified algorithm to select installing optparse and textwrap cd ${S} epatch ${FILESDIR}/${EMP}-extramodules.patch + # Fix for Python 2.5 test (bug# 172557) + epatch ${FILESDIR}/${P}-python-2.5-fix.patch } src_compile() { @@ -81,11 +83,11 @@ src_install() { done # Docs cd ${S} - dohtml -r docs spec tools + dohtml -r docs tools # manually install the stylesheet file insinto /usr/share/doc/${PF}/html doins docutils/writers/html4css1/html4css1.css - for doc in $(find docs spec tools -name '*.txt') + for doc in $(find docs tools -name '*.txt') do install_txt_doc $doc done |