]> git.saurik.com Git - wxWidgets.git/blame_incremental - wxMotif.spec
Swedish translations update from Jonas Rydberg.
[wxWidgets.git] / wxMotif.spec
... / ...
CommitLineData
1%define pref /usr
2%define ver 2.9.5
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-%{ver2}
11%define wxconfiglink wx%{portname}-%{ver2}-config
12
13Summary: The Motif/Lesstif port of the wxWidgets library
14Name: %{name}
15Version: %{ver}
16Release: %{rel}
17License: wxWindows Licence
18Group: X11/Libraries
19Source: wxMotif-%{ver}.tar.bz2
20URL: http://www.wxwidgets.org
21Packager: wxWidgets developers <wx-dev@lists.wxwidgets.org>
22BuildRoot: %{_tmppath}/%{name}-root
23Requires: %{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..."
28Provides: wxwin
29Provides: wxMotif
30
31%description
32wxWidgets is a free C++ library for cross-platform GUI development.
33With wxWidgets, you can create applications for different GUIs (GTK+,
34Motif/LessTif, MS Windows, Mac) from the same source code.
35
36%package devel
37Summary: The Motif/Lesstif port of the wxWidgets library
38Group: X11/Libraries
39Requires: %{name} = %{ver}
40Requires: %{wxbasename}-devel = %{ver}
41
42%description devel
43Header files for wxMotif, the Motif/Lesstif port of the wxWidgets library.
44
45%package gl
46Summary: The Motif/Lesstif port of the wxWidgets library, OpenGL add-on.
47Group: X11/Libraries
48Requires: %{name} = %{ver}
49
50%description gl
51OpenGL add-on library for wxMotif, the Motif/Lesstif port of the wxWidgets library.
52
53%package static
54Summary: wxMotif static libraries
55Group: Development/Libraries
56Requires: %{wxbasename}-static
57Requires: %{name}-devel = %{ver}
58
59%description static
60Static libraries for wxMotif. You need them if you want to link statically against wxMotif.
61
62%prep
63%setup -q -n wxMotif-%{ver}
64
65%build
66if [ "$SMP" != "" ]; then
67 export MAKE="make -j$SMP"
68else
69 export MAKE="make"
70fi
71
72mkdir obj-shared
73cd obj-shared
74../configure --prefix=%{pref} --with-motif --with-opengl
75$MAKE
76cd ..
77
78mkdir obj-static
79cd obj-static
80../configure --prefix=%{pref} --with-motif --disable-shared --with-opengl
81$MAKE
82cd ..
83
84%install
85rm -rf $RPM_BUILD_ROOT
86(cd obj-static; make prefix=$RPM_BUILD_ROOT%{pref} install)
87(cd obj-shared; make prefix=$RPM_BUILD_ROOT%{pref} install)
88
89# Remove headers that are part of wx-base-devel:
90
91# --- wxBase headers list begins here ---
92cat <<EOF >wxbase-headers.files
93wx/afterstd.h
94wx/any.h
95wx/anystr.h
96wx/app.h
97wx/apptrait.h
98wx/archive.h
99wx/arrimpl.cpp
100wx/arrstr.h
101wx/atomic.h
102wx/base64.h
103wx/beforestd.h
104wx/buffer.h
105wx/build.h
106wx/chartype.h
107wx/checkeddelete.h
108wx/chkconf.h
109wx/clntdata.h
110wx/cmdargs.h
111wx/cmdline.h
112wx/compiler.h
113wx/confbase.h
114wx/config.h
115wx/convauto.h
116wx/containr.h
117wx/cpp.h
118wx/crt.h
119wx/datetime.h
120wx/datstrm.h
121wx/dde.h
122wx/debug.h
123wx/defs.h
124wx/dir.h
125wx/dlimpexp.h
126wx/dlist.h
127wx/dynarray.h
128wx/dynlib.h
129wx/dynload.h
130wx/encconv.h
131wx/event.h
132wx/eventfilter.h
133wx/evtloop.h
134wx/except.h
135wx/features.h
136wx/flags.h
137wx/ffile.h
138wx/file.h
139wx/fileconf.h
140wx/filefn.h
141wx/filename.h
142wx/filesys.h
143wx/fontenc.h
144wx/fontmap.h
145wx/fs_arc.h
146wx/fs_filter.h
147wx/fs_mem.h
148wx/fs_zip.h
149wx/hash.h
150wx/hashmap.h
151wx/hashset.h
152wx/html/forcelnk.h
153wx/iconloc.h
154wx/init.h
155wx/intl.h
156wx/iosfwrap.h
157wx/ioswrap.h
158wx/ipc.h
159wx/ipcbase.h
160wx/kbdstate.h
161wx/language.h
162wx/link.h
163wx/list.h
164wx/listimpl.cpp
165wx/log.h
166wx/longlong.h
167wx/math.h
168wx/memconf.h
169wx/memory.h
170wx/memtext.h
171wx/mimetype.h
172wx/module.h
173wx/mousestate.h
174wx/msgout.h
175wx/msgqueue.h
176wx/mstream.h
177wx/numformatter.h
178wx/object.h
179wx/platform.h
180wx/platinfo.h
181wx/power.h
182wx/process.h
183wx/ptr_scpd.h
184wx/ptr_shrd.h
185wx/recguard.h
186wx/regex.h
187wx/rtti.h
188wx/scopedarray.h
189wx/scopedptr.h
190wx/scopeguard.h
191wx/sharedptr.h
192wx/snglinst.h
193wx/sstream.h
194wx/stack.h
195wx/stackwalk.h
196wx/stdpaths.h
197wx/stdstream.h
198wx/stockitem.h
199wx/stopwatch.h
200wx/strconv.h
201wx/stream.h
202wx/string.h
203wx/stringimpl.h
204wx/stringops.h
205wx/strvararg.h
206wx/sysopt.h
207wx/tarstrm.h
208wx/textbuf.h
209wx/textfile.h
210wx/thread.h
211wx/thrimpl.cpp
212wx/time.h
213wx/timer.h
214wx/tls.h
215wx/tokenzr.h
216wx/tracker.h
217wx/translation.h
218wx/txtstrm.h
219wx/typeinfo.h
220wx/types.h
221wx/unichar.h
222wx/uri.h
223wx/ustring.h
224wx/utils.h
225wx/variant.h
226wx/vector.h
227wx/version.h
228wx/versioninfo.h
229wx/volume.h
230wx/weakref.h
231wx/wfstream.h
232wx/wx.h
233wx/wxchar.h
234wx/wxcrt.h
235wx/wxcrtbase.h
236wx/wxcrtvararg.h
237wx/wxprec.h
238wx/xlocale.h
239wx/xti.h
240wx/xti2.h
241wx/xtistrm.h
242wx/xtictor.h
243wx/xtihandler.h
244wx/xtiprop.h
245wx/xtitypes.h
246wx/zipstrm.h
247wx/zstream.h
248wx/meta/convertible.h
249wx/meta/if.h
250wx/meta/implicitconversion.h
251wx/meta/int2type.h
252wx/meta/movable.h
253wx/meta/pod.h
254wx/meta/removeref.h
255wx/fswatcher.h
256wx/generic/fswatcher.h
257wx/unix/app.h
258wx/unix/apptbase.h
259wx/unix/apptrait.h
260wx/unix/chkconf.h
261wx/unix/evtloop.h
262wx/unix/evtloopsrc.h
263wx/unix/pipe.h
264wx/unix/stdpaths.h
265wx/unix/stackwalk.h
266wx/unix/tls.h
267wx/unix/fswatcher_kqueue.h
268wx/unix/execute.h
269wx/unix/mimetype.h
270wx/unix/fswatcher_inotify.h
271wx/fs_inet.h
272wx/protocol/file.h
273wx/protocol/ftp.h
274wx/protocol/http.h
275wx/protocol/log.h
276wx/protocol/protocol.h
277wx/sckaddr.h
278wx/sckipc.h
279wx/sckstrm.h
280wx/socket.h
281wx/url.h
282wx/xml/xml.h
283wx/xtixml.h
284EOF
285# --- wxBase headers list ends here ---
286for f in `cat wxbase-headers-list` ; do
287 rm -f $RPM_BUILD_ROOT%{_includedir}/wx-%{ver2}/$f
288done
289
290# list of all core headers:
291find $RPM_BUILD_ROOT%{_includedir}/wx-%{ver2} -type f | sed -e "s,$RPM_BUILD_ROOT,,g" >core-headers.files
292
293# remove wxBase files so that RPM doesn't complain about unpackaged files:
294rm -f $RPM_BUILD_ROOT%{_libdir}/libwx_base*
295rm -f $RPM_BUILD_ROOT%{_datadir}/aclocal/*
296rm -f $RPM_BUILD_ROOT%{_datadir}/locale/*/*/*
297
298%clean
299rm -rf $RPM_BUILD_ROOT
300
301%post
302/sbin/ldconfig
303
304%postun
305/sbin/ldconfig
306
307%post devel
308# link wx-config when you install RPM.
309ln -sf %{_libdir}/wx/config/%{wxconfig} %{_bindir}/wx-config
310# link wx-config with explicit name.
311ln -sf %{_libdir}/wx/config/%{wxconfig} %{_bindir}/%{wxconfiglink}
312/sbin/ldconfig
313
314%postun devel
315/sbin/ldconfig
316
317%preun devel
318if test -f %{_bindir}/wx-config -a -f /usr/bin/md5sum ; then
319 SUM1=`md5sum %{_libdir}/wx/config/%{wxconfig} | cut -c 0-32`
320 SUM2=`md5sum %{_bindir}/wx-config | cut -c 0-32`
321 if test "x$SUM1" = "x$SUM2" ; then
322 rm -f %{_bindir}/wx-config
323 fi
324fi
325rm -f %{_bindir}/%{wxconfiglink}
326
327%post gl
328/sbin/ldconfig
329
330%postun gl
331/sbin/ldconfig
332
333%files
334%defattr(-,root,root)
335%doc COPYING.LIB *.txt
336%{_libdir}/libwx_%{portname}*_adv-%{ver2}.so.*
337%{_libdir}/libwx_%{portname}*_core-%{ver2}.so.*
338%{_libdir}/libwx_%{portname}*_html-%{ver2}.so.*
339%{_libdir}/libwx_%{portname}*_media-%{ver2}.so.*
340%{_libdir}/libwx_%{portname}*_qa-%{ver2}.so.*
341%{_libdir}/libwx_%{portname}*_xrc-%{ver2}.so.*
342
343
344%files devel -f core-headers.files
345%defattr(-,root,root)
346%{_libdir}/libwx_%{portname}*_adv-%{ver2}.so
347%{_libdir}/libwx_%{portname}*_core-%{ver2}.so
348%{_libdir}/libwx_%{portname}*_gl-%{ver2}.so
349%{_libdir}/libwx_%{portname}*_html-%{ver2}.so
350%{_libdir}/libwx_%{portname}*_media-%{ver2}.so
351%{_libdir}/libwx_%{portname}*_qa-%{ver2}.so
352%{_libdir}/libwx_%{portname}*_xrc-%{ver2}.so
353%dir %{_libdir}/wx
354%{_libdir}/wx/*
355%{_bindir}/wxrc*
356
357%files gl
358%defattr(-,root,root)
359%{_libdir}/libwx_%{portname}*_gl-%{ver2}.so.*
360
361%files static
362%defattr (-,root,root)
363%{_libdir}/libwx_%{portname}*_*-%{ver2}.a
364