public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in net-analyzer/fwlogwatch: ChangeLog fwlogwatch-1.4.ebuild
@ 2013-06-03 20:15 Jeroen Roovers (jer)
  0 siblings, 0 replies; 4+ messages in thread
From: Jeroen Roovers (jer) @ 2013-06-03 20:15 UTC (permalink / raw
  To: gentoo-commits

jer         13/06/03 20:15:56

  Modified:             ChangeLog
  Added:                fwlogwatch-1.4.ebuild
  Log:
  Version bump. Add LINGUAS support.
  
  (Portage version: 2.2.0_alpha177/cvs/Linux x86_64, signed Manifest commit with key A792A613)

Revision  Changes    Path
1.25                 net-analyzer/fwlogwatch/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/fwlogwatch/ChangeLog?rev=1.25&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/fwlogwatch/ChangeLog?rev=1.25&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/fwlogwatch/ChangeLog?r1=1.24&r2=1.25

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/fwlogwatch/ChangeLog,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -r1.24 -r1.25
--- ChangeLog	16 Dec 2011 16:47:04 -0000	1.24
+++ ChangeLog	3 Jun 2013 20:15:56 -0000	1.25
@@ -1,6 +1,11 @@
 # ChangeLog for net-analyzer/fwlogwatch
-# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/fwlogwatch/ChangeLog,v 1.24 2011/12/16 16:47:04 jer Exp $
+# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/fwlogwatch/ChangeLog,v 1.25 2013/06/03 20:15:56 jer Exp $
+
+*fwlogwatch-1.4 (03 Jun 2013)
+
+  03 Jun 2013; Jeroen Roovers <jer@gentoo.org> +fwlogwatch-1.4.ebuild:
+  Version bump. Add LINGUAS support.
 
 *fwlogwatch-1.3 (16 Dec 2011)
 



1.1                  net-analyzer/fwlogwatch/fwlogwatch-1.4.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/fwlogwatch/fwlogwatch-1.4.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/fwlogwatch/fwlogwatch-1.4.ebuild?rev=1.1&content-type=text/plain

Index: fwlogwatch-1.4.ebuild
===================================================================
# 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.4.ebuild,v 1.1 2013/06/03 20:15:56 jer Exp $

EAPI=5

inherit eutils flag-o-matic 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
	nls? ( sys-devel/gettext )
"

src_prepare() {
	if use nls; then
		strip-linguas -i po/
		local lingua pofile
		for pofile in po/*.po; do
			lingua=${pofile/po\/}
			lingua=${lingua/.po}
			if ! has ${lingua} ${LINGUAS}; then
				sed -i \
					-e "/${lingua}.[mp]o/d" \
					Makefile po/Makefile || die
			fi
		done
	fi

	sed -i \
		-e '/^INSTALL_/s|$| -D|g' \
		-e 's|make|$(MAKE)|g ' \
		Makefile || die
}

src_configure() {
	if use adns; then
		sed -i Makefile -e '/^LIBS/ s|#-ladns |-ladns #|g' || die
		append-cflags -DHAVE_ADNS
	fi
	if ! use zlib; then
		sed -i Makefile -e '/^LIBS/ s|-lz||g' || die
	else
		append-cflags -DHAVE_ZLIB
	fi

	use nls && append-cflags -DHAVE_GETTEXT
}

src_compile() {
	emake \
		CC=$(tc-getCC) \
		CFLAGS="${CFLAGS}" \
		LDFLAGS="${LDFLAGS}"
	use nls && emake -C po
}

src_install() {
	emake \
		LOCALE_DIR="${D}/usr" INSTALL_DIR="${D}/usr" \
		install
	use nls && emake \
		LOCALE_DIR="${D}/usr" INSTALL_DIR="${D}/usr" \
		install-i18n

	dosbin contrib/fwlw_notify
	dosbin contrib/fwlw_respond

	dodoc AUTHORS ChangeLog CREDITS README

	insinto /usr/share/fwlogwatch/contrib

	doins contrib/fwlogsummary.cgi
	doins contrib/fwlogsummary_small.cgi
	doins contrib/fwlogwatch.php

	insinto /etc
	doins fwlogwatch.config
}





^ permalink raw reply	[flat|nested] 4+ messages in thread

* [gentoo-commits] gentoo-x86 commit in net-analyzer/fwlogwatch: ChangeLog fwlogwatch-1.4.ebuild
@ 2014-06-20 13:52 Jeroen Roovers (jer)
  0 siblings, 0 replies; 4+ messages in thread
From: Jeroen Roovers (jer) @ 2014-06-20 13:52 UTC (permalink / raw
  To: gentoo-commits

jer         14/06/20 13:52:38

  Modified:             ChangeLog fwlogwatch-1.4.ebuild
  Log:
  Remove support for net-libs/adns (bug #513992).
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key A792A613)

Revision  Changes    Path
1.29                 net-analyzer/fwlogwatch/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/fwlogwatch/ChangeLog?rev=1.29&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/fwlogwatch/ChangeLog?rev=1.29&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/fwlogwatch/ChangeLog?r1=1.28&r2=1.29

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/fwlogwatch/ChangeLog,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -r1.28 -r1.29
--- ChangeLog	29 Jun 2013 16:22:20 -0000	1.28
+++ ChangeLog	20 Jun 2014 13:52:38 -0000	1.29
@@ -1,6 +1,9 @@
 # ChangeLog for net-analyzer/fwlogwatch
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/fwlogwatch/ChangeLog,v 1.28 2013/06/29 16:22:20 ago Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/fwlogwatch/ChangeLog,v 1.29 2014/06/20 13:52:38 jer Exp $
+
+  20 Jun 2014; Jeroen Roovers <jer@gentoo.org> fwlogwatch-1.4.ebuild:
+  Remove support for net-libs/adns (bug #513992).
 
   29 Jun 2013; Agostino Sarubbo <ago@gentoo.org> fwlogwatch-1.3.ebuild:
   Stable for sparc, wrt bug #472216



1.2                  net-analyzer/fwlogwatch/fwlogwatch-1.4.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/fwlogwatch/fwlogwatch-1.4.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/fwlogwatch/fwlogwatch-1.4.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/fwlogwatch/fwlogwatch-1.4.ebuild?r1=1.1&r2=1.2

Index: fwlogwatch-1.4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/fwlogwatch/fwlogwatch-1.4.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- fwlogwatch-1.4.ebuild	3 Jun 2013 20:15:56 -0000	1.1
+++ fwlogwatch-1.4.ebuild	20 Jun 2014 13:52:38 -0000	1.2
@@ -1,6 +1,6 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/fwlogwatch/fwlogwatch-1.4.ebuild,v 1.1 2013/06/03 20:15:56 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/fwlogwatch/fwlogwatch-1.4.ebuild,v 1.2 2014/06/20 13:52:38 jer Exp $
 
 EAPI=5
 
@@ -13,10 +13,9 @@
 KEYWORDS="~amd64 ~ppc ~sparc ~x86"
 LICENSE="GPL-1"
 SLOT="0"
-IUSE="adns nls zlib"
+IUSE="nls zlib"
 
 RDEPEND="
-	adns? ( net-libs/adns )
 	zlib? ( sys-libs/zlib )
 "
 DEPEND="
@@ -47,10 +46,6 @@
 }
 
 src_configure() {
-	if use adns; then
-		sed -i Makefile -e '/^LIBS/ s|#-ladns |-ladns #|g' || die
-		append-cflags -DHAVE_ADNS
-	fi
 	if ! use zlib; then
 		sed -i Makefile -e '/^LIBS/ s|-lz||g' || die
 	else





^ permalink raw reply	[flat|nested] 4+ messages in thread

* [gentoo-commits] gentoo-x86 commit in net-analyzer/fwlogwatch: ChangeLog fwlogwatch-1.4.ebuild
@ 2014-07-27 11:44 PaweA Hajdan (phajdan.jr)
  0 siblings, 0 replies; 4+ messages in thread
From: PaweA Hajdan (phajdan.jr) @ 2014-07-27 11:44 UTC (permalink / raw
  To: gentoo-commits

phajdan.jr    14/07/27 11:44:32

  Modified:             ChangeLog fwlogwatch-1.4.ebuild
  Log:
  x86 stable wrt bug #513992
  
  (Portage version: 2.2.8-r1/cvs/Linux i686, RepoMan options: --ignore-arches, signed Manifest commit with key 0x4F1A2555EA71991D!)

Revision  Changes    Path
1.32                 net-analyzer/fwlogwatch/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/fwlogwatch/ChangeLog?rev=1.32&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/fwlogwatch/ChangeLog?rev=1.32&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/fwlogwatch/ChangeLog?r1=1.31&r2=1.32

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/fwlogwatch/ChangeLog,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -r1.31 -r1.32
--- ChangeLog	12 Jul 2014 13:17:27 -0000	1.31
+++ ChangeLog	27 Jul 2014 11:44:32 -0000	1.32
@@ -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.31 2014/07/12 13:17:27 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/fwlogwatch/ChangeLog,v 1.32 2014/07/27 11:44:32 phajdan.jr Exp $
+
+  26 Jul 2014; Pawel Hajdan jr <phajdan.jr@gentoo.org> fwlogwatch-1.4.ebuild:
+  x86 stable wrt bug #513992
 
   12 Jul 2014; Jeroen Roovers <jer@gentoo.org>
   -files/fwlogwatch-1.1-make.patch, -files/fwlogwatch-1.2-overflow.patch:



1.3                  net-analyzer/fwlogwatch/fwlogwatch-1.4.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/fwlogwatch/fwlogwatch-1.4.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/fwlogwatch/fwlogwatch-1.4.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/fwlogwatch/fwlogwatch-1.4.ebuild?r1=1.2&r2=1.3

Index: fwlogwatch-1.4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/fwlogwatch/fwlogwatch-1.4.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- fwlogwatch-1.4.ebuild	20 Jun 2014 13:52:38 -0000	1.2
+++ fwlogwatch-1.4.ebuild	27 Jul 2014 11:44:32 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/fwlogwatch/fwlogwatch-1.4.ebuild,v 1.2 2014/06/20 13:52:38 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/fwlogwatch/fwlogwatch-1.4.ebuild,v 1.3 2014/07/27 11:44:32 phajdan.jr Exp $
 
 EAPI=5
 
@@ -10,7 +10,7 @@
 HOMEPAGE="http://fwlogwatch.inside-security.de/"
 SRC_URI="${HOMEPAGE}sw/${P}.tar.bz2"
 
-KEYWORDS="~amd64 ~ppc ~sparc ~x86"
+KEYWORDS="~amd64 ~ppc ~sparc x86"
 LICENSE="GPL-1"
 SLOT="0"
 IUSE="nls zlib"





^ permalink raw reply	[flat|nested] 4+ messages in thread

* [gentoo-commits] gentoo-x86 commit in net-analyzer/fwlogwatch: ChangeLog fwlogwatch-1.4.ebuild
@ 2014-08-30 12:04 JosA MarAa Alonso (nimiux)
  0 siblings, 0 replies; 4+ messages in thread
From: JosA MarAa Alonso (nimiux) @ 2014-08-30 12:04 UTC (permalink / raw
  To: gentoo-commits

nimiux      14/08/30 12:04:23

  Modified:             ChangeLog fwlogwatch-1.4.ebuild
  Log:
  Stable for amd64 wrt bug #513992
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key D628E536)

Revision  Changes    Path
1.34                 net-analyzer/fwlogwatch/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/fwlogwatch/ChangeLog?rev=1.34&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/fwlogwatch/ChangeLog?rev=1.34&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/fwlogwatch/ChangeLog?r1=1.33&r2=1.34

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/fwlogwatch/ChangeLog,v
retrieving revision 1.33
retrieving revision 1.34
diff -u -r1.33 -r1.34
--- ChangeLog	15 Aug 2014 15:55:43 -0000	1.33
+++ ChangeLog	30 Aug 2014 12:04:23 -0000	1.34
@@ -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.33 2014/08/15 15:55:43 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/fwlogwatch/ChangeLog,v 1.34 2014/08/30 12:04:23 nimiux Exp $
+
+  30 Aug 2014; Chema Alonso <nimiux@gentoo.org> fwlogwatch-1.4.ebuild:
+  Stable for amd64 wrt bug #513992
 
   15 Aug 2014; Jeroen Roovers <jer@gentoo.org> metadata.xml:
   Remove short <longdescription>.



1.4                  net-analyzer/fwlogwatch/fwlogwatch-1.4.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/fwlogwatch/fwlogwatch-1.4.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/fwlogwatch/fwlogwatch-1.4.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/fwlogwatch/fwlogwatch-1.4.ebuild?r1=1.3&r2=1.4

Index: fwlogwatch-1.4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-analyzer/fwlogwatch/fwlogwatch-1.4.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- fwlogwatch-1.4.ebuild	27 Jul 2014 11:44:32 -0000	1.3
+++ fwlogwatch-1.4.ebuild	30 Aug 2014 12:04:23 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/fwlogwatch/fwlogwatch-1.4.ebuild,v 1.3 2014/07/27 11:44:32 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/fwlogwatch/fwlogwatch-1.4.ebuild,v 1.4 2014/08/30 12:04:23 nimiux Exp $
 
 EAPI=5
 
@@ -10,7 +10,7 @@
 HOMEPAGE="http://fwlogwatch.inside-security.de/"
 SRC_URI="${HOMEPAGE}sw/${P}.tar.bz2"
 
-KEYWORDS="~amd64 ~ppc ~sparc x86"
+KEYWORDS="amd64 ~ppc ~sparc x86"
 LICENSE="GPL-1"
 SLOT="0"
 IUSE="nls zlib"





^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2014-08-30 12:04 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-08-30 12:04 [gentoo-commits] gentoo-x86 commit in net-analyzer/fwlogwatch: ChangeLog fwlogwatch-1.4.ebuild JosA MarAa Alonso (nimiux)
  -- strict thread matches above, loose matches on Subject: below --
2014-07-27 11:44 PaweA Hajdan (phajdan.jr)
2014-06-20 13:52 Jeroen Roovers (jer)
2013-06-03 20:15 Jeroen Roovers (jer)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox