]> git.saurik.com Git - wxWidgets.git/blame - wxPython/distrib/all/do-build-windows
Build and distrib tweaks ported over from the 2.6 branch
[wxWidgets.git] / wxPython / distrib / all / do-build-windows
CommitLineData
e4bb5998
RD
1#!/bin/bash
2# ---------------------------------------------------------------------------
3# Build wxWidgets and wxPython on a Windows box. This is normally called
4# from build-all but it should be able to be used standalone too...
5#
6# The command line must have the following parameters:
7#
8# 1. the path to the base of the wx source tree
9# 2. the path of where to put the resulting installers
10# 3. skipclean flag (yes|no)
11# 4. the VERSION
12# 5. the remaining args are the versions of Python to build for
13#
14# ---------------------------------------------------------------------------
15
16set -o errexit
17#set -o xtrace
18
19echo "-=-=-=- Hello from $HOSTNAME -=-=-=-"
20
21if [ $# -lt 5 ]; then
22 echo "Usage: $0 WXDIR DESTDIR SKIPCLEAN VERSION PYVER..."
23 exit 1
24fi
25
26WXDIR=$1
27DESTDIR=$2
28SKIPCLEAN=$3
29VERSION=$4
3d6c749c 30PYVER=$5
e4bb5998
RD
31
32
33# WXDIR is the cygwin path, WXWIN is the DOS path
e4bb5998
RD
34WXWIN=`cygpath -w $WXDIR`
35export WXWIN
0f475e8a
RD
36export WXDIR
37export TOOLS=/cygdrive/c/TOOLS
e4bb5998 38
e4bb5998 39
3d6c749c
RD
40# setup the compiler
41if [ $PYVER = 2.3 ]; then
42 echo "Using MSVC ver 6"
43 . msvcset local 6
44 echo `which cl.exe`
45else
46 echo "Using MSVC ver 7"
47 . msvcset local 7
48 echo `which cl.exe`
49fi
50
e4bb5998
RD
51
52# untar the source
bf158fe6 53echo "Unarchiving wxPython-src-$VERSION.tar.bz2"
e4bb5998 54cd $DESTDIR
bf158fe6
RD
55tar xjf wxPython-src-$VERSION.tar.bz2
56rm wxPython-src-$VERSION.tar.bz2
e4bb5998
RD
57
58
59# Fix line endings
60echo "Converting wxPython line endings to CRLF..."
61cd $WXDIR
62names=`find wxPython -name "*.py" -o -name "*.txt" -o -name "*.htm*" -o -name "*.css" -o -name "*.xml" `
63unix2dos -D $names
64
65
66# change to the right spot in the source tree and copy our build scripts
67echo "Setting up for the build..."
68cd $WXDIR/build/msw
69cp $WXDIR/wxPython/distrib/msw/.m* .
3d6c749c 70chmod +x .m*
e4bb5998
RD
71
72
73# replace some settings in setup0.h and write to setup.h
74cat > .my.sedexpr <<EOF
75s/wxDIALOG_UNIT_COMPATIBILITY *1/wxDIALOG_UNIT_COMPATIBILITY 0/g
8c87c6b4 76s/wxUSE_EXCEPTIONS *1/wxUSE_EXCEPTIONS 0/g
e4bb5998
RD
77s/wxUSE_DEBUG_CONTEXT *0/wxUSE_DEBUG_CONTEXT 1/g
78s/wxUSE_MEMORY_TRACING *0/wxUSE_MEMORY_TRACING 1/g
79s/wxUSE_DIALUP_MANAGER *1/wxUSE_DIALUP_MANAGER 0/g
80s/wxUSE_GLCANVAS *0/wxUSE_GLCANVAS 1/g
81s/wxUSE_POSTSCRIPT *0/wxUSE_POSTSCRIPT 1/g
82s/wxUSE_AFM_FOR_POSTSCRIPT *1/wxUSE_AFM_FOR_POSTSCRIPT 0/g
83s/wxUSE_DISPLAY *0/wxUSE_DISPLAY 1/g
8c87c6b4 84s/wxUSE_DIB_FOR_BITMAP *0/wxUSE_DIB_FOR_BITMAP 1/g
30eb969a 85s/wxUSE_DEBUGREPORT *1/wxUSE_DEBUGREPORT 0/g
e4bb5998
RD
86EOF
87cat $WXDIR/include/wx/msw/setup0.h | sed -f .my.sedexpr > $WXDIR/include/wx/msw/setup.h
88rm .my.sedexpr
89
90
91echo "Building the wx DLLs..."
92.make hybrid
93.make hybrid-uni
94
95
0f475e8a
RD
96echo "Building tex2rtf..."
97cd $WXDIR/utils/tex2rtf/src
98$WXDIR/build/msw/.mymake hybrid
99cp vc_mswhdll/tex2rtf.exe $WXDIR/lib/vc_dll/tex2rtf.exe
100
101echo "Building the HTMLHelp file..."
102DOCDIR=$WXDIR/docs
103cd $DOCDIR/latex/wx
104mkdir -p $DOCDIR/html/wx
105cp *.gif $DOCDIR/html/wx
106cp *.css $DOCDIR/html/wx
107DOCSRC=`cygpath -w $DOCDIR/latex/wx/manual.tex`
108DOCDEST=`cygpath -w $DOCDIR/html/wx/wx.htm`
109DOCINI=`cygpath -w $DOCDIR/latex/wx/tex2rtf_css.ini`
110
111$WXDIR/lib/vc_dll/tex2rtf.exe $DOCSRC $DOCDEST -twice -html -macros $DOCINI
112
113cd $DOCDIR/html/wx
114cp $DOCDIR/latex/wx/wx.css .
115$TOOLS/HTMLHelpWorkshop/hhc.exe wx.hhp || true
116mkdir -p ../../htmlhelp
117mv wx.chm ../../htmlhelp
118
119# rm -f $DOCDIR/html/wx/*.con
120# rm -f $DOCDIR/html/wx/*.ref
121# rm -f $DOCDIR/latex/wx/*.con
122# rm -f $DOCDIR/latex/wx/*.ref
123
e4bb5998 124
e4bb5998
RD
125
126
127echo "Building wxPython and installers..."
128cd $WXDIR/wxPython
129mkdir -p dist
130
131for ver in $PYVER; do
132 echo $ver
1d84f787
RD
133 b $ver d UNICODE=0 USE_SWIG=0
134 b $ver h UNICODE=0 USE_SWIG=0 EP_ADD_OPTS=1
135 b $ver r UNICODE=0 USE_SWIG=0
e4bb5998
RD
136 b $ver d UNICODE=1 USE_SWIG=0
137 b $ver h UNICODE=1 USE_SWIG=0 EP_ADD_OPTS=1
138 b $ver r UNICODE=1 USE_SWIG=0
139done
140
141echo "Building the developer package..."
142WXWIN=`cygpath -w $WXDIR`
143export WXWIN
0f475e8a 144$TOOLS/4dos/4nt /c distrib/makedev.bat $VERSION
e4bb5998
RD
145
146
147echo "Copying installers to $DESTDIR..."
148mv dist/wxPython* $DESTDIR
149cd $DESTDIR
150
151
152if [ $SKIPCLEAN != yes ]; then
153 echo "Cleaning up..."
154 rm -r $WXDIR || true
155fi
156
157echo "-=-=-=- Goodbye! -=-=-=-"