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
21 elif [ "$1" = "24" ]; then
24 echo You must specify Python version as first parameter.
32 python
$PYVER -c "import sys;print '\n', sys.version, '\n'"
35 SETUP
="python$PYVER -u setup.py"
36 FLAGS
="USE_SWIG=1 SWIG=/opt/swig/bin/swig"
42 if [ "$1" = "gtk1" -o "$1" = "gtk" ]; then
43 PORTFLAGS
="WXPORT=gtk UNICODE=0"
45 elif [ "$1" = "gtk2" ]; then
46 PORTFLAGS
="WXPORT=gtk2 UNICODE=1"
50 FLAGS
="$FLAGS $PORTFLAGS"
56 if [ "$1" = "c" ]; then
58 CMD
="$SETUP $FLAGS $OTHERFLAGS clean $*"
59 OTHERCMD
="rm -f wx/*.so"
61 # "d" --> clean extension modules only
62 elif [ "$1" = "d" ]; then
66 # "t" --> touch *.i files
67 elif [ "$1" = "t" ]; then
69 CMD
='find . -name "*.i" | xargs touch'
72 elif [ "$1" = "i" ]; then
74 CMD
="$SETUP $FLAGS $OTHERFLAGS build_ext install $*"
77 elif [ "$1" = "s" ]; then
79 CMD
="$SETUP $OTHERFLAGS sdist $*"
82 elif [ "$1" = "r" ]; then
83 WXPYVER
=`python$PYVER -c "import setup;print setup.VERSION"`
87 echo "*****************************************************************"
88 echo "******* Building wxPython for Python $PYVER"
89 echo "*****************************************************************"
91 SETUP
="python$PYVER -u setup.py"
94 cp setup.py setup.py.save
96 # fix up setup.py the way we want...
97 sed "s/BUILD_GLCANVAS = /BUILD_GLCANVAS = 0 #/" < setup.py.save
> setup.py.temp
98 sed "s/GL_ONLY = /GL_ONLY = 1 #/" < setup.py.temp
> setup.py
100 # build wxPython-gl RPM
101 $SETUP $OTHERFLAGS bdist_rpm
--binary-only --doc-files README.txt
--python=python
$PYVER
102 ### --requires=python$PYVER
103 rm dist
/wxPython
-gl*.
tar.gz
106 cp setup.py setup.py.temp
107 sed "s/GL_ONLY = /GL_ONLY = 0 #/" < setup.py.temp
> setup.py
108 $SETUP $OTHERFLAGS bdist_rpm
--binary-only --python=python
$PYVER
109 ### --requires=python$PYVER
111 # put the oringal setup.py back
112 cp setup.py.save setup.py
115 # rename the binary RPM's
116 mv dist
/wxPython
-$WXPYVER-1.i386.rpm dist
/wxPython
-$WXPYVER-1-Py$VER.i386.rpm
117 mv dist
/wxPython
-gl-$WXPYVER-1.i386.rpm dist
/wxPython
-gl-$WXPYVER-1-Py$VER.i386.rpm
121 # rebuild the source dists without the munched up setup.py
122 $SETUP $OTHERFLAGS bdist_rpm
--source-only
126 # "f" --> FINAL (no debug)
127 elif [ "$1" = "f" ]; then
129 CMD
="$SETUP $FLAGS $OTHERFLAGS build_ext --inplace $*"
131 # (no command arg) --> normal build for development
133 CMD
="$SETUP $FLAGS $OTHERFLAGS build_ext --inplace --debug $*"
141 if [ "$RC" = "0" -a "$OTHERCMD" != "" ]; then