diff options
author | zhengruoqin <zhengrq.fnst@fujitsu.com> | 2021-05-14 10:12:28 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-05-16 08:29:59 +0100 |
commit | b05c3637ce0881d34d1478ed09bc7f3b9c2699a0 (patch) | |
tree | 2b085a116121dd273a9bf976dd8ebab862315c0f /meta/recipes-extended/rpcbind/rpcbind_1.2.6.bb | |
parent | f1b7f662c548cbcbaeceafc6e1561c8693f27656 (diff) | |
download | poky-b05c3637ce0881d34d1478ed09bc7f3b9c2699a0.tar.gz |
rpcbind: upgrade 1.2.5 -> 1.2.6
refresh rpcbind_add_option_to_fix_port_number.patch
(From OE-Core rev: 11bbe1c86d5d3e446fe5ea4028bc8b3f21b98587)
Signed-off-by: Zheng Ruoqin <zhengrq.fnst@fujitsu.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended/rpcbind/rpcbind_1.2.6.bb')
-rw-r--r-- | meta/recipes-extended/rpcbind/rpcbind_1.2.6.bb | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/meta/recipes-extended/rpcbind/rpcbind_1.2.6.bb b/meta/recipes-extended/rpcbind/rpcbind_1.2.6.bb new file mode 100644 index 0000000000..b02638b2ce --- /dev/null +++ b/meta/recipes-extended/rpcbind/rpcbind_1.2.6.bb | |||
@@ -0,0 +1,54 @@ | |||
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-3-Clause" | ||
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 | file://rpcbind.conf \ | ||
16 | file://rpcbind_add_option_to_fix_port_number.patch \ | ||
17 | file://0001-systemd-use-EnvironmentFile.patch \ | ||
18 | " | ||
19 | SRC_URI[sha256sum] = "5613746489cae5ae23a443bb85c05a11741a5f12c8f55d2bb5e83b9defeee8de" | ||
20 | |||
21 | inherit autotools update-rc.d systemd pkgconfig update-alternatives | ||
22 | |||
23 | PACKAGECONFIG ??= "tcp-wrappers" | ||
24 | PACKAGECONFIG[tcp-wrappers] = "--enable-libwrap,--disable-libwrap,tcp-wrappers" | ||
25 | |||
26 | INITSCRIPT_NAME = "rpcbind" | ||
27 | INITSCRIPT_PARAMS = "start 12 2 3 4 5 . stop 60 0 1 6 ." | ||
28 | |||
29 | SYSTEMD_SERVICE_${PN} = "rpcbind.service rpcbind.socket" | ||
30 | |||
31 | inherit useradd | ||
32 | |||
33 | USERADD_PACKAGES = "${PN}" | ||
34 | USERADD_PARAM_${PN} = "--system --no-create-home --home-dir / \ | ||
35 | --shell /bin/false --user-group rpc" | ||
36 | |||
37 | PACKAGECONFIG ??= "${@bb.utils.filter('DISTRO_FEATURES', 'systemd', d)}" | ||
38 | PACKAGECONFIG[systemd] = "--with-systemdsystemunitdir=${systemd_unitdir}/system/, \ | ||
39 | --without-systemdsystemunitdir, \ | ||
40 | systemd \ | ||
41 | " | ||
42 | |||
43 | EXTRA_OECONF += " --enable-warmstarts --with-rpcuser=rpc" | ||
44 | |||
45 | do_install_append () { | ||
46 | install -d ${D}${sysconfdir}/init.d | ||
47 | sed -e 's,/etc/,${sysconfdir}/,g' \ | ||
48 | -e 's,/sbin/,${sbindir}/,g' \ | ||
49 | ${WORKDIR}/init.d > ${D}${sysconfdir}/init.d/rpcbind | ||
50 | chmod 0755 ${D}${sysconfdir}/init.d/rpcbind | ||
51 | } | ||
52 | |||
53 | ALTERNATIVE_${PN} = "rpcinfo" | ||
54 | ALTERNATIVE_LINK_NAME[rpcinfo] = "${bindir}/rpcinfo" | ||