diff options
author | Marcelo Góes <vanquirius@gentoo.org> | 2007-06-02 00:40:45 +0000 |
---|---|---|
committer | Marcelo Góes <vanquirius@gentoo.org> | 2007-06-02 00:40:45 +0000 |
commit | 1ba1ee2bf0ae5311c4a5e6f66c5a4733bf4469e2 (patch) | |
tree | 00a838188ff5fdba3f1a1c5ea1568982e0eab717 /net-analyzer | |
parent | Fixed #171636, #179672. (diff) | |
download | gentoo-2-1ba1ee2bf0ae5311c4a5e6f66c5a4733bf4469e2.tar.gz gentoo-2-1ba1ee2bf0ae5311c4a5e6f66c5a4733bf4469e2.tar.bz2 gentoo-2-1ba1ee2bf0ae5311c4a5e6f66c5a4733bf4469e2.zip |
2.2.1 version bump for bug 175564. Works in recent kernels. Thanks to Peter Gantner (a.k.a. nephros) <gentoo at nephros dot org>. Dropping all keywords but x86 because of net-libs/libnetfilter_conntrack dependency.
(Portage version: 2.1.2.2)
Diffstat (limited to 'net-analyzer')
-rw-r--r-- | net-analyzer/iptstate/ChangeLog | 9 | ||||
-rw-r--r-- | net-analyzer/iptstate/files/digest-iptstate-2.2.1 | 3 | ||||
-rw-r--r-- | net-analyzer/iptstate/iptstate-2.2.1.ebuild | 24 |
3 files changed, 35 insertions, 1 deletions
diff --git a/net-analyzer/iptstate/ChangeLog b/net-analyzer/iptstate/ChangeLog index 827f0be5e5dc..5807602b6266 100644 --- a/net-analyzer/iptstate/ChangeLog +++ b/net-analyzer/iptstate/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for net-analyzer/iptstate # Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/iptstate/ChangeLog,v 1.21 2007/03/22 14:28:13 gustavoz Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/iptstate/ChangeLog,v 1.22 2007/06/02 00:40:45 vanquirius Exp $ + +*iptstate-2.2.1 (02 Jun 2007) + + 02 Jun 2007; Marcelo Goes <vanquirius@gentoo.org> +iptstate-2.2.1.ebuild: + 2.2.1 version bump for bug 175564. Works in recent kernels. Thanks to Peter + Gantner (a.k.a. nephros) <gentoo at nephros dot org>. Dropping all keywords + but x86 because of net-libs/libnetfilter_conntrack dependency. 22 Mar 2007; Gustavo Zacarias <gustavoz@gentoo.org> iptstate-2.1.ebuild: Stable on sparc diff --git a/net-analyzer/iptstate/files/digest-iptstate-2.2.1 b/net-analyzer/iptstate/files/digest-iptstate-2.2.1 new file mode 100644 index 000000000000..3aee9fa91248 --- /dev/null +++ b/net-analyzer/iptstate/files/digest-iptstate-2.2.1 @@ -0,0 +1,3 @@ +MD5 6b08f09b9917f644629efea1febec4b3 iptstate-2.2.1.tar.bz2 28143 +RMD160 ac0d3dc69809247cbbfda2221c7ca75b26fc544a iptstate-2.2.1.tar.bz2 28143 +SHA256 004f8358f4f84d90a260a76ac46ce8512126ac490d73460fcee6c11effd34362 iptstate-2.2.1.tar.bz2 28143 diff --git a/net-analyzer/iptstate/iptstate-2.2.1.ebuild b/net-analyzer/iptstate/iptstate-2.2.1.ebuild new file mode 100644 index 000000000000..2478413fff7f --- /dev/null +++ b/net-analyzer/iptstate/iptstate-2.2.1.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/iptstate/iptstate-2.2.1.ebuild,v 1.1 2007/06/02 00:40:45 vanquirius Exp $ + +DESCRIPTION="IP Tables State displays states being kept by iptables in a top-like format" +SRC_URI="http://www.phildev.net/iptstate/${P}.tar.bz2" +HOMEPAGE="http://www.phildev.net/iptstate/" + +DEPEND="sys-libs/ncurses + >=net-libs/libnetfilter_conntrack-0.0.50" + +SLOT="0" +LICENSE="as-is" +KEYWORDS="~x86" +IUSE="" + +src_compile() { + make CXXFLAGS="${CXXFLAGS} -g -Wall" all || die +} + +src_install() { + make PREFIX="${D}"/usr install || die + dodoc README Changelog BUGS CONTRIB LICENSE WISHLIST +} |