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