heimdal2netbsd revision 1.5 1 1.1 elric #! /bin/sh
2 1.1 elric #
3 1.5 pettai # $NetBSD: heimdal2netbsd,v 1.5 2014/04/06 11:24:25 pettai Exp $
4 1.1 elric #
5 1.1 elric # Copyright (c) 2011 The NetBSD Foundation, Inc.
6 1.1 elric # All rights reserved.
7 1.1 elric #
8 1.1 elric # Redistribution and use in source and binary forms, with or without
9 1.1 elric # modification, are permitted provided that the following conditions
10 1.1 elric # are met:
11 1.1 elric # 1. Redistributions of source code must retain the above copyright
12 1.1 elric # notice, this list of conditions and the following disclaimer.
13 1.1 elric # 2. Redistributions in binary form must reproduce the above copyright
14 1.1 elric # notice, this list of conditions and the following disclaimer in the
15 1.1 elric # documentation and/or other materials provided with the distribution.
16 1.1 elric #
17 1.1 elric # THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
18 1.1 elric # ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
19 1.1 elric # TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
20 1.1 elric # PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
21 1.1 elric # BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
22 1.1 elric # CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
23 1.1 elric # SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
24 1.1 elric # INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
25 1.1 elric # CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
26 1.1 elric # ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
27 1.1 elric # POSSIBILITY OF SUCH DAMAGE.
28 1.1 elric #
29 1.1 elric # heimdal2netbsd: convert a heimdal source tree into a
30 1.2 christos # netbsd heimdal source tree, under src/crypto/external/bsd/heimdal/dist
31 1.1 elric # based on bind2netbsd by Bernd Ernesti and changes by Simon Burge
32 1.1 elric #
33 1.1 elric # Rough instructions for importing new heimdal release from their git
34 1.1 elric # repository:
35 1.1 elric #
36 1.1 elric # $ export SRCDIR=/usr/src
37 1.1 elric # $ export HEIMDAL_SRCDIR=src/crypto/external/bsd/heimdal
38 1.1 elric # $ cd /some/where/temporary
39 1.1 elric # $ git clone git://svn.h5l.org/heimdal.git
40 1.5 pettai # $ sh $SRCDIR/../$HEIMDAL_SRCDIR/heimdal2netbsd heimdal `pwd`
41 1.1 elric # $ cd $HEIMDAL_SRCDIR/dist
42 1.1 elric # $ cvs -d ... import $HEIMDAL_SRCDIR/dist HEIMDAL head-20110317
43 1.5 pettai # >>> if any conflicts, merge, fix and commit them.
44 1.1 elric # $ cd /some/where/temporary/heimdal
45 1.1 elric # $ autoreconf -f -i
46 1.1 elric # $ ./configure
47 1.1 elric # $ make
48 1.1 elric # >>> merge newly generated config.h
49 1.1 elric # >>> with $HEIMDAL_SRCDIR/include/config.h
50 1.1 elric # >>> and check out diffs in generated headers
51 1.1 elric # >>> and C files.
52 1.1 elric # $ cd ..
53 1.1 elric # $ rm -r src heimdal
54 1.1 elric # $ cd $SRCDIR/$HEIMDAL_SRCDIR
55 1.1 elric # $ cvs commit -m "Updated generated files for Heimdal head-20110317"
56 1.1 elric #
57 1.1 elric # - check makefiles to see if any extra sources have been added.
58 1.1 elric # - update distrib/sets if necessary.
59 1.1 elric
60 1.2 christos prog="$(basename "$0")"
61 1.1 elric r=$1
62 1.1 elric d=$2/src/crypto/external/bsd/heimdal/dist
63 1.1 elric
64 1.2 christos if [ $# -ne 2 ]; then echo "${prog} src dest"; exit 1; fi
65 1.2 christos
66 1.2 christos
67 1.1 elric case "$d" in
68 1.1 elric /*)
69 1.1 elric ;;
70 1.1 elric *)
71 1.2 christos d="$(pwd)/$d"
72 1.1 elric ;;
73 1.1 elric esac
74 1.1 elric
75 1.1 elric case "$r" in
76 1.1 elric /*)
77 1.1 elric ;;
78 1.1 elric *)
79 1.2 christos r=$(pwd)/$r
80 1.1 elric ;;
81 1.1 elric esac
82 1.1 elric
83 1.1 elric echo preparing directory $d
84 1.1 elric rm -rf $d
85 1.1 elric mkdir -p $d
86 1.1 elric
87 1.1 elric ### Copy the files and directories
88 1.1 elric echo copying $r to $d
89 1.1 elric cd $r
90 1.1 elric pax -rw * $d
91 1.1 elric
92 1.1 elric ### Remove unneeded files
93 1.1 elric #echo removing unneeded directories and files
94 1.1 elric #find $d/po -name '*[0-9] XXX:
95 1.1 elric find $d -name '*.cat[0-9]' | xargs rm -f && echo removed catman pages
96 1.1 elric find $d -name '*.info' | xargs rm -f && echo removed info pages
97 1.1 elric rm -rf $d/appl && echo removed appl
98 1.1 elric rm -rf $d/lib/libedit && echo removed lib/libedit
99 1.1 elric rm -rf $d/lib/sqlite && echo removed lib/sqlite
100 1.1 elric rm -rf $d/doc/standardisation && echo removed doc/standardisation
101 1.1 elric
102 1.1 elric # Fix man pages
103 1.1 elric find $d -type f -name '*.[1358]' -print | while read f; do
104 1.1 elric sed \
105 1.1 elric -e 's,\.Os HEIMDAL,.Os,' \
106 1.1 elric -e 's,\.Pa krb5.h,.Pa krb5/krb5.h,' \
107 1.1 elric -e 's,\.In krb5.h,.In krb5/krb5.h,' \
108 1.1 elric -e 's,\.Pa gssapi.h,.Pa gssapi/gssapi.h,' \
109 1.1 elric -e 's,\.In gssapi.h,.In gssapi/gssapi.h,' \
110 1.1 elric -e 's,#include <krb5.h>,#include <krb5/krb5.h>,' \
111 1.1 elric < $f > /tmp/heimdal1f$$ && mv /tmp/heimdal1f$$ $f && \
112 1.1 elric echo fixing man page $f
113 1.1 elric done
114 1.1 elric
115 1.1 elric # Fix include usage
116 1.1 elric
117 1.1 elric KRB5_INCRE="asn1-common|asn1_err"
118 1.1 elric KRB5_INCRE="$KRB5_INCRE|base64"
119 1.1 elric KRB5_INCRE="$KRB5_INCRE|cms_asn1"
120 1.1 elric KRB5_INCRE="$KRB5_INCRE|com_err"
121 1.1 elric KRB5_INCRE="$KRB5_INCRE|com_right"
122 1.1 elric KRB5_INCRE="$KRB5_INCRE|crmf_asn1"
123 1.1 elric KRB5_INCRE="$KRB5_INCRE|der|der-protos"
124 1.1 elric KRB5_INCRE="$KRB5_INCRE|digest_asn1"
125 1.1 elric KRB5_INCRE="$KRB5_INCRE|getarg"
126 1.1 elric KRB5_INCRE="$KRB5_INCRE|hdb|hdb_err|hdb-protos|hdb_asn1"
127 1.1 elric KRB5_INCRE="$KRB5_INCRE|heim_asn1|heim_err"
128 1.1 elric KRB5_INCRE="$KRB5_INCRE|heimbase"
129 1.1 elric KRB5_INCRE="$KRB5_INCRE|heimntlm|heimntlm-protos"
130 1.1 elric KRB5_INCRE="$KRB5_INCRE|hex"
131 1.1 elric KRB5_INCRE="$KRB5_INCRE|hx509|hx509-protos|hx509_err"
132 1.1 elric KRB5_INCRE="$KRB5_INCRE|k524_err"
133 1.1 elric KRB5_INCRE="$KRB5_INCRE|kafs"
134 1.1 elric KRB5_INCRE="$KRB5_INCRE|kcm|kcm-protos"
135 1.1 elric KRB5_INCRE="$KRB5_INCRE|kdc|kdc-protos"
136 1.1 elric KRB5_INCRE="$KRB5_INCRE|krb5|krb5-private|krb5-protos|krb5-types"
137 1.1 elric KRB5_INCRE="$KRB5_INCRE|krb5_asn1|krb5_err|krb5_ccapi"
138 1.1 elric KRB5_INCRE="$KRB5_INCRE|krb5-v4compat"
139 1.1 elric KRB5_INCRE="$KRB5_INCRE|krb_err"
140 1.1 elric KRB5_INCRE="$KRB5_INCRE|kx509_asn1"
141 1.1 elric KRB5_INCRE="$KRB5_INCRE|ntlm_err"
142 1.1 elric KRB5_INCRE="$KRB5_INCRE|ocsp_asn1"
143 1.1 elric KRB5_INCRE="$KRB5_INCRE|parse_bytes|parse_time|parse_units"
144 1.1 elric KRB5_INCRE="$KRB5_INCRE|pkcs8_asn1|pkcs9_asn1|pkcs10_asn1|pkcs12_asn1"
145 1.1 elric KRB5_INCRE="$KRB5_INCRE|pkinit_asn1"
146 1.1 elric KRB5_INCRE="$KRB5_INCRE|resolve"
147 1.1 elric KRB5_INCRE="$KRB5_INCRE|rfc2459_asn1"
148 1.1 elric KRB5_INCRE="$KRB5_INCRE|roken|roken-common"
149 1.1 elric KRB5_INCRE="$KRB5_INCRE|rtbl"
150 1.1 elric KRB5_INCRE="$KRB5_INCRE|sl|ss"
151 1.1 elric KRB5_INCRE="$KRB5_INCRE|wind|wind_err"
152 1.1 elric KRB5_INCRE="$KRB5_INCRE|xdbm"
153 1.1 elric
154 1.1 elric GSS_INCRE="gssapi|gssapi_krb5|gssapi_spnego|gssapi_ntlm|gssapi_oid"
155 1.1 elric
156 1.1 elric KADM5_INCRE="admin|kadm5-protos|kadm5-pwcheck|kadm5_err"
157 1.1 elric
158 1.1 elric find $d -type f -name '*.[ch]' -a ! -name compile_et.? -print | while read f; do
159 1.1 elric sed -E \
160 1.1 elric -e "s,#include <($GSS_INCRE)\\.h>,#include <gssapi/\\1.h>," \
161 1.1 elric -e "s,#include \"($KRB5_INCRE)\\.h\",#include <krb5/\\1.h>," \
162 1.1 elric -e "s,#include <($KRB5_INCRE)\\.h>,#include <krb5/\\1.h>," \
163 1.1 elric -e "s,#include <($KADM5_INCRE)\\.h>,#include <kadm5/\\1.h>," \
164 1.1 elric < $f > /tmp/heimdal1f$$ && mv /tmp/heimdal1f$$ $f && \
165 1.1 elric echo fixing include paths in $f
166 1.1 elric done
167 1.1 elric
168 1.1 elric #
169 1.1 elric # In these files, we want only to fix the paths in the generated files, not
170 1.1 elric # in the file itself. To do this, we search for "#include meaning that
171 1.1 elric # it can't be on the left column.
172 1.1 elric
173 1.1 elric for f in $d/lib/sl/slc-gram.y $d/lib/com_err/compile_et.c; do
174 1.1 elric sed -E -e "s,(.#include <)($KRB5_INCRE)\\.h>,\\1krb5/\\2.h>," \
175 1.1 elric < $f > /tmp/heimdal1f$$ && mv /tmp/heimdal1f$$ $f && \
176 1.1 elric echo fixing include paths in $f
177 1.1 elric done
178 1.1 elric
179 1.1 elric # Freeze imported NetBSD RCSID's.
180 1.1 elric find $d -type f -print | xargs egrep -l '\$NetBSD:' | while read f; do
181 1.1 elric sed \
182 1.1 elric -e 's/\$\(NetBSD.*\) \$/\1/' \
183 1.1 elric < $f > /tmp/heimdal1f$$ && mv /tmp/heimdal1f$$ $f && \
184 1.1 elric echo froze NetBSD RCSID for $f
185 1.1 elric done
186 1.1 elric
187 1.1 elric # Convert unexpanded RCSID's to the NetBSD way.
188 1.1 elric find $d -type f -print | xargs egrep -l 'RCSID\("\$Id\$"\)' | while read f; do
189 1.1 elric sed -e 's/RCSID("\$\Id\$")/__RCSID("\$NetBSD\$")/' \
190 1.1 elric < $f > /tmp/heimdal1f$$ && mv /tmp/heimdal1f$$ $f && \
191 1.1 elric echo converted RCSID to NetBSD for $f
192 1.1 elric done
193 1.1 elric
194 1.1 elric ### Remove the $'s around RCS tags
195 1.4 christos cleantags $d
196 1.1 elric
197 1.1 elric ### Add our NetBSD RCS Id
198 1.1 elric find $d -type f -name '*.[chly]' -print | while read c; do
199 1.1 elric sed 1q < $c | grep -q '\$NetBSD' || (
200 1.2 christos echo "/* \$NetBSD\$ */" >/tmp/${prog}3n$$
201 1.2 christos echo "" >>/tmp/${prog}3n$$
202 1.2 christos cat $c >> /tmp/${prog}3n$$
203 1.2 christos mv /tmp/${prog}3n$$ $c && echo added NetBSD RCS tag to $c
204 1.1 elric )
205 1.1 elric done
206 1.1 elric
207 1.1 elric find $d -type f -name '*.[0-9]' -print | while read m; do
208 1.1 elric sed 1q < $m | grep -q '\$NetBSD' || (
209 1.2 christos echo ".\\\" \$NetBSD\$" >/tmp/${prog}2m$$
210 1.2 christos echo ".\\\"" >>/tmp/${prog}2m$$
211 1.2 christos cat $m >> /tmp/${prog}2m$$
212 1.2 christos mv /tmp/${prog}2m$$ $m && echo added NetBSD RCS tag to $m
213 1.1 elric )
214 1.1 elric done
215 1.1 elric
216 1.1 elric find $d -type f -name '*.texi' -print | while read t; do
217 1.1 elric sed "2 s/^/@c \$NetBSD\$\\
218 1.2 christos /" < $t > /tmp/${prog}4t$$
219 1.2 christos mv /tmp/${prog}4t$$ $t && echo added NetBSD RCS tag to $t
220 1.1 elric done
221 1.1 elric
222 1.1 elric echo done
223 1.1 elric
224 1.1 elric ### Clean up any CVS directories that might be around.
225 1.1 elric echo "cleaning up CVS residue."
226 1.1 elric (
227 1.1 elric cd $d
228 1.1 elric find . -type d -name "CVS" -print | xargs rm -r
229 1.1 elric )
230 1.1 elric echo done
231 1.1 elric
232 1.1 elric echo "cleaning up git residue."
233 1.1 elric rm -rf $d/.git
234 1.1 elric
235 1.1 elric ### Fixing file and directory permissions.
236 1.1 elric echo "Fixing file/directory permissions."
237 1.1 elric (
238 1.1 elric cd $d
239 1.1 elric find . -type f -print | xargs chmod u+rw,go+r
240 1.1 elric find . -type d -print | xargs chmod u+rwx,go+rx
241 1.1 elric )
242 1.1 elric echo done
243 1.1 elric
244 1.1 elric exit 0
245