diff options
author | Ruslan Bilovol <rbilovol@cisco.com> | 2019-08-07 15:30:07 +0300 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2019-08-08 10:04:23 -0700 |
commit | a8ed1f33d722149206add75c8c233f2698f72f09 (patch) | |
tree | 913a5c35f832117317273f869cb25f950dd31462 | |
parent | c79bce945c38acab06b757b57a46ff5aa34e830c (diff) | |
download | meta-openembedded-a8ed1f33d722149206add75c8c233f2698f72f09.tar.gz |
libnss-nisplus: Add recipe
Same as with libnss-nis - this will substitute
the glibc nisplus module which has been removed
SRCREV points to 1.3 release plus patch on top which
allows to build with recent glibc versions
Signed-off-by: Ruslan Bilovol <rbilovol@cisco.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r-- | meta-oe/recipes-extended/libnss-nisplus/libnss-nisplus.bb | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/meta-oe/recipes-extended/libnss-nisplus/libnss-nisplus.bb b/meta-oe/recipes-extended/libnss-nisplus/libnss-nisplus.bb new file mode 100644 index 0000000000..2dbeee7c31 --- /dev/null +++ b/meta-oe/recipes-extended/libnss-nisplus/libnss-nisplus.bb | |||
@@ -0,0 +1,31 @@ | |||
1 | # Copyright (C) 2019 Ruslan Bilovol <rbilovol@cisco.com> | ||
2 | # Released under the MIT license (see COPYING.MIT for the terms) | ||
3 | |||
4 | SUMMARY = "NSS module for glibc, to provide NIS+ support for glibc" | ||
5 | |||
6 | DESCRIPTION = "This package contains the NSS NIS+ plugin for glibc.\ | ||
7 | This code was formerly part of glibc, but is now standalone to\ | ||
8 | be able to link against TI-RPC for IPv6 support." | ||
9 | |||
10 | HOMEPAGE = "https://github.com/thkukuk/libnss_nisplus" | ||
11 | LICENSE = "LGPL-2.1" | ||
12 | LIC_FILES_CHKSUM = "file://COPYING;md5=4fbd65380cdd255951079008b364516c" | ||
13 | SECTION = "libs" | ||
14 | DEPENDS += "libtirpc libnsl2" | ||
15 | |||
16 | PV = "1.3+git${SRCPV}" | ||
17 | |||
18 | SRCREV = "c6934373c7bac91499ff7bbe7d2439599325ca63" | ||
19 | |||
20 | SRC_URI = "git://github.com/thkukuk/libnss_nisplus \ | ||
21 | " | ||
22 | |||
23 | S = "${WORKDIR}/git" | ||
24 | |||
25 | inherit autotools pkgconfig | ||
26 | |||
27 | BBCLASSEXTEND += "native nativesdk" | ||
28 | # | ||
29 | # We will skip parsing this packagegeoup for non-glibc systems | ||
30 | # | ||
31 | COMPATIBLE_HOST_libc-musl = 'null' | ||