summaryrefslogtreecommitdiffstats
path: root/meta/recipes-connectivity/irda-utils
diff options
context:
space:
mode:
authorRichard Purdie <rpurdie@linux.intel.com>2010-08-27 15:14:24 +0100
committerRichard Purdie <rpurdie@linux.intel.com>2010-08-27 15:29:45 +0100
commit29d6678fd546377459ef75cf54abeef5b969b5cf (patch)
tree8edd65790e37a00d01c3f203f773fe4b5012db18 /meta/recipes-connectivity/irda-utils
parentda49de6885ee1bc424e70bc02f21f6ab920efb55 (diff)
downloadpoky-29d6678fd546377459ef75cf54abeef5b969b5cf.tar.gz
Major layout change to the packages directory
Having one monolithic packages directory makes it hard to find things and is generally overwhelming. This commit splits it into several logical sections roughly based on function, recipes.txt gives more information about the classifications used. The opportunity is also used to switch from "packages" to "recipes" as used in OpenEmbedded as the term "packages" can be confusing to people and has many different meanings. Not all recipes have been classified yet, this is just a first pass at separating things out. Some packages are moved to meta-extras as they're no longer actively used or maintained. Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'meta/recipes-connectivity/irda-utils')
-rwxr-xr-xmeta/recipes-connectivity/irda-utils/irda-utils-0.9.18/init80
-rw-r--r--meta/recipes-connectivity/irda-utils/irda-utils_0.9.18.bb36
2 files changed, 116 insertions, 0 deletions
diff --git a/meta/recipes-connectivity/irda-utils/irda-utils-0.9.18/init b/meta/recipes-connectivity/irda-utils/irda-utils-0.9.18/init
new file mode 100755
index 0000000000..63750f187c
--- /dev/null
+++ b/meta/recipes-connectivity/irda-utils/irda-utils-0.9.18/init
@@ -0,0 +1,80 @@
1#! /bin/sh
2### BEGIN INIT INFO
3# Provides: irda
4# Required-Start: $network $remote_fs
5# Required-Stop: $network $remote_fs
6# Default-Start: 2 3 4 5
7# Default-Stop: 0 1 6
8# Short-Description: Infrared port support
9### END INIT INFO
10
11module_id() {
12 awk 'BEGIN { FS=": " } /Hardware/ { print $2 } ' </proc/cpuinfo
13}
14
15if [ ! -f /etc/sysconfig/irda ]; then
16
17 case `module_id` in
18 "HP iPAQ H2200" | "HP iPAQ HX4700" | "HTC Universal")
19 IRDA=yes
20 DEVICE=/dev/ttyS2
21 DONGLE=
22 DISCOVERY=
23 ;;
24 *)
25 IRDA=yes
26 DEVICE=/dev/ttyS1
27 DONGLE=
28 DISCOVERY=
29 ;;
30 esac
31
32 mkdir -p /etc/sysconfig
33 echo "IRDA=$IRDA" > /etc/sysconfig/irda
34 if [ $IRDA = "yes" ]; then
35 echo "DEVICE=$DEVICE" >> /etc/sysconfig/irda
36 echo "DONGLE=$DONGLE" >> /etc/sysconfig/irda
37 echo "DISCOVERY=$DISCOVERY" >> /etc/sysconfig/irda
38 fi
39fi
40
41. /etc/sysconfig/irda
42
43# Check that irda is up.
44[ ${IRDA} = "no" ] && exit 0
45
46[ -f /usr/sbin/irattach ] || exit 0
47
48ARGS=
49if [ $DONGLE ]; then
50 ARGS="$ARGS -d $DONGLE"
51fi
52if [ "$DISCOVERY" = "yes" ];then
53 ARGS="$ARGS -s"
54fi
55
56case "$1" in
57 start)
58 echo -n "Starting IrDA: "
59 irattach ${DEVICE} ${ARGS} > /dev/null 2>&1 &
60 echo "$NAME."
61 ;;
62 stop)
63 echo -n "Stopping IrDA: "
64 killall irattach > /dev/null 2>&1
65 echo "$NAME."
66 ;;
67 restart|force-reload)
68 echo -n "Restarting IrDA: "
69 irattach ${DEVICE} ${ARGS} > /dev/null 2>&1 &
70 sleep 1
71 killall irattach > /dev/null 2>&1
72 echo "$NAME."
73 ;;
74 *)
75 N=/etc/init.d/$NAME
76 echo "Usage: $N {start|stop|restart|force-reload}" >&2
77 exit 1
78 ;;
79esac
80
diff --git a/meta/recipes-connectivity/irda-utils/irda-utils_0.9.18.bb b/meta/recipes-connectivity/irda-utils/irda-utils_0.9.18.bb
new file mode 100644
index 0000000000..9ef8a59fb4
--- /dev/null
+++ b/meta/recipes-connectivity/irda-utils/irda-utils_0.9.18.bb
@@ -0,0 +1,36 @@
1DESCRIPTION = "Provides common files needed to use IrDA. \
2IrDA allows communication over Infrared with other devices \
3such as phones and laptops."
4HOMEPAGE = "http://irda.sourceforge.net/"
5BUGTRACKER = "irda-users@lists.sourceforge.net"
6SECTION = "base"
7LICENSE = "GPLv2+"
8LIC_FILES_CHKSUM = "file://irdadump/COPYING;md5=94d55d512a9ba36caa9b7df079bae19f \
9 file://smcinit/COPYING;md5=0636e73ff0215e8d672dc4c32c317bb3 \
10 file://man/COPYING;md5=94d55d512a9ba36caa9b7df079bae19f \
11 file://irdadump/irdadump.c;beginline=1;endline=24;md5=d78b9dce3cd78c2220250c9c7a2be178"
12PR = "r0"
13
14SRC_URI = "${SOURCEFORGE_MIRROR}/irda/irda-utils-${PV}.tar.gz \
15 file://init"
16
17export SYS_INCLUDES="-I${STAGING_INCDIR}"
18
19inherit autotools
20
21INITSCRIPT_NAME = "irattach"
22INITSCRIPT_PARAMS = "defaults 20"
23
24do_compile () {
25 oe_runmake -e -C irattach
26 oe_runmake -e -C irdaping
27}
28
29do_install () {
30 install -d ${D}${sbindir}
31 oe_runmake -C irattach ROOT="${D}" install
32 oe_runmake -C irdaping ROOT="${D}" install
33
34 install -d ${D}${sysconfdir}/init.d
35 install -m 0755 ${WORKDIR}/init ${D}${sysconfdir}/init.d/${INITSCRIPT_NAME}
36}