]>
Commit | Line | Data |
---|---|---|
1 | %define pref /usr | |
2 | %define ver 2.9.0 | |
3 | %define ver2 2.9 | |
4 | %define rel 1 | |
5 | ||
6 | %define portname motif | |
7 | %define name wx-%{portname} | |
8 | %define wxbasename wx-base | |
9 | ||
10 | %define wxconfig %{portname}-ansi-release-%{ver2} | |
11 | %define wxconfiglink wx%{portname}-%{ver2}-config | |
12 | ||
13 | Summary: The Motif/Lesstif port of the wxWidgets library | |
14 | Name: %{name} | |
15 | Version: %{ver} | |
16 | Release: %{rel} | |
17 | License: wxWindows Licence | |
18 | Group: X11/Libraries | |
19 | Source: wxMotif-%{ver}.tar.bz2 | |
20 | URL: http://www.wxwidgets.org | |
21 | Packager: wxWidgets developers <wx-dev@lists.wxwidgets.org> | |
22 | BuildRoot: %{_tmppath}/%{name}-root | |
23 | Requires: %{wxbasename} = %{ver} | |
24 | ||
25 | # all packages providing an implementation of wxWidgets library (regardless of | |
26 | # the toolkit used) should provide the (virtual) wxwin package, this makes it | |
27 | # possible to require wxwin instead of requiring "wxgtk or wxmotif or wxuniv..." | |
28 | Provides: wxwin | |
29 | Provides: wxMotif | |
30 | ||
31 | %description | |
32 | wxWidgets is a free C++ library for cross-platform GUI development. | |
33 | With wxWidgets, you can create applications for different GUIs (GTK+, | |
34 | Motif/LessTif, MS Windows, Mac) from the same source code. | |
35 | ||
36 | %package devel | |
37 | Summary: The Motif/Lesstif port of the wxWidgets library | |
38 | Group: X11/Libraries | |
39 | Requires: %{name} = %{ver} | |
40 | Requires: %{wxbasename}-devel = %{ver} | |
41 | ||
42 | %description devel | |
43 | Header files for wxMotif, the Motif/Lesstif port of the wxWidgets library. | |
44 | ||
45 | %package gl | |
46 | Summary: The Motif/Lesstif port of the wxWidgets library, OpenGL add-on. | |
47 | Group: X11/Libraries | |
48 | Requires: %{name} = %{ver} | |
49 | ||
50 | %description gl | |
51 | OpenGL add-on library for wxMotif, the Motif/Lesstif port of the wxWidgets library. | |
52 | ||
53 | %package static | |
54 | Summary: wxMotif static libraries | |
55 | Group: Development/Libraries | |
56 | Requires: %{wxbasename}-static | |
57 | Requires: %{name}-devel = %{ver} | |
58 | ||
59 | %description static | |
60 | Static libraries for wxMotif. You need them if you want to link statically against wxMotif. | |
61 | ||
62 | %package contrib | |
63 | Summary: Contrib libraries for wxMotif | |
64 | Group: X11/Libraries | |
65 | Requires: %{name} = %{ver} | |
66 | ||
67 | %description contrib | |
68 | Contrib libraries for wxMotif | |
69 | ||
70 | %package contrib-devel | |
71 | Summary: Contrib libraries for wxMotif | |
72 | Group: X11/Libraries | |
73 | Requires: %{name}-contrib = %{ver} | |
74 | Requires: %{name}-devel = %{ver} | |
75 | ||
76 | %description contrib-devel | |
77 | Header files for contributed libraries for wxMotif. | |
78 | ||
79 | %prep | |
80 | %setup -q -n wxMotif-%{ver} | |
81 | ||
82 | %build | |
83 | if [ "$SMP" != "" ]; then | |
84 | export MAKE="make -j$SMP" | |
85 | else | |
86 | export MAKE="make" | |
87 | fi | |
88 | ||
89 | mkdir obj-shared | |
90 | cd obj-shared | |
91 | ../configure --prefix=%{pref} --with-motif --with-odbc --with-opengl | |
92 | $MAKE | |
93 | ||
94 | cd contrib/src | |
95 | $MAKE | |
96 | cd ../../.. | |
97 | ||
98 | mkdir obj-static | |
99 | cd obj-static | |
100 | ../configure --prefix=%{pref} --with-motif --disable-shared --with-odbc --with-opengl | |
101 | $MAKE | |
102 | cd .. | |
103 | ||
104 | %install | |
105 | rm -rf $RPM_BUILD_ROOT | |
106 | (cd obj-static; make prefix=$RPM_BUILD_ROOT%{pref} install) | |
107 | (cd obj-shared; make prefix=$RPM_BUILD_ROOT%{pref} install) | |
108 | ||
109 | # Remove headers that are part of wx-base-devel: | |
110 | ||
111 | # --- wxBase headers list begins here --- | |
112 | cat <<EOF >wxbase-headers.files | |
113 | wx/afterstd.h | |
114 | wx/app.h | |
115 | wx/apptrait.h | |
116 | wx/archive.h | |
117 | wx/arrimpl.cpp | |
118 | wx/arrstr.h | |
119 | wx/beforestd.h | |
120 | wx/buffer.h | |
121 | wx/build.h | |
122 | wx/chartype.h | |
123 | wx/chkconf.h | |
124 | wx/clntdata.h | |
125 | wx/cmdline.h | |
126 | wx/confbase.h | |
127 | wx/config.h | |
128 | wx/convauto.h | |
129 | wx/containr.h | |
130 | wx/cpp.h | |
131 | wx/crt.h | |
132 | wx/datetime.h | |
133 | wx/datstrm.h | |
134 | wx/dde.h | |
135 | wx/debug.h | |
136 | wx/defs.h | |
137 | wx/dir.h | |
138 | wx/dlimpexp.h | |
139 | wx/dynarray.h | |
140 | wx/dynlib.h | |
141 | wx/dynload.h | |
142 | wx/encconv.h | |
143 | wx/event.h | |
144 | wx/except.h | |
145 | wx/features.h | |
146 | wx/flags.h | |
147 | wx/ffile.h | |
148 | wx/file.h | |
149 | wx/fileconf.h | |
150 | wx/filefn.h | |
151 | wx/filename.h | |
152 | wx/filesys.h | |
153 | wx/fontenc.h | |
154 | wx/fontmap.h | |
155 | wx/fs_arc.h | |
156 | wx/fs_filter.h | |
157 | wx/fs_mem.h | |
158 | wx/fs_zip.h | |
159 | wx/hash.h | |
160 | wx/hashmap.h | |
161 | wx/hashset.h | |
162 | wx/html/forcelnk.h | |
163 | wx/iconloc.h | |
164 | wx/init.h | |
165 | wx/intl.h | |
166 | wx/iosfwrap.h | |
167 | wx/ioswrap.h | |
168 | wx/ipc.h | |
169 | wx/ipcbase.h | |
170 | wx/isql.h | |
171 | wx/isqlext.h | |
172 | wx/link.h | |
173 | wx/list.h | |
174 | wx/listimpl.cpp | |
175 | wx/log.h | |
176 | wx/longlong.h | |
177 | wx/math.h | |
178 | wx/memconf.h | |
179 | wx/memory.h | |
180 | wx/memtext.h | |
181 | wx/mimetype.h | |
182 | wx/module.h | |
183 | wx/msgout.h | |
184 | wx/mstream.h | |
185 | wx/object.h | |
186 | wx/platform.h | |
187 | wx/platinfo.h | |
188 | wx/power.h | |
189 | wx/process.h | |
190 | wx/ptr_scpd.h | |
191 | wx/recguard.h | |
192 | wx/regex.h | |
193 | wx/scopeguard.h | |
194 | wx/snglinst.h | |
195 | wx/sstream.h | |
196 | wx/stack.h | |
197 | wx/stackwalk.h | |
198 | wx/stdpaths.h | |
199 | wx/stockitem.h | |
200 | wx/stopwatch.h | |
201 | wx/strconv.h | |
202 | wx/stream.h | |
203 | wx/string.h | |
204 | wx/stringimpl.h | |
205 | wx/stringops.h | |
206 | wx/strvararg.h | |
207 | wx/sysopt.h | |
208 | wx/tarstrm.h | |
209 | wx/textbuf.h | |
210 | wx/textfile.h | |
211 | wx/thread.h | |
212 | wx/thrimpl.cpp | |
213 | wx/timer.h | |
214 | wx/tokenzr.h | |
215 | wx/txtstrm.h | |
216 | wx/types.h | |
217 | wx/unichar.h | |
218 | wx/uri.h | |
219 | wx/utils.h | |
220 | wx/variant.h | |
221 | wx/vector.h | |
222 | wx/version.h | |
223 | wx/volume.h | |
224 | wx/wfstream.h | |
225 | wx/wx.h | |
226 | wx/wxchar.h | |
227 | wx/wxcrt.h | |
228 | wx/wxcrtbase.h | |
229 | wx/wxcrtvararg.h | |
230 | wx/wxprec.h | |
231 | wx/xti.h | |
232 | wx/xtistrm.h | |
233 | wx/zipstrm.h | |
234 | wx/zstream.h | |
235 | wx/unix/app.h | |
236 | wx/unix/apptbase.h | |
237 | wx/unix/apptrait.h | |
238 | wx/unix/execute.h | |
239 | wx/unix/evtloop.h | |
240 | wx/unix/mimetype.h | |
241 | wx/unix/pipe.h | |
242 | wx/unix/private.h | |
243 | wx/unix/stackwalk.h | |
244 | wx/unix/stdpaths.h | |
245 | wx/fs_inet.h | |
246 | wx/gsocket.h | |
247 | wx/protocol/file.h | |
248 | wx/protocol/ftp.h | |
249 | wx/protocol/http.h | |
250 | wx/protocol/protocol.h | |
251 | wx/sckaddr.h | |
252 | wx/sckipc.h | |
253 | wx/sckstrm.h | |
254 | wx/socket.h | |
255 | wx/url.h | |
256 | wx/unix/gsockunx.h | |
257 | wx/xml/xml.h | |
258 | wx/xtixml.h | |
259 | wx/db.h | |
260 | wx/dbkeyg.h | |
261 | wx/dbtable.h | |
262 | EOF | |
263 | # --- wxBase headers list ends here --- | |
264 | for f in `cat wxbase-headers-list` ; do | |
265 | rm -f $RPM_BUILD_ROOT%{_includedir}/wx-%{ver2}/$f | |
266 | done | |
267 | ||
268 | # list of all core headers: | |
269 | find $RPM_BUILD_ROOT%{_includedir}/wx-%{ver2} -type f | sed -e "s,$RPM_BUILD_ROOT,,g" >core-headers.files | |
270 | ||
271 | # contrib stuff: | |
272 | (cd obj-shared/contrib/src; make prefix=$RPM_BUILD_ROOT%{pref} install) | |
273 | (cd obj-shared/utils/wxrc; make prefix=$RPM_BUILD_ROOT%{pref} install) | |
274 | ||
275 | # remove wxBase files so that RPM doesn't complain about unpackaged files: | |
276 | rm -f $RPM_BUILD_ROOT%{_libdir}/libwx_base* | |
277 | rm -f $RPM_BUILD_ROOT%{_datadir}/aclocal/* | |
278 | rm -f $RPM_BUILD_ROOT%{_datadir}/locale/*/*/* | |
279 | ||
280 | %clean | |
281 | rm -rf $RPM_BUILD_ROOT | |
282 | ||
283 | %post | |
284 | /sbin/ldconfig | |
285 | ||
286 | %postun | |
287 | /sbin/ldconfig | |
288 | ||
289 | %post devel | |
290 | # link wx-config when you install RPM. | |
291 | ln -sf %{_libdir}/wx/config/%{wxconfig} %{_bindir}/wx-config | |
292 | # link wx-config with explicit name. | |
293 | ln -sf %{_libdir}/wx/config/%{wxconfig} %{_bindir}/%{wxconfiglink} | |
294 | /sbin/ldconfig | |
295 | ||
296 | %postun devel | |
297 | /sbin/ldconfig | |
298 | ||
299 | %preun devel | |
300 | if test -f %{_bindir}/wx-config -a -f /usr/bin/md5sum ; then | |
301 | SUM1=`md5sum %{_libdir}/wx/config/%{wxconfig} | cut -c 0-32` | |
302 | SUM2=`md5sum %{_bindir}/wx-config | cut -c 0-32` | |
303 | if test "x$SUM1" = "x$SUM2" ; then | |
304 | rm -f %{_bindir}/wx-config | |
305 | fi | |
306 | fi | |
307 | rm -f %{_bindir}/%{wxconfiglink} | |
308 | ||
309 | %post gl | |
310 | /sbin/ldconfig | |
311 | ||
312 | %postun gl | |
313 | /sbin/ldconfig | |
314 | ||
315 | %post contrib | |
316 | /sbin/ldconfig | |
317 | ||
318 | %postun contrib | |
319 | /sbin/ldconfig | |
320 | ||
321 | %post contrib-devel | |
322 | /sbin/ldconfig | |
323 | ||
324 | %postun contrib-devel | |
325 | /sbin/ldconfig | |
326 | ||
327 | %files | |
328 | %defattr(-,root,root) | |
329 | %doc COPYING.LIB *.txt | |
330 | %{_libdir}/libwx_%{portname}*_adv-%{ver2}.so.* | |
331 | %{_libdir}/libwx_%{portname}*_core-%{ver2}.so.* | |
332 | %{_libdir}/libwx_%{portname}*_dbgrid-%{ver2}.so.* | |
333 | %{_libdir}/libwx_%{portname}*_html-%{ver2}.so.* | |
334 | %{_libdir}/libwx_%{portname}*_media-%{ver2}.so.* | |
335 | %{_libdir}/libwx_%{portname}*_qa-%{ver2}.so.* | |
336 | %{_libdir}/libwx_%{portname}*_xrc-%{ver2}.so.* | |
337 | ||
338 | ||
339 | %files devel -f core-headers.files | |
340 | %defattr(-,root,root) | |
341 | %{_libdir}/libwx_%{portname}*_adv-%{ver2}.so | |
342 | %{_libdir}/libwx_%{portname}*_core-%{ver2}.so | |
343 | %{_libdir}/libwx_%{portname}*_dbgrid-%{ver2}.so | |
344 | %{_libdir}/libwx_%{portname}*_gl-%{ver2}.so | |
345 | %{_libdir}/libwx_%{portname}*_html-%{ver2}.so | |
346 | %{_libdir}/libwx_%{portname}*_media-%{ver2}.so | |
347 | %{_libdir}/libwx_%{portname}*_qa-%{ver2}.so | |
348 | %{_libdir}/libwx_%{portname}*_xrc-%{ver2}.so | |
349 | %dir %{_libdir}/wx | |
350 | %{_libdir}/wx/* | |
351 | %{_bindir}/wxrc* | |
352 | ||
353 | %files gl | |
354 | %defattr(-,root,root) | |
355 | %{_libdir}/libwx_%{portname}*_gl-%{ver2}.so.* | |
356 | ||
357 | %files static | |
358 | %defattr (-,root,root) | |
359 | %{_libdir}/libwx_%{portname}*_*-%{ver2}.a | |
360 | ||
361 | %files contrib | |
362 | %defattr(-,root,root) | |
363 | %{_libdir}/libwx_%{portname}*_animate-%{ver2}.so.* | |
364 | %{_libdir}/libwx_%{portname}*_deprecated-%{ver2}.so.* | |
365 | %{_libdir}/libwx_%{portname}*_fl-%{ver2}.so.* | |
366 | %{_libdir}/libwx_%{portname}*_gizmos-%{ver2}.so.* | |
367 | %{_libdir}/libwx_%{portname}*_mmedia-%{ver2}.so.* | |
368 | %{_libdir}/libwx_%{portname}*_ogl-%{ver2}.so.* | |
369 | %{_libdir}/libwx_%{portname}*_plot-%{ver2}.so.* | |
370 | %{_libdir}/libwx_%{portname}*_stc-%{ver2}.so.* | |
371 | %{_libdir}/libwx_%{portname}*_svg-%{ver2}.so.* | |
372 | ||
373 | %files contrib-devel | |
374 | %defattr(-,root,root) | |
375 | %dir %{_includedir}/wx-%{ver2}/wx/animate | |
376 | %{_includedir}/wx-%{ver2}/wx/animate/* | |
377 | %{_libdir}/libwx_%{portname}*_animate-%{ver2}.so | |
378 | ||
379 | %dir %{_includedir}/wx-%{ver2}/wx/deprecated | |
380 | %{_includedir}/wx-%{ver2}/wx/deprecated/* | |
381 | %{_libdir}/libwx_%{portname}*_deprecated-%{ver2}.so | |
382 | ||
383 | %dir %{_includedir}/wx-%{ver2}/wx/fl | |
384 | %{_includedir}/wx-%{ver2}/wx/fl/* | |
385 | %{_libdir}/libwx_%{portname}*_fl-%{ver2}.so | |
386 | ||
387 | %dir %{_includedir}/wx-%{ver2}/wx/gizmos | |
388 | %{_includedir}/wx-%{ver2}/wx/gizmos/* | |
389 | %{_libdir}/libwx_%{portname}*_gizmos-%{ver2}.so | |
390 | ||
391 | %dir %{_includedir}/wx-%{ver2}/wx/mmedia | |
392 | %{_includedir}/wx-%{ver2}/wx/mmedia/* | |
393 | %{_libdir}/libwx_%{portname}*_mmedia-%{ver2}.so | |
394 | ||
395 | %dir %{_includedir}/wx-%{ver2}/wx/ogl | |
396 | %{_includedir}/wx-%{ver2}/wx/ogl/* | |
397 | %{_libdir}/libwx_%{portname}*_ogl-%{ver2}.so | |
398 | ||
399 | %dir %{_includedir}/wx-%{ver2}/wx/plot | |
400 | %{_includedir}/wx-%{ver2}/wx/plot/* | |
401 | %{_libdir}/libwx_%{portname}*_plot-%{ver2}.so | |
402 | ||
403 | %dir %{_includedir}/wx-%{ver2}/wx/stc | |
404 | %{_includedir}/wx-%{ver2}/wx/stc/* | |
405 | %{_libdir}/libwx_%{portname}*_stc-%{ver2}.so | |
406 | ||
407 | %dir %{_includedir}/wx-%{ver2}/wx/svg | |
408 | %{_includedir}/wx-%{ver2}/wx/svg/* | |
409 | %{_libdir}/libwx_%{portname}*_svg-%{ver2}.so |