Gentoo Archives: gentoo-commits

From: "Jeroen Roovers (jer)" <jer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-analyzer/fwlogwatch: ChangeLog fwlogwatch-1.1-r1.ebuild
Date: Fri, 28 Aug 2009 20:15:58
Message-Id: E1Mg4dX-0001Do-4k@stork.gentoo.org
1 jer 09/08/25 22:37:07
2
3 Modified: ChangeLog
4 Added: fwlogwatch-1.1-r1.ebuild
5 Log:
6 Use CFLAGS from environment (bug #240852). Use LDFLAGS and CC too. Do not strip. Use a patch instead of sed.
7 (Portage version: 2.2_rc40/cvs/Linux i686)
8
9 Revision Changes Path
10 1.20 net-analyzer/fwlogwatch/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/fwlogwatch/ChangeLog?rev=1.20&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/fwlogwatch/ChangeLog?rev=1.20&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/fwlogwatch/ChangeLog?r1=1.19&r2=1.20
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-analyzer/fwlogwatch/ChangeLog,v
19 retrieving revision 1.19
20 retrieving revision 1.20
21 diff -u -r1.19 -r1.20
22 --- ChangeLog 2 Jan 2009 21:30:36 -0000 1.19
23 +++ ChangeLog 25 Aug 2009 22:37:06 -0000 1.20
24 @@ -1,6 +1,13 @@
25 # ChangeLog for net-analyzer/fwlogwatch
26 -# Copyright 2000-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/fwlogwatch/ChangeLog,v 1.19 2009/01/02 21:30:36 bluebird Exp $
28 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/fwlogwatch/ChangeLog,v 1.20 2009/08/25 22:37:06 jer Exp $
30 +
31 +*fwlogwatch-1.1-r1 (25 Aug 2009)
32 +
33 + 25 Aug 2009; Jeroen Roovers <jer@g.o> +fwlogwatch-1.1-r1.ebuild,
34 + +files/fwlogwatch-1.1-make.patch:
35 + Use CFLAGS from environment (bug #240852). Use LDFLAGS and CC too. Do not
36 + strip. Use a patch instead of sed.
37
38 02 Jan 2009; Friedrich Oslage <bluebird@g.o> fwlogwatch-1.1.ebuild:
39 Stable on sparc, bug #253290
40
41
42
43 1.1 net-analyzer/fwlogwatch/fwlogwatch-1.1-r1.ebuild
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/fwlogwatch/fwlogwatch-1.1-r1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/fwlogwatch/fwlogwatch-1.1-r1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: fwlogwatch-1.1-r1.ebuild
49 ===================================================================
50 # Copyright 1999-2009 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/net-analyzer/fwlogwatch/fwlogwatch-1.1-r1.ebuild,v 1.1 2009/08/25 22:37:06 jer Exp $
53
54 EAPI="2"
55
56 inherit toolchain-funcs eutils
57
58 DESCRIPTION="A packet filter and firewall log analyzer"
59 HOMEPAGE="http://fwlogwatch.inside-security.de/"
60 SRC_URI="http://www.kybs.de/boris/sw/${P}.tar.bz2"
61
62 KEYWORDS="~amd64 ~ppc ~sparc ~x86"
63 LICENSE="GPL-1"
64 SLOT="0"
65 IUSE=""
66
67 src_prepare() {
68 epatch "${FILESDIR}/${P}-make.patch"
69 }
70
71 src_compile() {
72 tc-export CC
73 emake || die "emake failed"
74 }
75
76 src_install() {
77 dosbin fwlogwatch
78 dosbin contrib/fwlw_notify
79 dosbin contrib/fwlw_respond
80 dodir /usr/share/fwlogwatch/contrib
81 insinto /usr/share/fwlogwatch/contrib
82
83 doins contrib/fwlogsummary.cgi
84 doins contrib/fwlogsummary_small.cgi
85 doins contrib/fwlogwatch.php
86 doins contrib
87 insinto /etc
88
89 doins fwlogwatch.config fwlogwatch.template
90
91 dodoc AUTHORS ChangeLog CREDITS README
92 doman fwlogwatch.8
93 }