summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrad Laue <brad@gentoo.org>2003-06-12 03:06:16 +0000
committerBrad Laue <brad@gentoo.org>2003-06-12 03:06:16 +0000
commit09adf405ffe409409704f92f38207d1b2df03db3 (patch)
tree240e27f4f2e603631f6e86838280e684214001ef /net-analyzer/fwlogwatch
parentInitial import of fwlogwatch (diff)
downloadgentoo-2-09adf405ffe409409704f92f38207d1b2df03db3.tar.gz
gentoo-2-09adf405ffe409409704f92f38207d1b2df03db3.tar.bz2
gentoo-2-09adf405ffe409409704f92f38207d1b2df03db3.zip
Initial import of fwlogwatch
Diffstat (limited to 'net-analyzer/fwlogwatch')
-rw-r--r--net-analyzer/fwlogwatch/ChangeLog12
-rw-r--r--net-analyzer/fwlogwatch/Manifest3
-rw-r--r--net-analyzer/fwlogwatch/files/digest-fwlogwatch-0.921
-rw-r--r--net-analyzer/fwlogwatch/fwlogwatch-0.92.ebuild33
4 files changed, 48 insertions, 1 deletions
diff --git a/net-analyzer/fwlogwatch/ChangeLog b/net-analyzer/fwlogwatch/ChangeLog
new file mode 100644
index 000000000000..c3c6c4c75954
--- /dev/null
+++ b/net-analyzer/fwlogwatch/ChangeLog
@@ -0,0 +1,12 @@
+# ChangeLog for net-analyzer/fwlogwatch
+# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/fwlogwatch/ChangeLog,v 1.1 2003/06/12 03:06:09 brad Exp $
+
+*fwlogwatch-0.92 (11 Jun 2003)
+
+ 11 Jun 2003; Brad Laue <brad@gentoo.org> fwlogwatch-0.92.ebuild:
+ Initial import of fwlogwatch, a firewall log analysis tool.
+
+ Submitted by: Jan Henrik Gundelsby <jhg@henrik.cc>, revised by Stewart
+ Honsberger <bugsubmit@snerk.org>.
+
diff --git a/net-analyzer/fwlogwatch/Manifest b/net-analyzer/fwlogwatch/Manifest
index 427a0f8c5fdd..af212bd7fd27 100644
--- a/net-analyzer/fwlogwatch/Manifest
+++ b/net-analyzer/fwlogwatch/Manifest
@@ -1,2 +1,3 @@
-MD5 8adbb76b1db440b7437894066f1708f2 fwlogwatch-0.92.ebuild 832
+MD5 a45378185bc094b894b31a42225dd232 ChangeLog 500
+MD5 8423504a1d6165417f941e134a0c025a fwlogwatch-0.92.ebuild 948
MD5 514cb90a87fcdbe523292b401251faa4 files/digest-fwlogwatch-0.92 65
diff --git a/net-analyzer/fwlogwatch/files/digest-fwlogwatch-0.92 b/net-analyzer/fwlogwatch/files/digest-fwlogwatch-0.92
new file mode 100644
index 000000000000..714e56d8a0dd
--- /dev/null
+++ b/net-analyzer/fwlogwatch/files/digest-fwlogwatch-0.92
@@ -0,0 +1 @@
+MD5 89aaa9c65f2329df238fe4382a9300eb fwlogwatch-0.92.tar.gz 1488
diff --git a/net-analyzer/fwlogwatch/fwlogwatch-0.92.ebuild b/net-analyzer/fwlogwatch/fwlogwatch-0.92.ebuild
new file mode 100644
index 000000000000..a232e066e225
--- /dev/null
+++ b/net-analyzer/fwlogwatch/fwlogwatch-0.92.ebuild
@@ -0,0 +1,33 @@
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/fwlogwatch/fwlogwatch-0.92.ebuild,v 1.1 2003/06/12 03:06:09 brad Exp $
+
+DESCRIPTION="A packet filter and firewall log analyzer"
+HOMEPAGE="http://cert.uni-stuttgart.de/projects/fwlogwatch/"
+SRC_URI="http://www.kyb.uni-stuttgart.de/boris/sw/${P}.tar.gz"
+LICENSE="GPL-1"
+KEYWORDS="~x86 ~sparc"
+SLOT="0"
+IUSE=""
+DEPEND=""
+RDEPEND=""
+
+src_compile() {
+ sed -e "s/^CFLAGS = /CFLAGS = ${CFLAGS} /g" Makefile > ${T}/Makefile.fwlogwatch
+ mv -f ${T}/Makefile.fwlogwatch Makefile
+ emake || die
+}
+
+src_install() {
+ dosbin fwlogwatch
+ dosbin contrib/fwlw_notify
+ dosbin contrib/fwlw_respond
+ dodir /usr/share/fwlogwatch/contrib
+ insinto /usr/share/fwlogwatch/contrib
+ doins contrib/fwlogsummary.cgi
+ doins contrib/fwlogsummary_small.cgi
+ doins contrib/fwlogwatch.php
+ doins contrib
+ insinto /etc
+ doins fwlogwatch.config fwlogwatch.template
+ dodoc AUTHORS ChangeLog CREDITS COPYING README
+ doman fwlogwatch.8
+}