2007-05-02 01:07:00 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
finalize ()
|
|
|
|
{
|
|
|
|
cur="$1"; dir="$2";
|
|
|
|
|
|
|
|
if [ "$dir" = "" ]
|
|
|
|
then
|
|
|
|
cd "$BASE"
|
|
|
|
else
|
|
|
|
cd "$BASE/$dir"
|
|
|
|
fi
|
|
|
|
|
|
|
|
for i in *
|
|
|
|
do
|
|
|
|
if [ "$i" = "*" ]; then continue; fi
|
|
|
|
if [ "$i" = "CVS" ]; then continue; fi
|
2008-03-22 06:06:42 +00:00
|
|
|
if [ "$i" = ".svn" ]; then continue; fi
|
2007-05-02 01:07:00 +00:00
|
|
|
if [ "$i" = "stx" ]; then continue; fi
|
|
|
|
|
|
|
|
if [ "$cur" = "" ]
|
|
|
|
then
|
|
|
|
file="$i"
|
|
|
|
full="$BASE/$i"
|
|
|
|
else
|
|
|
|
file="$cur/$i"
|
|
|
|
full="$BASE/$cur/$i"
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -d "$full" ]
|
|
|
|
then
|
|
|
|
if [ "$dir" = "" ]
|
|
|
|
then
|
|
|
|
new="$i"
|
|
|
|
else
|
|
|
|
new="$dir/$i"
|
|
|
|
fi
|
|
|
|
|
|
|
|
finalize "$file" "$new"
|
|
|
|
cur="$1"; dir="$2";
|
|
|
|
elif [ -f "$full" ]
|
|
|
|
then
|
|
|
|
target="$SOURCE_ROOT/ase"
|
|
|
|
mkdir -p "$target/$cur"
|
|
|
|
|
|
|
|
case "$i" in
|
|
|
|
*.h|*.c|*.cc|*.cpp|*.java|*.awk|*.in)
|
2007-12-12 08:05:58 +00:00
|
|
|
"$ASEAWK" -f "$BASE/rel/lic.awk" -a "$target/$file" "$full"
|
2007-05-02 01:07:00 +00:00
|
|
|
;;
|
|
|
|
*.man)
|
|
|
|
html=`echo $i | sed 's/.man$/.html/'`
|
2007-12-12 07:20:02 +00:00
|
|
|
"$ASEAWK" -explicit -noimplicit -f "$BASE/rel/doc.awk" "$full" > "$SOURCE_ROOT/html/$html"
|
2007-12-12 08:05:58 +00:00
|
|
|
"$ASEAWK" -explicit -noimplicit -f "$BASE/rel/doc.awk" "$full" > "$ASETGT/$html"
|
2007-05-02 01:07:00 +00:00
|
|
|
cp -f "$full" "$target/$file"
|
|
|
|
;;
|
|
|
|
*.css)
|
|
|
|
cp -f "$full" "$target/$file"
|
|
|
|
cp -f "$full" "$SOURCE_ROOT/html/$i"
|
|
|
|
cp -f "$full" "$ASETGT/$i"
|
|
|
|
;;
|
|
|
|
*.dsp|*.dsw|*.sln|*.vcproj|*.csproj|*.bat|*.cmd)
|
2007-12-12 08:05:58 +00:00
|
|
|
"$ASEAWK" -f "$BASE/rel/unix2dos.awk" "$full" > "$target/$file"
|
2007-05-02 01:07:00 +00:00
|
|
|
;;
|
|
|
|
descrip.mms)
|
2007-12-12 08:05:58 +00:00
|
|
|
"$ASEAWK" -f "$BASE/rel/unix2dos.awk" "$full" > "$target/$file"
|
2007-05-02 01:07:00 +00:00
|
|
|
;;
|
|
|
|
*.frx)
|
|
|
|
cp -f "$full" "$target/$file"
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
if [ "$dir" = "test/com" ]
|
|
|
|
then
|
2007-12-12 08:05:58 +00:00
|
|
|
"$ASEAWK" -f "$BASE/rel/unix2dos.awk" "$full" > "$target/$file"
|
2007-05-02 01:07:00 +00:00
|
|
|
else
|
|
|
|
cp -f "$full" "$target/$file"
|
|
|
|
fi
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
print_usage ()
|
|
|
|
{
|
|
|
|
echo "Usage: $0 awk version target archiver"
|
|
|
|
echo "where awk := full path to aseawk"
|
|
|
|
echo " version := any string"
|
|
|
|
echo " target := full path to the target directory"
|
|
|
|
echo " archiver := gzip | zip"
|
|
|
|
}
|
|
|
|
|
|
|
|
############################
|
|
|
|
# BEGINNING OF THE PROGRAM #
|
|
|
|
############################
|
|
|
|
|
|
|
|
if [ $# -ne 4 ]
|
|
|
|
then
|
|
|
|
print_usage "$0"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ "$4" != "gzip" -a "$4" != "zip" ]
|
|
|
|
then
|
|
|
|
print_usage "$0"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
ASEAWK="$1"
|
|
|
|
ASEVER="$2"
|
|
|
|
ASETGT="$3"
|
|
|
|
ASEARC="$4"
|
|
|
|
|
|
|
|
CURDIR=`pwd`
|
|
|
|
cd ".."
|
|
|
|
BASE=`pwd`
|
|
|
|
|
|
|
|
SOURCE_ROOT="$ASETGT/ase-$ASEVER"
|
|
|
|
|
|
|
|
rm -rf "$ASETGT"
|
|
|
|
mkdir -p "$ASETGT"
|
|
|
|
mkdir -p "$SOURCE_ROOT"
|
|
|
|
mkdir -p "$SOURCE_ROOT/html"
|
|
|
|
|
|
|
|
finalize "" ""
|
|
|
|
|
|
|
|
cd "$ASETGT"
|
|
|
|
|
|
|
|
if [ "$ASEARC" = "gzip" ]
|
|
|
|
then
|
|
|
|
tar -cvf "ase-$ASEVER.tar" "ase-$ASEVER"
|
|
|
|
gzip "ase-$ASEVER.tar"
|
2007-10-13 01:13:00 +00:00
|
|
|
#mv "ase-$ASEVER.tar.gz" "ase-$ASEVER.tgz"
|
2007-05-02 01:07:00 +00:00
|
|
|
elif [ "$ASEARC" = "zip" ]
|
|
|
|
then
|
|
|
|
ls -l
|
|
|
|
echo zip -r "ase-$ASEVER" "ase-$ASEVER"
|
|
|
|
zip -r ase "ase-$ASEVER"
|
|
|
|
mv -f ase.zip "ase-$ASEVER.zip"
|
|
|
|
fi
|
|
|
|
|
|
|
|
rm -rf "ase-$ASEVER"
|
|
|
|
|
|
|
|
cd "$CURDIR"
|
|
|
|
exit 0
|