diff options
author | William McArthur <sandymac@gentoo.org> | 2002-05-02 21:46:15 +0000 |
---|---|---|
committer | William McArthur <sandymac@gentoo.org> | 2002-05-02 21:46:15 +0000 |
commit | b195831835dcbf197f34092d2de78489ad56504f (patch) | |
tree | 1301e337cbbb6ec69fe665cc380c4611ea99cb58 /net-misc/bind | |
parent | .la fixes (diff) | |
download | historical-b195831835dcbf197f34092d2de78489ad56504f.tar.gz historical-b195831835dcbf197f34092d2de78489ad56504f.tar.bz2 historical-b195831835dcbf197f34092d2de78489ad56504f.zip |
New upstream release of bind, just bug fixes. I just bumped the ebuild and
added a LICENSE line.
Diffstat (limited to 'net-misc/bind')
-rw-r--r-- | net-misc/bind/ChangeLog | 9 | ||||
-rw-r--r-- | net-misc/bind/bind-9.2.1.ebuild | 57 | ||||
-rw-r--r-- | net-misc/bind/files/digest-bind-9.2.1 | 1 |
3 files changed, 66 insertions, 1 deletions
diff --git a/net-misc/bind/ChangeLog b/net-misc/bind/ChangeLog index 3c1cade58ab7..4553bf927280 100644 --- a/net-misc/bind/ChangeLog +++ b/net-misc/bind/ChangeLog @@ -1,6 +1,13 @@ # 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.3 2002/03/21 10:27:59 m0rpheus Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/bind/ChangeLog,v 1.4 2002/05/02 21:46:15 sandymac Exp $ + +*bind-9.2.1 (2 May 2002) + + 2 May 2002; William McArthur <sandymac@gentoo.org> bind-9.2.1.ebuild: + + New upstream bugfix release, I just bumped the ebuild file name and added + a LICENSE line. *bind-9.1.3-r7 (21 Mar 2002) diff --git a/net-misc/bind/bind-9.2.1.ebuild b/net-misc/bind/bind-9.2.1.ebuild new file mode 100644 index 000000000000..e4eeb2684586 --- /dev/null +++ b/net-misc/bind/bind-9.2.1.ebuild @@ -0,0 +1,57 @@ +# 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.1.ebuild,v 1.1 2002/05/02 21:46:15 sandymac 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" +LICENSE="as-is" + +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.1 b/net-misc/bind/files/digest-bind-9.2.1 new file mode 100644 index 000000000000..77883cdb7ef5 --- /dev/null +++ b/net-misc/bind/files/digest-bind-9.2.1 @@ -0,0 +1 @@ +MD5 692cff6f44e006ce6984b2c286949dd1 bind-9.2.1.tar.gz 5021044 |