# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=6 inherit linux-mod linux-info eutils MY_P="PF_RING-${PV}" DESCRIPTION="A new type of network socket that improves packet capture speed." HOMEPAGE="http://www.ntop.org/products/pf_ring/" SRC_URI="https://github.com/ntop/PF_RING/archive/${PV}.tar.gz -> ${P}.tar.gz" LICENSE="LGPL-2.1" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="" DEPEND="virtual/linux-sources" RDEPEND=" ${DEPEND} =sys-kernel/pf_ring-kmod-${PV}* " 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" DOCS="ChangeLog README.*" 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 ${DOCS} } pkg_postinst() { einfo "Please see /usr/share/doc/${PF}/README.module_options for configuration options" linux-mod_pkg_postinst }