summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Sterrett <msterret@gentoo.org>2003-08-21 22:32:09 +0000
committerMichael Sterrett <msterret@gentoo.org>2003-08-21 22:32:09 +0000
commit2a6fba903b1dc6de62eea3787734d331c0e887d9 (patch)
tree448d2f8abb44491c3d97a9ec978087edc747eef5 /net-analyzer/fwlogwatch
parentAdd metadata. (diff)
downloadgentoo-2-2a6fba903b1dc6de62eea3787734d331c0e887d9.tar.gz
gentoo-2-2a6fba903b1dc6de62eea3787734d331c0e887d9.tar.bz2
gentoo-2-2a6fba903b1dc6de62eea3787734d331c0e887d9.zip
sed in src_unpack; add error messages
Diffstat (limited to 'net-analyzer/fwlogwatch')
-rw-r--r--net-analyzer/fwlogwatch/ChangeLog5
-rw-r--r--net-analyzer/fwlogwatch/Manifest6
-rw-r--r--net-analyzer/fwlogwatch/fwlogwatch-0.9.3.ebuild25
3 files changed, 25 insertions, 11 deletions
diff --git a/net-analyzer/fwlogwatch/ChangeLog b/net-analyzer/fwlogwatch/ChangeLog
index b8e17fdbca0c..953186d713f8 100644
--- a/net-analyzer/fwlogwatch/ChangeLog
+++ b/net-analyzer/fwlogwatch/ChangeLog
@@ -1,6 +1,9 @@
# 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.5 2003/07/06 20:07:55 blkdeath Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/fwlogwatch/ChangeLog,v 1.6 2003/08/21 22:32:04 msterret Exp $
+
+ 21 Aug 2003; Michael Sterrett <msterret@gentoo.org> fwlogwatch-0.9.3.ebuild:
+ sed in src_unpack; add error messages
06 Jul 2003; Stewart Honsberger <blkdeath@gentoo.org>
fwlogwatch-0.9.3.ebuild:
diff --git a/net-analyzer/fwlogwatch/Manifest b/net-analyzer/fwlogwatch/Manifest
index f67a809cc855..df2e78ce4667 100644
--- a/net-analyzer/fwlogwatch/Manifest
+++ b/net-analyzer/fwlogwatch/Manifest
@@ -1,5 +1,5 @@
-MD5 f2404796e1de66444ffc80d1eefd9b87 ChangeLog 913
+MD5 cd870b0fe2b51950cbe1fe2e5cb7d089 ChangeLog 1033
+MD5 629e5241cdf4a8bf11a8e828dbc0d72f fwlogwatch-0.9.3.ebuild 1112
MD5 ee899713c43a24804c97022c6c980f87 fwlogwatch-0.9.2.ebuild 948
-MD5 4d39b0e7eb0a83b8a4e4d60b34263221 fwlogwatch-0.9.3.ebuild 952
-MD5 eb2d303a0740438e209fee7e65724267 files/digest-fwlogwatch-0.9.2 67
MD5 d6bcf04d65c71ea5420636851372769a files/digest-fwlogwatch-0.9.3 67
+MD5 eb2d303a0740438e209fee7e65724267 files/digest-fwlogwatch-0.9.2 67
diff --git a/net-analyzer/fwlogwatch/fwlogwatch-0.9.3.ebuild b/net-analyzer/fwlogwatch/fwlogwatch-0.9.3.ebuild
index 72bd942d80fa..5d0047e5dafb 100644
--- a/net-analyzer/fwlogwatch/fwlogwatch-0.9.3.ebuild
+++ b/net-analyzer/fwlogwatch/fwlogwatch-0.9.3.ebuild
@@ -1,19 +1,30 @@
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/fwlogwatch/fwlogwatch-0.9.3.ebuild,v 1.2 2003/07/06 20:07:55 blkdeath Exp $
+# Copyright 1999-2003 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/fwlogwatch/fwlogwatch-0.9.3.ebuild,v 1.3 2003/08/21 22:32:04 msterret 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"
+
+KEYWORDS="x86 ~sparc"
LICENSE="GPL-1"
SLOT="0"
-KEYWORDS="x86 ~sparc"
IUSE=""
-DEPEND=""
+
+DEPEND=">=sys-apps/sed-4"
RDEPEND=""
+src_unpack() {
+ unpack ${A}
+ cd ${S}
+
+ sed -i \
+ -e "s/^CFLAGS = /CFLAGS = ${CFLAGS} /g" Makefile || \
+ die "sed Makefile failed"
+}
+
src_compile() {
- sed -e "s/^CFLAGS = /CFLAGS = ${CFLAGS} /g" Makefile > ${T}/Makefile.fwlogwatch
- mv -f ${T}/Makefile.fwlogwatch Makefile
- emake || die
+ emake || die "emake failed"
}
src_install() {
@@ -27,7 +38,7 @@ src_install() {
doins contrib/fwlogwatch.php
doins contrib
insinto /etc
- doins fwlogwatch.config fwlogwatch.template
+ doins fwlogwatch.config fwlogwatch.template
dodoc AUTHORS ChangeLog CREDITS COPYING README
doman fwlogwatch.8
}