]> git.saurik.com Git - wxWidgets.git/blob - wxPython/distrib/wxPythonFull.spec.in
Compilation fix for MSVC 6 and wxUSE_STL=1.
[wxWidgets.git] / wxPython / distrib / wxPythonFull.spec.in
1 %define pref %{_prefix}
2 %define python @PYTHON@
3 %define pyver @PYVER@
4 %define port @PORT@
5 %define lcport @LCPORT@
6 %define unicode @UNICODE@
7 %define tarname @TARNAME@
8 %define version @VERSION@
9 %define ver2 @VER2@
10 %define release 1
11 %define wxprefbase %{pref}/lib/wxPython
12 %define wxpref %{wxprefbase}-%{version}
13 %define name wxPython%{port}-py%{pyver}
14
15
16 # Should the builtin image and etc. libs be used, or system libs?
17 # Distro specific RPMs should probably set this to 0, generic ones
18 # should use 1
19 %define builtin_libs 1
20
21
22 # Should --enable-debug_flag be used in release builds? Using it
23 # defines __WXDEBUG__ and gives us runtime diagnostics that are turned
24 # into Python exceptions starting with 2.3.4. (So turning it on is a
25 # very helpful thing IMO and is recommended.)
26 %define debug_flag 1
27
28
29 # build the name of the real wx-config from the port, flags, etc.
30 %define dbgflg %(if [ "%{debug_flag}" = "1" ]; then echo d; fi)
31 %define uniflg %(if [ "%{unicode}" = "1" ]; then echo u; fi)
32 %define DBGFLG %(if [ "%{debug_flag}" = "1" ]; then echo D; fi)
33 %define UNIFLG %(if [ "%{unicode}" = "1" ]; then echo U; fi)
34 %define wxconfigname %{wxpref}/bin/wx%{lcport}%{uniflg}%{dbgflg}-%{ver2}-config
35
36 # turn off the generation of debuginfo rpm (RH9)
37 %define debug_package %{nil}
38
39 #----------------------------------------------------------------
40 Summary: Cross platform GUI toolkit for Python using wx%{port}
41 Name: %{name}
42 Version: %{version}
43 Release: %{release}
44 Source0: %{tarname}-%{version}.tar.gz
45 License: wxWindows Library Licence, Version 3
46 URL: http://wxPython.org/
47 Packager: Robin Dunn <robin@alldunn.com>
48 Group: Development/Python
49 BuildRoot: %{_tmppath}/%{name}-buildroot
50 Prefix: %{pref}
51
52 Provides: wxPython = %{version}
53 Provides: wxPython%{port} = %{version}
54
55 # Provides: libwx_%{lcport}%{uniflg}%{dbgflg}-%{ver2}.so
56 # Provides: libwx_%{lcport}%{uniflg}%{dbgflg}-%{ver2}.so(WX%{port}%{UNIFLG}%{DBGFLG}_%{ver2})
57 # Provides: libwx_%{lcport}%{uniflg}%{dbgflg}_gl-%{ver2}.so
58 # Provides: libwx_%{lcport}%{uniflg}%{dbgflg}_gl-%{ver2}.so(WX%{port}%{UNIFLG}%{DBGFLG}_%{ver2})
59
60
61 # old wxPython packages
62 Obsoletes: wxPython wxPython%{port}
63
64
65 %description
66 wxPython is a GUI toolkit for Python that is a wrapper around the
67 wxWindows C++ GUI library. wxPython provides a large variety of
68 window types and controls, all implemented with a native look and feel
69 (and native runtime speed) on the platforms it is supported on.
70
71 This package is implemented using the %{port} port of wxWindows, and
72 includes the wx%{port} shared libs and etc.
73
74
75 %package -n wxPython%{port}-devel
76 Summary: wxPython%{port} development files
77 Group: Development/Libraries
78 Requires: wxPython%{port} = %{version}
79
80
81 %description -n wxPython%{port}-devel
82 This packages contains the headers and etc. for building apps or
83 Python extension modules that use the same wx%{port} shared libraries
84 that wxPython uses.
85
86 #----------------------------------------------------------------
87 %prep
88 %setup -q -n %{tarname}-%{version}
89
90
91 #----------------------------------------------------------------
92 %build
93
94 WXDIR=`pwd`
95 mkdir bld
96 cd bld
97
98 # Configure, trying to reduce external dependencies
99 ../configure --with-%{lcport} \
100 --prefix=%{wxpref} \
101 --disable-soname \
102 --disable-monolithic \
103 --enable-rpath=%{wxpref}/lib \
104 --with-opengl \
105 %if %{unicode}
106 --enable-gtk2 \
107 --enable-unicode \
108 %endif
109 --enable-geometry \
110 --enable-optimise \
111 %if %{debug_flag}
112 --enable-debug_flag \
113 %endif
114 %if %{builtin_libs}
115 --with-libjpeg=builtin \
116 --with-libpng=builtin \
117 --with-libtiff=builtin \
118 --with-zlib=builtin \
119 %endif
120
121
122 # Build wxWindows and some contrib libs
123 make
124 make -C contrib/src/gizmos
125 make -C contrib/src/ogl CXXFLAGS="-DwxUSE_DEPRECATED=0"
126 make -C contrib/src/stc
127 make -C contrib/src/xrc
128
129
130 # Install wxWindows and the contribs so the wxPython build can find
131 # all the headers it needs
132 make prefix=$RPM_BUILD_ROOT%{wxpref} install
133 make -C contrib/src/gizmos prefix=$RPM_BUILD_ROOT%{wxpref} install
134 make -C contrib/src/ogl CXXFLAGS="-DwxUSE_DEPRECATED=0" prefix=$RPM_BUILD_ROOT%{wxpref} install
135 make -C contrib/src/stc prefix=$RPM_BUILD_ROOT%{wxpref} install
136 make -C contrib/src/xrc prefix=$RPM_BUILD_ROOT%{wxpref} install
137
138
139 # Now build wxPython
140 cd $WXDIR/wxPython
141 %{python} setup.py \
142 NO_SCRIPTS=1 \
143 WXPORT=%{lcport} \
144 UNICODE=%{unicode} \
145 WX_CONFIG="$RPM_BUILD_ROOT%{wxpref}/bin/wx-config --prefix=$RPM_BUILD_ROOT%{wxpref}" \
146 build
147
148 ## $WXDIR/bld/wx-config --prefix=$WXDIR --exec-prefix=$WXDIR/bld"
149
150 # Build wxrc (XRC resource tool)
151 cd $WXDIR/bld/contrib/utils/wxrc
152 make
153 strip wxrc
154
155
156 # install wxPython
157 cd $WXDIR/wxPython
158 %{python} setup.py \
159 NO_SCRIPTS=1 \
160 WXPORT=%{lcport} \
161 UNICODE=%{unicode} \
162 WX_CONFIG="$RPM_BUILD_ROOT%{wxpref}/bin/wx-config --prefix=$RPM_BUILD_ROOT%{wxpref}" \
163 install \
164 --root=$RPM_BUILD_ROOT
165
166
167 #----------------------------------------------------------------
168 %install
169
170 # Other "install" tasks...
171 WXDIR=`pwd`
172 cd $WXDIR/wxPython
173
174 # install the wxPython headers
175 cp -R include $RPM_BUILD_ROOT%{wxpref}
176 mkdir -p $RPM_BUILD_ROOT%{wxpref}/include/wx/wxPython/i_files
177 cp src/*.i $RPM_BUILD_ROOT%{wxpref}/include/wx/wxPython/i_files
178
179
180 # Since I want this RPM to be as generic as possible I won't let
181 # distutils copy the scripts (NO_SCRIPTS=1 above) since it will mangle
182 # the #! line to use the real python pathname. Since some distros
183 # install python 2.2 as python2 and others as python I can't let
184 # distutils do that otherwise the dependencies will be fouled up.
185 # Copy them manually instead, leaving the #!/bin/env line intact.
186 # TODO: Should this be dependent on %{builtin_libs} or something like
187 # it?
188
189 mkdir -p $RPM_BUILD_ROOT%{pref}/bin
190 for s in \
191 helpviewer \
192 img2png \
193 img2py \
194 img2xpm \
195 pyalacarte \
196 pyalamode \
197 pycrust \
198 pywrap \
199 pyshell \
200 xrced; do
201 cp scripts/$s $RPM_BUILD_ROOT%{pref}/bin
202 done
203
204
205 # Install wxrc
206 cp $WXDIR/bld/contrib/utils/wxrc/wxrc $RPM_BUILD_ROOT%{pref}/bin
207
208
209 # link specific name to generic name
210 ##ln -s wxPython-%{version} $RPM_BUILD_ROOT%{wxprefbase}
211
212
213 # install KDE & GNOME menus
214 mkdir -p $RPM_BUILD_ROOT%{_datadir}/applnk/Development
215 mkdir -p $RPM_BUILD_ROOT%{_datadir}/applications
216 for d in distrib/*.desktop; do
217 install -m 644 $d $RPM_BUILD_ROOT%{_datadir}/applnk/Development
218 install -m 644 $d $RPM_BUILD_ROOT%{_datadir}/applications
219 done
220
221 # install KDE icons
222 mkdir -p $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/{16x16,32x32}/apps
223 mkdir -p $RPM_BUILD_ROOT%{_datadir}/pixmaps
224 install -m 644 wx/py/PyCrust_16.png $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/16x16/apps/PyCrust.png
225 install -m 644 wx/py/PyCrust_32.png $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/32x32/apps/PyCrust.png
226 install -m 644 wx/py/PyCrust_32.png $RPM_BUILD_ROOT%{_datadir}/pixmaps/PyCrust.png
227 install -m 644 wx/tools/XRCed/XRCed_16.png $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/16x16/apps/XRCed.png
228 install -m 644 wx/tools/XRCed/XRCed_32.png $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/32x32/apps/XRCed.png
229 install -m 644 wx/tools/XRCed/XRCed_32.png $RPM_BUILD_ROOT%{_datadir}/pixmaps/XRCed.png
230
231 # install Mandrake menu
232 mkdir -p $RPM_BUILD_ROOT/%{_libdir}/menu
233 cat > $RPM_BUILD_ROOT%{_libdir}/menu/%{name} <<EOF
234 ?package(%{name}): \\
235 command="%{_bindir}/pyshell" \\
236 needs="X11" \\
237 icon="PyCrust.png" \\
238 section="Applications/Development/Tools" \\
239 title="PyShell" \\
240 longtitle="GUI Python Shell"
241 ?package(%{name}): \\
242 command="%{_bindir}/pycrust" \\
243 needs="X11" \\
244 icon="PyCrust.png" \\
245 section="Applications/Development/Tools" \\
246 title="PyCrust" \\
247 longtitle="GUI Python Shell with Filling"
248 ?package(%{name}): \\
249 command="%{_bindir}/pyalamode" \\
250 needs="X11" \\
251 icon="PyCrust.png" \\
252 section="Applications/Development/Tools" \\
253 title="PyAlaMode" \\
254 longtitle="GUI Python Shell with Filling and editor windows"
255 ?package(%{name}): \\
256 command="%{_bindir}/xrced" \\
257 needs="X11" \\
258 icon="XRCed.png" \\
259 section="Applications/Development/Tools" \\
260 title="XRCed" \\
261 longtitle="wxPython XRC resource editor"
262 EOF
263
264
265 #----------------------------------------------------------------
266
267 %pre
268 if [ -e %{wxprefbase} ]; then
269 # in case there are old dirs from an old install
270 rm -r %{wxprefbase}
271 fi
272
273
274 %post
275 if [ ! -e %{wxprefbase} ]; then
276 ln -s wxPython-%{version} %{wxprefbase}
277 fi
278 # This is done on Mandrake to update its menus:
279 if [ -x /usr/bin/update-menus ]; then /usr/bin/update-menus || true ; fi
280
281
282 %postun
283 if [ -e %{wxprefbase} ]; then
284 rm %{wxprefbase}
285 fi
286 # This is done on Mandrake to update its menus:
287 if [ "$1" = "0" -a -x /usr/bin/update-menus ]; then /usr/bin/update-menus || true ; fi
288
289
290 #----------------------------------------------------------------
291 %clean
292 [ "$RPM_BUILD_ROOT" != "/" ] && rm -rf $RPM_BUILD_ROOT
293
294
295 #----------------------------------------------------------------
296
297 %files
298 %defattr(-,root,root)
299 %doc docs/preamble.txt docs/licence.txt docs/lgpl.txt docs/readme.txt docs/changes.txt
300 %doc wxPython/docs/*
301 %{_bindir}/*
302 %{_libdir}/python%{pyver}/site-packages/*
303 %{wxpref}/lib/libwx*
304 %{wxpref}/share
305 %{_datadir}/applnk/Development/*
306 %{_datadir}/applications/*
307 %{_datadir}/icons/hicolor/*/apps/*
308 %{_datadir}/pixmaps/*
309 %{_libdir}/menu/*
310
311 ##%{wxprefbase}
312
313
314 %files -n wxPython%{port}-devel
315 %defattr(-,root,root)
316 %{wxpref}/include
317 %{wxpref}/lib/wx
318 %{wxconfigname}
319 %{wxpref}/bin/wx-config
320
321 #----------------------------------------------------------------
322 # end of file