nss-myhostname_0.3.bb 1.1 KB

12345678910111213141516171819202122232425262728293031
  1. SUMMARY = "Name Service Switch module for resolving the local hostname"
  2. DESCRIPTION = "plugin for the GNU Name Service Switch (NSS) functionality of \
  3. the GNU C Library (glibc) providing host name resolution for the locally \
  4. configured system hostname as returned by gethostname(2)."
  5. HOMEPAGE = "http://0pointer.de/lennart/projects/nss-myhostname/"
  6. LICENSE = "LGPL-2.1-only"
  7. LIC_FILES_CHKSUM = "file://LICENSE;md5=2d5025d4aa3495befef8f17206a5b0a1"
  8. SRC_URI = "http://0pointer.de/lennart/projects/nss-myhostname/nss-myhostname-${PV}.tar.gz \
  9. "
  10. SRC_URI[sha256sum] = "2ba744ea8d578d1c57c85884e94a3042ee17843a5294434d3a7f6c4d67e7caf2"
  11. inherit autotools features_check
  12. COMPATIBLE_HOST:libc-musl = 'null'
  13. # The systemd has its own copy of nss-myhostname
  14. CONFLICT_DISTRO_FEATURES = "systemd"
  15. pkg_postinst:${PN} () {
  16. sed -e '/^hosts:/s/\s*\<myhostname\>//' \
  17. -e 's/\(^hosts:.*\)\(\<files\>\)\(.*\)\(\<dns\>\)\(.*\)/\1\2 myhostname \3\4\5/' \
  18. -i $D${sysconfdir}/nsswitch.conf
  19. }
  20. pkg_prerm:${PN} () {
  21. sed -e '/^hosts:/s/\s*\<myhostname\>//' \
  22. -e '/^hosts:/s/\s*myhostname//' \
  23. -i $D${sysconfdir}/nsswitch.conf
  24. }