summaryrefslogtreecommitdiff
path: root/dist/bind/bind2netbsd
blob: d5a73b4897c6757de46281eafb3816015ce47e60 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
#! /bin/sh
#
#	$NetBSD: bind2netbsd,v 1.21 2003/11/26 01:31:48 itojun Exp $
#
# Copyright (c) 1998, 1999 The NetBSD Foundation, Inc.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
# 1. Redistributions of source code must retain the above copyright
#    notice, this list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright
#    notice, this list of conditions and the following disclaimer in the
#    documentation and/or other materials provided with the distribution.
# 3. All advertising materials mentioning features or use of this software
#    must display the following acknowledgement:
#	This product includes software developed by the NetBSD
#	Foundation, Inc. and its contributors.
# 4. Neither the name of The NetBSD Foundation nor the names of its
#    contributors may be used to endorse or promote products derived
#    from this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
# ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
# TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
# PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
# BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
#
# bind2netbsd:  convert a bind source tree into a
# netbsd bind source tree, under src/dist.

# Note: you need to extract the src and doc tar files and put it into
#	one directory. This directory is the 'src' argument of bind2netbsd.

if [ $# -ne 2 ]; then echo "bind2netbsd src dest"; exit 1; fi

r=$1
d=$2/src/dist/bind

case "$d" in
	/*)
		;;
	*)
		d=`/bin/pwd`/$d
		;;
esac

case "$r" in
	/*)
		;;
	*)
		r=`/bin/pwd`/$r
		;;
esac

echo preparing directory $d
rm -rf $d
mkdir -p $d
mkdir -p $d/man
mkdir -p $d/doc

### Copy the files and directories
cd $r/src
pax -rvw LICENSE LICENSE_RSA README Version bin include lib $d
cd $r/src/port/netbsd/include
pax -rvw port_after.h port_before.h prand_conf.h $d/include
cd $r/src/port/netbsd/bin
pax -rvw probe_ipv6 $d/bin
cd $r/doc/man
pax -rvw dig.1 dnskeygen.1 dnsquery.1 host.1 named-bootconf.8 named-xfer.8 named.8 named.conf.5 ndc.8 nslookup.8 nsupdate.8 $d/man
cd $r/doc
pax -rvw bog $d/doc
cd $d/doc/bog
make clean

### Remove yacc/lex-generated files
cd $d/bin
rm -f named/ns_parser.c named/ns_parser.h
rm -f nslookup/commands.c

### Remove .cvsignore, Makefiles and *.mdoc files
find $d -name '.cvsignore' -exec rm {} \;
find $d -name 'Makefile' -exec rm {} \;
cd $d/lib/isc && rm *.mdoc

### Remove the $'s around the Header:
find $d -type f -print | while read f; do
	sed -e ' s/\$\(Header.*\) \$/\1/' < $f > /tmp/bind1f$$ && mv /tmp/bind1f$$ $f && \
	echo removed \$Header tag from $f
done

### Remove the $'s around the Id:
find $d -type f -print | while read f; do
	sed -e ' s/\$\(Id.*\) \$/\1/' < $f > /tmp/bind1f$$ && mv /tmp/bind1f$$ $f && \
	echo removed \$Id tag from $f
done

### Add our NetBSD RCS Id
find $d -name '*.[chly]' -print | while read c; do
	sed 1q < $c | grep -q '\$NetBSD' || (
echo "/*	\$NetBSD\$	*/" >/tmp/bind3n$$
echo "" >>/tmp/bind3n$$
cat $c  >> /tmp/bind3n$$
mv /tmp/bind3n$$ $c && echo added RCS tag to $c
	)
done

find $d/man -name '*.[0-9]' -print | while read m; do
	sed 1q < $m | grep -q '\$NetBSD' || (
echo ".\\\"     \$NetBSD\$" >/tmp/bind2m$$
echo ".\\\"" >>/tmp/bind2m$$
	cat $m >> /tmp/bind2m$$
	mv /tmp/bind2m$$ $m && echo added RCS tag to $m

	sed -e "s/@INDOT@//g" -e "s/@INDOT_U@//g" \
		-e "s/@XFER_INDOT@//g" -e "s/@XFER_INDOT_U@//g" \
		-e "s/@CMD_EXT@/1/g" -e "s/@CMD_EXT_U@/1/g" \
		-e "s/@LIB_NETWORK_EXT@/3/g" -e "s/@LIB_NETWORK_EXT_U@/3/g" \
		-e "s/@FORMAT_EXT@/5/g" -e "s/@FORMAT_EXT_U@/5/g" \
		-e "s/@DESC_EXT@/7/g" -e "s/@DESC_EXT_U@/7/g" \
		-e "s/@SYS_OPS_EXT@/8/g" -e "s/@SYS_OPS_EXT_U@/8/g" \
		-e "s/@SYSCALL_EXT@/2/g" -e "s/@SYSCALL_EXT_U@/2/g" \
		-e "s/@BSD_SYSCALL_EXT@/2/g" -e "s/@BSD_SYSCALL_EXT_U@/2/g" \
		-e "s/@LIB_C_EXT@/3/g" -e "s/@LIB_C_EXT_U@/3/g" < $m > /tmp/bind3m$$ && \
	mv /tmp/bind3m$$ $m && echo fixup $m
	)
done

find $d/doc/bog -type f -print | while read m; do
	sed 1q < $m | grep -q '\$NetBSD' || (
echo ".\\\"     \$NetBSD\$" >/tmp/bind2m$$
echo ".\\\"" >>/tmp/bind2m$$
	cat $m >> /tmp/bind2m$$
	mv /tmp/bind2m$$ $m && echo added RCS tag to $m
	)
done

# XXX Not all files contains now the NetBSD RCS Id.
# Make sure you add the RCS Id before you do the import.
# This is the list of missing files as of 8.2.2-P5:
# LICENSE
# LICENSE_RSA
# README
# bin/probe_ipv6
# bin/irpd/irs-irpd.conf
# bin/named/named.conf
# bin/named/test/127.0.0.zone
# bin/named/test/localhost.zone
# bin/named/test/named.conf
# bin/named/test/root.hint
# bin/named-bootconf/Grot/named-bootconf.pl
# bin/nslookup/nslookup.help
# lib/dst/README
# lib/irs/Makefile.BSD
# lib/irs/README

echo done

### Clean up any CVS directories that might be around.
echo "cleaning up CVS residue."
(
	cd $d
	find . -type d -name "CVS" -print | xargs rm -r
)
echo done

### Fixing file and directory permissions.
echo "Fixing file/directory permissions."
(
	cd $d
	find . -type f -print | xargs chmod u+rw,go+r
	find . -type d -print | xargs chmod u+rwx,go+rx
)
echo done

echo "Remove crypto source code"
(
	/bin/rm -fr $d/lib/cylink
	/bin/rm -fr $d/lib/dnssafe
)
echo done

exit 0