mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-27 07:57:27 +00:00
fc78d37ff0
Please see https://git.yoctoproject.org/poky/commit/?id=4dd321f8b83afecd962393101b2a6861275b5265 for what changes are needed, and sed commands that can be used to make them en masse. I've verified that bitbake -c patch world works with these, but did not run a world build; the majority of recipes shouldn't need further fixups, but if there are some that still fall out, they can be fixed in followups. Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
47 lines
1.3 KiB
BlitzBasic
47 lines
1.3 KiB
BlitzBasic
# This package builds tools to manage NIS
|
|
# The source package is utils/net/NIS/yp-tools
|
|
#
|
|
require nis.inc
|
|
|
|
SUMMARY = "NIS client programs"
|
|
DESCRIPTION = " \
|
|
Network Information Service tools. \
|
|
This package contains ypcat, ypmatch, ypset, \
|
|
ypwhich, yppasswd, domainname, nisdomainname \
|
|
and ypdomainname. \
|
|
"
|
|
|
|
# v4.2.3
|
|
SRCREV = "1bfda29c342a81b97cb1995ffd9e8da5de63e7ab"
|
|
|
|
SRC_URI = "git://github.com/thkukuk/yp-tools;branch=master;protocol=https \
|
|
file://domainname.service \
|
|
"
|
|
|
|
|
|
DEPENDS = "libtirpc libnsl2 virtual/crypt"
|
|
|
|
inherit autotools systemd
|
|
SYSTEMD_SERVICE:${PN} = "domainname.service"
|
|
|
|
RPROVIDES:${PN} += "${PN}-systemd"
|
|
RREPLACES:${PN} += "${PN}-systemd"
|
|
RCONFLICTS:${PN} += "${PN}-systemd"
|
|
|
|
CACHED_CONFIGUREVARS += "ac_cv_prog_STRIP=/bin/true"
|
|
|
|
EXTRA_OECONF = " \
|
|
--disable-rpath --disable-domainname \
|
|
"
|
|
CFLAGS:append:libc-musl = " -Wno-error=cpp"
|
|
|
|
FILES:${PN} += " ${libdir}/yp-nis/*.so.*.* ${libdir}/yp-nis/pkgconfig/"
|
|
FILES:${PN}-dbg += " ${libdir}/yp-nis/.debug"
|
|
FILES:${PN}-dev += " ${libdir}/yp-nis/*.so ${libdir}/yp-nis/*.so.[12] ${libdir}/yp-nis/*.la"
|
|
FILES:${PN}-staticdev += " ${libdir}/yp-nis/*.a"
|
|
|
|
do_install:append() {
|
|
install -d ${D}${systemd_unitdir}/system
|
|
install -m 0644 ${UNPACKDIR}/domainname.service ${D}${systemd_unitdir}/system
|
|
}
|