blob: abd283b763943c22c261b6ef22a8177d40d3cf4c (
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 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/configobj/configobj-4.4.0.ebuild,v 1.1 2007/03/10 09:20:27 lucass Exp $
NEED_PYTHON=2.3
inherit distutils
KEYWORDS="~amd64 ~x86"
DESCRIPTION="Simple but powerful config file reader and writer: an ini file round tripper."
HOMEPAGE="http://www.voidspace.org.uk/python/configobj.html"
SRC_URI="mirror://sourceforge/${PN}/${P}.zip"
LICENSE="BSD"
SLOT="0"
IUSE="doc"
DEPEND="app-arch/unzip"
RDEPEND=""
src_test() {
sed -i \
-e 's/ \(doctest\.testmod(.*\)/ sys.exit(\1[0] != 0)/' \
configobj_test.py
${python} configobj_test.py -v || die "configobj_test.py failed"
}
src_install() {
DOCS="CONFIGOBJ_CHANGELOG_TODO.txt docs/configobj.txt docs/validate.txt"
distutils_src_install
if use doc ; then
dohtml -r docs/*
fi
}
|