2008-07-31 15:16:28 +02:00
|
|
|
# Copyright 1999-2008 Gentoo Foundation
|
2008-06-14 13:55:08 +02:00
|
|
|
# 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/mds/sources/${PV}/${P}.tar.gz"
|
|
|
|
|
|
|
|
LICENSE="GPL-2"
|
|
|
|
KEYWORDS="~amd64 ~ppc64 ~x86"
|
|
|
|
IUSE=""
|
|
|
|
|
|
|
|
SLOT="0"
|
|
|
|
|
|
|
|
DEPEND=">=dev-python/setuptools-0.6_rc1
|
|
|
|
>=dev-python/twisted-web-0.7.0
|
|
|
|
>=dev-python/python-ldap-2.2.1"
|
|
|
|
|
|
|
|
src_unpack() {
|
2008-07-31 15:16:28 +02:00
|
|
|
unpack ${A}
|
|
|
|
epatch "${FILESDIR}"/${P}-kerberos-1.patch
|
2008-06-14 13:55:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
# from marienz's setuptools.eclass:
|
|
|
|
src_install() {
|
2008-07-31 15:16:28 +02:00
|
|
|
"${python}" setup.py install --root="${D}" --no-compile "$@" || die "install failed"
|
2008-06-14 13:55:08 +02:00
|
|
|
dosbin bin/*
|
|
|
|
insinto etc/mmc/agent/keys
|
|
|
|
doins -r conf/agent/keys/*
|
|
|
|
insinto etc/mmc/agent
|
|
|
|
doins -r conf/agent/*.ini
|
|
|
|
insinto etc/mmc/plugins
|
|
|
|
doins -r conf/plugins/*.ini
|
|
|
|
|
2008-07-31 15:16:28 +02:00
|
|
|
newinitd "${FILESDIR}"/mmc-agent.initd mmc-agent
|
2008-06-14 13:55:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
src_test() {
|
|
|
|
"${python}" setup.py test || die "tests failed"
|
|
|
|
}
|
|
|
|
|
|
|
|
pkg_postinst() {
|
|
|
|
elog "To disable some plugin in your mmc environments, you have to set"
|
|
|
|
elog "disable to 1 in /etc/mmc/plugins/*.ini"
|
|
|
|
elog "(one config file per service)"
|
|
|
|
elog "You can't disable the base plugin."
|
|
|
|
}
|