blob: 288533c50414039350cc3b118346a69e66fd1d82 (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/paver/paver-1.0.1.ebuild,v 1.1 2009/11/16 18:01:33 spatz Exp $
EAPI="2"
inherit distutils
MY_PN="${PN/p/P}"
MY_P="${MY_PN}-${PV}"
DESCRIPTION="Python-based software project scripting tool along the lines of Make"
HOMEPAGE="http://www.blueskyonmars.com/projects/paver/"
SRC_URI="http://pypi.python.org/packages/source/P/${MY_PN}/${MY_P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND=""
RDEPEND="${DEPEND}"
S="${WORKDIR}/${MY_P}"
src_install() {
# overriding default functions as --no_compile option is not supported
${python} setup.py install --root="${D}" "$@" || die "install failed"
dodoc README.txt || die "dodoc failed"
}
|