diff options
author | Saul Wold <sgw@linux.intel.com> | 2010-12-29 22:37:02 -0800 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-12-30 12:06:53 +0000 |
commit | 5dd8644879b894973337dc92e94f38095ce61499 (patch) | |
tree | 4ca5014053102270f6f30eb529936e14941f8fd1 /meta/recipes-connectivity/bind/bind_9.7.2-P3.bb | |
parent | 8494db74786307d44169bee4f21dc0efa1643f70 (diff) | |
download | poky-5dd8644879b894973337dc92e94f38095ce61499.tar.gz |
bind: update to 8.7.2-P3
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Diffstat (limited to 'meta/recipes-connectivity/bind/bind_9.7.2-P3.bb')
-rw-r--r-- | meta/recipes-connectivity/bind/bind_9.7.2-P3.bb | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/meta/recipes-connectivity/bind/bind_9.7.2-P3.bb b/meta/recipes-connectivity/bind/bind_9.7.2-P3.bb new file mode 100644 index 0000000000..675ab1798a --- /dev/null +++ b/meta/recipes-connectivity/bind/bind_9.7.2-P3.bb | |||
@@ -0,0 +1,55 @@ | |||
1 | DESCRIPTION = "ISC Internet Domain Name Server" | ||
2 | HOMEPAGE = "http://www.isc.org/sw/bind/" | ||
3 | SECTION = "console/network" | ||
4 | |||
5 | LICENSE = "ISC" | ||
6 | LIC_FILES_CHKSUM = "file://COPYRIGHT;md5=fe11ac92dcbd84134d91b6e2c2eccab5" | ||
7 | |||
8 | DEPENDS = "openssl" | ||
9 | PR = "r0" | ||
10 | |||
11 | SRC_URI = "ftp://ftp.isc.org/isc/bind9/${PV}/${PN}-${PV}.tar.gz \ | ||
12 | file://conf.patch \ | ||
13 | file://cross-build-fix.patch \ | ||
14 | " | ||
15 | |||
16 | SRC_URI[md5sum] = "b4537cbae38b2daef36775bf49f33db9" | ||
17 | SRC_URI[sha256sum] = "cd945f4766be664f4528ec065df626ad3624481695316ec8e13ad272f4abfb7e" | ||
18 | |||
19 | # --enable-exportlib is necessary for building dhcp | ||
20 | EXTRA_OECONF = " --enable-ipv6=no --with-randomdev=/dev/random --disable-threads \ | ||
21 | --disable-devpoll --disable-epoll \ | ||
22 | --sysconfdir=${sysconfdir}/bind \ | ||
23 | --with-openssl=${STAGING_LIBDIR}/.. --with-libxml2=${STAGING_LIBDIR}/.. \ | ||
24 | --enable-exportlib --with-export-includedir=${includedir} --with-export-libdir=${libdir} \ | ||
25 | " | ||
26 | inherit autotools update-rc.d | ||
27 | |||
28 | INITSCRIPT_NAME = "bind" | ||
29 | INITSCRIPT_PARAMS = "defaults" | ||
30 | |||
31 | PARALLEL_MAKE = "" | ||
32 | |||
33 | PACKAGES_prepend = "${PN}-utils " | ||
34 | FILES_${PN}-utils = "${bindir}/host ${bindir}/dig ${bindir}/nslookup" | ||
35 | FILES_${PN}-dev += "${bindir}/isc-config.h" | ||
36 | |||
37 | do_install_append() { | ||
38 | rm "${D}/usr/bin/nslookup" | ||
39 | install -d "${D}/etc/bind" | ||
40 | install -d "${D}/etc/init.d" | ||
41 | install -m 644 ${S}/conf/* "${D}/etc/bind" | ||
42 | install -m 755 "${S}/init.d" "${D}/etc/init.d/bind" | ||
43 | } | ||
44 | |||
45 | CONFFILES_${PN} = " \ | ||
46 | ${sysconfdir}/bind/named.conf \ | ||
47 | ${sysconfdir}/bind/named.conf.local \ | ||
48 | ${sysconfdir}/bind/named.conf.options \ | ||
49 | ${sysconfdir}/bind/db.0 \ | ||
50 | ${sysconfdir}/bind/db.127 \ | ||
51 | ${sysconfdir}/bind/db.empty \ | ||
52 | ${sysconfdir}/bind/db.local \ | ||
53 | ${sysconfdir}/bind/db.root \ | ||
54 | " | ||
55 | |||