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