diff options
author | Mike Frysinger <vapier@chromium.org> | 2021-02-09 10:20:22 -0500 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2021-02-09 10:58:03 -0500 |
commit | 72c4e71447d5b43071f1a16feca1776d7a3e9510 (patch) | |
tree | 4efd8a426f77d6a7e8221ae370e7a678e7c1950e /net-firewall/ebtables | |
parent | net-analyzer/netdata: 1.29.1 version bump (diff) | |
download | gentoo-72c4e71447d5b43071f1a16feca1776d7a3e9510.tar.gz gentoo-72c4e71447d5b43071f1a16feca1776d7a3e9510.tar.bz2 gentoo-72c4e71447d5b43071f1a16feca1776d7a3e9510.zip |
net-firewall/ebtables: update HOMEPAGE
And improve the comments a bit.
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'net-firewall/ebtables')
-rw-r--r-- | net-firewall/ebtables/ebtables-2.0.11-r2.ebuild | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/net-firewall/ebtables/ebtables-2.0.11-r2.ebuild b/net-firewall/ebtables/ebtables-2.0.11-r2.ebuild index b4d908e63ccc..826555bb3bac 100644 --- a/net-firewall/ebtables/ebtables-2.0.11-r2.ebuild +++ b/net-firewall/ebtables/ebtables-2.0.11-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -9,7 +9,7 @@ MY_PV="$(ver_rs 3 '-' )" MY_P="${PN}-${MY_PV}" DESCRIPTION="Controls Ethernet frame filtering on a Linux bridge, MAC NAT and brouting" -HOMEPAGE="http://ebtables.sourceforge.net/" +HOMEPAGE="https://ebtables.netfilter.org/" SRC_URI="http://ftp.netfilter.org/pub/${PN}/${MY_P}.tar.gz" S="${WORKDIR}/${MY_P}" @@ -44,11 +44,12 @@ pkg_setup() { src_prepare() { default - # don't install perl scripts if USE=perl is disabled + # Don't install perl scripts if USE=perl is disabled. if ! use perl; then sed -e '/sbin_SCRIPTS/ d' -i Makefile.am || die fi + # The bundled autotools are borked, so force a rebuild. eautoreconf } |