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