]> git.saurik.com Git - wxWidgets.git/blame_incremental - wxPython/b
This workaround is no longer needed because of fix in
[wxWidgets.git] / wxPython / b
... / ...
CommitLineData
1#!/bin/bash
2
3# Are we using bash on win32? If so source that file and then exit.
4if [ "$OSTYPE" = "cygwin" ]; then
5 source b.win32
6 exit
7fi
8
9
10function getpyver {
11 if [ "$1" = "15" ]; then
12 PYVER=1.5
13 elif [ "$1" = "20" ]; then
14 PYVER=2.0
15 elif [ "$1" = "21" ]; then
16 PYVER=2.1
17 elif [ "$1" = "22" ]; then
18 PYVER=2.2
19 elif [ "$1" = "23" ]; then
20 PYVER=2.3
21 else
22 echo You must specify Python version as first parameter.
23 exit
24 fi
25}
26
27getpyver $1
28shift
29
30python$PYVER -c "import sys;print '\n', sys.version, '\n'"
31
32
33SETUP="python$PYVER -u setup.py"
34FLAGS="USE_SWIG=1 SWIG=/opt/swig/bin/swig"
35OTHERFLAGS=""
36PORTFLAGS=""
37
38
39if [ "$1" = "gtk1" ]; then
40 PORTFLAGS=""
41 shift
42elif [ "$1" = "gtk2" ]; then
43 PORTFLAGS="WXPORT=gtk2 UNICODE=1"
44 shift
45fi
46
47FLAGS="$FLAGS $PORTFLAGS"
48
49
50
51
52# "c" --> clean
53if [ "$1" = "c" ]; then
54 shift
55 CMD="$SETUP $FLAGS $OTHERFLAGS clean $*"
56 OTHERCMD="rm -f wx/*.so"
57
58# "d" --> clean extension modules only
59elif [ "$1" = "d" ]; then
60 shift
61 CMD="rm -f wx/*.so"
62
63# "t" --> touch *.i files
64elif [ "$1" = "t" ]; then
65 shift
66 CMD='find . -name "*.i" | xargs touch'
67
68# "i" --> install
69elif [ "$1" = "i" ]; then
70 shift
71 CMD="$SETUP $FLAGS $OTHERFLAGS build_ext install $*"
72
73# "s" --> source dist
74elif [ "$1" = "s" ]; then
75 shift
76 CMD="$SETUP $OTHERFLAGS sdist $*"
77
78# "r" --> rpm dist
79elif [ "$1" = "r" ]; then
80 WXPYVER=`python$PYVER -c "import setup;print setup.VERSION"`
81 for VER in 21 22; do
82 getpyver $VER
83
84 echo "*****************************************************************"
85 echo "******* Building wxPython for Python $PYVER"
86 echo "*****************************************************************"
87
88 SETUP="python$PYVER -u setup.py"
89
90 # save the original
91 cp setup.py setup.py.save
92
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
96
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
101
102 # Build wxPython RPM
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
107
108 # put the oringal setup.py back
109 cp setup.py.save setup.py
110 rm setup.py.*
111
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
115
116 done
117
118 # rebuild the source dists without the munched up setup.py
119 $SETUP $OTHERFLAGS bdist_rpm --source-only
120 exit 0
121
122
123# "f" --> FINAL (no debug)
124elif [ "$1" = "f" ]; then
125 shift
126 CMD="$SETUP $FLAGS $OTHERFLAGS build_ext --inplace $*"
127
128# (no command arg) --> normal build for development
129else
130 CMD="$SETUP $FLAGS $OTHERFLAGS build_ext --inplace --debug $*"
131fi
132
133
134echo $CMD
135eval $CMD
136RC=$?
137
138if [ "$RC" = "0" -a "$OTHERCMD" != "" ]; then
139 echo $OTHERCMD
140 $OTHERCMD
141 RC=$?
142fi
143
144exit $RC