mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-01-06 02:17:34 -08:00
Result of running the command: grep --include="*.ebuild" -r . -e 'KEYWORDS=.*[" ]sparc' -l | xargs ekeyword ~sparc Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
77 lines
1.6 KiB
Bash
77 lines
1.6 KiB
Bash
# Copyright 1999-2025 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 ~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."
|
|
}
|