diff options
author | Ferry Meyndert <m0rpheus@gentoo.org> | 2002-03-21 10:27:59 +0000 |
---|---|---|
committer | Ferry Meyndert <m0rpheus@gentoo.org> | 2002-03-21 10:27:59 +0000 |
commit | cc2f14325d6e1c9635bee5f33ff26dc6bc586a1b (patch) | |
tree | 149720ea4464265a41d6290f440c5a4d2ccc0b7b /net-misc | |
parent | new version; cleanup (diff) | |
download | gentoo-2-cc2f14325d6e1c9635bee5f33ff26dc6bc586a1b.tar.gz gentoo-2-cc2f14325d6e1c9635bee5f33ff26dc6bc586a1b.tar.bz2 gentoo-2-cc2f14325d6e1c9635bee5f33ff26dc6bc586a1b.zip |
updated too new version of bind
Diffstat (limited to 'net-misc')
-rw-r--r-- | net-misc/bind/ChangeLog | 8 | ||||
-rw-r--r-- | net-misc/bind/bind-9.2.0.ebuild | 56 | ||||
-rw-r--r-- | net-misc/bind/files/digest-bind-9.2.0 | 1 |
3 files changed, 64 insertions, 1 deletions
diff --git a/net-misc/bind/ChangeLog b/net-misc/bind/ChangeLog index 9bddf4270060..3c1cade58ab7 100644 --- a/net-misc/bind/ChangeLog +++ b/net-misc/bind/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for net-misc/bind # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/net-misc/bind/ChangeLog,v 1.2 2002/02/09 01:08:04 woodchip Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/bind/ChangeLog,v 1.3 2002/03/21 10:27:59 m0rpheus Exp $ + +*bind-9.1.3-r7 (21 Mar 2002) + + 21 Mar 2002; Ferry Meyndert <m0rpheus@gentoo.org> bind-9.2.0.ebuild: + + Updated too new version *bind-9.1.3-r7 (8 Feb 2002) diff --git a/net-misc/bind/bind-9.2.0.ebuild b/net-misc/bind/bind-9.2.0.ebuild new file mode 100644 index 000000000000..0d18d4fb5471 --- /dev/null +++ b/net-misc/bind/bind-9.2.0.ebuild @@ -0,0 +1,56 @@ +# Copyright 1999-2000 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Daniel Robbins <drobbins@gentoo.org>, Parag Mehta <pm@gnuos.org> +# $Header: /var/cvsroot/gentoo-x86/net-misc/bind/bind-9.2.0.ebuild,v 1.1 2002/03/21 10:27:59 m0rpheus Exp $ + +A=${P}.tar.gz +S=${WORKDIR}/${P} +DESCRIPTION="Bind - Name Server" +SRC_URI="ftp://ftp.isc.org/isc/bind9/${PV}/${A}" +HOMEPAGE="http://www.isc.org/products/BIND" + +DEPEND="virtual/glibc sys-apps/groff" +RDEPEND="virtual/glibc" + +src_unpack() { + unpack ${A} + cd ${S}/doc/man + #fix man pages to reflect Gentoo Linux file locations (drobbins) + local x + for x in */* + do + cp ${x} ${x}.orig + sed -e 's:/etc/named.conf:/etc/bind/named.conf:g' -e 's:/etc/rndc.conf:/etc/bind/rndc.conf:g' ${x}.orig > ${x} + rm ${x}.orig + done +} + +src_compile() { + ./configure --prefix=/usr --host=${CHOST} --sysconfdir=/etc/bind --localstatedir=/var --with-libtool || die + make all || die +} + +src_install() { + make DESTDIR=${D} install || die + doman doc/man/*/*.[1-8] + + dodoc CHANGES COPYRIGHT FAQ README + docinto misc ; dodoc doc/misc/* + docinto html ; dodoc doc/arm/* + docinto contrib ; dodoc contrib/named-bootconf/named-bootconf.sh \ + contrib/nanny/nanny.pl + + # some handy-dandy dynamic dns examples + cd ${D}/usr/share/doc/${PF} + tar pjxf ${FILESDIR}/dyndns-samples.tbz2 + + dodir /etc/bind /var/bind /var/bind/pri /var/bind/sec /var/run/named + chown named.named ${D}/var/run/named + chmod 0770 ${D}/var/run/named + + insinto /var/bind ; doins ${FILESDIR}/root.cache + insinto /var/bind/pri ; doins ${FILESDIR}/localhost + insinto /var/bind/pri ; doins ${FILESDIR}/127.0.0 + + exeinto /etc/init.d ; newexe ${FILESDIR}/named.rc6 named +} diff --git a/net-misc/bind/files/digest-bind-9.2.0 b/net-misc/bind/files/digest-bind-9.2.0 new file mode 100644 index 000000000000..cc9402b48090 --- /dev/null +++ b/net-misc/bind/files/digest-bind-9.2.0 @@ -0,0 +1 @@ +MD5 d3f7dce0ad9bf4d026987176a8bc8e9b bind-9.2.0.tar.gz 4814337 |