summaryrefslogtreecommitdiff
blob: ab2a4500ae3c4bf0d9402b21eaabc9fa4eff3d97 (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
# Copyright 2003 Arcady Genkin <agenkin@gentoo.org>.
# 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.3 2003/06/21 22:30:23 drobbins Exp $

DESCRIPTION="Documentation for Cheetah templates."
HOMEPAGE="http://www.cheetahtemplate.org/"
LICENSE="PSF-2.2"

KEYWORDS="x86 amd64"
SLOT="0"

DEPEND=""

SRC_URI="mirror://sourceforge/cheetahtemplate/CheetahDocs-${PV/_alpha/a}.tgz"
S=${WORKDIR}/CheetahDocs

src_compile() {

	true

}

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/lib/Cheetah-docs
	dodir ${srcdir}
	mv devel_guide_src users_guide_src ${D}${srcdir}/

}