summaryrefslogtreecommitdiffstats
path: root/meta/recipes-connectivity/neard
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-connectivity/neard')
-rw-r--r--meta/recipes-connectivity/neard/neard/neard42
-rw-r--r--meta/recipes-connectivity/neard/neard_0.9.bb57
2 files changed, 99 insertions, 0 deletions
diff --git a/meta/recipes-connectivity/neard/neard/neard b/meta/recipes-connectivity/neard/neard/neard
new file mode 100644
index 0000000000..5f36174d62
--- /dev/null
+++ b/meta/recipes-connectivity/neard/neard/neard
@@ -0,0 +1,42 @@
1#!/bin/sh
2
3DAEMON=/usr/sbin/neard
4PIDFILE=/var/run/neard.pid
5DESC="Linux NFC daemon"
6
7if [ -f /etc/default/neard ] ; then
8 . /etc/default/neard
9fi
10
11set -e
12
13do_start() {
14 $DAEMON
15}
16
17do_stop() {
18 start-stop-daemon --stop --name neard --quiet
19}
20
21case "$1" in
22 start)
23 echo "Starting $DESC"
24 do_start
25 ;;
26 stop)
27 echo "Stopping $DESC"
28 do_stop
29 ;;
30 restart|force-reload)
31 echo "Restarting $DESC"
32 do_stop
33 sleep 1
34 do_start
35 ;;
36 *)
37 echo "Usage: $0 {start|stop|restart|force-reload}" >&2
38 exit 1
39 ;;
40esac
41
42exit 0
diff --git a/meta/recipes-connectivity/neard/neard_0.9.bb b/meta/recipes-connectivity/neard/neard_0.9.bb
new file mode 100644
index 0000000000..61ea58cc14
--- /dev/null
+++ b/meta/recipes-connectivity/neard/neard_0.9.bb
@@ -0,0 +1,57 @@
1SUMMARY = "Linux NFC daemon"
2DESCRIPTION = "A daemon for the Linux Near Field Communication stack"
3HOMEPAGE = "http://01.org/linux-nfc"
4
5LICENSE = "GPLv2"
6
7DEPENDS = "dbus glib-2.0 libnl"
8
9inherit autotools pkgconfig update-rc.d
10
11INITSCRIPT_NAME = "neard"
12INITSCRIPT_PARAMS = "defaults 64"
13
14# This would copy neard start-stop shell and test scripts
15do_install_append() {
16 install -d ${D}${sysconfdir}/init.d/
17 install -m 0755 ${WORKDIR}/neard ${D}${sysconfdir}/init.d/neard
18
19 install -d ${D}${libdir}/neard
20 install -m 0755 ${S}/test/* ${D}${libdir}/neard/
21 install -m 0755 ${S}/tools/nfctool/nfctool ${D}${libdir}/neard/
22}
23
24RDEPENDS_${PN} = "dbus python python-dbus python-pygobject"
25
26# Bluez & Wifi are not mandatory except for handover "
27RRECOMMENDS_${PN} = "\
28 ${@base_contains('DISTRO_FEATURES', 'bluetooth', 'bluez4', '', d)} \
29 ${@base_contains('DISTRO_FEATURES', 'wifi','wpa-supplicant', '', d)} \
30 "
31
32#Additional
33PACKAGES =+ "${PN}-tests"
34
35FILES_${PN}-tests = "${libdir}/neard/*-test"
36RDEPENDS_${PN}-tests = "python python-dbus python-pygobject"
37
38FILES_${PN}-dbg += "${bindir}/neard/*/.debug"
39
40##=============================
41# This is valid for 0.9+
42LIC_FILES_CHKSUM = "file://COPYING;md5=12f884d2ae1ff87c09e5b7ccc2c4ca7e \
43 file://src/near.h;beginline=1;endline=20;md5=358e4deefef251a4761e1ffacc965d13 \
44 "
45S = "${WORKDIR}/git"
46SRCREV = "7abdb13d106d496e1115fab49e6448a249dfb3c8"
47PV = "0.9-git${SRCPV}"
48PR = "r1"
49
50SRC_URI = "git://git.kernel.org/pub/scm/network/nfc/neard.git;protocol=git \
51 file://neard \
52 "
53
54EXTRA_OECONF += "--enable-tools \
55 "
56
57