summaryrefslogtreecommitdiffstats
path: root/meta/packages/irda-utils/irda-utils_0.9.16.bb
diff options
context:
space:
mode:
authorDongxiao Xu <dongxiao.xu@intel.com>2010-06-25 15:15:04 +0800
committerRichard Purdie <rpurdie@linux.intel.com>2010-06-30 13:11:28 +0100
commita1fb73e5883b3f4353845f4b5c927093885a85c0 (patch)
tree190169d0eae1bfc0426086262c67556d5b442b91 /meta/packages/irda-utils/irda-utils_0.9.16.bb
parent01c5b29bf8274f2f5e888ef6d5a05cebf2f24ef8 (diff)
downloadpoky-a1fb73e5883b3f4353845f4b5c927093885a85c0.tar.gz
irda-utils: upgraded to version 0.9.18
Removed irdadump patches configure.patch and m4.patch because the new version doesn't use autotool for irdadump. Change the local file directory name to ${PN}-${PV} Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
Diffstat (limited to 'meta/packages/irda-utils/irda-utils_0.9.16.bb')
-rw-r--r--meta/packages/irda-utils/irda-utils_0.9.16.bb32
1 files changed, 0 insertions, 32 deletions
diff --git a/meta/packages/irda-utils/irda-utils_0.9.16.bb b/meta/packages/irda-utils/irda-utils_0.9.16.bb
deleted file mode 100644
index 5e8ded6215..0000000000
--- a/meta/packages/irda-utils/irda-utils_0.9.16.bb
+++ /dev/null
@@ -1,32 +0,0 @@
1DESCRIPTION = "Provides common files needed to use IrDA. \
2IrDA allows communication over Infrared with other devices \
3such as phones and laptops."
4SECTION = "base"
5LICENSE = "GPL"
6PR = "r9"
7
8SRC_URI = "${SOURCEFORGE_MIRROR}/irda/irda-utils-${PV}.tar.gz \
9 file://configure.patch;patch=1 \
10 file://m4.patch;patch=1 \
11 file://init"
12
13export SYS_INCLUDES="-I${STAGING_INCDIR}"
14
15inherit autotools
16
17INITSCRIPT_NAME = "irattach"
18INITSCRIPT_PARAMS = "defaults 20"
19
20do_compile () {
21 oe_runmake -e -C irattach
22 oe_runmake -e -C irdaping
23}
24
25do_install () {
26 install -d ${D}${sbindir}
27 oe_runmake -C irattach ROOT="${D}" install
28 oe_runmake -C irdaping ROOT="${D}" install
29
30 install -d ${D}${sysconfdir}/init.d
31 install -m 0755 ${WORKDIR}/init ${D}${sysconfdir}/init.d/${INITSCRIPT_NAME}
32}