1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-firewall/ebtables/ebtables-2.0.8.2.ebuild,v 1.1 2007/09/28 19:22:13 pva Exp $
inherit versionator eutils toolchain-funcs multilib
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."
SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
HOMEPAGE="http://ebtables.sourceforge.net/"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE=""
LICENSE="GPL-2"
SLOT="0"
S=${WORKDIR}/${MY_P}
src_unpack() {
unpack ${A}
cd "${S}"
# Enchance 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() {
emake CC="$(tc-getCC)" || die "emake failed"
}
src_install() {
dodoc ChangeLog THANKS
make DESTDIR="${D}" install || die
keepdir /var/lib/ebtables/
newinitd "${FILESDIR}"/ebtables.initd ebtables
newconfd "${FILESDIR}"/ebtables.confd ebtables
}
pkg_postinst() {
echo
einfo "If you are interested in gentoo init script for ebtables, please,"
einfo "read the following file:"
einfo "/usr/share/doc/${PF}/init-scripts/README.gentoo.init"
echo
}
|