diff options
author | Ned Ludd <solar@gentoo.org> | 2006-01-19 21:30:29 +0000 |
---|---|---|
committer | Ned Ludd <solar@gentoo.org> | 2006-01-19 21:30:29 +0000 |
commit | 5407a549398d41b571b28acaf1f994360523f3ae (patch) | |
tree | 5f7b4beb04d599451118d458794862548d03ea14 /net-firewall/ebtables/ebtables-2.0.6-r1.ebuild | |
parent | Stable on x86. (diff) | |
download | gentoo-2-5407a549398d41b571b28acaf1f994360523f3ae.tar.gz gentoo-2-5407a549398d41b571b28acaf1f994360523f3ae.tar.bz2 gentoo-2-5407a549398d41b571b28acaf1f994360523f3ae.zip |
- ebtables-2.0.6 does not build with gcc-4.x; Bug #119489
(Portage version: 2.1_pre3-r1)
Diffstat (limited to 'net-firewall/ebtables/ebtables-2.0.6-r1.ebuild')
-rw-r--r-- | net-firewall/ebtables/ebtables-2.0.6-r1.ebuild | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/net-firewall/ebtables/ebtables-2.0.6-r1.ebuild b/net-firewall/ebtables/ebtables-2.0.6-r1.ebuild new file mode 100644 index 000000000000..d12cd3fe8d25 --- /dev/null +++ b/net-firewall/ebtables/ebtables-2.0.6-r1.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-firewall/ebtables/ebtables-2.0.6-r1.ebuild,v 1.1 2006/01/19 21:30:29 solar Exp $ + +inherit eutils toolchain-funcs + +MY_P="${PN}-v${PV}" + +DESCRIPTION="Utility that enables basic Ethernet frame filtering on a Linux bridge, MAC NAT and brouting." +SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz" +HOMEPAGE="http://ebtables.sourceforge.net/" +KEYWORDS="~x86 ~ppc ~amd64" +IUSE="" +LICENSE="GPL-2" +SLOT="0" + +S="${WORKDIR}/${MY_P}" + +DEPEND="virtual/libc" + +src_compile() { + emake CC="$(tc-getCC)" || die "emake failed" +} + +src_unpack() { + unpack ${A} + cd ${S} + + # fix "label at end of compound statement" error that + # prevents ebtables from being compilable with >=gcc-3.4 + epatch ${FILESDIR}/ebtables-2.0.6-gcc34.patch + + # ebtables does not build with gcc-4.x; Bug #119489 + epatch ${FILESDIR}/ebtables-2.0.6-gcc4.patch +} + +src_install() { + dodir /sbin/ + einstall MANDIR=${D}/usr/share/man ETHERTYPESPATH=${D}/etc/ BINPATH=${D}/sbin/ || die +} |