blob: e6cc90115d4a39af8fa78f200d630a0e15457988 (
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-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/celementtree/celementtree-1.0.ebuild,v 1.4 2005/11/11 18:51:45 halcy0n Exp $
inherit distutils
MY_P="cElementTree-${PV}-20050126"
DESCRIPTION="The cElementTree module is a C implementation of the ElementTree API"
HOMEPAGE="http://effbot.org/zone/celementtree.htm"
SRC_URI="http://effbot.org/downloads/${MY_P}.zip"
LICENSE="as-is"
SLOT="0"
KEYWORDS="x86 ~amd64"
IUSE="doc"
DEPEND=">=dev-lang/python-2.1.3-r1
>=dev-python/elementtree-1.2
app-arch/unzip"
S=${WORKDIR}/${MY_P}
src_install() {
distutils_src_install
if use doc; then
insinto /usr/share/doc/${PF}/samples
doins samples/*
doins selftest.py
fi
}
|