blob: 96590bf76bea952989364d212a5a3bb4d750713c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/docutils/docutils-0.3-r1.ebuild,v 1.2 2003/09/06 23:32:28 msterret Exp $
inherit distutils
DESCRIPTION="Set of python tools for processing plaintext docs into HTML, XML, etc."
HOMEPAGE="http://docutils.sourceforge.net/"
SRC_URI="mirror://sourceforge/docutils/${P}.tar.gz"
LICENSE="public-domain PYTHON BSD"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
DEPEND=">=dev-lang/python-2.1"
# GLEP version
GLEP_SRC=${FILESDIR}/glep-${PVR}
src_unpack() {
unpack ${A}
# simplified algorithm to select installing optparse and textwrap
epatch ${FILESDIR}/${P}-extramodules.patch
}
src_compile() {
distutils_src_compile
# Generate html docs from reStructured text sources
PYTHONPATH=${S}/build/lib ${python} \
tools/buildhtml.py --config=tools/docutils.conf
}
install_txt_doc() {
local doc=${1}
local dir="txt/$(dirname ${doc})"
docinto ${dir}
dodoc ${doc}
}
src_install() {
mydoc="MANIFEST.in *.txt"
distutils_src_install
# Tools
cd ${S}/tools
for tool in *.py
do
newbin ${tool} docutils-${tool}
done
# Docs
cd ${S}
dohtml -r docs spec tools
for doc in $(find docs spec tools -name '*.txt')
do
install_txt_doc $doc
done
# installing Gentoo GLEP tools. Uses versioned GLEP distribution
distutils_python_version
newbin ${GLEP_SRC}/glep.py docutils-glep.py
insinto /usr/lib/python${PYVER}/site-packages/docutils/readers
newins ${GLEP_SRC}/glepread.py glep.py
insinto /usr/lib/python${PYVER}/site-packages/docutils/transforms
newins ${GLEP_SRC}/glepstrans.py gleps.py
insinto /usr/lib/python${PYVER}/site-packages/docutils/writers
newins ${GLEP_SRC}/glep_htmlwrite.py glep_html.py
}
|