[From nobody Wed Mar 25 13:42:48 2020
Return-Path: &lt;jason@tishler.net&gt;
Received: from mh2-tx.mail.home.com ([65.10.73.138])
 by femail17.sdc1.sfba.home.com
 (InterMail vM.4.01.03.20 201-229-121-120-20010223) with ESMTP
 id &lt;20010928012854.EXPI5229.femail17.sdc1.sfba.home.com@mh2-tx.mail.home.com&gt;
 for &lt;jtishler@mail.etntwn1.nj.home.com&gt;;
 Thu, 27 Sep 2001 18:28:54 -0700
Received: from mx2-tx.mail.home.com (mx2-tx.mail.home.com [65.10.73.134])
 by mh2-tx.mail.home.com (8.9.3/8.9.0) with ESMTP id SAA10012
 for &lt;jtishler@home.com&gt;; Thu, 27 Sep 2001 18:28:43 -0700 (PDT)
Received: from lmg02.affinity.com (lmg.ahnet.net [207.150.192.13])
 by mx2-tx.mail.home.com (8.11.1/8.11.1) with ESMTP id f8S1Sgh21075
 for &lt;jtishler@home.com&gt;; Thu, 27 Sep 2001 18:28:42 -0700 (PDT)
Received: from mail.ahnet.net ([207.150.192.80]) by lmg.ahnet.net with ESMTP
 id &lt;290501-19800&gt;; Thu, 27 Sep 2001 18:21:43 -0700
Received: from lmg01.affinity.com (lmg.ahnet.net [207.150.192.13])
 by mail.ahnet.net (Postfix) with ESMTP id 3DC03658D1
 for &lt;jason@tishler.net&gt;; Thu, 27 Sep 2001 18:21:44 -0700 (PDT)
Received: from femail11.sdc1.sfba.home.com ([24.0.95.107]) by lmg.ahnet.net
 with ESMTP id &lt;292347-18689&gt;; Thu, 27 Sep 2001 18:20:09 -0700
Received: from althea.tishler.net ([24.3.200.94])
 by femail11.sdc1.sfba.home.com
 (InterMail vM.4.01.03.20 201-229-121-120-20010223) with SMTP
 id &lt;20010928011934.ERVW27289.femail11.sdc1.sfba.home.com@althea.tishler.net&gt;
 for &lt;jason@tishler.net&gt;; Thu, 27 Sep 2001 18:19:34 -0700
Received: by althea.tishler.net (sSMTP sendmail emulation);
 Thu, 27 Sep 2001 21:20:59 -0400
Date: Thu, 27 Sep 2001 21:20:59 -0400
From: Jason Tishler &lt;jason@tishler.net&gt;
To: jason@tishler.net
Subject: bind build instructions
Message-ID: &lt;20010927212059.T1356@dothill.com&gt;
Mime-Version: 1.0
Content-Type: multipart/mixed; boundary=&quot;AiirUAmZna59nqbL&quot;
Content-Disposition: inline
User-Agent: Mutt/1.3.18i


--AiirUAmZna59nqbL
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
Content-length: 116

apply Steven Biggs patch
cd src
make
make DESTDIR=/tmp/bind DESTMAN=/usr/local/man install
cd ../doc/man
install.sh

--AiirUAmZna59nqbL
Content-Type: application/x-sh
Content-Disposition: attachment; filename=&quot;install.sh&quot;
Content-length: 287

#!/bin/bash

DESTDIR=/tmp/bind
DESTMAN=/usr/local/man

suffixes='1 3 5 7 8'

for suffix in $suffixes
do
	dir=$DESTDIR$DESTMAN/cat$suffix
	install -d $dir
	for file in *.lst$suffix
	do
		dest=$dir/$(basename $file .lst$suffix).$suffix
		install -m 444 $file $dest
		gzip $dest
	done
done

--AiirUAmZna59nqbL--


]