blob: 6abc309e103eb9d4580d49cf77d63f3bba5add58 (
plain)
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/bridge-utils/bridge-utils-1.0.4.ebuild,v 1.3 2004/06/24 23:37:43 agriffis Exp $
# I think you want CONFIG_BRIDGE in your kernel to use this ;)
DESCRIPTION="Tools for configuring the Linux kernel 802.1d Ethernet Bridge"
HOMEPAGE="http://bridge.sourceforge.net/"
SRC_URI="mirror://sourceforge/bridge/${P}.tar.gz"
DEPEND="virtual/glibc"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~ppc"
src_compile() {
econf --prefix=/ --libdir=/usr/lib --includedir=/usr/include || die "econf failed"
emake || die "make failed"
}
src_install () {
einstall prefix=${D} libdir=${D}/usr/lib includedir=${D}/usr/include
dodoc AUTHORS ChangeLog README THANKS
dodoc doc/{FAQ,FIREWALL,HOWTO,PROJECTS,SMPNOTES,WISHLIST}
exeinto /etc/init.d
newexe ${FILESDIR}/bridge.rc bridge
insinto /etc/conf.d
newins ${FILESDIR}/bridge.conf bridge
}
pkg_postinst () {
ewarn "Gentoo now comes with a bridge init script. You can add it to"
ewarn "the boot runlevel. You can configure it in /etc/conf.d/bridge"
}
|