Support code page 852. Thanks to Tamas Tevesz.
[u/mdw/putty] / mkunxarc.sh
CommitLineData
2299e1bb 1#!/bin/bash
8b4e077f 2
3# Build a Unix source distribution from the PuTTY CVS area.
4#
5# Pass an argument of the form `2004-02-08' to have the archive
6# tagged as a development snapshot; of the form `0.54' to have it
6cac7502 7# tagged as a release; of the form `r1234' to have it tagged as a
8# custom build. Otherwise it'll be tagged as unidentified.
8b4e077f 9
10case "$1" in
11 ????-??-??)
12 case "$1" in *[!-0-9]*) echo "Malformed snapshot ID '$1'" >&2;exit 1;;esac
44747c53 13 autoconfver="`cat LATEST.VER`-$1"
14 arcsuffix="-$autoconfver"
8b4e077f 15 ver="-DSNAPSHOT=$1"
6cac7502 16 docver=
17 ;;
18 r*)
44747c53 19 autoconfver="$1"
20 arcsuffix="-$autoconfver"
2299e1bb 21 ver="-DSVN_REV=${1#r}"
3b62690e 22 docver=
8b4e077f 23 ;;
24 '')
44747c53 25 autoconfver="X.XX" # got to put something in here!
8b4e077f 26 arcsuffix=
27 ver=
3b62690e 28 docver=
8b4e077f 29 ;;
30 *)
31 case "$1" in *[!.0-9a-z]*) echo "Malformed release ID '$1'">&2;exit 1;;esac
44747c53 32 autoconfver="$1"
33 arcsuffix="-$autoconfver"
8b4e077f 34 ver="-DRELEASE=$1"
3b62690e 35 docver="VERSION=\"PuTTY release $1\""
8b4e077f 36 ;;
37esac
38
39perl mkfiles.pl
3b62690e 40(cd doc && make -s ${docver:+"$docver"})
8b4e077f 41
42relver=`cat LATEST.VER`
43arcname="putty$arcsuffix"
44mkdir uxarc
45mkdir uxarc/$arcname
2ce79856 46find . -name uxarc -prune -o \
47 -name CVS -prune -o \
48 -name .svn -prune -o \
49 -name . -o \
8b4e077f 50 -type d -exec mkdir uxarc/$arcname/{} \;
51find . -name uxarc -prune -o \
52 -name CVS -prune -o \
53 -name .cvsignore -prune -o \
4494be0a 54 -name .svn -prune -o \
44747c53 55 -name configure.ac -prune -o \
8b4e077f 56 -name '*.zip' -prune -o \
57 -name '*.tar.gz' -prune -o \
58 -type f -exec ln -s $PWD/{} uxarc/$arcname/{} \;
59if test "x$ver" != "x"; then
60 (cd uxarc/$arcname;
61 md5sum `find . -name '*.[ch]' -print` > manifest;
62 echo "$ver" > version.def)
63fi
44747c53 64sed "s/^AC_INIT(putty,.*/AC_INIT(putty, $autoconfver)/" unix/configure.ac > uxarc/$arcname/unix/configure.ac
65(cd uxarc/$arcname && sh mkauto.sh) 2>errors || { cat errors >&2; exit 1; }
66
a8a420c5 67tar -C uxarc -chzof $arcname.tar.gz $arcname
8b4e077f 68rm -rf uxarc