summaryrefslogtreecommitdiffstats
path: root/meta/recipes-connectivity/resolvconf/resolvconf_1.71.bb
diff options
context:
space:
mode:
authorSaul Wold <sgw@linux.intel.com>2013-04-21 14:36:54 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-04-29 14:45:08 +0100
commit2b5653b298572b51035642c55af96c9380e8b4d4 (patch)
treeac113a95d883d31ae767e27f70b323d741cbed99 /meta/recipes-connectivity/resolvconf/resolvconf_1.71.bb
parent75de6116914e96840a6c0db77b62d1bdb42c3558 (diff)
downloadpoky-2b5653b298572b51035642c55af96c9380e8b4d4.tar.gz
resolvconf: Update to 1.71
(From OE-Core rev: 2f0f7c34f805b4a5e89ec138107bcc434d06f8d0) 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.71.bb')
-rw-r--r--meta/recipes-connectivity/resolvconf/resolvconf_1.71.bb33
1 files changed, 33 insertions, 0 deletions
diff --git a/meta/recipes-connectivity/resolvconf/resolvconf_1.71.bb b/meta/recipes-connectivity/resolvconf/resolvconf_1.71.bb
new file mode 100644
index 0000000000..d342a6e17b
--- /dev/null
+++ b/meta/recipes-connectivity/resolvconf/resolvconf_1.71.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] = "f073ab06b11584c8af86e7f84a56680e"
17SRC_URI[sha256sum] = "f2ec30a0e89330c6cbc3117efd60639da8305782979844ee4a1906e4b0ca230c"
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}