dvbapp : TranscodingSetup update
[vuplus_openembedded] / recipes / bridge-utils / bridge-utils.inc
1 DESCRIPTION = "Tools for ethernet bridging."
2 HOMEPAGE = "http://bridge.sourceforge.net/"
3 SECTION = "console/network"
4 LICENSE = "GPL"
5 DEPENDS = "sysfsutils"
6 RRECOMMENDS = "kernel-module-bridge"
7
8 SRC_URI = "${SOURCEFORGE_MIRROR}/bridge/bridge-utils-${PV}.tar.gz"
9
10 inherit autotools
11
12 EXTRA_OECONF = "--with-linux-headers=${STAGING_INCDIR}"
13
14 do_install_append () {
15         mv ${D}${sbindir}/brctl ${D}${sbindir}/brctl.${PN}
16 }
17
18 pkg_postinst_${PN} () {
19         update-alternatives --install ${sbindir}/brctl brctl brctl.${PN} 100
20 }
21
22 pkg_prerm_${PN} () {
23         update-alternatives --remove brctl brctl.${PN}
24 }