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