mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-05-05 02:50:26 +02:00
47 lines
1 KiB
Bash
47 lines
1 KiB
Bash
# Copyright 1999-2021 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
inherit linux-mod linux-info
|
|
|
|
DESCRIPTION="High-speed packet processing framework (kernel modules for)"
|
|
HOMEPAGE="http://www.ntop.org/products/packet-capture/pf_ring/"
|
|
HASH_COMMIT="52df3a378c908682c290844344ae3b89904f8e01"
|
|
SRC_URI="https://github.com/ntop/PF_RING/archive/${HASH_COMMIT}.tar.gz -> PF_RING-${PV}.tar.gz"
|
|
|
|
LICENSE="LGPL-2.1"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
IUSE=""
|
|
|
|
DEPEND="virtual/linux-sources"
|
|
RDEPEND="${DEPEND}"
|
|
|
|
S="${WORKDIR}/PF_RING-${HASH_COMMIT}/kernel"
|
|
|
|
MODULE_NAMES="pf_ring(net/pf_ring:${S}:${S})"
|
|
CONFIG_CHECK="NET"
|
|
ERROR_NET="PF_RING requires CONFIG_NET=y set in the kernel."
|
|
BUILD_TARGETS="modules"
|
|
|
|
pkg_setup() {
|
|
linux-mod_pkg_setup
|
|
BUILD_PARAMS="-C ${KV_DIR} M=${S}"
|
|
}
|
|
|
|
src_prepare() {
|
|
#https://github.com/ntop/PF_RING/issues/709
|
|
eapply -p2 "${FILESDIR}/710.patch"
|
|
eapply_user
|
|
}
|
|
|
|
src_install() {
|
|
linux-mod_src_install
|
|
insinto /usr/include/linux
|
|
doins linux/pf_ring.h || die
|
|
}
|
|
|
|
pkg_postinst() {
|
|
linux-mod_pkg_postinst
|
|
}
|