blob: 4dad1ce4c4d3c569c45e28f702118697a516b201 (
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
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/cheetah-docs/cheetah-docs-0.9.15_alpha1.ebuild,v 1.2 2004/04/18 08:31:35 dholm Exp $
DESCRIPTION="Documentation for Cheetah templates."
HOMEPAGE="http://www.cheetahtemplate.org/"
SRC_URI="mirror://sourceforge/cheetahtemplate/CheetahDocs-${PV/_alpha/a}.tgz"
IUSE=""
LICENSE="PSF-2.2"
KEYWORDS="x86 ~ppc"
SLOT="0"
DEPEND=""
S=${WORKDIR}/CheetahDocs
src_install() {
dodoc *.ps *.pdf *.txt TODO
dohtml -r devel_guide_html devel_guide_html_multipage
dohtml -r users_guide_html users_guide_html_multipage
dohtml OnePageTutorial.html
# Install the source code.
local srcdir=/usr/share/doc/${PF}
dodir ${srcdir}
mv devel_guide_src users_guide_src ${D}${srcdir}/
}
|