5e0cb21a60
git-svn-id: https://svn.disconnected-by-peer.at/svn/linamh/trunk/mds@994 6952d904-891a-0410-993b-d76249ca496b
30 lines
722 B
Bash
30 lines
722 B
Bash
# Copyright 1999-2009 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: $
|
|
|
|
inherit distutils
|
|
|
|
DESCRIPTION="Pulse 2 - Open Source Computer System Management and its Python plugins."
|
|
HOMEPAGE="http://pulse2.mandriva.org/"
|
|
SRC_URI="http://mds.mandriva.org/pub/pulse2/sources/${PV}/${P}.tar.gz"
|
|
|
|
LICENSE="GPL-2"
|
|
KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
|
|
IUSE=""
|
|
|
|
SLOT="0"
|
|
|
|
RDEPEND=">=dev-python/twisted-web-0.7.0"
|
|
|
|
DEPEND=">=dev-python/setuptools-0.6_rc1"
|
|
|
|
# from marienz's setuptools.eclass:
|
|
src_install() {
|
|
"${python}" setup.py install --root="${D}" --no-compile "$@" || die "install failed"
|
|
}
|
|
|
|
src_test() {
|
|
"${python}" setup.py test || die "tests failed"
|
|
}
|
|
|