]>
Commit | Line | Data |
---|---|---|
e5ea3f7a RR |
1 | # Note that this is NOT a relocatable package |
2 | %define pref /usr | |
103aab26 | 3 | %define ver 2.1.14 |
d5a07b9e | 4 | %define rel 0 |
e5ea3f7a RR |
5 | |
6 | Summary: The GTK+ 1.2 port of the wxWindows library | |
f14a5b55 | 7 | Name: wxGTK |
e5ea3f7a RR |
8 | Version: %{ver} |
9 | Release: %{rel} | |
2a29700e | 10 | Copyright: wxWindows Licence |
f14a5b55 | 11 | Group: X11/Libraries |
103aab26 | 12 | Source: wxGTK-%{ver}.tar.gz |
e5ea3f7a | 13 | URL: http://wesley.informatik.uni-freiburg.de/~wxxt/docs.html |
2a29700e | 14 | Packager: Robert Roebling <roebling@ruf.uni-freiburg.de> |
e5ea3f7a | 15 | BuildRoot: /tmp/wxgtk_root |
f14a5b55 | 16 | |
212d0bb3 VZ |
17 | # all packages providing an implementation of wxWindows library (regardless of |
18 | # the toolkit used) should provide the (virtual) wxwin package, this makes it | |
19 | # possible to require wxwin instead of requiring "wxgtk or wxmotif or wxqt..." | |
20 | Provides: wxwin | |
21 | ||
f14a5b55 | 22 | %description |
212d0bb3 VZ |
23 | wxWindows is a free C++ library for cross-platform GUI development. |
24 | With wxWindows, you can create applications for different GUIs (GTK+, | |
25 | Motif/LessTif, MS Windows, Mac) from the same source code. | |
f14a5b55 | 26 | |
641d87d8 RR |
27 | %package devel |
28 | Summary: The GTK+ 1.2 port of the wxWindows library | |
29 | Group: X11/Libraries | |
30 | Requires: wxGTK | |
31 | ||
32 | %description devel | |
33 | Header files for the wxGTK, the GTK+ 1.2 port of the wxWindows library. | |
34 | ||
f14a5b55 RR |
35 | %prep |
36 | %setup -n wxGTK | |
00cf1208 | 37 | ./configure --prefix=%{pref} --enable-burnt_name --with-odbc |
f14a5b55 RR |
38 | |
39 | %build | |
103aab26 RR |
40 | if [ "$SMP" != "" ]; then |
41 | export MAKE="make -j$SMP" | |
42 | else | |
43 | export MAKE="make" | |
44 | fi | |
45 | $MAKE | |
f14a5b55 RR |
46 | |
47 | %install | |
e5ea3f7a RR |
48 | rm -rf $RPM_BUILD_ROOT |
49 | make prefix=$RPM_BUILD_ROOT%{pref} install | |
50 | ||
51 | %clean | |
52 | rm -rf $RPM_BUILD_ROOT | |
f14a5b55 RR |
53 | |
54 | %post | |
55 | /sbin/ldconfig | |
56 | ||
57 | %postun | |
58 | /sbin/ldconfig | |
59 | ||
60 | %files | |
e5ea3f7a | 61 | %defattr (644, root, root, 755) |
2a29700e | 62 | %doc COPYING.LIB INSTALL.txt LICENCE.txt README.txt SYMBOLS.txt TODO.txt |
641d87d8 RR |
63 | %dir %{pref}/share/wx |
64 | %{pref}/share/wx/* | |
65 | %attr(755, -, -) %{pref}/lib/libwx_gtk* | |
66 | ||
67 | %files devel | |
68 | %defattr (644, root, root, 755) | |
e5ea3f7a RR |
69 | %dir %{pref}/include/wx |
70 | %{pref}/include/wx/* | |
71 | %dir %{pref}/lib/wx | |
72 | %{pref}/lib/wx/* | |
b0e282b3 | 73 | %attr(755, -, -) %{pref}/bin/wxgtk-config |
e5ea3f7a | 74 | %attr(755, -, -) %{pref}/bin/wx-config |
2a29700e | 75 |