blob: 6916c99e6fb1692c520008c36005d6ec7b6ccd10 (
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-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/quixote/quixote-1.0.ebuild,v 1.8 2008/02/23 23:04:32 hollow Exp $
inherit distutils
MY_P=${P/q/Q}
DESCRIPTION="Python HTML templating framework for developing web applications."
HOMEPAGE="http://quixote.ca"
SRC_URI="http://quixote.ca/releases/${MY_P}.tar.gz"
LICENSE="CNRI"
SLOT="0"
KEYWORDS="~ppc ~x86"
IUSE=""
DEPEND=">=dev-lang/python-2.2"
S="${WORKDIR}"/${MY_P}
src_install() {
DOCS="ACKS CHANGES"
distutils_src_install
dodoc doc/*.txt
dohtml doc/*.html
insinto /usr/share/${PN}/demo
doins demo/*
}
|