3 # Are we using bash on win32? If so source that file and then exit.
4 if [ "$OSTYPE" = "cygwin" ]; then
11 if [ "$1" = "15" ]; then
13 elif [ "$1" = "20" ]; then
15 elif [ "$1" = "21" ]; then
17 elif [ "$1" = "22" ]; then
19 elif [ "$1" = "23" ]; then
22 echo You must specify Python version as first parameter.
30 python
$PYVER -c "import sys;print '\n', sys.version, '\n'"
33 SETUP
="python$PYVER -u setup.py"
34 FLAGS
="USE_SWIG=1 SWIG=/opt/swig/bin/swig"
39 if [ "$1" = "gtk1" -o "$1" = "gtk" ]; then
40 PORTFLAGS
="WXPORT=gtk UNICODE=0"
42 elif [ "$1" = "gtk2" ]; then
43 PORTFLAGS
="WXPORT=gtk2 UNICODE=1"
47 FLAGS
="$FLAGS $PORTFLAGS"
53 if [ "$1" = "c" ]; then
55 CMD
="$SETUP $FLAGS $OTHERFLAGS clean $*"
56 OTHERCMD
="rm -f wx/*.so"
58 # "d" --> clean extension modules only
59 elif [ "$1" = "d" ]; then
63 # "t" --> touch *.i files
64 elif [ "$1" = "t" ]; then
66 CMD
='find . -name "*.i" | xargs touch'
69 elif [ "$1" = "i" ]; then
71 CMD
="$SETUP $FLAGS $OTHERFLAGS build_ext install $*"
74 elif [ "$1" = "s" ]; then
76 CMD
="$SETUP $OTHERFLAGS sdist $*"
79 elif [ "$1" = "r" ]; then
80 WXPYVER
=`python$PYVER -c "import setup;print setup.VERSION"`
84 echo "*****************************************************************"
85 echo "******* Building wxPython for Python $PYVER"
86 echo "*****************************************************************"
88 SETUP
="python$PYVER -u setup.py"
91 cp setup.py setup.py.save
93 # fix up setup.py the way we want...
94 sed "s/BUILD_GLCANVAS = /BUILD_GLCANVAS = 0 #/" < setup.py.save
> setup.py.temp
95 sed "s/GL_ONLY = /GL_ONLY = 1 #/" < setup.py.temp
> setup.py
97 # build wxPython-gl RPM
98 $SETUP $OTHERFLAGS bdist_rpm
--binary-only --doc-files README.txt
--python=python
$PYVER
99 ### --requires=python$PYVER
100 rm dist
/wxPython
-gl*.
tar.gz
103 cp setup.py setup.py.temp
104 sed "s/GL_ONLY = /GL_ONLY = 0 #/" < setup.py.temp
> setup.py
105 $SETUP $OTHERFLAGS bdist_rpm
--binary-only --python=python
$PYVER
106 ### --requires=python$PYVER
108 # put the oringal setup.py back
109 cp setup.py.save setup.py
112 # rename the binary RPM's
113 mv dist
/wxPython
-$WXPYVER-1.i386.rpm dist
/wxPython
-$WXPYVER-1-Py$VER.i386.rpm
114 mv dist
/wxPython
-gl-$WXPYVER-1.i386.rpm dist
/wxPython
-gl-$WXPYVER-1-Py$VER.i386.rpm
118 # rebuild the source dists without the munched up setup.py
119 $SETUP $OTHERFLAGS bdist_rpm
--source-only
123 # "f" --> FINAL (no debug)
124 elif [ "$1" = "f" ]; then
126 CMD
="$SETUP $FLAGS $OTHERFLAGS build_ext --inplace $*"
128 # (no command arg) --> normal build for development
130 CMD
="$SETUP $FLAGS $OTHERFLAGS build_ext --inplace --debug $*"
138 if [ "$RC" = "0" -a "$OTHERCMD" != "" ]; then