blob: ae5c1283a1d3ddca14801a82e49dbf38c52c33b0 (
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
|
# 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-r1.ebuild,v 1.3 2007/03/30 19:07:38 grobian Exp $
inherit distutils eutils elisp-common multilib
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
glep? ( mirror://gentoo/glep-${PVR}.tbz2 )"
LICENSE="public-domain PYTHON BSD"
SLOT="0"
KEYWORDS="~alpha amd64 arm hppa ia64 m68k ~mips ppc ~ppc64 s390 sh sparc ~sparc-fbsd x86 ~x86-fbsd"
IUSE="glep emacs"
DEPEND=">=dev-lang/python-2.3
emacs? ( virtual/emacs )"
EMP=${PN}-0.3.7
SITEFILE=50docutils-0.4-gentoo.el
GLEP_SRC=${WORKDIR}/glep-${PVR}
src_unpack() {
unpack ${A}
# simplified algorithm to select installing optparse and textwrap
cd ${S}
epatch ${FILESDIR}/${EMP}-extramodules.patch
}
src_compile() {
distutils_src_compile
# Generate html docs from reStructured text sources.
# make roman.py available for the doc building process
ln -s extras/roman.py
pushd tools
# Place html4css1.css in base directory. This makes sure the
# generated reference to it is correct.
cp ../docutils/writers/html4css1/html4css1.css ..
PYTHONPATH=.. ${python} ./buildhtml.py --stylesheet-path=../html4css1.css --traceback .. \
|| die "buildhtml"
popd
# clean up after the doc building
rm roman.py html4css1.css
if use emacs; then
pushd tools/editors/emacs; elisp-compile *.el; popd
fi
}
install_txt_doc() {
local doc=${1}
local dir="txt/$(dirname ${doc})"
docinto ${dir}
dodoc ${doc}
}
src_test() {
cd ${S}/test
PYTHONPATH="${S}" ./alltests.py || die "alltests.py failed"
}
src_install() {
cd ${S}
mydoc="*.txt"
distutils_src_install
# Tools
cd ${S}/tools
for tool in *.py
do
dobin ${tool}
done
# Docs
cd ${S}
dohtml -r docs spec 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')
do
install_txt_doc $doc
done
# installing Gentoo GLEP tools. Uses versioned GLEP distribution
if use glep
then
distutils_python_version
dobin ${GLEP_SRC}/glep.py || die "newbin failed"
insinto /usr/$(get_libdir)/python${PYVER}/site-packages/docutils/readers
newins ${GLEP_SRC}/glepread.py glep.py || die "newins reader failed"
insinto /usr/$(get_libdir)/python${PYVER}/site-packages/docutils/transforms
newins ${GLEP_SRC}/glepstrans.py gleps.py || "newins transform failed"
insinto /usr/$(get_libdir)/python${PYVER}/site-packages/docutils/writers
doins -r ${GLEP_SRC}/glep_html || die "doins writer failed"
fi
if use emacs; then
elisp-install ${PN} tools/editors/emacs/*.{elc,el}
elisp-site-file-install ${FILESDIR}/${SITEFILE}
fi
}
pkg_postinst() {
use emacs && elisp-site-regen
distutils_pkg_postinst
}
pkg_postrm() {
use emacs && elisp-site-regen
distutils_pkg_postrm
}
|