From a253b0e85e7c1df16c9a6b7f27ed6173e33e4e90 Mon Sep 17 00:00:00 2001 From: Mark Hatle Date: Mon, 16 Apr 2012 12:17:28 -0500 Subject: kbd: Use update-alternatives Change to use ALTERNATIVE_LINKS from update-alternatives. This ensures the links are created consistently and the package provides are correct. (From OE-Core rev: 728569a3db005a935e6b08d6aac3e23e88d486df) Signed-off-by: Mark Hatle Signed-off-by: Richard Purdie --- meta/recipes-core/kbd/kbd_1.15.2.bb | 34 +++++++--------------------------- 1 file changed, 7 insertions(+), 27 deletions(-) (limited to 'meta/recipes-core/kbd') diff --git a/meta/recipes-core/kbd/kbd_1.15.2.bb b/meta/recipes-core/kbd/kbd_1.15.2.bb index eea04a0754..99a6a50981 100644 --- a/meta/recipes-core/kbd/kbd_1.15.2.bb +++ b/meta/recipes-core/kbd/kbd_1.15.2.bb @@ -10,7 +10,7 @@ RREPLACES_${PN} = "console-tools" RPROVIDES_${PN} = "console-tools" RCONFLICTS_${PN} = "console-tools" -PR = "r2" +PR = "r3" SRC_URI="${KERNELORG_MIRROR}/linux/utils/kbd/kbd-1.15.2.tar.bz2" SRC_URI[md5sum] = "e850eb91e4d3b94b194efe8e953204c5" @@ -23,29 +23,9 @@ FILES_${PN}-consoletrans = "${datadir}/consoletrans" FILES_${PN}-keymaps = "${datadir}/keymaps" FILES_${PN}-unimaps = "${datadir}/unimaps" -ALTERNATIVE_NAMES_USRBIN = "chvt deallocvt fgconsole openvt" - -do_install_append() { - usrbinprogs_a="${ALTERNATIVE_NAMES_USRBIN}" - for p in $usrbinprogs_a; do - if [ -f "${D}${bindir}/$p" ]; then - mv "${D}${bindir}/$p" "${D}${bindir}/$p.${PN}" - fi - done -} - -pkg_postinst_${PN} () { - usrbinprogs_a="${ALTERNATIVE_NAMES_USRBIN}" - for p in $usrbinprogs_a; do - if [ -f "$D${bindir}/$p" ]; then - update-alternatives --install ${bindir}/$p $p $p.${PN} 100 - fi - done -} - -pkg_postrm_${PN} () { - usrbinprogs_a="${ALTERNATIVE_NAMES_USRBIN}" - for p in $usrbinprogs_a; do - update-alternatives --remove $p $p.${PN} - done -} +inherit update-alternatives + +ALTERNATIVE_PRIORITY = "100" + +bindir_progs = "chvt deallocvt fgconsole openvt" +ALTERNATIVE_LINKS = "${bindir}/${@' ${bindir}/'.join((d.getVar('bindir_progs', True)).split())}" -- cgit v1.2.3-54-g00ecf