diff options
author | Jukka Rissanen <jukka.rissanen@linux.intel.com> | 2013-05-07 10:46:23 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-05-12 09:37:28 +0100 |
commit | 468c6f82dfc821756787fab93b75473209c9a9cf (patch) | |
tree | 77557f453e7dd5772af74e20bea350debfec7b57 /meta | |
parent | ea65bb430a920cc39bbcd64b789f23d376d3a8a2 (diff) | |
download | poky-468c6f82dfc821756787fab93b75473209c9a9cf.tar.gz |
neard: Split recipe to two parts
This way it is easier to override settings if needed.
(From OE-Core rev: 453b96314076c2407dd56d8dc5613dc02a622e73)
Signed-off-by: Jukka Rissanen <jukka.rissanen@linux.intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-connectivity/neard/neard.inc | 59 | ||||
-rw-r--r-- | meta/recipes-connectivity/neard/neard_0.10.bb | 60 |
2 files changed, 60 insertions, 59 deletions
diff --git a/meta/recipes-connectivity/neard/neard.inc b/meta/recipes-connectivity/neard/neard.inc new file mode 100644 index 0000000000..7cccbdc9fb --- /dev/null +++ b/meta/recipes-connectivity/neard/neard.inc | |||
@@ -0,0 +1,59 @@ | |||
1 | SUMMARY = "Linux NFC daemon" | ||
2 | DESCRIPTION = "A daemon for the Linux Near Field Communication stack" | ||
3 | HOMEPAGE = "http://01.org/linux-nfc" | ||
4 | LICENSE = "GPLv2" | ||
5 | |||
6 | DEPENDS = "dbus glib-2.0 libnl" | ||
7 | |||
8 | LIC_FILES_CHKSUM = "file://COPYING;md5=12f884d2ae1ff87c09e5b7ccc2c4ca7e \ | ||
9 | file://src/near.h;beginline=1;endline=20;md5=358e4deefef251a4761e1ffacc965d13 \ | ||
10 | " | ||
11 | |||
12 | inherit autotools pkgconfig systemd update-rc.d | ||
13 | |||
14 | EXTRA_OECONF += "--enable-tools" | ||
15 | |||
16 | do_install() { | ||
17 | oe_runmake DESTDIR=${D} libexecdir=${libexecdir} install | ||
18 | } | ||
19 | |||
20 | # This would copy neard start-stop shell and test scripts | ||
21 | do_install_append() { | ||
22 | if ${@base_contains('DISTRO_FEATURES', 'sysvinit', 'true', 'false', d)}; then | ||
23 | install -d ${D}${sysconfdir}/init.d/ | ||
24 | sed "s:@installpath@:${libexecdir}:" ${WORKDIR}/neard.in \ | ||
25 | > ${D}${sysconfdir}/init.d/neard | ||
26 | chmod 0755 ${D}${sysconfdir}/init.d/neard | ||
27 | fi | ||
28 | |||
29 | if ${@base_contains('DISTRO_FEATURES', 'systemd', 'true', 'false', d)}; then | ||
30 | install -d ${D}${systemd_unitdir}/system | ||
31 | sed "s:@installpath@:${libexecdir}:" ${WORKDIR}/neard.service.in \ | ||
32 | > ${D}${systemd_unitdir}/system/neard.service | ||
33 | fi | ||
34 | |||
35 | # Install the tests for neard-tests | ||
36 | install -d ${D}${libdir}/neard | ||
37 | install -m 0755 ${S}/test/* ${D}${libdir}/${BPN}/ | ||
38 | install -m 0755 ${S}/tools/nfctool/nfctool ${D}${libdir}/${BPN}/ | ||
39 | } | ||
40 | |||
41 | PACKAGES =+ "${PN}-tests" | ||
42 | |||
43 | FILES_${PN}-tests = "${libdir}/${BPN}/*-test" | ||
44 | FILES_${PN}-dbg += "${libdir}/${BPN}/*/.debug" | ||
45 | |||
46 | RDEPENDS_${PN} = "dbus python python-dbus python-pygobject" | ||
47 | |||
48 | # Bluez & Wifi are not mandatory except for handover | ||
49 | RRECOMMENDS_${PN} = "\ | ||
50 | ${@base_contains('DISTRO_FEATURES', 'bluetooth', 'bluez4', '', d)} \ | ||
51 | ${@base_contains('DISTRO_FEATURES', 'wifi','wpa-supplicant', '', d)} \ | ||
52 | " | ||
53 | |||
54 | RDEPENDS_${PN}-tests = "python python-dbus python-pygobject" | ||
55 | |||
56 | INITSCRIPT_NAME = "neard" | ||
57 | INITSCRIPT_PARAMS = "defaults 64" | ||
58 | |||
59 | SYSTEMD_SERVICE_${PN} = "neard.service" | ||
diff --git a/meta/recipes-connectivity/neard/neard_0.10.bb b/meta/recipes-connectivity/neard/neard_0.10.bb index dc43f7e315..0e590b1861 100644 --- a/meta/recipes-connectivity/neard/neard_0.10.bb +++ b/meta/recipes-connectivity/neard/neard_0.10.bb | |||
@@ -1,69 +1,11 @@ | |||
1 | SUMMARY = "Linux NFC daemon" | 1 | require neard.inc |
2 | DESCRIPTION = "A daemon for the Linux Near Field Communication stack" | ||
3 | HOMEPAGE = "http://01.org/linux-nfc" | ||
4 | LICENSE = "GPLv2" | ||
5 | |||
6 | DEPENDS = "dbus glib-2.0 libnl" | ||
7 | 2 | ||
8 | SRC_URI = "git://git.kernel.org/pub/scm/network/nfc/neard.git;protocol=git \ | 3 | SRC_URI = "git://git.kernel.org/pub/scm/network/nfc/neard.git;protocol=git \ |
9 | file://neard.in \ | 4 | file://neard.in \ |
10 | file://neard.service.in \ | 5 | file://neard.service.in \ |
11 | " | 6 | " |
12 | 7 | ||
13 | LIC_FILES_CHKSUM = "file://COPYING;md5=12f884d2ae1ff87c09e5b7ccc2c4ca7e \ | ||
14 | file://src/near.h;beginline=1;endline=20;md5=358e4deefef251a4761e1ffacc965d13 \ | ||
15 | " | ||
16 | |||
17 | S = "${WORKDIR}/git" | 8 | S = "${WORKDIR}/git" |
18 | SRCREV = "eb486bf35e24d7d1db61350f5ab393a0c880523d" | 9 | SRCREV = "eb486bf35e24d7d1db61350f5ab393a0c880523d" |
19 | PV = "0.10+git${SRCPV}" | 10 | PV = "0.10+git${SRCPV}" |
20 | PR = "r0" | 11 | PR = "r0" |
21 | |||
22 | inherit autotools pkgconfig systemd update-rc.d | ||
23 | |||
24 | EXTRA_OECONF += "--enable-tools" | ||
25 | |||
26 | do_install() { | ||
27 | oe_runmake DESTDIR=${D} libexecdir=${libexecdir} install | ||
28 | } | ||
29 | |||
30 | # This would copy neard start-stop shell and test scripts | ||
31 | do_install_append() { | ||
32 | if ${@base_contains('DISTRO_FEATURES', 'sysvinit', 'true', 'false', d)}; then | ||
33 | install -d ${D}${sysconfdir}/init.d/ | ||
34 | sed "s:@installpath@:${libexecdir}:" ${WORKDIR}/neard.in \ | ||
35 | > ${D}${sysconfdir}/init.d/neard | ||
36 | chmod 0755 ${D}${sysconfdir}/init.d/neard | ||
37 | fi | ||
38 | |||
39 | if ${@base_contains('DISTRO_FEATURES', 'systemd', 'true', 'false', d)}; then | ||
40 | install -d ${D}${systemd_unitdir}/system | ||
41 | sed "s:@installpath@:${libexecdir}:" ${WORKDIR}/neard.service.in \ | ||
42 | > ${D}${systemd_unitdir}/system/neard.service | ||
43 | fi | ||
44 | |||
45 | # Install the tests for neard-tests | ||
46 | install -d ${D}${libdir}/neard | ||
47 | install -m 0755 ${S}/test/* ${D}${libdir}/${BPN}/ | ||
48 | install -m 0755 ${S}/tools/nfctool/nfctool ${D}${libdir}/${BPN}/ | ||
49 | } | ||
50 | |||
51 | PACKAGES =+ "${PN}-tests" | ||
52 | |||
53 | FILES_${PN}-tests = "${libdir}/${BPN}/*-test" | ||
54 | FILES_${PN}-dbg += "${libdir}/${BPN}/*/.debug" | ||
55 | |||
56 | RDEPENDS_${PN} = "dbus python python-dbus python-pygobject" | ||
57 | |||
58 | # Bluez & Wifi are not mandatory except for handover | ||
59 | RRECOMMENDS_${PN} = "\ | ||
60 | ${@base_contains('DISTRO_FEATURES', 'bluetooth', 'bluez4', '', d)} \ | ||
61 | ${@base_contains('DISTRO_FEATURES', 'wifi','wpa-supplicant', '', d)} \ | ||
62 | " | ||
63 | |||
64 | RDEPENDS_${PN}-tests = "python python-dbus python-pygobject" | ||
65 | |||
66 | INITSCRIPT_NAME = "neard" | ||
67 | INITSCRIPT_PARAMS = "defaults 64" | ||
68 | |||
69 | SYSTEMD_SERVICE_${PN} = "neard.service" | ||