diff options
author | 2013-11-02 06:40:02 +0000 | |
---|---|---|
committer | 2013-11-02 06:40:02 +0000 | |
commit | bc385efdd617bf9d4000bab63566ea6315aa0577 (patch) | |
tree | 3d15139f238329071450a85789869159fb5c5f92 /sys-cluster/ipvsadm/ipvsadm-1.27.ebuild | |
parent | The Debian patchset has a great tool (checkarray) to run a regular check of a... (diff) | |
download | gentoo-2-bc385efdd617bf9d4000bab63566ea6315aa0577.tar.gz gentoo-2-bc385efdd617bf9d4000bab63566ea6315aa0577.tar.bz2 gentoo-2-bc385efdd617bf9d4000bab63566ea6315aa0577.zip |
New release. Upstream has moved to kernel.org; update the build system fixes to apply.
(Portage version: 2.2.7/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'sys-cluster/ipvsadm/ipvsadm-1.27.ebuild')
-rw-r--r-- | sys-cluster/ipvsadm/ipvsadm-1.27.ebuild | 67 |
1 files changed, 67 insertions, 0 deletions
diff --git a/sys-cluster/ipvsadm/ipvsadm-1.27.ebuild b/sys-cluster/ipvsadm/ipvsadm-1.27.ebuild new file mode 100644 index 000000000000..e4a024aacfee --- /dev/null +++ b/sys-cluster/ipvsadm/ipvsadm-1.27.ebuild @@ -0,0 +1,67 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-cluster/ipvsadm/ipvsadm-1.27.ebuild,v 1.1 2013/11/02 06:40:02 robbat2 Exp $ + +EAPI=4 + +inherit eutils linux-info toolchain-funcs + +DESCRIPTION="utility to administer the IP virtual server services" +HOMEPAGE="http://linuxvirtualserver.org/" +SRC_URI="https://kernel.org/pub/linux/utils/kernel/ipvsadm/ipvsadm-${PV}.tar.xz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86" +IUSE="static-libs" + +RDEPEND=">=sys-libs/ncurses-5.2 + dev-libs/libnl + >=dev-libs/popt-1.16" +DEPEND="${RDEPEND} + virtual/pkgconfig" + +pkg_pretend() { + if kernel_is 2 4; then + eerror "${P} supports only 2.6 series and later kernels, please try ${PN}-1.21 for 2.4 kernels" + die "wrong kernel version" + fi +} + +src_prepare() { + epatch "${FILESDIR}"/${PN}-1.27-buildsystem.patch + # Merged upstream in 1.27 + #epatch "${FILESDIR}"/${PN}-1.26-stack_smashing.patch # bug 371903 + + use static-libs && export STATIC=1 +} + +src_compile() { + emake -e \ + INCLUDE="-I.. -I." \ + CC="$(tc-getCC)" \ + HAVE_NL=1 \ + STATIC=${STATIC} \ + POPT_LIB="$(pkg-config --libs popt)" +} + +src_install() { + into / + dosbin ipvsadm ipvsadm-save ipvsadm-restore + + into /usr + doman ipvsadm.8 ipvsadm-save.8 ipvsadm-restore.8 + + newinitd "${FILESDIR}"/ipvsadm-init ipvsadm + keepdir /var/lib/ipvsadm + + use static-libs && dolib.a libipvs/libipvs.a + dolib.so libipvs/libipvs.so + + insinto /usr/include/ipvs + newins libipvs/libipvs.h ipvs.h +} + +pkg_postinst() { + einfo "You will need a kernel that has ipvs patches to use LVS." +} |