]> git.saurik.com Git - wxWidgets.git/blob - wxPython/distrib/build_packages.sh
Forward port 2.6 branch changes to head.
[wxWidgets.git] / wxPython / distrib / build_packages.sh
1 #!/bin/bash
2
3 unicode=no
4 debug=no
5 reswig=no
6 all=no
7
8 if [ "$1" = "all" ]; then
9 all=yes
10 else
11 PY_VERSION=$1
12 fi
13
14 shift
15
16 for flag in $*; do
17 case ${flag} in
18 debug) debug=yes ;;
19 unicode) unicode=yes ;;
20 reswig) reswig=yes ;;
21 esac
22 done
23
24 if [ "$WXWIN" = "" ]; then
25 export WXWIN=`pwd`/../..
26 fi
27
28 if [ $all = yes ]; then
29 $WXWIN/wxPython/distrib/build_packages.sh 23
30 $WXWIN/wxPython/distrib/build_packages.sh 23 unicode
31 $WXWIN/wxPython/distrib/build_packages.sh 24
32 $WXWIN/wxPython/distrib/build_packages.sh 24 unicode
33 fi
34
35 echo "wxWidgets directory is: $WXWIN"
36
37 if [ "$OSTYPE" = "cygwin" ]; then
38 # do setup of build environment vars
39 if [ "$TOOLS" = "" ]; then
40 export TOOLS=`cygpath C:\\`
41 fi
42
43 if [ "$SWIGDIR" = "" ]; then
44 export SWIGDIR=$TOOLS/SWIG-1.3.24
45 fi
46
47 DEBUG_FLAG=
48 UNICODE_FLAG=
49 if [ $debug = yes ]; then
50 DEBUG_FLAG=--debug
51 fi
52 if [ $unicode = yes ]; then
53 UNICODE_FLAG="UNICODE=1"
54 fi
55
56 # copy wxPython build scripts
57 cp $WXWIN/wxPython/distrib/msw/.m* $WXWIN/build/msw
58
59 # setup wxPython defines
60 cp $WXWIN/include/wx/msw/setup0.h $WXWIN/include/wx/msw/setup.h
61 $TOOLS/Python$PY_VERSION/python `cygpath -d $WXWIN/wxPython/distrib/create_setup.h.py` $UNICODE_FLAG
62
63 export PATH=${PATH}:${WXWIN}/lib/vc_dll:${TOOLS}/Python${PY_VERSION}
64
65 cd $WXWIN/build/msw
66 # remove old build files
67 rm -rf vc_msw*
68 UNI=
69 if [ $unicode = yes ]; then
70 UNI=-uni
71 fi
72 ./.make hybrid$UNI
73
74 # make tools for docs creation, etc.
75 ./.make_tools
76
77 # update the language files
78 cd $WXWIN/locale
79 make allmo
80
81 $TOOLS/Python$PY_VERSION/python `cygpath -d $WXWIN/wxPython/distrib/makemo.py`
82
83 cd $WXWIN/wxPython
84
85 rm -rf build build.unicode
86 rm -rf wx/*.pyd
87
88 # re-generate SWIG files
89 if [ $reswig = yes ]; then
90 $WXWIN/wxPython/b $PY_VERSION t
91 fi
92
93 # build the hybrid extension
94 # NOTE: Win Python needs Windows-style pathnames, so we
95 # need to convert
96 export WXWIN=`cygpath -w $WXWIN`
97 export SWIGDIR=`cygpath -w $SWIGDIR`
98
99 $WXWIN/wxPython/b $PY_VERSION h $DEBUG_FLAG $UNICODE_FLAG
100
101 # make the dev package
102 $WXWIN/wxPython/distrib/makedev
103 $WXWIN/wxPython/distrib/makedocs
104 $WXWIN/wxPython/distrib/makedemo
105
106 $TOOLS/Python$PY_VERSION/python `cygpath -d $WXWIN/wxPython/distrib/make_installer_inno4.py` $UNICODE_FLAG
107 elif [ "$OSTYPE" = "darwin" ]; then
108 cd $WXWIN/wxPython
109
110 if [ ! -d dist ]; then
111 mkdir dist
112 fi
113 # re-generate SWIG files
114 if [ $reswig = yes ]; then
115 $WXWIN/wxPython/b $PY_VERSION t
116 fi
117
118 PY_DOT_VER=2.3
119 if [ "$PY_VERSION" = "24" ]; then
120 PY_DOT_VER=2.4
121 fi
122
123 UNICODE_OPT=
124 if [ $unicode = yes ]; then
125 UNICODE_OPT=unicode
126 fi
127
128 #sudo $WXWIN/wxPython/distrib/makedocs
129 $WXWIN/wxPython/distrib/makedemo
130 export TARBALLDIR=$WXWIN/wxPython/dist
131
132 distrib/mac/wxPythonOSX/build $PY_DOT_VER panther inplace $UNICODE_OPT
133 else
134 echo "OSTYPE $OSTYPE not yet supported by this build script."
135 fi
136
137 # return to original dir
138 cd $WXWIN/wxPython/distrib
139