blob: 4d60ba185003bc5845c106a0eaf97f0bcce99783 (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/elementtree/elementtree-1.2.6-r1.ebuild,v 1.1 2007/07/05 06:45:42 pythonhead Exp $
inherit distutils
MY_P="${PN}-${PV}-20050316"
DESCRIPTION="A light-weight XML object model for Python"
HOMEPAGE="http://effbot.org/zone/element-index.htm"
SRC_URI="http://effbot.org/downloads/${MY_P}.tar.gz"
LICENSE="ElementTree"
SLOT="0"
KEYWORDS="alpha amd64 arm ia64 mips ppc ~ppc64 s390 sh sparc x86 ~x86-fbsd"
IUSE=""
S=${WORKDIR}/${MY_P}
src_unpack() {
unpack ${A}
cd ${S}
sed -i -e 's/distutils.core/setuptools/' setup.py || die 'sed failed'
}
src_test() {
python selftest.py || die "selftest.py failed"
}
src_install() {
distutils_src_install
dodoc CHANGES
dohtml docs/*
}
|