blob: 715b71da8f217431e371c82ba75a39d6c9f26929 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-cluster/ipvsadm/ipvsadm-1.24.ebuild,v 1.9 2005/03/08 02:48:14 xmerlin Exp $
inherit check-kernel
DESCRIPTION="ipvsadm is a utility to administer the IP virtual server services offered by the Linux kernel with IP virtual server support."
HOMEPAGE="http://linuxvirtualserver.org"
LICENSE="GPL-2"
DEPEND="virtual/libc
virtual/linux-sources
>=sys-libs/ncurses-5.2"
SRC_URI="http://www.linuxvirtualserver.org/software/kernel-2.5/${P}.tar.gz"
SLOT="0"
KEYWORDS="x86"
IUSE=""
pkg_setup() {
if is_2_4_kernel
then
die "${P} supports only 2.5 and 2.6 kernels, please try ${PN}-1.24 for 2.4 kernels"
fi
}
src_compile() {
check_KV
make || die "error compiling source"
}
src_install() {
into /
dosbin ipvsadm ipvsadm-save ipvsadm-restore || die
doman ipvsadm.8 ipvsadm-save.8 ipvsadm-restore.8 || die
exeinto /etc/init.d
newexe ${FILESDIR}/ipvsadm-init ipvsadm
keepdir /var/lib/ipvsadm
diropts -m 755 -o root -g root
dodir /usr/lib
dodir /usr/include/ipvs
insopts -m 644 -o root -g root
insinto /usr/lib
doins libipvs/libipvs.a || die
insinto /usr/include/ipvs
newins libipvs/libipvs.h ipvs.h || die
einfo "You will need a kernel that has ipvs patches to use LVS."
einfo "This version is specicifically for 2.6 kernels."
}
|