diff options
author | Cristian Iorga <cristian.iorga@intel.com> | 2013-12-11 19:24:02 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-12-14 09:11:18 +0000 |
commit | e70fb7895e1c922c53e313bc2dbd2fdf76ac5f7f (patch) | |
tree | 7a0fec509af393f94c14bfc891216dfe0461f9d5 /meta/recipes-extended/rpcbind/rpcbind_0.2.1.bb | |
parent | 94090391d4310193d0421303c3b6c6f101fc430b (diff) | |
download | poky-e70fb7895e1c922c53e313bc2dbd2fdf76ac5f7f.tar.gz |
rpcbind: upgrade to 0.2.1
fix_host_path.patch and obsolete_automake_macros.patch
are no longer necessary, removed.
(From OE-Core rev: 0ff336d9076b769d2e1d2ff425e64558bbef620f)
Signed-off-by: Cristian Iorga <cristian.iorga@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended/rpcbind/rpcbind_0.2.1.bb')
-rw-r--r-- | meta/recipes-extended/rpcbind/rpcbind_0.2.1.bb | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/meta/recipes-extended/rpcbind/rpcbind_0.2.1.bb b/meta/recipes-extended/rpcbind/rpcbind_0.2.1.bb new file mode 100644 index 0000000000..6043501b5b --- /dev/null +++ b/meta/recipes-extended/rpcbind/rpcbind_0.2.1.bb | |||
@@ -0,0 +1,56 @@ | |||
1 | SUMMARY = "Universal Addresses to RPC Program Number Mapper" | ||
2 | DESCRIPTION = "The rpcbind utility is a server that converts RPC \ | ||
3 | program numbers into universal addresses." | ||
4 | SECTION = "console/network" | ||
5 | HOMEPAGE = "http://sourceforge.net/projects/rpcbind/" | ||
6 | BUGTRACKER = "http://sourceforge.net/tracker/?group_id=201237&atid=976751" | ||
7 | DEPENDS = "libtirpc quota" | ||
8 | |||
9 | LICENSE = "BSD" | ||
10 | LIC_FILES_CHKSUM = "file://COPYING;md5=b46486e4c4a416602693a711bb5bfa39 \ | ||
11 | file://src/rpcinfo.c;beginline=1;endline=27;md5=f8a8cd2cb25ac5aa16767364fb0e3c24" | ||
12 | |||
13 | SRC_URI = "${SOURCEFORGE_MIRROR}/rpcbind/rpcbind-${PV}.tar.bz2 \ | ||
14 | file://init.d \ | ||
15 | ${UCLIBCPATCHES} \ | ||
16 | file://rpcbind.conf \ | ||
17 | file://rpcbind.service \ | ||
18 | " | ||
19 | |||
20 | UCLIBCPATCHES_libc-uclibc = "file://0001-uclibc-nss.patch \ | ||
21 | file://0002-uclibc-rpcsvc-defines.patch \ | ||
22 | " | ||
23 | UCLIBCPATCHES ?= "" | ||
24 | |||
25 | SRC_URI[md5sum] = "0a5f9c2142af814c55d957aaab3bcc68" | ||
26 | SRC_URI[sha256sum] = "da169ff877a5a07581fad50a9a808ac6e96f0c277a3df49a7ef005778428496e" | ||
27 | |||
28 | inherit autotools update-rc.d systemd | ||
29 | |||
30 | PACKAGECONFIG ??= "tcp-wrappers" | ||
31 | PACKAGECONFIG[tcp-wrappers] = "--enable-libwrap,--disable-libwrap,tcp-wrappers" | ||
32 | |||
33 | INITSCRIPT_NAME = "rpcbind" | ||
34 | INITSCRIPT_PARAMS = "start 12 2 3 4 5 . stop 60 0 1 6 ." | ||
35 | |||
36 | SYSTEMD_SERVICE_${PN} = "rpcbind.service" | ||
37 | SYSTEMD_AUTO_ENABLE = "disable" | ||
38 | |||
39 | EXTRA_OECONF += " --enable-warmstarts " | ||
40 | |||
41 | do_install_append () { | ||
42 | mv ${D}${bindir} ${D}${sbindir} | ||
43 | |||
44 | install -d ${D}${sysconfdir}/init.d | ||
45 | sed -e 's,/etc/,${sysconfdir}/,g' \ | ||
46 | -e 's,/sbin/,${sbindir}/,g' \ | ||
47 | ${WORKDIR}/init.d > ${D}${sysconfdir}/init.d/rpcbind | ||
48 | chmod 0755 ${D}${sysconfdir}/init.d/rpcbind | ||
49 | |||
50 | install -m 0755 ${WORKDIR}/rpcbind.conf ${D}${sysconfdir} | ||
51 | install -d ${D}${systemd_unitdir}/system | ||
52 | install -m 0644 ${WORKDIR}/rpcbind.service ${D}${systemd_unitdir}/system | ||
53 | sed -i -e 's,@SBINDIR@,${sbindir},g' \ | ||
54 | -e 's,@SYSCONFDIR@,${sysconfdir},g' \ | ||
55 | ${D}${systemd_unitdir}/system/rpcbind.service | ||
56 | } | ||