diff options
author | Francisco Blas (klondike) Izquierdo Riera <klondike@gentoo.org> | 2019-06-30 01:08:30 +0200 |
---|---|---|
committer | Matthew Thode <prometheanfire@gentoo.org> | 2019-06-29 20:56:59 -0500 |
commit | 3c4624aec145476efcb4ee04eab239d7dc45710a (patch) | |
tree | 12113101d86428cfefbd58888b5b9ad0289e72f0 /net-firewall | |
parent | media-gfx/graphicsmagick: drop unnecessary corefonts dep for tests (diff) | |
download | gentoo-3c4624aec145476efcb4ee04eab239d7dc45710a.tar.gz gentoo-3c4624aec145476efcb4ee04eab239d7dc45710a.tar.bz2 gentoo-3c4624aec145476efcb4ee04eab239d7dc45710a.zip |
net-firewall/nftables: add doc and xtables USE flags
This commit adds some fixes on the 0.9.1 package:
* Adds the doc USE flag to control building of the man pages
* Adds the app-text/asciidoc when building the man pages
* Adds the xtables USE flag for better compatibility with iptables-compat
* Adds the net-firewall/iptables dependency when using the xtables flag
I have chosen +doc, xtables for better compatibility with prior versions.
Also whilst man pages generally make sense, the xtables USE isn't needed
on pure nftables setups which are the recommended approach.
Closes: https://bugs.gentoo.org/688952
Signed-off-by: Francisco Blas Izquierdo Riera (klondike) <klondike@gentoo.org>
Package-Manager: Portage-2.3.66, Repoman-2.3.11
Signed-off-by: Matthew Thode <prometheanfire@gentoo.org>
Diffstat (limited to 'net-firewall')
-rw-r--r-- | net-firewall/nftables/metadata.xml | 2 | ||||
-rw-r--r-- | net-firewall/nftables/nftables-0.9.1.ebuild | 9 |
2 files changed, 9 insertions, 2 deletions
diff --git a/net-firewall/nftables/metadata.xml b/net-firewall/nftables/metadata.xml index dcc71d66d6f8..0984d13e0f03 100644 --- a/net-firewall/nftables/metadata.xml +++ b/net-firewall/nftables/metadata.xml @@ -14,7 +14,9 @@ <name>Francisco Blas Izquierdo Riera</name> </maintainer> <use> + <flag name="doc">Create man pages for the package (requires <pkg>app-text/asciidoc</pkg>)</flag> <flag name="json">Enable JSON support via <pkg>dev-libs/jansson</pkg></flag> <flag name="modern_kernel">Install init scripts for 3.18 or higher kernels with atomic rule updates</flag> + <flag name="xtables">Add libxtables support to try to automatically translate rules added by iptables-compat</flag> </use> </pkgmetadata> diff --git a/net-firewall/nftables/nftables-0.9.1.ebuild b/net-firewall/nftables/nftables-0.9.1.ebuild index addd91fa7a8b..db6f707d58c6 100644 --- a/net-firewall/nftables/nftables-0.9.1.ebuild +++ b/net-firewall/nftables/nftables-0.9.1.ebuild @@ -15,7 +15,7 @@ SRC_URI="https://netfilter.org/projects/nftables/files/${P}.tar.bz2" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~x86" -IUSE="debug +gmp json +modern_kernel python +readline static-libs" +IUSE="debug +doc +gmp json +modern_kernel python +readline static-libs xtables" RDEPEND=" >=net-libs/libmnl-1.0.3:0= @@ -23,11 +23,14 @@ RDEPEND=" json? ( dev-libs/jansson ) python? ( ${PYTHON_DEPS} ) readline? ( sys-libs/readline:0= ) - >=net-libs/libnftnl-1.1.3:0=" + >=net-libs/libnftnl-1.1.3:0= + xtables? ( >=net-firewall/iptables-1.6.1 ) +" DEPEND="${RDEPEND}" BDEPEND=" + doc? ( app-text/asciidoc ) >=app-text/docbook2X-0.8.8-r4 sys-devel/bison sys-devel/flex @@ -82,10 +85,12 @@ src_configure() { --disable-python --sbindir="${EPREFIX}"/sbin $(use_enable debug) + $(use_enable doc man-doc) $(use_with !gmp mini_gmp) $(use_with json) $(use_with readline cli) $(use_enable static-libs static) + $(use_with xtables) ) econf "${myeconfargs[@]}" } |