net-analyzer/iptstate: Version bump.
authorJeroen Roovers <jer@gentoo.org>
Thu, 2 Feb 2017 07:08:30 +0000 (08:08 +0100)
committerJeroen Roovers <jer@gentoo.org>
Thu, 2 Feb 2017 07:10:11 +0000 (08:10 +0100)
Package-Manager: Portage-2.3.3, Repoman-2.3.1

net-analyzer/iptstate/Manifest
net-analyzer/iptstate/iptstate-2.2.6.ebuild [new file with mode: 0644]

index 03d719f156569606f9adb50403f00b7883643ebc..1d8e0f64d59979153da38294735ce256c7005274 100644 (file)
@@ -1 +1,2 @@
 DIST iptstate-2.2.5.tar.bz2 28270 SHA256 4e4d881b701fc4599a252021d6ef579eb17aea711fbc07f95df61465b38e1055 SHA512 044bbcf96225cc52b82428792d685d19f964520f7f20a9d3fa7e53430c1f552c0f09338a5d347b08e2500206cd7634a6b4a3acffbfd9e59e4657afb6df461795 WHIRLPOOL 193623aeb5a082fa51613c22e01b22d7d8db83099061961ace7e753bd06e16cdc4b001f73d1b5d20e8eafeb3a1412744a95c10d3fab672c2644408ec125369d9
+DIST iptstate-2.2.6.tar.bz2 28700 SHA256 bef8eb67a4533e53079f397b71e91dd34da23f8cbd65cb2d5b67cb907b00c068 SHA512 411b357aced384c52caac17b23f3c6bd631ff34d41b6000b90ff6dfc3cf20e36e46416d3691ac699b06f16d6042a42681b42a5d3594ce287aa6cf3b3b637c999 WHIRLPOOL 59abc09fd5e493e1530eb72c11b48bcce659598fb40c979da46514c5679ab124d24ebce961b9825b22ba52443108e5718ad859140ead18448ec2d0af61baa4a3
diff --git a/net-analyzer/iptstate/iptstate-2.2.6.ebuild b/net-analyzer/iptstate/iptstate-2.2.6.ebuild
new file mode 100644 (file)
index 0000000..5c73f26
--- /dev/null
@@ -0,0 +1,36 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+inherit toolchain-funcs
+
+DESCRIPTION="IP Tables State displays states being kept by iptables in a top-like format"
+HOMEPAGE="http://www.phildev.net/iptstate/ https://github.com/jaymzh/iptstate"
+SRC_URI="https://github.com/jaymzh/${PN}/releases/download/v${PV}/${P}.tar.bz2"
+
+LICENSE="ZLIB"
+SLOT="0"
+KEYWORDS="~amd64 ~hppa ~ppc ~x86"
+
+RDEPEND="
+       >=sys-libs/ncurses-5.7-r7:0=
+       >=net-libs/libnetfilter_conntrack-0.0.50
+"
+DEPEND="
+       ${RDEPEND}
+       virtual/pkgconfig
+"
+PATCHES=(
+       "${FILESDIR}"/${PN}-2.2.5-gentoo.patch
+)
+
+src_prepare() {
+       default
+       tc-export CXX PKG_CONFIG
+}
+
+src_install() {
+       emake PREFIX="${D}"/usr install
+       dodoc BUGS Changelog CONTRIB README.md WISHLIST
+}