Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-analyzer/iptstate: ChangeLog iptstate-2.2.5.ebuild
Date: Sun, 03 Jun 2012 08:41:51
Message-Id: 20120603084138.4FC002004B@flycatcher.gentoo.org
1 ssuominen 12/06/03 08:41:38
2
3 Modified: ChangeLog
4 Added: iptstate-2.2.5.ebuild
5 Log:
6 Version bump. Use correct license (ZLIB instead of as-is). Stop forcing -g and -O2 in CXXFLAGS.
7
8 (Portage version: 2.2.0_alpha108/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.38 net-analyzer/iptstate/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/iptstate/ChangeLog?rev=1.38&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/iptstate/ChangeLog?rev=1.38&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/iptstate/ChangeLog?r1=1.37&r2=1.38
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-analyzer/iptstate/ChangeLog,v
20 retrieving revision 1.37
21 retrieving revision 1.38
22 diff -u -r1.37 -r1.38
23 --- ChangeLog 5 Feb 2012 18:25:50 -0000 1.37
24 +++ ChangeLog 3 Jun 2012 08:41:38 -0000 1.38
25 @@ -1,6 +1,12 @@
26 # ChangeLog for net-analyzer/iptstate
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/iptstate/ChangeLog,v 1.37 2012/02/05 18:25:50 armin76 Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/iptstate/ChangeLog,v 1.38 2012/06/03 08:41:38 ssuominen Exp $
30 +
31 +*iptstate-2.2.5 (03 Jun 2012)
32 +
33 + 03 Jun 2012; Samuli Suominen <ssuominen@g.o> +iptstate-2.2.5.ebuild:
34 + Version bump. Use correct license (ZLIB instead of as-is). Stop forcing -g
35 + and -O2 in CXXFLAGS.
36
37 05 Feb 2012; Raúl Porcel <armin76@g.o> iptstate-2.2.1.ebuild,
38 iptstate-2.2.2.ebuild, iptstate-2.2.3.ebuild:
39
40
41
42 1.1 net-analyzer/iptstate/iptstate-2.2.5.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/iptstate/iptstate-2.2.5.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/iptstate/iptstate-2.2.5.ebuild?rev=1.1&content-type=text/plain
46
47 Index: iptstate-2.2.5.ebuild
48 ===================================================================
49 # Copyright 1999-2012 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/net-analyzer/iptstate/iptstate-2.2.5.ebuild,v 1.1 2012/06/03 08:41:38 ssuominen Exp $
52
53 EAPI=4
54 inherit toolchain-funcs
55
56 DESCRIPTION="IP Tables State displays states being kept by iptables in a top-like format"
57 HOMEPAGE="http://www.phildev.net/iptstate/"
58 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
59
60 LICENSE="ZLIB"
61 SLOT="0"
62 KEYWORDS="~amd64 ~hppa ~ppc ~x86"
63 IUSE=""
64
65 RDEPEND=">=sys-libs/ncurses-5.7-r7
66 >=net-libs/libnetfilter_conntrack-0.0.50"
67 DEPEND=${RDEPEND}
68
69 src_prepare() {
70 sed -i \
71 -e 's:?= -g -Wall -O2:+= -Wall:' \
72 -e 's:$(CXX):& $(LDFLAGS):' \
73 Makefile || die
74 }
75
76 src_compile() {
77 tc-export CXX
78 emake
79 }
80
81 src_install() {
82 emake PREFIX="${D}"/usr install
83 dodoc BUGS Changelog CONTRIB README WISHLIST
84 }