pentoo-overlay/sys-kernel/pf_ring-kmod/pf_ring-kmod-20140110.ebuild
2014-01-10 08:41:32 +00:00

47 lines
1.2 KiB
Bash

# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=5
inherit linux-mod linux-info subversion
MY_P="PF_RING-${PV}"
DESCRIPTION="A new type of network socket that improves packet capture speed."
HOMEPAGE="http://www.ntop.org/PF_RING.html"
ESVN_REPO_URI="https://svn.ntop.org/svn/ntop/trunk/PF_RING/"
ESVN_REVISION="7161"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
S="${WORKDIR}/${MY_P}"
MODULE_NAMES="pf_ring(net/pf_ring:${S}/kernel:${S}/kernel)"
CONFIG_CHECK="NET"
ERROR_NET="PF_RING-${PV} requires CONFIG_NET=y set in the kernel."
BUILD_TARGETS="modules"
pkg_setup() {
linux-mod_pkg_setup
BUILD_PARAMS="-C ${KV_DIR} SUBDIRS=${S}/kernel EXTRA_CFLAGS='-I${S}/kernel'"
}
src_install() {
linux-mod_src_install
insinto /usr/include/linux
doins kernel/linux/pf_ring.h || die
insinto /etc/modprobe.d
doins "${FILESDIR}"/pf_ring.conf || die
sed -i -e 's:DOCDIR:/usr/share/doc/'${PF}'/README.module_options:g' \
"${D}etc/modprobe.d/pf_ring.conf" || die
dodoc "${FILESDIR}"/README.module_options
}
pkg_postinst() {
einfo "Please see /usr/share/doc/${PF}/README.module_options for configuration options"
linux-mod_pkg_postinst
}