diff options
author | Christian Zoffoli <xmerlin@gentoo.org> | 2005-03-09 17:58:04 +0000 |
---|---|---|
committer | Christian Zoffoli <xmerlin@gentoo.org> | 2005-03-09 17:58:04 +0000 |
commit | d639f26f58b65fcfc11afb2817674be1b8b37f91 (patch) | |
tree | 0f2354f87195aaa547a689cd43b74f8e9b3122af /sys-cluster | |
parent | removed inherit check-kernel (diff) | |
download | gentoo-2-d639f26f58b65fcfc11afb2817674be1b8b37f91.tar.gz gentoo-2-d639f26f58b65fcfc11afb2817674be1b8b37f91.tar.bz2 gentoo-2-d639f26f58b65fcfc11afb2817674be1b8b37f91.zip |
removed inherit check-kernel
(Portage version: 2.0.51-r15)
Diffstat (limited to 'sys-cluster')
-rw-r--r-- | sys-cluster/ipvsadm/ChangeLog | 6 | ||||
-rw-r--r-- | sys-cluster/ipvsadm/ipvsadm-1.21-r1.ebuild | 9 | ||||
-rw-r--r-- | sys-cluster/ipvsadm/ipvsadm-1.24.ebuild | 9 |
3 files changed, 13 insertions, 11 deletions
diff --git a/sys-cluster/ipvsadm/ChangeLog b/sys-cluster/ipvsadm/ChangeLog index 7f04003d313b..27764e0f8fa7 100644 --- a/sys-cluster/ipvsadm/ChangeLog +++ b/sys-cluster/ipvsadm/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for sys-cluster/ipvsadm # Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-cluster/ipvsadm/ChangeLog,v 1.19 2005/03/08 02:48:14 xmerlin Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-cluster/ipvsadm/ChangeLog,v 1.20 2005/03/09 17:55:52 xmerlin Exp $ + + 09 Mar 2005; Christian Zoffoli <xmerlin@gentoo.org> ipvsadm-1.21-r1.ebuild, + ipvsadm-1.24.ebuild: + removed inherit check-kernel 08 Mar 2005; Christian Zoffoli <xmerlin@gentoo.org> ipvsadm-1.24.ebuild: ipvsadm-1.24 marked stable on x86 diff --git a/sys-cluster/ipvsadm/ipvsadm-1.21-r1.ebuild b/sys-cluster/ipvsadm/ipvsadm-1.21-r1.ebuild index d58d48089c61..79bb108aea9e 100644 --- a/sys-cluster/ipvsadm/ipvsadm-1.21-r1.ebuild +++ b/sys-cluster/ipvsadm/ipvsadm-1.21-r1.ebuild @@ -1,8 +1,8 @@ # 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.21-r1.ebuild,v 1.8 2005/01/21 18:14:37 xmerlin Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-cluster/ipvsadm/ipvsadm-1.21-r1.ebuild,v 1.9 2005/03/09 17:55:52 xmerlin Exp $ -inherit check-kernel +inherit linux-info 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" @@ -18,9 +18,8 @@ KEYWORDS="x86 ~ppc" IUSE="" pkg_setup() { - if is_2_5_kernel || is_2_6_kernel - then - die "${P} does not support 2.5 and 2.6 kernels, please try ${PN}-1.24" + if kernel_is 2 6; then + die "${P} does not support 2.6 kernels, please try ${PN}-1.24" fi } diff --git a/sys-cluster/ipvsadm/ipvsadm-1.24.ebuild b/sys-cluster/ipvsadm/ipvsadm-1.24.ebuild index 715b71da8f21..a6ee4481a65f 100644 --- a/sys-cluster/ipvsadm/ipvsadm-1.24.ebuild +++ b/sys-cluster/ipvsadm/ipvsadm-1.24.ebuild @@ -1,8 +1,8 @@ # 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 $ +# $Header: /var/cvsroot/gentoo-x86/sys-cluster/ipvsadm/ipvsadm-1.24.ebuild,v 1.10 2005/03/09 17:55:52 xmerlin Exp $ -inherit check-kernel +inherit linux-info 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" @@ -18,9 +18,8 @@ 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" + if kernel_is 2 4; then + die "${P} supports only 2.6 kernels, please try ${PN}-1.21 for 2.4 kernels" fi } |