summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author <jerrya@gentoo.org>2001-12-09 23:47:08 +0000
committer <jerrya@gentoo.org>2001-12-09 23:47:08 +0000
commit03db62d9011719b5e10064d3682461ef87601ae6 (patch)
tree6c845bc2eeda7bfb9d9dc7df07f135fa74673fd1 /incoming
parentupdated (diff)
downloadhistorical-03db62d9011719b5e10064d3682461ef87601ae6.tar.gz
historical-03db62d9011719b5e10064d3682461ef87601ae6.tar.bz2
historical-03db62d9011719b5e10064d3682461ef87601ae6.zip
Scratch another one out of incoming.
Thanks to Michael Nazaroff <naz@themoonsofjupiter.net> for his contribution. Previous version moved to the Attic.
Diffstat (limited to 'incoming')
-rw-r--r--incoming/bind-tools-9.1.3.ebuild40
1 files changed, 0 insertions, 40 deletions
diff --git a/incoming/bind-tools-9.1.3.ebuild b/incoming/bind-tools-9.1.3.ebuild
deleted file mode 100644
index 1fd14c63ea2c..000000000000
--- a/incoming/bind-tools-9.1.3.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2000 Gentoo Technologies, Inc.
-# Distributed under the terms of the GNU General Public License, v2 or later
-# Author Michael Nazaroff <naz@themoonsofjupiter.net>
-# /home/cvsroot/gentoo-x86/net-misc/bind-tools/bind-tools-9.1.3.ebuild,v 1
-
-A=bind-9.1.3.tar.gz
-S=${WORKDIR}/bind-9.1.3
-DESCRIPTION="bind tools: dig, nslookup, and host"
-SRC_URI="ftp://ftp.isc.org/isc/bind9/${PV}/${A}"
-
-DEPEND="virtual/glibc"
-RDEPEND="virtual/glibc"
-
-src_unpack() {
- unpack ${A}
-
-}
-
-src_compile() {
-
- cd ${S}
- ./configure --host=${CHOST} || die
- cd ${S}/lib/isc
- make || die
- cd ${S}/lib/dns
- make || die
- cd ${S}/bin/dig
- make || die
-}
-
-src_install() {
- insinto /usr
- dobin ${S}/bin/dig/dig
- dobin ${S}/bin/dig/nslookup
- dobin ${S}/bin/dig/host
- doman ${S}/doc/man/bin/dig.1
- doman ${S}/doc/man/bin/host.1
- dodoc README CHANGES FAQ COPYRIGHT
-
-}