* [gentoo-commits] repo/gentoo:master commit in: net-analyzer/fwlogwatch/
@ 2016-02-24 6:00 Jeroen Roovers
0 siblings, 0 replies; 10+ messages in thread
From: Jeroen Roovers @ 2016-02-24 6:00 UTC (permalink / raw
To: gentoo-commits
commit: fb18f46168250ca341ab2ee95f1c3e0891edebd3
Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
AuthorDate: Wed Feb 24 05:32:35 2016 +0000
Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
CommitDate: Wed Feb 24 05:32:35 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fb18f461
net-analyzer/fwlogwatch: Version bump.
Package-Manager: portage-2.2.27
net-analyzer/fwlogwatch/Manifest | 1 +
net-analyzer/fwlogwatch/fwlogwatch-1.5.ebuild | 87 +++++++++++++++++++++++++++
2 files changed, 88 insertions(+)
diff --git a/net-analyzer/fwlogwatch/Manifest b/net-analyzer/fwlogwatch/Manifest
index a1529b7..2aeebe4 100644
--- a/net-analyzer/fwlogwatch/Manifest
+++ b/net-analyzer/fwlogwatch/Manifest
@@ -1 +1,2 @@
DIST fwlogwatch-1.4.tar.bz2 92652 SHA256 0ca67b2f2a36e4f79ac202018d5440809d50a1cb7203e2a02818f2aade112e9a SHA512 0a67c0ae8b096fdf7a06e279a11b0bc71f2d514790c1669f60606b17a7f3f3ec97dedc2005438ce0ec82efcd66a822b62dbb36603f4b02e010f469fb885b87e6 WHIRLPOOL 7dc01a46be44733cab6f69525f704f4ed86802112bfff284480df4d9151174e6d0bb03a6cc7349a77b7c32b6d312dea582627c0e7b71cad4e36073fda46057f9
+DIST fwlogwatch-1.5.tar.bz2 94451 SHA256 0c8c9465b9d6c653b26492028bb040f60987804dfc53e480cb8cfde62cb72b1d SHA512 d4890596859929ddc6adfd7f9e735e0c414bad40eff6732120a522a8bd4fb8d1442c7d1026f0f3c6ac5c4d51b76a2bac486d04f0fbceae67395c585098afef85 WHIRLPOOL 6dd21c08158c2fd99c13ea46e8cbd9ebd7ec7e0612cf21f6cef07efcbe134aec900bae33ecd74f61fa1ddbc799bfd22d37f5c42927a72f02b8298c7851f2e2b0
diff --git a/net-analyzer/fwlogwatch/fwlogwatch-1.5.ebuild b/net-analyzer/fwlogwatch/fwlogwatch-1.5.ebuild
new file mode 100644
index 0000000..1479b99
--- /dev/null
+++ b/net-analyzer/fwlogwatch/fwlogwatch-1.5.ebuild
@@ -0,0 +1,87 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+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="nls zlib"
+
+RDEPEND="
+ 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 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 related [flat|nested] 10+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-analyzer/fwlogwatch/
@ 2016-02-25 7:51 Jeroen Roovers
0 siblings, 0 replies; 10+ messages in thread
From: Jeroen Roovers @ 2016-02-25 7:51 UTC (permalink / raw
To: gentoo-commits
commit: 937035adee42ec2f5776247db1bf15e61163a263
Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
AuthorDate: Thu Feb 25 07:50:54 2016 +0000
Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
CommitDate: Thu Feb 25 07:51:39 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=937035ad
net-analyzer/fwlogwatch: Add USE=geoip.
Package-Manager: portage-2.2.27
net-analyzer/fwlogwatch/fwlogwatch-1.5.ebuild | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/net-analyzer/fwlogwatch/fwlogwatch-1.5.ebuild b/net-analyzer/fwlogwatch/fwlogwatch-1.5.ebuild
index 1479b99..78665a0 100644
--- a/net-analyzer/fwlogwatch/fwlogwatch-1.5.ebuild
+++ b/net-analyzer/fwlogwatch/fwlogwatch-1.5.ebuild
@@ -13,9 +13,10 @@ SRC_URI="${HOMEPAGE}sw/${P}.tar.bz2"
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
LICENSE="GPL-1"
SLOT="0"
-IUSE="nls zlib"
+IUSE="geoip nls zlib"
RDEPEND="
+ geoip? ( dev-libs/geoip )
zlib? ( sys-libs/zlib )
"
DEPEND="
@@ -52,6 +53,11 @@ src_configure() {
append-cflags -DHAVE_ZLIB
fi
+ if use geoip; then
+ append-cflags -DHAVE_GEOIP
+ sed -i Makefile -e '/^LIBS/ s| #| -lGeoIP #|g' || die
+ fi
+
use nls && append-cflags -DHAVE_GETTEXT
}
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-analyzer/fwlogwatch/
@ 2021-03-15 21:01 Sam James
0 siblings, 0 replies; 10+ messages in thread
From: Sam James @ 2021-03-15 21:01 UTC (permalink / raw
To: gentoo-commits
commit: d3f1239fca123e53cb804d70811e4dbd34380cc1
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Mar 15 20:34:45 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Mar 15 20:58:40 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d3f1239f
net-analyzer/fwlogwatch: port to EAPI 7
Signed-off-by: Sam James <sam <AT> gentoo.org>
net-analyzer/fwlogwatch/fwlogwatch-1.5.ebuild | 15 +++++++++------
1 file changed, 9 insertions(+), 6 deletions(-)
diff --git a/net-analyzer/fwlogwatch/fwlogwatch-1.5.ebuild b/net-analyzer/fwlogwatch/fwlogwatch-1.5.ebuild
index 93b1e6a2a35..bd1e751f1e7 100644
--- a/net-analyzer/fwlogwatch/fwlogwatch-1.5.ebuild
+++ b/net-analyzer/fwlogwatch/fwlogwatch-1.5.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=5
+EAPI=7
-inherit eutils flag-o-matic toolchain-funcs
+inherit flag-o-matic toolchain-funcs
DESCRIPTION="A packet filter and firewall log analyzer"
HOMEPAGE="http://fwlogwatch.inside-security.de/"
@@ -18,13 +18,15 @@ RDEPEND="
geoip? ( dev-libs/geoip )
zlib? ( sys-libs/zlib )
"
-DEPEND="
- ${RDEPEND}
+DEPEND="${RDEPEND}"
+BDEPEND="
sys-devel/flex
nls? ( sys-devel/gettext )
"
src_prepare() {
+ default
+
if use nls; then
strip-linguas -i po/
local lingua pofile
@@ -62,7 +64,7 @@ src_configure() {
src_compile() {
emake \
- CC=$(tc-getCC) \
+ CC="$(tc-getCC)" \
CFLAGS="${CFLAGS}" \
LDFLAGS="${LDFLAGS}"
use nls && emake -C po
@@ -72,6 +74,7 @@ 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
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-analyzer/fwlogwatch/
@ 2021-03-15 21:53 Sam James
0 siblings, 0 replies; 10+ messages in thread
From: Sam James @ 2021-03-15 21:53 UTC (permalink / raw
To: gentoo-commits
commit: 8573964e81d58cc36d64f7119742bac07c110e75
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Mar 15 21:53:08 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Mar 15 21:53:08 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8573964e
net-analyzer/fwlogwatch: Stabilize 1.5 amd64, #776529
Signed-off-by: Sam James <sam <AT> gentoo.org>
net-analyzer/fwlogwatch/fwlogwatch-1.5.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-analyzer/fwlogwatch/fwlogwatch-1.5.ebuild b/net-analyzer/fwlogwatch/fwlogwatch-1.5.ebuild
index bd1e751f1e7..e22a2de6a64 100644
--- a/net-analyzer/fwlogwatch/fwlogwatch-1.5.ebuild
+++ b/net-analyzer/fwlogwatch/fwlogwatch-1.5.ebuild
@@ -9,7 +9,7 @@ DESCRIPTION="A packet filter and firewall log analyzer"
HOMEPAGE="http://fwlogwatch.inside-security.de/"
SRC_URI="http://fwlogwatch.inside-security.de/sw/${P}.tar.bz2"
-KEYWORDS="~amd64 ~ppc ~sparc ~x86"
+KEYWORDS="amd64 ~ppc ~sparc ~x86"
LICENSE="GPL-1"
SLOT="0"
IUSE="geoip nls zlib"
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-analyzer/fwlogwatch/
@ 2021-03-15 21:54 Sam James
0 siblings, 0 replies; 10+ messages in thread
From: Sam James @ 2021-03-15 21:54 UTC (permalink / raw
To: gentoo-commits
commit: 0eec01035cb3650b797926b1695f615988278c6b
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Mar 15 21:54:28 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Mar 15 21:54:28 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0eec0103
net-analyzer/fwlogwatch: Stabilize 1.5 x86, #776529
Signed-off-by: Sam James <sam <AT> gentoo.org>
net-analyzer/fwlogwatch/fwlogwatch-1.5.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-analyzer/fwlogwatch/fwlogwatch-1.5.ebuild b/net-analyzer/fwlogwatch/fwlogwatch-1.5.ebuild
index e22a2de6a64..76955ecc565 100644
--- a/net-analyzer/fwlogwatch/fwlogwatch-1.5.ebuild
+++ b/net-analyzer/fwlogwatch/fwlogwatch-1.5.ebuild
@@ -9,7 +9,7 @@ DESCRIPTION="A packet filter and firewall log analyzer"
HOMEPAGE="http://fwlogwatch.inside-security.de/"
SRC_URI="http://fwlogwatch.inside-security.de/sw/${P}.tar.bz2"
-KEYWORDS="amd64 ~ppc ~sparc ~x86"
+KEYWORDS="amd64 ~ppc ~sparc x86"
LICENSE="GPL-1"
SLOT="0"
IUSE="geoip nls zlib"
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-analyzer/fwlogwatch/
@ 2021-03-17 9:00 Sam James
0 siblings, 0 replies; 10+ messages in thread
From: Sam James @ 2021-03-17 9:00 UTC (permalink / raw
To: gentoo-commits
commit: cd8596e02f5b802136c304167ee51fb631c61ac7
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Mar 17 08:58:03 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Mar 17 08:58:03 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cd8596e0
net-analyzer/fwlogwatch: Stabilize 1.5 sparc, #776529
Signed-off-by: Sam James <sam <AT> gentoo.org>
net-analyzer/fwlogwatch/fwlogwatch-1.5.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-analyzer/fwlogwatch/fwlogwatch-1.5.ebuild b/net-analyzer/fwlogwatch/fwlogwatch-1.5.ebuild
index 76955ecc565..1f4f953ecd5 100644
--- a/net-analyzer/fwlogwatch/fwlogwatch-1.5.ebuild
+++ b/net-analyzer/fwlogwatch/fwlogwatch-1.5.ebuild
@@ -9,7 +9,7 @@ DESCRIPTION="A packet filter and firewall log analyzer"
HOMEPAGE="http://fwlogwatch.inside-security.de/"
SRC_URI="http://fwlogwatch.inside-security.de/sw/${P}.tar.bz2"
-KEYWORDS="amd64 ~ppc ~sparc x86"
+KEYWORDS="amd64 ~ppc sparc x86"
LICENSE="GPL-1"
SLOT="0"
IUSE="geoip nls zlib"
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-analyzer/fwlogwatch/
@ 2021-03-17 9:09 Sam James
0 siblings, 0 replies; 10+ messages in thread
From: Sam James @ 2021-03-17 9:09 UTC (permalink / raw
To: gentoo-commits
commit: 5df17d7cb0e6f99536a266d020c348b80d674b69
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Mar 17 09:03:32 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Mar 17 09:08:41 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5df17d7c
net-analyzer/fwlogwatch: drop 1.4
Bug: https://bugs.gentoo.org/776529
Signed-off-by: Sam James <sam <AT> gentoo.org>
net-analyzer/fwlogwatch/Manifest | 1 -
net-analyzer/fwlogwatch/fwlogwatch-1.4.ebuild | 86 ---------------------------
2 files changed, 87 deletions(-)
diff --git a/net-analyzer/fwlogwatch/Manifest b/net-analyzer/fwlogwatch/Manifest
index aa622d9eff4..5572520f8b4 100644
--- a/net-analyzer/fwlogwatch/Manifest
+++ b/net-analyzer/fwlogwatch/Manifest
@@ -1,2 +1 @@
-DIST fwlogwatch-1.4.tar.bz2 92652 BLAKE2B 94c5ecd6e17c3ce07ffaa33f738109162913253b837bcc4c4fc79068edb610c046b3a178db5481c3e145482686f3f837ecd2fc579700b4a5a68bbaae47f9e537 SHA512 0a67c0ae8b096fdf7a06e279a11b0bc71f2d514790c1669f60606b17a7f3f3ec97dedc2005438ce0ec82efcd66a822b62dbb36603f4b02e010f469fb885b87e6
DIST fwlogwatch-1.5.tar.bz2 94451 BLAKE2B c0456931dc425df4ec190f1c8bcba21e0784009dae66869a5f5c0371b68d0bdb1bf57c788468f7c9fd32abf8b676a4029bcde7d348c37e4b7f5771bc48f04297 SHA512 d4890596859929ddc6adfd7f9e735e0c414bad40eff6732120a522a8bd4fb8d1442c7d1026f0f3c6ac5c4d51b76a2bac486d04f0fbceae67395c585098afef85
diff --git a/net-analyzer/fwlogwatch/fwlogwatch-1.4.ebuild b/net-analyzer/fwlogwatch/fwlogwatch-1.4.ebuild
deleted file mode 100644
index 54a2095f9c3..00000000000
--- a/net-analyzer/fwlogwatch/fwlogwatch-1.4.ebuild
+++ /dev/null
@@ -1,86 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-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="http://fwlogwatch.inside-security.de/sw/${P}.tar.bz2"
-
-KEYWORDS="amd64 ~ppc sparc x86"
-LICENSE="GPL-1"
-SLOT="0"
-IUSE="nls zlib"
-
-RDEPEND="
- 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 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 related [flat|nested] 10+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-analyzer/fwlogwatch/
@ 2021-04-03 19:53 Sam James
0 siblings, 0 replies; 10+ messages in thread
From: Sam James @ 2021-04-03 19:53 UTC (permalink / raw
To: gentoo-commits
commit: 48cb91a7d189b6c87023523c291322ae118393f4
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Apr 3 19:11:16 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Apr 3 19:52:53 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=48cb91a7
net-analyzer/fwlogwatch: add missing l10n inherit
Signed-off-by: Sam James <sam <AT> gentoo.org>
net-analyzer/fwlogwatch/fwlogwatch-1.5.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-analyzer/fwlogwatch/fwlogwatch-1.5.ebuild b/net-analyzer/fwlogwatch/fwlogwatch-1.5.ebuild
index 1f4f953ecd5..990518943e3 100644
--- a/net-analyzer/fwlogwatch/fwlogwatch-1.5.ebuild
+++ b/net-analyzer/fwlogwatch/fwlogwatch-1.5.ebuild
@@ -3,7 +3,7 @@
EAPI=7
-inherit flag-o-matic toolchain-funcs
+inherit flag-o-matic l10n toolchain-funcs
DESCRIPTION="A packet filter and firewall log analyzer"
HOMEPAGE="http://fwlogwatch.inside-security.de/"
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-analyzer/fwlogwatch/
@ 2021-06-30 10:15 Ulrich Müller
0 siblings, 0 replies; 10+ messages in thread
From: Ulrich Müller @ 2021-06-30 10:15 UTC (permalink / raw
To: gentoo-commits
commit: 764a0f63c4ee616a590cef5e320565c5e155a309
Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Mon Jun 28 10:04:39 2021 +0000
Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Wed Jun 30 10:15:31 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=764a0f63
net-analyzer/fwlogwatch: Update inherit from l10n to strip-linguas
Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>
net-analyzer/fwlogwatch/fwlogwatch-1.5.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-analyzer/fwlogwatch/fwlogwatch-1.5.ebuild b/net-analyzer/fwlogwatch/fwlogwatch-1.5.ebuild
index 990518943e3..4d37c84c2be 100644
--- a/net-analyzer/fwlogwatch/fwlogwatch-1.5.ebuild
+++ b/net-analyzer/fwlogwatch/fwlogwatch-1.5.ebuild
@@ -3,7 +3,7 @@
EAPI=7
-inherit flag-o-matic l10n toolchain-funcs
+inherit flag-o-matic strip-linguas toolchain-funcs
DESCRIPTION="A packet filter and firewall log analyzer"
HOMEPAGE="http://fwlogwatch.inside-security.de/"
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-analyzer/fwlogwatch/
@ 2021-06-30 18:40 Sam James
0 siblings, 0 replies; 10+ messages in thread
From: Sam James @ 2021-06-30 18:40 UTC (permalink / raw
To: gentoo-commits
commit: f925213e2200bd33f6e263eadb7a7969e4e96fd2
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Jun 30 18:39:57 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Jun 30 18:39:57 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f925213e
net-analyzer/fwlogwatch: add missing libcrypt dependency
Signed-off-by: Sam James <sam <AT> gentoo.org>
.../fwlogwatch/{fwlogwatch-1.5.ebuild => fwlogwatch-1.5-r1.ebuild} | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/net-analyzer/fwlogwatch/fwlogwatch-1.5.ebuild b/net-analyzer/fwlogwatch/fwlogwatch-1.5-r1.ebuild
similarity index 98%
rename from net-analyzer/fwlogwatch/fwlogwatch-1.5.ebuild
rename to net-analyzer/fwlogwatch/fwlogwatch-1.5-r1.ebuild
index 4d37c84c2be..970802a1193 100644
--- a/net-analyzer/fwlogwatch/fwlogwatch-1.5.ebuild
+++ b/net-analyzer/fwlogwatch/fwlogwatch-1.5-r1.ebuild
@@ -9,12 +9,13 @@ DESCRIPTION="A packet filter and firewall log analyzer"
HOMEPAGE="http://fwlogwatch.inside-security.de/"
SRC_URI="http://fwlogwatch.inside-security.de/sw/${P}.tar.bz2"
-KEYWORDS="amd64 ~ppc sparc x86"
LICENSE="GPL-1"
SLOT="0"
+KEYWORDS="amd64 ~ppc sparc x86"
IUSE="geoip nls zlib"
RDEPEND="
+ virtual/libcrypt:=
geoip? ( dev-libs/geoip )
zlib? ( sys-libs/zlib )
"
^ permalink raw reply related [flat|nested] 10+ messages in thread
end of thread, other threads:[~2021-06-30 18:40 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-03-15 21:53 [gentoo-commits] repo/gentoo:master commit in: net-analyzer/fwlogwatch/ Sam James
-- strict thread matches above, loose matches on Subject: below --
2021-06-30 18:40 Sam James
2021-06-30 10:15 Ulrich Müller
2021-04-03 19:53 Sam James
2021-03-17 9:09 Sam James
2021-03-17 9:00 Sam James
2021-03-15 21:54 Sam James
2021-03-15 21:01 Sam James
2016-02-25 7:51 Jeroen Roovers
2016-02-24 6:00 Jeroen Roovers
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox