diff options
author | Saul Wold <sgw@linux.intel.com> | 2011-10-04 20:52:23 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-10-17 14:10:40 +0100 |
commit | add6e674aba745c9fd0f5c6af3cda7997145a3c5 (patch) | |
tree | dcb9b2f8916af6bfe73831935b521aa5370e2d66 /meta/recipes-connectivity/bind/bind_9.8.1.bb | |
parent | 468e21662daf926e82b73761f48a1d10c7d2db52 (diff) | |
download | poky-add6e674aba745c9fd0f5c6af3cda7997145a3c5.tar.gz |
bind: update to 9.8.1
The COPYRIGHT File was updates for both Year and showing the complete
list of contributors, this change effectively adds BSD equivlant to
the licensing terms.
(From OE-Core rev: a770a56aba6419372654ea6f1413672a0aa19cc0)
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-connectivity/bind/bind_9.8.1.bb')
-rw-r--r-- | meta/recipes-connectivity/bind/bind_9.8.1.bb | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/meta/recipes-connectivity/bind/bind_9.8.1.bb b/meta/recipes-connectivity/bind/bind_9.8.1.bb new file mode 100644 index 0000000000..330acdbef2 --- /dev/null +++ b/meta/recipes-connectivity/bind/bind_9.8.1.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 & BSD" | ||
6 | LIC_FILES_CHKSUM = "file://COPYRIGHT;md5=0fbe2a3ab3c68ac3fea3cad13093877c" | ||
7 | |||
8 | DEPENDS = "openssl" | ||
9 | PR = "r0" | ||
10 | |||
11 | SRC_URI = "ftp://ftp.isc.org/isc/bind9/${PV}/${BPN}-${PV}.tar.gz \ | ||
12 | file://conf.patch \ | ||
13 | file://cross-build-fix.patch \ | ||
14 | " | ||
15 | |||
16 | SRC_URI[md5sum] = "cf31117c5d35af34d4c0702970ad9fb7" | ||
17 | SRC_URI[sha256sum] = "02285dc429cb2a6687a1b2446e9ee22c1df27f2577225b05be5092395ee7c92c" | ||
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 --with-gost=no \ | ||
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}${bindir}/nslookup" | ||
39 | install -d "${D}${sysconfdir}/bind" | ||
40 | install -d "${D}${sysconfdir}/init.d" | ||
41 | install -m 644 ${S}/conf/* "${D}${sysconfdir}/bind/" | ||
42 | install -m 755 "${S}/init.d" "${D}${sysconfdir}/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 | |||