You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/app-admin/bcfg2/bcfg2-1.2.0.ebuild

58 lines
1.3 KiB

# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/bcfg2/bcfg2-1.2.0.ebuild,v 1.2 2012/04/14 09:48:37 xmw Exp $
EAPI="3"
PYTHON_DEPEND="2:2.6"
SUPPORT_PYTHON_ABIS="1"
# ssl module required.
RESTRICT_PYTHON_ABIS="2.4 2.5 3.*"
inherit distutils
DESCRIPTION="configuration management tool"
HOMEPAGE="http://bcfg2.org"
SRC_URI="ftp://ftp.mcs.anl.gov/pub/bcfg/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux ~x64-solaris"
IUSE="server"
DEPEND=""
RDEPEND="app-portage/gentoolkit
server? (
dev-python/lxml
dev-libs/libgamin[python] )"
PYTHON_MODNAME="Bcfg2"
distutils_src_install_post_hook() {
if ! use server; then
rm -f "$(distutils_get_intermediate_installation_image)${EPREFIX}/usr/sbin/bcfg2-"*
fi
}
src_install() {
distutils_src_install --record=PY_SERVER_LIBS --install-scripts "${EPREFIX}/usr/sbin"
if ! use server; then
rm -rf "${ED}usr/share/bcfg2"
rm -rf "${ED}usr/share/man/man8"
else
newinitd "${FILESDIR}/${PN}-server-${PV}.rc" bcfg2-server
fi
insinto /etc
doins examples/bcfg2.conf || die
}
pkg_postinst () {
distutils_pkg_postinst
if use server; then
einfo "If this is a new installation, you probably need to run:"
einfo " bcfg2-admin init"
fi
}