diff options
author | Thomas Kunze <thommycheck@gmx.de> | 2008-07-24 23:37:01 +0000 |
---|---|---|
committer | Thomas Kunze <thommycheck@gmx.de> | 2008-07-24 23:37:01 +0000 |
commit | a3e73146adce111fe67af0886a43acbf7a654bd7 (patch) | |
tree | 2f16f88686bb2a878ce3942053cbbb2de0ed965f /packages/lirc/lirc-modules_0.8.3+cvs20080713.bb | |
parent | 0196a9e9747d4460e7ab28a63494f56dfe5c8297 (diff) | |
parent | 28dfae00ff3dc61e1f02dc9d14b1ff40ee3a4f59 (diff) |
merge of 'd2f1a9f3ef64d23cec1e794848e1bb2ac1a92e63'
and 'ed4e5b420b127a2a4f722c324c8c61ee00caf977'
Diffstat (limited to 'packages/lirc/lirc-modules_0.8.3+cvs20080713.bb')
-rw-r--r-- | packages/lirc/lirc-modules_0.8.3+cvs20080713.bb | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/packages/lirc/lirc-modules_0.8.3+cvs20080713.bb b/packages/lirc/lirc-modules_0.8.3+cvs20080713.bb new file mode 100644 index 0000000000..094c6fd380 --- /dev/null +++ b/packages/lirc/lirc-modules_0.8.3+cvs20080713.bb @@ -0,0 +1,31 @@ +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" +PR = "r0" + +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 -e 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" |