net-firewall/ipt_netflow: 2.5 stabilisation

Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Alarig Le Lay <alarig@swordarmor.fr
This commit is contained in:
Alarig Le Lay 2020-12-03 11:52:56 +01:00
parent a9fec1bb3a
commit 992a3009f0
Signed by: alarig
GPG Key ID: 7AFE62C6DF8BCDEC
1 changed files with 8 additions and 5 deletions

View File

@ -13,7 +13,7 @@ SRC_URI="https://github.com/aabc/ipt-netflow/archive/v${PV}.tar.gz -> ${P}.tar.g
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
KEYWORDS="amd64 x86"
IUSE="debug dot1q natevents snmp"
@ -28,6 +28,7 @@ DEPEND="${RDEPEND}
PATCHES=(
"${FILESDIR}/${PN}-2.0-configure.patch" # bug #455984
"${FILESDIR}/${PN}-2.5-gentoo.patch"
"${FILESDIR}/${P}-vlan_dev_priv.patch"
)
pkg_setup() {
@ -92,15 +93,17 @@ src_configure() {
}
src_compile() {
emake ARCH="$(tc-arch-kernel)" CC="$(tc-getCC)" all
emake ARCH="$(tc-arch-kernel)" CC="$(tc-getCC)" LD="$(tc-getLD)" OBJDUMP="$(tc-getOBJDUMP)" all
}
src_install() {
linux-mod_src_install
exeinto "${IPT_LIB}"
doexe libipt_NETFLOW.so
doexe libip6t_NETFLOW.so
use snmp && emake DESTDIR="${D}" SNMPTGSO="/usr/$(get_libdir)/snmp/dlmod/snmp_NETFLOW.so" sinstall
exeinto "${IPT_LIB}"
doexe libip{,6}t_NETFLOW.so
doheader ipt_NETFLOW.h
dodoc README*
}