blob: 02f89daca668c10b72450ce4a07ed7ffd68ea8e8 (
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
|
# 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/cheetah-0.9.15.ebuild,v 1.1 2004/01/18 12:18:55 liquidx Exp $
inherit distutils
MY_P="${P/ch/Ch}"
S=${WORKDIR}/${MY_P}
DESCRIPTION="Python-powered template engine and code generator."
HOMEPAGE="http://www.cheetahtemplate.org/"
SRC_URI="mirror://sourceforge/cheetahtemplate/${MY_P}.tar.gz"
LICENSE="PSF-2.2"
IUSE=""
KEYWORDS="x86 ~sparc ~alpha"
SLOT="0"
RDEPEND=">=dev-lang/python-2.2"
DEPEND="${RDEPEND}"
PYTHON_MODNAME="Cheetah"
src_install() {
DOCS="README CHANGES LICENSE TODO"
distutils_src_install
insinto /usr/share/doc/${PF}/examples
doins examples/webware_examples/cheetahSite/*
}
|