diff options
author | Alexander Vershilov <qnikst@gentoo.org> | 2012-12-19 16:00:36 +0000 |
---|---|---|
committer | Alexander Vershilov <qnikst@gentoo.org> | 2012-12-19 16:00:36 +0000 |
commit | aa081e90696f68e91efac0221e3ea0b4b204f5e4 (patch) | |
tree | 808a605740569c3d0b9d3cbd31768af872fdc3d3 /net-firewall/ebtables | |
parent | Stable for HPPA (bug #446524). (diff) | |
download | gentoo-2-aa081e90696f68e91efac0221e3ea0b4b204f5e4.tar.gz gentoo-2-aa081e90696f68e91efac0221e3ea0b4b204f5e4.tar.bz2 gentoo-2-aa081e90696f68e91efac0221e3ea0b4b204f5e4.zip |
non-maint: fix deprecated options in initscript thanks to Vincent Brillault <gentoo@lerya.net>
(Portage version: 2.2.0_alpha149/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'net-firewall/ebtables')
-rw-r--r-- | net-firewall/ebtables/ChangeLog | 10 | ||||
-rw-r--r-- | net-firewall/ebtables/ebtables-2.0.10.4-r1.ebuild | 68 | ||||
-rw-r--r-- | net-firewall/ebtables/files/ebtables.initd-r1 | 7 |
3 files changed, 80 insertions, 5 deletions
diff --git a/net-firewall/ebtables/ChangeLog b/net-firewall/ebtables/ChangeLog index d01755e16663..9697ae34c173 100644 --- a/net-firewall/ebtables/ChangeLog +++ b/net-firewall/ebtables/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for net-firewall/ebtables # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-firewall/ebtables/ChangeLog,v 1.49 2012/06/14 15:53:50 xmw Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-firewall/ebtables/ChangeLog,v 1.50 2012/12/19 16:00:36 qnikst Exp $ + +*ebtables-2.0.10.4-r1 (19 Dec 2012) + + 19 Dec 2012; <qnikst@gentoo.org> +ebtables-2.0.10.4-r1.ebuild, + files/ebtables.initd-r1: + non-maint: fix deprecated options in initscript thanks to Vincent Brillault + <gentoo@lerya.net> 14 Jun 2012; Michael Weber <xmw@gentoo.org> ebtables-2.0.10.4.ebuild: ppc stable (bug 404265) @@ -222,4 +229,3 @@ 28 Feb 2004; <solar@gentoo.org> ebtables-2.0.6.ebuild, metadata.xml: initial import into portage of the ebtable utility that enables basic ethernet frame filtering on a bridge, MAC NAT and brouting. - diff --git a/net-firewall/ebtables/ebtables-2.0.10.4-r1.ebuild b/net-firewall/ebtables/ebtables-2.0.10.4-r1.ebuild new file mode 100644 index 000000000000..1d0c1341f6e8 --- /dev/null +++ b/net-firewall/ebtables/ebtables-2.0.10.4-r1.ebuild @@ -0,0 +1,68 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-firewall/ebtables/ebtables-2.0.10.4-r1.ebuild,v 1.1 2012/12/19 16:00:36 qnikst Exp $ + +EAPI="4" + +inherit versionator eutils toolchain-funcs multilib flag-o-matic + +MY_PV=$(replace_version_separator 3 '-' ) +MY_P=${PN}-v${MY_PV} + +DESCRIPTION="Utility that enables basic Ethernet frame filtering on a Linux bridge, MAC NAT and brouting." +HOMEPAGE="http://ebtables.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz" + +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="static" +LICENSE="GPL-2" +SLOT="0" + +S=${WORKDIR}/${MY_P} + +pkg_setup() { + if use static; then + ewarn "You've chosen static build which is useful for embedded devices." + ewarn "It has no init script. Make sure that's really what you want." + fi +} + +src_prepare() { + # Enhance ebtables-save to take table names as parameters bug #189315 + epatch "${FILESDIR}/${PN}-2.0.8.1-ebt-save.diff" + + sed -i -e "s,^MANDIR:=.*,MANDIR:=/usr/share/man," \ + -e "s,^BINDIR:=.*,BINDIR:=/sbin," \ + -e "s,^INITDIR:=.*,INITDIR:=/usr/share/doc/${PF}," \ + -e "s,^SYSCONFIGDIR:=.*,SYSCONFIGDIR:=/usr/share/doc/${PF}," \ + -e "s,^LIBDIR:=.*,LIBDIR:=/$(get_libdir)/\$(PROGNAME)," Makefile +} + +src_compile() { + # This package uses _init functions to initialise extensions. With + # --as-needed this will not work. + append-ldflags $(no-as-needed) + # This package correctly aliases pointers, but gcc is unable to know that: + # unsigned char ip[4]; + # if (*((uint32_t*)ip) == 0) { + #append-cflags -Wno-strict-aliasing + emake \ + CC="$(tc-getCC)" \ + CFLAGS="${CFLAGS}" \ + $(use static && echo static) +} + +src_install() { + if ! use static; then + make DESTDIR="${D}" install + keepdir /var/lib/ebtables/ + newinitd "${FILESDIR}"/ebtables.initd-r1 ebtables + newconfd "${FILESDIR}"/ebtables.confd-r1 ebtables + else + into / + newsbin static ebtables + insinto /etc + doins ethertypes + fi + dodoc ChangeLog THANKS || die +} diff --git a/net-firewall/ebtables/files/ebtables.initd-r1 b/net-firewall/ebtables/files/ebtables.initd-r1 index 1088ad3f5c49..d95af237425b 100644 --- a/net-firewall/ebtables/files/ebtables.initd-r1 +++ b/net-firewall/ebtables/files/ebtables.initd-r1 @@ -1,9 +1,10 @@ #!/sbin/runscript -# Copyright 1999-2007 Gentoo Foundation +# Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-firewall/ebtables/files/ebtables.initd-r1,v 1.1 2010/05/09 17:16:15 pva Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-firewall/ebtables/files/ebtables.initd-r1,v 1.2 2012/12/19 16:00:36 qnikst Exp $ -opts="save reload panic" +extra_commands="save panic" +extra_started_commands="reload" ebtables_bin="/sbin/ebtables" ebtables_save=${EBTABLES_SAVE} |