summaryrefslogtreecommitdiffstats
path: root/meta/recipes-connectivity/resolvconf/resolvconf_1.72.bb
diff options
context:
space:
mode:
authorSaul Wold <sgw@linux.intel.com>2013-05-20 19:19:43 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-05-24 14:14:43 +0100
commit40bc4ed3e5a059e1a989a54fc664385d12862e48 (patch)
tree394b9c0b40952722d5642fa08bea2a718761d21f /meta/recipes-connectivity/resolvconf/resolvconf_1.72.bb
parent24380e2be91e08fa5d33a81488c0a48e2576e51a (diff)
downloadpoky-40bc4ed3e5a059e1a989a54fc664385d12862e48.tar.gz
resolvconf: Update to 1.72
(From OE-Core rev: 6edee60964a1bc367229239175426bdf175efa62) Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-connectivity/resolvconf/resolvconf_1.72.bb')
-rw-r--r--meta/recipes-connectivity/resolvconf/resolvconf_1.72.bb33
1 files changed, 33 insertions, 0 deletions
diff --git a/meta/recipes-connectivity/resolvconf/resolvconf_1.72.bb b/meta/recipes-connectivity/resolvconf/resolvconf_1.72.bb
new file mode 100644
index 0000000000..a96dbff949
--- /dev/null
+++ b/meta/recipes-connectivity/resolvconf/resolvconf_1.72.bb
@@ -0,0 +1,33 @@
1SUMMARY = "name server information handler"
2DESCRIPTION = "Resolvconf is a framework for keeping track of the system's \
3information about currently available nameservers. It sets \
4itself up as the intermediary between programs that supply \
5nameserver information and programs that need nameserver \
6information."
7SECTION = "console/network"
8LICENSE = "GPLv2+"
9LIC_FILES_CHKSUM = "file://COPYING;md5=c93c0550bd3173f4504b2cbd8991e50b"
10AUTHOR = "Thomas Hood"
11HOMEPAGE = "http://packages.debian.org/resolvconf"
12RDEPENDS_${PN} = "bash"
13
14SRC_URI = "${DEBIAN_MIRROR}/main/r/resolvconf/resolvconf_${PV}.tar.gz"
15
16SRC_URI[md5sum] = "6bf631213c97f89261d997c78f7b9506"
17SRC_URI[sha256sum] = "196e8b5ef0a0282bf99e156113b058e65dd7f889cf4aea16597cddeef7e7cd43"
18
19inherit allarch
20
21do_compile () {
22 :
23}
24
25do_install () {
26 install -d ${D}${sysconfdir} ${D}${base_sbindir} ${D}${localstatedir}/volatile/run/resolvconf/interface
27 install -d ${D}${mandir}/man8 ${D}${docdir}/${P}
28 cp -pPR etc/* ${D}${sysconfdir}/
29 chown -R root:root ${D}${sysconfdir}/
30 install -m 0755 bin/resolvconf ${D}${base_sbindir}/
31 install -m 0644 README ${D}${docdir}/${P}/
32 install -m 0644 man/resolvconf.8 ${D}${mandir}/man8/
33}