2016-09-29 11:40:55 +02:00
|
|
|
# Copyright 1999-2016 Gentoo Foundation
|
2014-11-01 11:33:56 +01:00
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
2015-08-21 16:02:53 +02:00
|
|
|
# $Id$
|
2014-11-01 11:33:56 +01:00
|
|
|
|
2016-09-29 11:40:55 +02:00
|
|
|
EAPI=6
|
2014-11-01 11:33:56 +01:00
|
|
|
|
|
|
|
inherit autotools git-r3 linux-info
|
|
|
|
|
|
|
|
DESCRIPTION="Netlink API to the in-kernel nf_tables subsystem"
|
|
|
|
HOMEPAGE="http://netfilter.org/projects/nftables/"
|
2016-09-29 11:40:55 +02:00
|
|
|
EGIT_REPO_URI="git://git.netfilter.org/${PN}"
|
2014-11-01 11:33:56 +01:00
|
|
|
|
|
|
|
LICENSE="GPL-2"
|
2016-09-29 11:40:55 +02:00
|
|
|
SLOT="0/4"
|
2014-11-02 02:01:38 +01:00
|
|
|
KEYWORDS=""
|
2017-01-13 03:16:58 +01:00
|
|
|
IUSE="examples json static-libs test threads"
|
2014-11-01 11:33:56 +01:00
|
|
|
|
2016-09-29 11:40:55 +02:00
|
|
|
RDEPEND=">=net-libs/libmnl-1.0.0
|
2017-01-13 03:16:58 +01:00
|
|
|
json? ( >=dev-libs/jansson-2.3 )"
|
2014-11-01 11:33:56 +01:00
|
|
|
DEPEND="virtual/pkgconfig
|
2017-01-13 03:16:58 +01:00
|
|
|
${RDEPEND}"
|
2016-09-29 11:40:55 +02:00
|
|
|
|
|
|
|
REQUIRED_USE="test? ( json )"
|
2014-11-01 11:33:56 +01:00
|
|
|
|
|
|
|
pkg_setup() {
|
|
|
|
if kernel_is ge 3 13; then
|
|
|
|
CONFIG_CHECK="~NF_TABLES"
|
|
|
|
linux-info_pkg_setup
|
|
|
|
else
|
|
|
|
eerror "This package requires kernel version 3.13 or newer to work properly."
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
src_prepare() {
|
2016-09-29 11:40:55 +02:00
|
|
|
default
|
2014-11-01 11:33:56 +01:00
|
|
|
eautoreconf
|
|
|
|
}
|
|
|
|
|
|
|
|
src_configure() {
|
|
|
|
econf \
|
|
|
|
$(use_enable static-libs static) \
|
|
|
|
$(use_with json json-parsing)
|
|
|
|
}
|
|
|
|
|
2017-01-13 03:16:58 +01:00
|
|
|
src_test() {
|
|
|
|
default
|
|
|
|
cd tests || die
|
|
|
|
./test-script.sh || die
|
|
|
|
}
|
|
|
|
|
2014-11-01 11:33:56 +01:00
|
|
|
src_install() {
|
|
|
|
default
|
|
|
|
gen_usr_ldscript -a nftnl
|
2017-01-13 03:16:58 +01:00
|
|
|
find "${D}" -name '*.la' -delete || die "Could not rm libtool files"
|
2014-11-01 11:33:56 +01:00
|
|
|
|
|
|
|
if use examples; then
|
2017-01-13 03:16:58 +01:00
|
|
|
find examples/ -name 'Makefile*' -delete || die "Could not rm examples"
|
|
|
|
dodoc -r examples
|
2014-11-01 11:33:56 +01:00
|
|
|
docompress -x /usr/share/doc/${PF}/examples
|
|
|
|
fi
|
|
|
|
}
|