diff options
author | 2014-01-27 14:05:04 +0000 | |
---|---|---|
committer | 2014-01-27 14:05:04 +0000 | |
commit | 451869cc9a46859e07b75493ec833272af971dc4 (patch) | |
tree | c11ffa440264fcd8153238a0277ae5f8fcce0f60 /net-firewall | |
parent | Add net-firewall/conntrack-tools-1.4.2 with state files located beneath /var/run (diff) | |
download | srcshelton-451869cc9a46859e07b75493ec833272af971dc4.tar.gz srcshelton-451869cc9a46859e07b75493ec833272af971dc4.tar.bz2 srcshelton-451869cc9a46859e07b75493ec833272af971dc4.zip |
Add net-firewall/iptables-nftables-9999
Diffstat (limited to 'net-firewall')
-rw-r--r-- | net-firewall/iptables-nftables/Manifest | 1 | ||||
-rw-r--r-- | net-firewall/iptables-nftables/iptables-nftables-9999.ebuild | 33 |
2 files changed, 34 insertions, 0 deletions
diff --git a/net-firewall/iptables-nftables/Manifest b/net-firewall/iptables-nftables/Manifest new file mode 100644 index 00000000..1facb862 --- /dev/null +++ b/net-firewall/iptables-nftables/Manifest @@ -0,0 +1 @@ +EBUILD iptables-nftables-9999.ebuild 614 SHA256 cff839d10e6d188af1f30b64b899293f483688813b3840e98c7e775850b690c0 SHA512 a02a48d633b2badd32b9f4580e7b5b9603296dcd9ba83bad2a524cc26f5ea80ee2e358dc8ad8626564d7fd7571a4feae63e6847ed06570e4443d1cc22bccefa3 WHIRLPOOL 2e4555528e7bddce826efe21892b993f4d8e0fd9843cab0179f0100e32cf89afbfb2961d230d0a35ebb5cc7f974c8e6e72d2585a8bda675fafd57105ebd298d4 diff --git a/net-firewall/iptables-nftables/iptables-nftables-9999.ebuild b/net-firewall/iptables-nftables/iptables-nftables-9999.ebuild new file mode 100644 index 00000000..f1736e5b --- /dev/null +++ b/net-firewall/iptables-nftables/iptables-nftables-9999.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=4 +inherit autotools git-2 + +DESCRIPTION="Add nftables rules using {ip,ip6}tables syntax" +HOMEPAGE="http://www.netfilter.org/projects/nftables/" +EGIT_REPO_URI="git://git.netfilter.org/${PN}.git" +EGIT_MASTER="master" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="amd64 ~arm ~ppc ~ppc64 x86" +#IUSE="" + +#RDEPEND="" +#DEPEND="${RDEPEND}" +DEPEND="net-libs/libpcap" + +src_prepare() { + eautoreconf +} + +src_configure() { + econf --enable-libipq --enable-bpf-compiler +} + +src_install() { + default + + prune_libtool_files --all +} |