commit:     b86927a6cece78844f9612ef55f874d2ac00edf5
Author:     Marco Scardovi <marco <AT> scardovi <DOT> com>
AuthorDate: Tue Dec 14 22:10:33 2021 +0000
Commit:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Sat Jan  1 10:48:03 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b86927a6

sys-cluster/ipvsadm: bump to EAPI 8 and drop epatch

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Marco Scardovi <marco <AT> scardovi.com>
Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>

 sys-cluster/ipvsadm/ipvsadm-1.31-r1.ebuild | 76 ++++++++++++++++++++++++++++++
 1 file changed, 76 insertions(+)

diff --git a/sys-cluster/ipvsadm/ipvsadm-1.31-r1.ebuild 
b/sys-cluster/ipvsadm/ipvsadm-1.31-r1.ebuild
new file mode 100644
index 000000000000..22b2dc5d4897
--- /dev/null
+++ b/sys-cluster/ipvsadm/ipvsadm-1.31-r1.ebuild
@@ -0,0 +1,76 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit 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
+"
+
+BDEPEND="
+       ${RDEPEND}
+       virtual/pkgconfig
+"
+
+PATCHES=( "${FILESDIR}/${PN}"-1.27-buildsystem.patch )
+
+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() {
+       default
+       use static-libs && export STATIC=1
+}
+
+src_compile() {
+       local libnl_include
+       if has_version ">=dev-libs/libnl-3.0"; then
+               libnl_include=$($(tc-getPKG_CONFIG) --cflags libnl-3.0)
+       else
+               libnl_include=""
+       fi
+       emake -e \
+               INCLUDE="-I.. -I. ${libnl_include}" \
+               CC="$(tc-getCC)" \
+               HAVE_NL=1 \
+               STATIC="${STATIC}" \
+               POPT_LIB="$($(tc-getPKG_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."
+}

Reply via email to