50 lines
1.1 KiB
Bash
50 lines
1.1 KiB
Bash
|
# Copyright 1999-2009 Gentoo Foundation
|
||
|
# Distributed under the terms of the GNU General Public License v2
|
||
|
# $Header: $
|
||
|
|
||
|
inherit distutils
|
||
|
|
||
|
# ESVN_REPO_URI="http://mds.mandriva.org/svn/mmc-agent"
|
||
|
DESCRIPTION="The MMC Agent and its Python plugins."
|
||
|
HOMEPAGE="http://mds.mandriva.org/"
|
||
|
SRC_URI="http://mds.mandriva.org/pub/pulse2/sources/${PV}/${P}.tar.gz"
|
||
|
|
||
|
LICENSE="GPL-2"
|
||
|
KEYWORDS="~amd64 ~ppc64 ~x86"
|
||
|
IUSE="nls"
|
||
|
|
||
|
SLOT="0"
|
||
|
|
||
|
RDEPEND=">=dev-python/twisted-web-0.7.0
|
||
|
>=app-admin/pulse2-common-1.2.0"
|
||
|
|
||
|
DEPEND=">=dev-python/setuptools-0.6_rc1"
|
||
|
|
||
|
src_unpack() {
|
||
|
unpack ${A}
|
||
|
cd ${S}
|
||
|
epatch "${FILESDIR}"/${PN}-1.2.0-python-1.patch
|
||
|
}
|
||
|
|
||
|
# from marienz's setuptools.eclass:
|
||
|
src_install() {
|
||
|
"${python}" setup.py install --root="${D}" --no-compile "$@" || die "install failed"
|
||
|
dosbin bin/*
|
||
|
insinto etc/mmc/pulse2/scheduler/keys
|
||
|
doins -r conf/scheduler/keys/*
|
||
|
insinto etc/mmc/pulse2/scheduler
|
||
|
doins -r conf/scheduler/*.ini
|
||
|
# insinto etc/pulse2/plugins
|
||
|
# doins -r conf/plugins/*.ini
|
||
|
insinto usr/share/doc/${P}
|
||
|
doins -r contrib
|
||
|
dodoc Changelog
|
||
|
|
||
|
newinitd "${FILESDIR}"/pulse2-scheduler.initd pulse2-scheduler
|
||
|
}
|
||
|
|
||
|
src_test() {
|
||
|
"${python}" setup.py test || die "tests failed"
|
||
|
}
|
||
|
|