diff options
author | Frans Meulenbroeks <fransmeulenbroeks@gmail.com> | 2010-06-13 22:01:38 +0200 |
---|---|---|
committer | Frans Meulenbroeks <fransmeulenbroeks@gmail.com> | 2010-06-13 22:01:38 +0200 |
commit | 1030f8b122a25ae73b20ae080cbf923c72a56895 (patch) | |
tree | 425de1230fed4e82ba44234ba6c2d754a0102328 /recipes/lirc/lirc-modules_0.8.6+cvs20100613.bb | |
parent | 4a2af9d82d4dea4e9f8c2b66fc4f8bcc0f32db69 (diff) |
lirc: moved 0.8.5 to 0.8.6+cvs20100613
lirc versions before mar 20, 2010 do not compile with kernels >= 2.6.33
As there is no regular release after that date, I've moved lirc to the current cvs head
Signed-off-by: Frans Meulenbroeks <fransmeulenbroeks@gmail.com>
Diffstat (limited to 'recipes/lirc/lirc-modules_0.8.6+cvs20100613.bb')
-rw-r--r-- | recipes/lirc/lirc-modules_0.8.6+cvs20100613.bb | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/recipes/lirc/lirc-modules_0.8.6+cvs20100613.bb b/recipes/lirc/lirc-modules_0.8.6+cvs20100613.bb new file mode 100644 index 0000000000..fa941043d8 --- /dev/null +++ b/recipes/lirc/lirc-modules_0.8.6+cvs20100613.bb @@ -0,0 +1,29 @@ +DESCRIPTION = "LIRC is a package that allows you to decode and send infra-red signals of many commonly used remote controls. This package contains the lirc kernel modules." +SECTION = "base" +PRIORITY = "optional" +HOMEPAGE = "http://www.lirc.org" +LICENSE = "GPL" +DEPENDS = "virtual/kernel fakeroot-native setserial" + +SRCDATE=${@bb.data.getVar('PV', d, 1)[9:]} + +SRC_URI = "cvs://anonymous@lirc.cvs.sourceforge.net/cvsroot/lirc;module=lirc;method=pserver;cvsdate=${SRCDATE}" +S = "${WORKDIR}/lirc" + +inherit autotools module + +require lirc-config.inc + +MAKE_TARGETS = "KERNEL_PATH=${STAGING_KERNEL_DIR} MAKE='make V=1' -C drivers" + +fakeroot do_install() { + oe_runmake -C drivers DESTDIR="${D}" moduledir="/lib/modules/${KERNEL_VERSION}/lirc" install + rm -rf ${D}/dev +} + +# this is for distributions that don't use udev +pkg_postinst_append() { +if [ ! -c $D/dev/lirc -a ! -f /sbin/udevd ]; then mknod $D/dev/lirc c 61 0; fi +} + +FILES_${PN} = "/lib/modules" |