blob: db568acc005fc5aabcdeb7d37c5b4dcc21077a21 (
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
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/doit/doit-0.16.1.ebuild,v 1.1 2012/06/27 08:03:32 yngwin Exp $
EAPI=4
PYTHON_COMPAT="python2_6 python2_7 python3_2"
inherit python-distutils-ng
DESCRIPTION="Automation tool"
HOMEPAGE="http://python-doit.sourceforge.net/ http://pypi.python.org/pypi/doit"
SRC_URI="mirror://pypi/${PN::1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
IUSE=""
DEPEND=""
RDEPEND="dev-python/pyinotify"
src_install() {
python-distutils-ng_src_install
dodoc AUTHORS CHANGES README TODO.txt
dodoc -r doc
docompress -x /usr/share/doc/${PF}/doc
}
|