From: Mike Westerhof Date: Thu, 19 Feb 2009 03:06:50 +0000 (-0600) Subject: bridge-utils: add brctl to the update-alternatives list X-Git-Tag: Release-2010-05/1~3973^2~39 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=07ff9b4089825ac5c6911f9fb337b6f437c3e52d;p=openembedded.git bridge-utils: add brctl to the update-alternatives list --- diff --git a/packages/bridge-utils/bridge-utils_1.2.bb b/packages/bridge-utils/bridge-utils_1.2.bb index 3f1f25dc3f..8bb0905edd 100644 --- a/packages/bridge-utils/bridge-utils_1.2.bb +++ b/packages/bridge-utils/bridge-utils_1.2.bb @@ -4,10 +4,23 @@ SECTION = "console/network" LICENSE = "GPL" DEPENDS = "sysfsutils" RRECOMMENDS = "kernel-module-bridge" -PR = "r0" +PR = "r1" SRC_URI = "${SOURCEFORGE_MIRROR}/bridge/bridge-utils-${PV}.tar.gz" inherit autotools EXTRA_OECONF = "--with-linux-headers=${STAGING_INCDIR}" + +do_install () { + autotools_do_install + mv ${D}${sbindir}/brtl ${D}${sbindir}/brctl.${PN} +} + +pkg_postinst_${PN} () { + update-alternatives --install ${sbindir}/brctl brctl brctl.${PN} 100 +} + +pkg_prerm_${PN} () { + update-alternatives --remove brctl brctl.${PN} +}