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
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
|
#! /bin/bash
# This is cvs2dist
# Webpage: http://www.katzbrown.com/shiritsu/programming/cvs2dist/
# Newest version is always available there!
# Please report bugs to <jason@katzbrown.com>.
# Original author (of cvs2pack.sh) was Sebastian Stein <seb.stein@hpfsc.de>
# Heavy, heavy modifications by Jason Katz-Brown <jason@katzbrown.com>
# Some modifications for i18n inclusion by Dominique Devriese <devriese@kde.org>
# Added --no-i18n-lang and --replace-files by Michael Buesch <mbuesch@freenet.de>
# License: GPL (http://www.gnu.org/)
# Last modification: 2004/10/13
cmdline="$@"
returndir=`pwd`
override="README ChangeLog INSTALL AUTHORS AUTHOR COPYING COPYING.LIB TODO"
remove="config.cache config.log config.status Makefile configure inst-apps CVS acinclude.m4 aclocal.m4 config.h config.h.bot config.h.in configure.files libtool stamp-h stamp-h.in stamp-h1 subdirs *.moc *.la .libs .deps .cvsignore autom4te.cache {arch} .arch-ids"
toplevelremove="configure.in.bot"
# whitespace seperated list of languages to never include.
always_skip_languages="xx"
pofilenames="kttsd kttsd_commandplugin kttsd_eposplugin kttsd_festivalintplugin
kttsd_fliteplugin kttsd_freettsplugin kttsd_hadifixplugin kttsd_sbdplugin
kttsd_stringreplacerplugin kttsd_talkerchooserplugin kttsd_xmltransformerplugin
kttsjobmgr kttsmgr kcmkttsd khtmlkttsd ktexteditor_kttsd"
exit_cleanup()
{
echo -n "Cleaning up... "
if [ -d $temp_dir ]; then
test -z "$debug" && rm -Rf $temp_dir
fi
echo "done."
}
trap "exit_cleanup; exit 1" SIGINT SIGTERM
test -e ~/.cvs2distrc && extraoptions=`cat ~/.cvs2distrc`
# getopt usage from the getopt bash example
# --log has optional argument
TEMP=`getopt \
-o v:n:r:e:a:B:dhmbgol \
--long log::,version:,name:,required-header:,required-header-error-message:,make-unpackaged,help,no-bz2,no-bzip2,no-gzip,only-directory,remove-hidden,admin-dir:,branch:,no-i18n,no-i18n-lang:,cvs-root:,debug,replace-files: \
-n cvs2dist -- $extraoptions "$@"`
if [ $? != 0 ]; then
echo "Aborted." >&2
exit 1
fi
eval set -- "$TEMP"
log="/dev/null"
calclog=0
doi18n="yes"
noi18nlang=""
replace_files=""
cvsroot=""
debug=""
while true; do
case "$1" in
-v|--version) version=$2; shift 2 ;;
-n|--name) name=$2; shift 2 ;;
-a|--admin-dir) admindir=$2;
if [ `echo $admindir | sed -e 's#^/##'` = $admindir ]; then
admindir="`pwd`/$admindir"
fi
shift 2 ;;
-B|--branch) branch="-r$2"; shift 2;;
--debug) debug="non-empty"; shift 1 ;;
--cvs-root) cvsroot="$2"; shift 2 ;;
-r|--required-header) requiredheader=$2; shift 2 ;;
--no-i18n) doi18n="no"; shift 1 ;;
--no-i18n-lang) noi18nlang="$2"; shift 2 ;;
-e|--required-header-error-message) requiredmsg=$2; shift 2 ;;
-m|--make-unpackaged) leavedir="non-empty"; shift 1 ;;
-h|--help) showhelp="non-empty"; shift 1 ;;
-b|--no-bz2|--no-bzip2) nobzip2="non-empty"; shift 1 ;;
-o|--only-directory)
nogzip="non-empty"
nobzip2="non-empty"
leavedir="non-empty"
shift 1 ;;
-g|--no-gzip) nogzip="non-empty"; shift 1 ;;
-d|--remove-hidden) removehidden="non-empty"; shift 1 ;;
-l) calclog=1; shift 1 ;;
--log)
case "$2" in
# no-argument case
"") calclog=1; shift 2 ;;
# something, should be a file
*) log=$2
origlog=$log
if [ `echo $log | sed -e 's#^/##'` = $log ]; then
log="`pwd`/$log"
fi
shift 2 ;;
esac ;;
--replace-files) replace_files="$2"; shift 2 ;;
--) shift
break ;;
*) echo "Aborted."
exit 1 ;;
esac
done
count=0
for arg do
test $count = 0 && module=$arg
test $count = 1 && directory=$arg
if [ $count -ge 2 ]; then
modarg=$arg
if [ `echo $modarg | sed -e 's#^/##'` = $modarg ]; then
modarg="`pwd`/$modarg"
fi
addfiles="$addfiles $modarg"
fi
let count count++
done
# test if a module and directory name was given
if [ ! -z $showhelp ] || [ -z $module ] || [ -z $directory ]; then
echo "Usage: cvs2dist module directory [options] [addfile1] [addfile2] ..."
echo ""
echo " -n --name <name>"
echo " -v --version <version>"
echo " --cvs-root <root> the value to use as cvs root"
echo " variable. It is not necessary if you use --no-i18n."
echo " if this is not given, it is taken from the CVSROOT "
echo " environment variable."
echo " --admin-dir <dir> admin/ location (default is module/admin)"
echo " (symbolic links are OK.)"
echo " -B --branch <branch> use branch for i18n checkouts."
echo " --no-i18n don't try to automatically checkout the translations from cvs."
echo " --no-i18n-lang <languages> exclude all languages in the given comma"
echo " seperated list. example:"
echo " --no-i18n-lang uk,de,en_GB"
echo " --log=<logfile> If logfile unspecified, default file is used."
echo " (The '=' is essential and may not be ommited"
echo " when specifying the logfile.)"
echo " -l Log to default logfile."
echo " -m --make-unpackaged Also makes an unpacked distribution"
echo " in the current directory."
echo " -g --no-gzip Do not create gzip package."
echo " -b --no-bz2 Do not create bzip2 package."
echo " --no-bzip2 Alias for the above."
echo " -o --only-directory Alias for -mbg (no packages, only a directory.)"
echo " -r --required-header <header> Errors if header is not installed."
echo " -e --required-header-error-message <message>"
echo " Error message for above."
echo " -d --remove-hidden Remove hidden files/directories from packages"
echo " --replace-files <file-pair-list>"
echo " <file-pair-list> is a comma separated list of file pairs"
echo " which should be replaced in the final distribution package."
echo " Each element of a pair is separated by an @"
echo -n " Example: --replace-files take_this_file@and_move_it_here,"
echo "configure.in.bot.dist@configure.in.bot"
echo " The filenames are all relative to your package root."
echo " Please be careful! Try to avoid the usage of .. in the path. It"
echo " may break stuff! There can not be blank characters in the paths."
echo " -h --help Show this help"
echo ""
echo " Name defaults to the last part of the directory."
echo "By default, creates name[-version].tar.gz if gzip is installed"
echo "and/or name[-version].tar.bz2 if bzip2 is installed in the current"
echo "directory. Removes all temporary files it creates. Produces"
echo "tarballs that are standard distribution tarballs with a"
echo "configure script."
echo " Unless --no-i18n is given, it automatically tries to check out "
echo "strings and documentation translation from cvs."
echo " Arguments after the second are added to the toplevel directory"
echo "in the package. Short options can be combined, eg -dm to create"
echo "a directory and remove hidden files. ~/.cvs2distrc is added to"
echo "the beginning of command line arguments if it exists."
echo " '--' signifies the end of options."
echo ""
echo "Example: cvs2dist /sources/tdegames kolf/objects/picture \\"
echo " -n kolf-picture -v 0.9 -r \"kolf/game.h\" \\"
echo " --log ~/tmp/extra-file"
echo ""
echo " Creates packages of the kolf picture plugin, naming the"
echo " packages kolf-picture-0.9 and logging the process. For configure"
echo " to succeed, kolf/game.h must be installed or an error will occur."
echo " ~/tmp/extra-file is added to the packages."
echo ""
echo "Webpage: http://www.katzbrown.com/shiritsu/programming/cvs2dist/"
echo "Authors: Jason Katz-Brown <jason@katzbrown.com>,"
echo " Sebastian Stein <seb.stein@hpfsc.de>,"
echo " Dominique Devriese <devriese@kde.org>"
exit 1
fi
# expand module
module=`echo $module | sed -e 's#/$##'`
if [ `echo $module | sed -e 's#^/##'` = $module ]; then
module="`pwd`/$module"
fi
# test if the given module is a directory
test -d $module
if [ $? -ne 0 ]; then
echo "$module is not a directory."
echo "Aborted."
exit 1
fi
# go to our module
cd $module
directory=`echo $directory | sed -e 's#^/##'`
if [ -z $name ]; then
name=$directory
# get rid of trailing slash
name=`echo $name | sed -e 's#/$##'`
# leading slash
name=`echo $name | sed -e 's#^/##'`
if [ `echo $name | sed -e 's#/##'` != $name ]; then
name=`echo $name | sed -e 's#^.*/##'`
fi
fi
test $calclog = 1 && log="$returndir/cvs2dist-$name.log" && origlog="cvs2dist-$name.log"
# test if the given name is a sub-directory
if [ ! -d "$directory" ]; then
echo "$directory is not a sub-directory of $module."
echo "Aborted."
exit 1
fi
test $log != "/dev/null" && echo "Logging to $log."
echo "cvs2dist log on "`date` > $log
echo "http://katzbrown.com/shiritsu/programming/cvs2dist/" >> $log
echo -n "Module: $module; Directory: $directory; Name: $name; " >> $log
if [ -z $version ]; then
echo "Version unspecified." >> $log
else
echo "Version $version." >> $log
fi
echo $cmdline >> $log
echo "--------" >> $log
if [ -z $version ]; then
filename=$name
else
filename="$name-$version"
fi
if [ -z $cvsroot ]; then
cvsroot="$CVSROOT";
fi
if [ $doi18n = "yes" ]; then
# a little warning...
echo "Will try to fetch i18n files from KDE's CVS."
echo "If this doesn't work, use --no-i18n."
if [ -z "$cvsroot" ]; then
echo "No cvs root specified, CVSROOT env var is empty, " >> $log
echo "and --no-i18n option is not given.." >> $log
echo "Using anonymous cvs.." >> $log
cvsroot=":pserver:anonymous@anoncvs.kde.org:/home/kde"
# append an entry to ~/.cvspass so the user will not be asked
# for a pwd. Thanks to coolo for the idea..
if ! grep "anoncvs.kde.org" ~/.cvspass >/dev/null 2>&1; then
echo "/1 :pserver:anonymous@anoncvs.kde.org:2401/home/kde A" >> ~/.cvspass
fi
fi
fi
# the temporary directory
temp_dir="$module/cvs2dist-tmp"
temp_dist="$temp_dir/$filename"
echo "Temporary directory is $temp_dir." >> $log
# make a temporary directory
test -d $temp_dir && rm -Rf $temp_dir
mkdir -p $temp_dist
# check if we were able to create temp_dir
test -d $temp_dist
if [ $? -ne 0 ]; then
echo "Could not create temporary directory $temp_dist."
echo "$temp_dist could not be created." >> $log
echo "Aborted."
exit 1
fi
test -z "$requiredmsg" && requiredmsg="Install development package needed first! $requiredheader, for one, is missing."
### configure.in.in
if [ ! -z $requiredheader ]; then
naiyou="KDE_CHECK_HEADER(
$requiredheader,
[],
[AC_MSG_ERROR(\"$requiredmsg\")]
)"
echo $naiyou > $temp_dir/configure.in.in
echo "configure.in.in contents: " >> $log
echo "--------" >> $log
echo $naiyou >> $log
appaddfiles="$appaddfiles $temp_dir/configure.in.in"
fi
# copy all files of the module to temp_dir/name
cp -RL $module/$directory $temp_dist/$name
echo "cp -R $module/$directory $temp_dist/$name" >> $log
modulename="$module"
# get rid of trailing slash
modulename=`echo $modulename | sed -e 's#/$##'`
# get the last part
modulename=`echo $modulename | sed -e 's#^.*/##'`
remove="$remove $modulename.lsm"
# we check out tde-i18n/subdirs in temp_dir/tde-i18n..
if [ $doi18n = "yes" ]; then
pushd $temp_dir
echo "cvs co tde-i18n/subdirs" >> $log
cvs -z4 -q -d "$cvsroot" co $branch -P tde-i18n/subdirs > /dev/null 2>&1
i18nlangs_tmp="$(cat tde-i18n/subdirs)"
skiplist="`echo $noi18nlang | sed -e 's/,/ /g'`"
skiplist="$skiplist $always_skip_languages"
for lang in $i18nlangs_tmp; do
must_skip="no"
for skip in $skiplist; do
if [ "$lang" = "$skip" ]; then
must_skip="yes"
fi
done
if [ "$must_skip" = "no" ]; then
i18nlangs="$i18nlangs $lang"
fi
done
echo "available languages: $i18nlangs" >> $log
popd
fi
# if a handbook exists, we also copy it to the directory
if [ -d $module/doc/$name ]; then
mkdir -p $temp_dist/doc/$name
cp -Rf $module/doc/$name $temp_dist/doc
find $module/doc/ ! -xtype d -maxdepth 1 | xargs --replace={} cp {} $temp_dist/doc
if [ $doi18n = "yes" ]; then
pushd $temp_dir
for lang in $i18nlangs; do
test -d $temp_dist/doc/$lang && rm -Rf $temp_dist/doc/$lang
docdirname="tde-i18n/$lang/docs/$modulename/$name"
echo "cvs co $docdirname" >> $log
cvs -z4 -q -d "$cvsroot" co $branch -P "$docdirname" > /dev/null 2>&1
if [ ! -d "$docdirname" ]; then
echo "$lang's $name documentation does not exist." >> $log
continue
fi
echo -n "Copying $lang's $name documentation over... "
cp -R $docdirname $temp_dist/doc/$lang
# we don't want KDE_DOCS = AUTO, cause that makes the
# build system assume that the name of the app is the
# same as the name of the dir the Makefile.am is in.
# Instead, we explicitly pass the name..
cat $temp_dist/doc/$lang/Makefile.am | sed -e "s/AUTO/$name/" > $temp_dist/doc/$lang/Makefile.am.nw
mv $temp_dist/doc/$lang/Makefile.am.nw $temp_dist/doc/$lang/Makefile.am
echo "done."
echo "$lang documentation included." >> $log
done
popd
fi
fi
# clean up doc directory
if [ -d $temp_dist/doc/$name ]; then
pushd $temp_dist/doc/$name
echo -n "make clean in $temp_dist/doc/$name/... "
echo >> $log
echo "make clean in $temp_dist/doc/$name/" >> $log
make clean >> $log
echo "--------" >> $log
echo "done."
popd
fi
if [ $doi18n = "yes" ]; then
test -d $temp_dist/po && rm -Rf $temp_dist/po
mkdir $temp_dist/po
pushd $temp_dir/
for lang in $i18nlangs; do
dest=$temp_dist/po/$lang
for poname in $pofilenames; do
pofilename="tde-i18n/$lang/messages/$modulename/$poname.po";
echo "cvs co $pofilename" >> $log
cvs -z4 -q -d "$cvsroot" co $branch -P "$pofilename" > /dev/null 2>&1
if [ ! -f "$pofilename" ]; then
echo "$lang's $poname.po does not exist." >> $log
continue
fi
if [ ! -d $dest ]; then
mkdir $dest
fi
echo -n "Copying $lang's $poname.po over... "
echo "$lang's $poname.po file included." >> $log
cp $pofilename $dest
done
echo "done."
echo "KDE_LANG = $lang
SUBDIRS = \$(AUTODIRS)
POFILES = AUTO" > $dest/Makefile.am
subdirs="non_empty"
done
if [ -z "$subdirs" ]; then
rm -Rf $temp_dist/po
else
echo "SUBDIRS = \$(AUTODIRS)" > $temp_dist/po/Makefile.am
fi
fi
# copy the admin directory
if [ -z $admindir ]; then
cp -pRL $module/admin $temp_dist
echo "cp -pRL $module/admin $temp_dist" >> $log
else
cp -pRL $admindir $temp_dist
echo "cp -pRL $admindir $temp_dist" >> $log
fi
# and all files from the base dir, except directories
echo "Copying over files from the module directory:" >> $log
find $module ! -xtype d -maxdepth 1 | xargs --verbose --replace={} cp {} $temp_dist 2>> $log
echo "--------" >> $log
# we now enter the temp_dist and delete all unwanted files
# and add wanted files
cd $temp_dist
# override top-level files
echo "Override files: " >> $log
for file in $override; do
test -e $temp_dist/$name/$file && mv $temp_dist/$name/$file . && echo "mv $temp_dist/$name/$file ." >> $log
done
test ! -z "$addfiles" && echo "Addfiles: " >> $log
for file in $addfiles; do
test -e $file && cp -R $file $temp_dist && echo "cp -R $file $temp_dist" >> $log
done
test ! -z "$appaddfiles" && echo "Application addfiles: " >> $log
for file in $appaddfiles; do
test -e $file && cp -R $file $temp_dist/$name/ && echo "cp -R $file $temp_dist/$name/" >> $log
done
echo "--------" >> $log
# replace all user requested files
if [ -n "$replace_files" ]; then
echo "Replace user requested files" >> $log
pair_list="`echo $replace_files | sed -e 's/,/ /g'`"
for pair in $pair_list; do
pair_tmp="`echo $pair | sed -e 's/@/ /g'`"
from="`echo $pair_tmp | awk '//{print $1}'`"
to="`echo $pair_tmp | awk '//{print $2}'`"
if [ -z "$from" ] || [ -z "$to" ]; then
echo "bogus pair \"$from@$to\"" >> $log
continue
fi
echo "Replacing \"$to\" by \"$from\"" >> $log
from_path="$temp_dist/$name/$from"
to_path="$temp_dist/$name/$to"
if [ ! -f "$from_path" ]; then
echo "$from_path does not exist!" >> $log
echo ""
echo "Warning: \"$from\" does not exist!"
echo -n "Please enter the path in --replace-files relative "
echo "to the package root of your project."
echo "Your package root is: \"$module/$directory\""
echo ""
continue
fi
rm -f "$to_path" && \
mv "$from_path" "$to_path"
if [ $? -ne 0 ]; then
echo -n "Moving \"$from_path\" failed! " >> $log
echo -n "This should not happen." >> $log
if [ -f "$to_path" ]; then
echo ""
else
echo " No \"$to\" will exist in the archive!" >> $log
fi
fi
done
echo "--------" >> $log
fi
# version file, if it doesn't exist
test ! -z $version && test ! -e VERSION && echo "$name version $version" > VERSION
cd $temp_dist/$name
echo "make clean in $temp_dist/$name/:" >> $log
echo "" >> $log
echo -n "make clean in $temp_dist/$name/... "
make clean >> $log
echo "--------" >> $log
echo "done."
cd $temp_dist
# remove files
echo "Remove files: " >> $log
for file in $remove; do
find . -name $file | xargs rm -Rf
echo "find . -name $file | xargs rm -Rf" >> $log
done
# remove more files
echo "Remove toplevel files: " >> $log
for file in $toplevelremove; do
test -e $file && rm -Rf $file && echo "rm -Rf $file" >> $log
done
unset file
# remove hidden files
test ! -z $removehidden && echo "Remove hidden files: " >> $log && find $temp_dist -name ".*" -and ! -name "." | xargs --verbose rm -Rf 2>> $log
echo "--------" >> $log
cd $temp_dist
# create the configure script
# working directory is $temp_dist
echo "make -f Makefile.cvs in $temp_dist/:" >> $log
echo "" >> $log
echo -n "make -f Makefile.cvs in $temp_dist/... "
make -f Makefile.cvs >> $log 2>> $log
echo "rm Makefile.cvs" >> $log
rm -f Makefile.cvs
echo "rm autom4te.cache" >> $log
rm -Rf autom4te.cache
echo "--------" >> $log
echo "done."
echo "Directory will be $filename."
# play around with our tar file in temp_dir
cd $temp_dir
if [ ! -z $leavedir ]; then
test -e $returndir/$filename && rm -Rf $returndir/$filename
cp -R $filename $returndir
fi
# make a tar of temp_dist
if [ -z $nogzip ] || [ -z $nobzip2 ]; then
echo -n "Tarring... "
echo "tar cf $filename.tar $filename" >> $log
tar cf $filename.tar $filename >> $log
echo "done."
fi
if [ -z $nogzip ] && [ ! -z `which gzip 2> /dev/null` ]; then
cp $filename.tar $filename.tar.tmp
echo -n "running gzip... "
echo "gzip $filename.tar" >> $log
gzip $filename.tar
echo "done."
mv $filename.tar.tmp $filename.tar
mv $filename.tar.gz $returndir
echo "mv $filename.tar.gz $returndir" >> $log
fi
if [ -z $nobzip2 ] && [ ! -z `which bzip2 2> /dev/null` ]; then
echo -n "running bzip2... "
echo "bzip2 $filename.tar" >> $log
bzip2 $filename.tar
echo "done."
mv $filename.tar.bz2 $returndir
echo "mv $filename.tar.bz2 $returndir" >> $log
fi
test -e $filename.tar && rm -f $filename.tar
# cleanup all tempoaries
exit_cleanup
cd $returndir
test -z $leavedir && test ! -z $nobzip2 && test ! -z $nogzip && echo "Finished - no created files." && exit 1
# cool, everything went ok!
if [ -z $leavedir ]; then
echo "Finished. Created packages:"
else
if [ -z $nogzip ] || [ -z $nobzip2 ]; then
echo "Finished. Created packages/directories:"
else
echo "Finished. Created directory:"
fi
fi
echo "--------" >> $log
echo "Done: " >> $log
echo "Files are in `pwd`." >> $log
if [ ! -z $leavedir ] && [ -d $filename ]; then
ls -ld $filename
ls -ld $filename >> $log
fi
if [ -z $nogzip ] && [ -e $filename.tar.gz ]; then
ls -l $filename.tar.gz
ls -l $filename.tar.gz >> $log
fi
if [ -z $nobzip2 ] && [ -e $filename.tar.bz2 ]; then
ls -l $filename.tar.bz2
ls -l $filename.tar.bz2 >> $log
fi
if [ $log != "/dev/null" ]; then
echo "Created log:"
ls -l $origlog
fi
|