summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeroen Roovers <jer@gentoo.org>2014-12-01 11:18:29 +0000
committerJeroen Roovers <jer@gentoo.org>2014-12-01 11:18:29 +0000
commit8533ba0b66037cea3af6816147379eb350c9df6b (patch)
tree1576d2355578689b78502472d0833cf2a4d7f7ea /net-analyzer
parentversion bump (diff)
downloadgentoo-2-8533ba0b66037cea3af6816147379eb350c9df6b.tar.gz
gentoo-2-8533ba0b66037cea3af6816147379eb350c9df6b.tar.bz2
gentoo-2-8533ba0b66037cea3af6816147379eb350c9df6b.zip
Old.
(Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key A792A613)
Diffstat (limited to 'net-analyzer')
-rw-r--r--net-analyzer/fwlogwatch/ChangeLog5
-rw-r--r--net-analyzer/fwlogwatch/fwlogwatch-1.3.ebuild64
2 files changed, 4 insertions, 65 deletions
diff --git a/net-analyzer/fwlogwatch/ChangeLog b/net-analyzer/fwlogwatch/ChangeLog
index 20619ac8646f..37e45bbc84c2 100644
--- a/net-analyzer/fwlogwatch/ChangeLog
+++ b/net-analyzer/fwlogwatch/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for net-analyzer/fwlogwatch
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/fwlogwatch/ChangeLog,v 1.35 2014/12/01 09:37:43 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/fwlogwatch/ChangeLog,v 1.36 2014/12/01 11:18:29 jer Exp $
+
+ 01 Dec 2014; Jeroen Roovers <jer@gentoo.org> -fwlogwatch-1.3.ebuild:
+ Old.
01 Dec 2014; Agostino Sarubbo <ago@gentoo.org> fwlogwatch-1.4.ebuild:
Stable for sparc, wrt bug #513992
diff --git a/net-analyzer/fwlogwatch/fwlogwatch-1.3.ebuild b/net-analyzer/fwlogwatch/fwlogwatch-1.3.ebuild
deleted file mode 100644
index 5ae9f599fb20..000000000000
--- a/net-analyzer/fwlogwatch/fwlogwatch-1.3.ebuild
+++ /dev/null
@@ -1,64 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/fwlogwatch/fwlogwatch-1.3.ebuild,v 1.4 2013/06/29 16:22:20 ago Exp $
-
-EAPI="4"
-
-inherit eutils toolchain-funcs
-
-DESCRIPTION="A packet filter and firewall log analyzer"
-HOMEPAGE="http://fwlogwatch.inside-security.de/"
-SRC_URI="${HOMEPAGE}sw/${P}.tar.bz2"
-
-KEYWORDS="amd64 ~ppc sparc x86"
-LICENSE="GPL-1"
-SLOT="0"
-IUSE="adns nls zlib"
-
-RDEPEND="
- adns? ( net-libs/adns )
- zlib? ( sys-libs/zlib )
-"
-DEPEND="
- ${RDEPEND}
- sys-devel/flex
-"
-
-src_configure() {
- if use adns; then
- sed -i Makefile -e '/^LIBS/ s|#-ladns |-ladns #|g' || die
- fi
- if ! use zlib; then
- sed -i Makefile -e '/^LIBS/ s|-lz||g' || die
- fi
-}
-
-src_compile() {
- local myconf=$(
- use adns && echo -n "-DHAVE_ADNS "
- use nls && echo -n "-DHAVE_GETTEXT "
- use zlib && echo -n "-DHAVE_ZLIB "
- )
- emake \
- CC=$(tc-getCC) \
- CFLAGS="${CFLAGS} ${myconf}" \
- LDFLAGS="${LDFLAGS}"
-}
-
-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
-
- insinto /etc
- doins fwlogwatch.config
-
- dodoc AUTHORS ChangeLog CREDITS README
- doman fwlogwatch.8
-}