diff options
author | Tudor Florea <tudor.florea@enea.com> | 2015-10-08 22:46:13 +0200 |
---|---|---|
committer | Tudor Florea <tudor.florea@enea.com> | 2015-10-08 22:46:13 +0200 |
commit | 8d89651ef729e560ad96dcfc002fcde6ff7f923b (patch) | |
tree | eb5be01c25f735d12fe9881ee6327c9b7e8bbe39 /meta-linaro-integration/recipes-overlayed/nss-myhostname | |
download | meta-linaro-dizzy-enea.tar.gz |
initial commit for Enea Linux 5.0 armdizzy-enea
Signed-off-by: Tudor Florea <tudor.florea@enea.com>
Diffstat (limited to 'meta-linaro-integration/recipes-overlayed/nss-myhostname')
-rw-r--r-- | meta-linaro-integration/recipes-overlayed/nss-myhostname/nss-myhostname_0.3.bb | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/meta-linaro-integration/recipes-overlayed/nss-myhostname/nss-myhostname_0.3.bb b/meta-linaro-integration/recipes-overlayed/nss-myhostname/nss-myhostname_0.3.bb new file mode 100644 index 0000000..b9ddeaf --- /dev/null +++ b/meta-linaro-integration/recipes-overlayed/nss-myhostname/nss-myhostname_0.3.bb | |||
@@ -0,0 +1,29 @@ | |||
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 = "LGPLv2.1" | ||
7 | LIC_FILES_CHKSUM = "file://LICENSE;md5=2d5025d4aa3495befef8f17206a5b0a1" | ||
8 | |||
9 | SRC_URI = "http://0pointer.de/lennart/projects/nss-myhostname/nss-myhostname-${PV}.tar.gz" | ||
10 | |||
11 | SRC_URI[md5sum] = "d4ab9ac36c053ab8fb836db1cbd4a48f" | ||
12 | SRC_URI[sha256sum] = "2ba744ea8d578d1c57c85884e94a3042ee17843a5294434d3a7f6c4d67e7caf2" | ||
13 | |||
14 | inherit autotools | ||
15 | |||
16 | # /etc/nsswitch.conf needs to be present | ||
17 | RDEPENDS_${PN} = "base-files" | ||
18 | |||
19 | pkg_postinst_${PN} () { | ||
20 | sed -e '/^hosts:/s/\s*\<myhostname\>//' \ | ||
21 | -e 's/\(^hosts:.*\)\(\<files\>\)\(.*\)\(\<dns\>\)\(.*\)/\1\2 myhostname \3\4\5/' \ | ||
22 | -i ${D}${sysconfdir}/nsswitch.conf | ||
23 | } | ||
24 | |||
25 | pkg_prerm_${PN} () { | ||
26 | sed -e '/^hosts:/s/\s*\<myhostname\>//' \ | ||
27 | -e '/^hosts:/s/\s*myhostname//' \ | ||
28 | -i ${D}${sysconfdir}/nsswitch.conf | ||
29 | } | ||