]>
Commit | Line | Data |
---|---|---|
33b64e6f JS |
1 | #!/bin/sh |
2 | # tardist: make up a tar.gz distribution of wxWindows 2 | |
3 | # Supply a source (e.g. ~/wx2) and destination (e.g. ~/wx2/deliver) | |
4 | ||
7a5e6267 JS |
5 | # We can't use e.g. this: |
6 | # ls `cat $SRC/distrib/msw/makefile.rsp` zip -@ -u $DEST/wxWindows-$VERSION-gen.zip | |
7 | # because there's not enough space on the command line, plus we need to ignore the | |
8 | # blank lines. | |
9 | ||
10 | expandlines() | |
11 | { | |
12 | toexpand=$1 | |
13 | outputfile=$2 | |
14 | ||
15 | rm -f $outputfile | |
16 | touch $outputfile | |
17 | for line in `cat $toexpand` ; do | |
84c9e2f8 | 18 | if [ "$line" != "" ]; then |
7a5e6267 JS |
19 | ls $line >> $outputfile |
20 | fi | |
21 | done | |
22 | } | |
23 | ||
24 | ||
33b64e6f | 25 | init="" |
84c9e2f8 | 26 | if [ "$1" = "" ] |
33b64e6f | 27 | then |
84c9e2f8 | 28 | echo Usage: tardist wx-dir output-dir version |
33b64e6f JS |
29 | exit |
30 | fi | |
31 | ||
84c9e2f8 | 32 | if [ "$2" = "" ] |
33b64e6f | 33 | then |
84c9e2f8 | 34 | echo Usage: tardist wx-dir output-dir version |
33b64e6f JS |
35 | exit |
36 | fi | |
37 | ||
84c9e2f8 JS |
38 | if [ "$3" = "" ] |
39 | then | |
40 | echo Usage: tardist wx-dir output-dir version | |
41 | exit | |
42 | fi | |
43 | ||
44 | WXVER=$3 | |
45 | ||
33b64e6f JS |
46 | echo About to archive wxWindows: |
47 | echo From $1 | |
48 | echo To $2 | |
49 | echo CTRL-C if this is not correct. | |
50 | read dummy | |
51 | ||
52 | cd $1 | |
53 | ||
54 | echo Removing backup files... | |
55 | rm *~ */*~ */*/*~ */*/*/*~ */*/*/*/*~ | |
56 | ||
84c9e2f8 | 57 | rm -f $2/wxWindows-${WXVER}*.tgz |
b69f1bd1 JS |
58 | rm -f $2/tex2rtf2.tgz |
59 | rm -f $2/ogl3.tgz | |
75737d05 | 60 | rm -f $2/jpeg.tgz |
f6bcfd97 | 61 | rm -f $2/tiff.tgz |
33b64e6f JS |
62 | |
63 | echo Tarring... | |
64 | ||
b69f1bd1 | 65 | ### Generic |
84c9e2f8 JS |
66 | ls `cat $1/distrib/msw/generic.rsp $1/distrib/msw/contrib.rsp $1/distrib/msw/makefile.rsp` > /tmp/wxgen.txt |
67 | tar cvf $2/wxWindows-${WXVER}-gen.tar -T /tmp/wxgen.txt | |
68 | gzip $2/wxWindows-${WXVER}-gen.tar | |
69 | mv $2/wxWindows-${WXVER}-gen.tar.gz $2/wxWindows-${WXVER}-gen.tgz | |
b69f1bd1 | 70 | |
33b64e6f | 71 | ### wxGTK |
84c9e2f8 JS |
72 | ls `cat $1/distrib/msw/generic.rsp $1/distrib/msw/contrib.rsp $1/distrib/msw/xml.rsp $1/distrib/msw/gtk.rsp $1/distrib/msw/makefile.rsp` > /tmp/wxgtk.txt |
73 | tar cvf $2/wxWindows-${WXVER}-gtk.tar -T /tmp/wxgtk.txt | |
74 | gzip $2/wxWindows-${WXVER}-gtk.tar | |
75 | mv $2/wxWindows-${WXVER}-gtk.tar.gz $2/wxWindows-${WXVER}-gtk.tgz | |
33b64e6f JS |
76 | |
77 | ### wxMotif | |
84c9e2f8 JS |
78 | ls `cat $1/distrib/msw/generic.rsp $1/distrib/msw/motif.rsp $1/distrib/msw/contrib.rsp $1/distrib/msw/xml.rsp $1/distrib/msw/makefile.rsp` > /tmp/wxmotif.txt |
79 | tar cvf $2/wxWindows-${WXVER}-mot.tar -T /tmp/wxmotif.txt | |
80 | gzip $2/wxWindows-${WXVER}-mot.tar | |
81 | mv $2/wxWindows-${WXVER}-mot.tar.gz $2/wxWindows-${WXVER}-mot.tgz | |
33b64e6f JS |
82 | |
83 | ### Doc sources | |
84 | ls `cat $1/distrib/msw/docsrc.rsp` > /tmp/docsrc.txt | |
84c9e2f8 JS |
85 | tar cvf $2/wxWindows-${WXVER}-doc.tar -T /tmp/docsrc.txt |
86 | gzip $2/wxWindows-${WXVER}-doc.tar | |
87 | mv $2/wxWindows-${WXVER}-doc.tar.gz $2/wxWindows-${WXVER}-doc.tgz | |
33b64e6f JS |
88 | |
89 | ### HTML docs | |
90 | ls `cat $1/distrib/msw/wx_html.rsp` > /tmp/html.txt | |
84c9e2f8 JS |
91 | tar cvf $2/wxWindows-${WXVER}-htm.tar -T /tmp/html.txt |
92 | gzip $2/wxWindows-${WXVER}-htm.tar | |
93 | mv $2/wxWindows-${WXVER}-htm.tar.gz $2/wxWindows-${WXVER}-htm.tgz | |
33b64e6f JS |
94 | |
95 | ### PDF docs | |
96 | ls `cat $1/distrib/msw/wx_pdf.rsp` > /tmp/pdf.txt | |
84c9e2f8 JS |
97 | tar cvf $2/wxWindows-${WXVER}-pdf.tar -T /tmp/pdf.txt |
98 | gzip $2/wxWindows-${WXVER}-pdf.tar | |
99 | mv $2/wxWindows-${WXVER}-pdf.tar.gz $2/wxWindows-${WXVER}-pdf.tgz | |
33b64e6f JS |
100 | |
101 | ### Stubs files | |
102 | ls `cat $1/distrib/msw/stubs.rsp` > /tmp/stubs.txt | |
84c9e2f8 JS |
103 | tar cvf $2/wxWindows-${WXVER}-stubs.tar -T /tmp/stubs.txt |
104 | gzip $2/wxWindows-${WXVER}-stubs.tar | |
105 | mv $2/wxWindows-${WXVER}-stubs.tar.gz $2/wxWindows-${WXVER}-stubs.tgz | |
33b64e6f JS |
106 | |
107 | ### Tex2RTF | |
108 | ls `cat $1/distrib/msw/tex2rtf.rsp` > /tmp/tex2rtf.txt | |
b69f1bd1 JS |
109 | tar cvf $2/tex2rtf2.tar -T /tmp/tex2rtf.txt |
110 | gzip $2/tex2rtf2.tar | |
111 | mv $2/tex2rtf2.tar.gz $2/tex2rtf2.tgz | |
33b64e6f JS |
112 | |
113 | ### OGL | |
114 | ls `cat $1/distrib/msw/ogl.rsp` > /tmp/ogl.txt | |
b69f1bd1 JS |
115 | tar cvf $2/ogl3.tar -T /tmp/ogl.txt |
116 | gzip $2/ogl3.tar | |
117 | mv $2/ogl3.tar.gz $2/ogl3.tgz | |
33b64e6f | 118 | |
75737d05 JS |
119 | ### JPEG |
120 | ls `cat $1/distrib/msw/jpeg.rsp` > /tmp/jpeg.txt | |
121 | tar cvf $2/jpeg.tar -T /tmp/jpeg.txt | |
122 | gzip $2/jpeg.tar | |
123 | mv $2/jpeg.tar.gz $2/jpeg.tgz | |
124 | ||
f6bcfd97 BP |
125 | ### TIFF |
126 | ls `cat $1/distrib/msw/tiff.rsp` > /tmp/tiff.txt | |
127 | tar cvf $2/tiff.tar -T /tmp/tiff.txt | |
128 | gzip $2/tiff.tar | |
129 | mv $2/tiff.tar.gz $2/tiff.tgz | |
130 | ||
33b64e6f | 131 | echo Done! |