diff options
author | Bruce A. Locke <blocke@gentoo.org> | 2002-04-22 05:15:24 +0000 |
---|---|---|
committer | Bruce A. Locke <blocke@gentoo.org> | 2002-04-22 05:15:24 +0000 |
commit | 0e0d9c185b91db8b326a7fda763d0d906d096c3a (patch) | |
tree | 47f375541a46b006263572747255526536f68f45 /net-analyzer/iptstate | |
parent | now depends on correct version of autoconf (so it should build for everyone) (diff) | |
download | gentoo-2-0e0d9c185b91db8b326a7fda763d0d906d096c3a.tar.gz gentoo-2-0e0d9c185b91db8b326a7fda763d0d906d096c3a.tar.bz2 gentoo-2-0e0d9c185b91db8b326a7fda763d0d906d096c3a.zip |
update to 1.2.0
Diffstat (limited to 'net-analyzer/iptstate')
-rw-r--r-- | net-analyzer/iptstate/ChangeLog | 8 | ||||
-rw-r--r-- | net-analyzer/iptstate/files/digest-iptstate-1.2.0 | 1 | ||||
-rw-r--r-- | net-analyzer/iptstate/iptstate-1.2.0.ebuild | 25 |
3 files changed, 33 insertions, 1 deletions
diff --git a/net-analyzer/iptstate/ChangeLog b/net-analyzer/iptstate/ChangeLog index 62c582962148..df33a8e5fcaa 100644 --- a/net-analyzer/iptstate/ChangeLog +++ b/net-analyzer/iptstate/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for net-analyzer/iptstate # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/iptstate/ChangeLog,v 1.1 2002/03/02 06:05:20 blocke Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/iptstate/ChangeLog,v 1.2 2002/04/22 05:15:24 blocke Exp $ + +*iptstate-1.2.0 (22 Apr 2002) + + 22 Apr 2002; Bruce A. Locke <blocke@shivan.org> iptstate-1.2.0.ebuild : + + Update to 1.2.0 *iptstate-1.0.1 (2 Mar 2002) diff --git a/net-analyzer/iptstate/files/digest-iptstate-1.2.0 b/net-analyzer/iptstate/files/digest-iptstate-1.2.0 new file mode 100644 index 000000000000..63682be7d4ec --- /dev/null +++ b/net-analyzer/iptstate/files/digest-iptstate-1.2.0 @@ -0,0 +1 @@ +MD5 d79155225c2299e50223e5062841d90e iptstate-1.2.0.tar.gz 62431 diff --git a/net-analyzer/iptstate/iptstate-1.2.0.ebuild b/net-analyzer/iptstate/iptstate-1.2.0.ebuild new file mode 100644 index 000000000000..2817713bf779 --- /dev/null +++ b/net-analyzer/iptstate/iptstate-1.2.0.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Bruce A. Locke <blocke@shivan.org> +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/iptstate/iptstate-1.2.0.ebuild,v 1.1 2002/04/22 05:15:24 blocke Exp $ + +S=${WORKDIR}/${P} +DESCRIPTION="IP Tables State displays states being kept by iptables in a top-like format" +SRC_URI="http://home.earthlink.net/~jaymzh666/iptstate/iptstate-${PV}.tar.gz" +HOMEPAGE="http://home.earthlink.net/~jaymzh666/iptstate/" + +DEPEND="virtual/glibc sys-libs/ncurses" + +src_compile() { + + make CXXFLAGS="${CXXFLAGS} -g -Wall" all + +} + +src_install() { + + make PREFIX=${D}/usr install + dodoc README Changelog BUGS CONTRIB LICENSE WISHLIST + +} + |