blob: 66ad71c181d5052cdca013286b57e88cbc664569 (
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-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/lockfile/lockfile-0.8.ebuild,v 1.2 2010/01/12 13:40:11 fauli Exp $
EAPI="2"
SUPPORT_PYTHON_ABIS="1"
inherit distutils
DESCRIPTION="Platform-independent file locking module"
HOMEPAGE="http://smontanaro.dyndns.org/python/ http://pypi.python.org/pypi/lockfile"
SRC_URI="http://smontanaro.dyndns.org/python/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc"
DEPEND=""
RDEPEND=""
RESTRICT_PYTHON_ABIS="3.*"
DOCS="ACKS README RELEASE-NOTES"
PYTHON_MODNAME="lockfile.py"
src_install() {
distutils_src_install
if use doc; then
docinto doc
dodoc doc/* || die "Installation of documentation failed"
fi
}
|