blob: 8b3ec803ef16d3cfb0832df24580637ff808d68d (
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-cluster/vzctl/vzctl-3.0.18-r1.ebuild,v 1.2 2007/12/24 10:29:12 pva Exp $
inherit bash-completion eutils
DESCRIPTION="OpenVZ VE control utility"
HOMEPAGE="http://openvz.org/"
SRC_URI="http://download.openvz.org/utils/${PN}/${PV}/src/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~ia64 ~ppc64 ~sparc x86"
IUSE="bash-completion logrotate"
RDEPEND="logrotate? ( app-admin/logrotate )
net-firewall/iptables
sys-apps/ed
sys-apps/iproute2
sys-fs/vzquota
virtual/cron"
DEPEND="${RDEPEND}"
src_compile() {
econf --localstatedir=/var \
--enable-cron \
--enable-udev \
$(use_enable bash-completion bashcomp) \
$(use_enable logrotate) || die "econf failed!"
emake || die "emake failed!"
}
src_install() {
make DESTDIR="${D}" install install-gentoo || die "make install failed"
# install the bash-completion script into the right location
rm -rf "${D}"/etc/bash_completion.d
dobashcompletion "${S}"/etc/bash_completion.d/vzctl.sh vzctl
# We need to keep some dirs
keepdir /etc/vz
keepdir /etc/vz/conf
keepdir /etc/vz/names
keepdir /vz
keepdir /vz/dump
keepdir /vz/lock
keepdir /vz/template
keepdir /vz/template/cache
keepdir /var/lib/vzctl
keepdir /var/lib/vzctl/veip
}
pkg_postinst() {
bash-completion_pkg_postinst
if has_version "<3.0.10"; then
ewarn
ewarn "The location of some vzctl files have changed. Most notably,"
ewarn "VE configuration files and samples directory has changed from"
ewarn "/etc/vz to /etc/vz/conf. In order to be able to work with"
ewarn "your VEs, please do the following:"
ewarn
ewarn "bash# mv /etc/vz/[0-9]*.conf /etc/vz/conf/"
ewarn
fi
}
|