Files
guru/sys-kernel/rte_kni-kmod/rte_kni-kmod-21.11.ebuild
Aisha Tammy 58492a40c1 sys-kernel/rte_kni-kmod: restrict tests
closes: https://bugs.gentoo.org/830144
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Aisha Tammy <gentoo@aisha.cc>
2021-12-28 18:10:00 +00:00

77 lines
1.8 KiB
Bash

# Copyright 2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
PYTHON_COMPAT=( python3_{8..10} )
inherit linux-mod python-single-r1 meson
DESCRIPTION="DPDK Kernel Nic Interface module"
HOMEPAGE="https://dpdk.org/"
SRC_URI="https://fast.dpdk.org/rel/dpdk-${PV}.tar.xz"
S="${WORKDIR}/dpdk-${PV}"
LICENSE="BSD GPL-2"
SLOT="0"
KEYWORDS="~amd64"
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
# tests need root
RESTRICT="test"
DEPEND="${PYTHON_DEPS}
$(python_gen_cond_dep '
dev-python/pyelftools[${PYTHON_USEDEP}]
')
app-crypt/intel-ipsec-mb
dev-libs/elfutils
dev-libs/isa-l
dev-libs/jansson
dev-libs/libbpf
dev-libs/libbsd
dev-libs/openssl
net-libs/libmnl
net-libs/libpcap
sys-apps/dtc
sys-cluster/rdma-core
sys-process/numactl
"
BDEPEND="
${PYTHON_DEPS}
"
CONFIG_CHECK="~IOMMU_SUPPORT ~AMD_IOMMU ~VFIO ~VFIO_PCI ~UIO ~UIO_PDRV_GENIRQ ~UIO_DMEM_GENIRQ ~HPET_MMAP"
pkg_setup() {
linux-mod_pkg_setup
python-single-r1_pkg_setup
}
src_configure() {
linux-mod_pkg_setup
python-single-r1_pkg_setup
# we still have to do meson configuration as it creates
# header files needed for compiling the rte_kni module
local emesonargs=(
-Denable_kmods=false
-Dmachine=default
-Dplatform=generic
)
meson_src_configure
# export after meson_src_configure as BUILD_DIR is needed for module compilation
export MODULE_NAMES="rte_kni(extra/dpdk:${S}/kernel/linux/kni)"
export BUILD_PARAMS="-C \"${KERNEL_DIR}\" M=\"${S}\"/kernel/linux/kni \
src=\"${S}\"/kernel/linux/kni \
MODULE_CFLAGS=\"${HAVE_ARG_TX_QUEUE} -include ${S}/config/rte_config.h -I${S}/lib/eal/include \
-I${S}/lib/kni -I${S}/kernel/linux/kni -I${BUILD_DIR} -I${S}\""
export BUILD_TARGETS="modules"
}
src_compile() {
linux-mod_src_compile
}
src_install() {
linux-mod_src_install
}