Gentoo Archives: gentoo-commits

From: Mike Frysinger <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-firewall/ebtables/
Date: Tue, 09 Feb 2021 15:59:30
Message-Id: 1612886283.72c4e71447d5b43071f1a16feca1776d7a3e9510.vapier@gentoo
1 commit: 72c4e71447d5b43071f1a16feca1776d7a3e9510
2 Author: Mike Frysinger <vapier <AT> chromium <DOT> org>
3 AuthorDate: Tue Feb 9 15:20:22 2021 +0000
4 Commit: Mike Frysinger <vapier <AT> gentoo <DOT> org>
5 CommitDate: Tue Feb 9 15:58:03 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=72c4e714
7
8 net-firewall/ebtables: update HOMEPAGE
9
10 And improve the comments a bit.
11
12 Signed-off-by: Mike Frysinger <vapier <AT> gentoo.org>
13
14 net-firewall/ebtables/ebtables-2.0.11-r2.ebuild | 7 ++++---
15 1 file changed, 4 insertions(+), 3 deletions(-)
16
17 diff --git a/net-firewall/ebtables/ebtables-2.0.11-r2.ebuild b/net-firewall/ebtables/ebtables-2.0.11-r2.ebuild
18 index b4d908e63cc..826555bb3ba 100644
19 --- a/net-firewall/ebtables/ebtables-2.0.11-r2.ebuild
20 +++ b/net-firewall/ebtables/ebtables-2.0.11-r2.ebuild
21 @@ -1,4 +1,4 @@
22 -# Copyright 1999-2020 Gentoo Authors
23 +# Copyright 1999-2021 Gentoo Authors
24 # Distributed under the terms of the GNU General Public License v2
25
26 EAPI=7
27 @@ -9,7 +9,7 @@ MY_PV="$(ver_rs 3 '-' )"
28 MY_P="${PN}-${MY_PV}"
29
30 DESCRIPTION="Controls Ethernet frame filtering on a Linux bridge, MAC NAT and brouting"
31 -HOMEPAGE="http://ebtables.sourceforge.net/"
32 +HOMEPAGE="https://ebtables.netfilter.org/"
33 SRC_URI="http://ftp.netfilter.org/pub/${PN}/${MY_P}.tar.gz"
34 S="${WORKDIR}/${MY_P}"
35
36 @@ -44,11 +44,12 @@ pkg_setup() {
37 src_prepare() {
38 default
39
40 - # don't install perl scripts if USE=perl is disabled
41 + # Don't install perl scripts if USE=perl is disabled.
42 if ! use perl; then
43 sed -e '/sbin_SCRIPTS/ d' -i Makefile.am || die
44 fi
45
46 + # The bundled autotools are borked, so force a rebuild.
47 eautoreconf
48 }