diff options
| -rw-r--r-- | meta/recipes-support/nss-myhostname/nss-myhostname_0.3.bb | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/meta/recipes-support/nss-myhostname/nss-myhostname_0.3.bb b/meta/recipes-support/nss-myhostname/nss-myhostname_0.3.bb new file mode 100644 index 0000000000..d5ed084ed2 --- /dev/null +++ b/meta/recipes-support/nss-myhostname/nss-myhostname_0.3.bb | |||
| @@ -0,0 +1,25 @@ | |||
| 1 | DESCRIPTION = "plugin for the GNU Name Service Switch (NSS) functionality of \ | ||
| 2 | the GNU C Library (glibc) providing host name resolution for the locally \ | ||
| 3 | configured system hostname as returned by gethostname(2)." | ||
| 4 | HOMEPAGE = "http://0pointer.de/lennart/projects/nss-myhostname/" | ||
| 5 | LICENSE = "LGPLv2.1" | ||
| 6 | LIC_FILES_CHKSUM = "file://LICENSE;md5=2d5025d4aa3495befef8f17206a5b0a1" | ||
| 7 | |||
| 8 | SRC_URI = "http://0pointer.de/lennart/projects/nss-myhostname/nss-myhostname-${PV}.tar.gz" | ||
| 9 | |||
| 10 | SRC_URI[md5sum] = "d4ab9ac36c053ab8fb836db1cbd4a48f" | ||
| 11 | SRC_URI[sha256sum] = "2ba744ea8d578d1c57c85884e94a3042ee17843a5294434d3a7f6c4d67e7caf2" | ||
| 12 | |||
| 13 | inherit autotools | ||
| 14 | |||
| 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/etc/nsswitch.conf | ||
| 19 | } | ||
| 20 | |||
| 21 | pkg_prerm_${PN} () { | ||
| 22 | sed -e '/^hosts:/s/\s*\<myhostname\>//' \ | ||
| 23 | -e '/^hosts:/s/\s*myhostname//' \ | ||
| 24 | -i $D/etc/nsswitch.conf | ||
| 25 | } | ||
