]> git.saurik.com Git - wxWidgets.git/blame - wxPython/distrib/wxPythonFull.spec.in
Added wxDC::GetPartialTextExtents
[wxWidgets.git] / wxPython / distrib / wxPythonFull.spec.in
CommitLineData
357262e4
RD
1%define pref %{_prefix}
2%define python @PYTHON@
3%define pyver @PYVER@
357262e4
RD
4%define port @PORT@
5%define lcport @LCPORT@
1e4a197e 6%define unicode @UNICODE@
4726eec6 7%define tarname @TARNAME@
357262e4 8%define version @VERSION@
b817523b 9%define ver2 @VER2@
357262e4 10%define release 1
63b1cb82 11%define wxprefbase %{pref}/lib/wxPython
8b9a4190 12%define wxpref %{wxprefbase}-%{version}
1e4a197e 13%define name wxPython%{port}-py%{pyver}
4726eec6 14
b817523b 15
1e4a197e
RD
16# Should the builtin image and etc. libs be used, or system libs?
17# Distro specific RPMs should probably set this to 0, generic ones
18# should use 1
19%define builtin_libs 1
b817523b 20
4726eec6 21
1e4a197e
RD
22# Should --enable-debug_flag be used in release builds? Using it
23# defines __WXDEBUG__ and gives us runtime diagnostics that are turned
24# into Python exceptions starting with 2.3.4. (So turning it on is a
25# very helpful thing IMO and is recommended.)
26%define debug_flag 1
4726eec6 27
1e4a197e
RD
28
29# build the name of the real wx-config from the port, flags, etc.
30%define dbgflg %(if [ "%{debug_flag}" = "1" ]; then echo d; fi)
31%define uniflg %(if [ "%{unicode}" = "1" ]; then echo u; fi)
1fded56b
RD
32%define DBGFLG %(if [ "%{debug_flag}" = "1" ]; then echo D; fi)
33%define UNIFLG %(if [ "%{unicode}" = "1" ]; then echo U; fi)
1e4a197e 34%define wxconfigname %{wxpref}/bin/wx%{lcport}%{uniflg}%{dbgflg}-%{ver2}-config
b817523b 35
1fded56b
RD
36# turn off the generation of debuginfo rpm (RH9)
37%define debug_package %{nil}
b817523b 38
5ccc0a56
RD
39#----------------------------------------------------------------
40Summary: Cross platform GUI toolkit for Python using wx%{port}
41Name: %{name}
42Version: %{version}
43Release: %{release}
44Source0: %{tarname}-%{version}.tar.gz
45License: wxWindows Library Licence, Version 3
46URL: http://wxPython.org/
ba201fa4 47Packager: Robin Dunn <robin@alldunn.com>
5ccc0a56 48Group: Development/Python
4726eec6 49BuildRoot: %{_tmppath}/%{name}-buildroot
5ccc0a56 50Prefix: %{pref}
4726eec6 51
4726eec6 52Provides: wxPython = %{version}
1e4a197e 53Provides: wxPython%{port} = %{version}
4726eec6 54
59455c67
RD
55# Provides: libwx_%{lcport}%{uniflg}%{dbgflg}-%{ver2}.so
56# Provides: libwx_%{lcport}%{uniflg}%{dbgflg}-%{ver2}.so(WX%{port}%{UNIFLG}%{DBGFLG}_%{ver2})
57# Provides: libwx_%{lcport}%{uniflg}%{dbgflg}_gl-%{ver2}.so
58# Provides: libwx_%{lcport}%{uniflg}%{dbgflg}_gl-%{ver2}.so(WX%{port}%{UNIFLG}%{DBGFLG}_%{ver2})
1fded56b
RD
59
60
5ccc0a56 61# old wxPython packages
1fded56b 62Obsoletes: wxPython wxPython%{port}
4726eec6
RD
63
64
65%description
66wxPython is a GUI toolkit for Python that is a wrapper around the
67wxWindows C++ GUI library. wxPython provides a large variety of
68window types and controls, all implemented with a native look and feel
69(and native runtime speed) on the platforms it is supported on.
70
5ccc0a56 71This package is implemented using the %{port} port of wxWindows, and
4726eec6
RD
72includes the wx%{port} shared libs and etc.
73
74
1e4a197e 75%package -n wxPython%{port}-devel
5ccc0a56
RD
76Summary: wxPython%{port} development files
77Group: Development/Libraries
78Requires: wxPython%{port} = %{version}
79
80
1e4a197e 81%description -n wxPython%{port}-devel
5ccc0a56
RD
82This packages contains the headers and etc. for building apps or
83Python extension modules that use the same wx%{port} shared libraries
84that wxPython uses.
85
86#----------------------------------------------------------------
4726eec6 87%prep
357262e4 88%setup -q -n %{tarname}-%{version}
4726eec6
RD
89
90
5ccc0a56 91#----------------------------------------------------------------
4726eec6 92%build
4726eec6 93
1e4a197e 94WXDIR=`pwd`
59455c67
RD
95mkdir bld
96cd bld
4726eec6 97
1e4a197e 98# Configure, trying to reduce external dependencies
59455c67 99../configure --with-%{lcport} \
5ccc0a56
RD
100 --prefix=%{wxpref} \
101 --disable-soname \
59455c67 102 --disable-monolithic \
73c7ae5a 103 --enable-rpath=%{wxpref}/lib \
4726eec6 104 --with-opengl \
1e4a197e
RD
105%if %{unicode}
106 --enable-gtk2 \
107 --enable-unicode \
108%endif
109 --enable-geometry \
4726eec6 110 --enable-optimise \
b817523b
RD
111%if %{debug_flag}
112 --enable-debug_flag \
113%endif
1e4a197e 114%if %{builtin_libs}
4726eec6
RD
115 --with-libjpeg=builtin \
116 --with-libpng=builtin \
117 --with-libtiff=builtin \
118 --with-zlib=builtin \
1e4a197e 119%endif
5ccc0a56 120
357262e4 121
59455c67
RD
122# Build wxWindows and some contrib libs
123make
124make -C contrib/src/gizmos
125make -C contrib/src/ogl CXXFLAGS="-DwxUSE_DEPRECATED=0"
126make -C contrib/src/stc
127make -C contrib/src/xrc
128
129
978cadd0
RD
130# Link the contrib header directories in place so we can build all of
131# wxPython without installing wxWindows
132if [ ! -e $WXDIR/include/wx/gizmos ]; then
133 cd $WXDIR/include/wx
134 ln -s ../../contrib/include/wx/* .
135fi
4726eec6 136
4726eec6
RD
137
138# Now build wxPython
1e4a197e 139cd $WXDIR/wxPython
4726eec6 140%{python} setup.py \
cdc6a041 141 NO_SCRIPTS=1 \
1e4a197e
RD
142 WXPORT=%{lcport} \
143 UNICODE=%{unicode} \
978cadd0 144 WX_CONFIG="$WXDIR/bld/wx-config --prefix=$WXDIR --exec-prefix=$WXDIR/bld" \
4726eec6
RD
145 build
146
1e4a197e 147
59455c67
RD
148# Build wxrc (XRC resource tool)
149cd $WXDIR/bld/contrib/utils/wxrc
150make
1e4a197e
RD
151strip wxrc
152
4726eec6 153
978cadd0
RD
154#----------------------------------------------------------------
155%install
156
157WXDIR=`pwd`
158cd bld
159
160# Install wxWindows and the contribs so the wxPython build can find
161# all the headers it needs
162make prefix=$RPM_BUILD_ROOT%{wxpref} install
163make -C contrib/src/gizmos prefix=$RPM_BUILD_ROOT%{wxpref} install
164make -C contrib/src/ogl CXXFLAGS="-DwxUSE_DEPRECATED=0" prefix=$RPM_BUILD_ROOT%{wxpref} install
165make -C contrib/src/stc prefix=$RPM_BUILD_ROOT%{wxpref} install
166make -C contrib/src/xrc prefix=$RPM_BUILD_ROOT%{wxpref} install
167
168
1e4a197e
RD
169# install wxPython
170cd $WXDIR/wxPython
4726eec6 171%{python} setup.py \
cdc6a041 172 NO_SCRIPTS=1 \
1e4a197e
RD
173 WXPORT=%{lcport} \
174 UNICODE=%{unicode} \
5ccc0a56 175 WX_CONFIG="$RPM_BUILD_ROOT%{wxpref}/bin/wx-config --prefix=$RPM_BUILD_ROOT%{wxpref}" \
4726eec6
RD
176 install \
177 --root=$RPM_BUILD_ROOT
178
59455c67 179
59455c67 180
59455c67
RD
181cd $WXDIR/wxPython
182
183# install the wxPython headers
184cp -R include $RPM_BUILD_ROOT%{wxpref}
185mkdir -p $RPM_BUILD_ROOT%{wxpref}/include/wx/wxPython/i_files
186cp src/*.i $RPM_BUILD_ROOT%{wxpref}/include/wx/wxPython/i_files
187
188
cdc6a041 189# Since I want this RPM to be as generic as possible I won't let
59455c67
RD
190# distutils copy the scripts (NO_SCRIPTS=1 above) since it will mangle
191# the #! line to use the real python pathname. Since some distros
192# install python 2.2 as python2 and others as python I can't let
193# distutils do that otherwise the dependencies will be fouled up.
194# Copy them manually instead, leaving the #!/bin/env line intact.
195# TODO: Should this be dependent on %{builtin_libs} or something like
196# it?
cdc6a041 197
8b9a4190 198mkdir -p $RPM_BUILD_ROOT%{pref}/bin
cdc6a041 199for s in \
1e4a197e 200 helpviewer \
cdc6a041
RD
201 img2png \
202 img2py \
203 img2xpm \
1fded56b
RD
204 pyalacarte \
205 pyalamode \
cdc6a041 206 pycrust \
1fded56b 207 pywrap \
cdc6a041
RD
208 pyshell \
209 xrced; do
8b9a4190 210 cp scripts/$s $RPM_BUILD_ROOT%{pref}/bin
cdc6a041
RD
211done
212
213
1e4a197e 214# Install wxrc
59455c67 215cp $WXDIR/bld/contrib/utils/wxrc/wxrc $RPM_BUILD_ROOT%{pref}/bin
8b9a4190
RD
216
217
bc59c206
RD
218# install KDE & GNOME menus
219mkdir -p $RPM_BUILD_ROOT%{_datadir}/applnk/Development
220mkdir -p $RPM_BUILD_ROOT%{_datadir}/applications
221for d in distrib/*.desktop; do
222 install -m 644 $d $RPM_BUILD_ROOT%{_datadir}/applnk/Development
223 install -m 644 $d $RPM_BUILD_ROOT%{_datadir}/applications
224done
225
226# install KDE icons
227mkdir -p $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/{16x16,32x32}/apps
228mkdir -p $RPM_BUILD_ROOT%{_datadir}/pixmaps
229install -m 644 wx/py/PyCrust_16.png $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/16x16/apps/PyCrust.png
230install -m 644 wx/py/PyCrust_32.png $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/32x32/apps/PyCrust.png
231install -m 644 wx/py/PyCrust_32.png $RPM_BUILD_ROOT%{_datadir}/pixmaps/PyCrust.png
232install -m 644 wx/tools/XRCed/XRCed_16.png $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/16x16/apps/XRCed.png
233install -m 644 wx/tools/XRCed/XRCed_32.png $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/32x32/apps/XRCed.png
234install -m 644 wx/tools/XRCed/XRCed_32.png $RPM_BUILD_ROOT%{_datadir}/pixmaps/XRCed.png
235
236# install Mandrake menu
237mkdir -p $RPM_BUILD_ROOT/%{_libdir}/menu
238cat > $RPM_BUILD_ROOT%{_libdir}/menu/%{name} <<EOF
239?package(%{name}): \\
240 command="%{_bindir}/pyshell" \\
241 needs="X11" \\
242 icon="PyCrust.png" \\
243 section="Applications/Development/Tools" \\
244 title="PyShell" \\
245 longtitle="GUI Python Shell"
246?package(%{name}): \\
247 command="%{_bindir}/pycrust" \\
248 needs="X11" \\
249 icon="PyCrust.png" \\
250 section="Applications/Development/Tools" \\
251 title="PyCrust" \\
252 longtitle="GUI Python Shell with Filling"
253?package(%{name}): \\
254 command="%{_bindir}/pyalamode" \\
255 needs="X11" \\
256 icon="PyCrust.png" \\
257 section="Applications/Development/Tools" \\
258 title="PyAlaMode" \\
259 longtitle="GUI Python Shell with Filling and editor windows"
260?package(%{name}): \\
261 command="%{_bindir}/xrced" \\
262 needs="X11" \\
263 icon="XRCed.png" \\
264 section="Applications/Development/Tools" \\
265 title="XRCed" \\
266 longtitle="wxPython XRC resource editor"
267EOF
1fded56b 268
63b1cb82 269
bc59c206
RD
270#----------------------------------------------------------------
271
8b9a4190 272%pre
63b1cb82 273if [ -e %{wxprefbase} ]; then
bc59c206 274 # in case there are old dirs from an old install
8b9a4190 275 rm -r %{wxprefbase}
63b1cb82 276fi
63b1cb82 277
bc59c206
RD
278
279%post
280if [ ! -e %{wxprefbase} ]; then
281 ln -s wxPython-%{version} %{wxprefbase}
282fi
283# This is done on Mandrake to update its menus:
284if [ -x /usr/bin/update-menus ]; then /usr/bin/update-menus || true ; fi
285
286
63b1cb82 287%postun
a55bea57 288rm -f %{wxprefbase}
bc59c206
RD
289# This is done on Mandrake to update its menus:
290if [ "$1" = "0" -a -x /usr/bin/update-menus ]; then /usr/bin/update-menus || true ; fi
291
63b1cb82 292
5ccc0a56 293#----------------------------------------------------------------
bc59c206
RD
294%clean
295[ "$RPM_BUILD_ROOT" != "/" ] && rm -rf $RPM_BUILD_ROOT
4726eec6
RD
296
297
5ccc0a56 298#----------------------------------------------------------------
1e4a197e 299
59455c67 300%files
5ccc0a56 301%defattr(-,root,root)
59455c67 302%doc docs/preamble.txt docs/licence.txt docs/lgpl.txt docs/readme.txt docs/changes.txt
1fded56b 303%doc wxPython/docs/*
59455c67
RD
304%{_bindir}/*
305%{_libdir}/python%{pyver}/site-packages/*
a55bea57
RD
306%dir %{wxpref}
307%dir %{wxpref}/lib
59455c67
RD
308%{wxpref}/lib/libwx*
309%{wxpref}/share
bc59c206
RD
310%{_datadir}/applnk/Development/*
311%{_datadir}/applications/*
312%{_datadir}/icons/hicolor/*/apps/*
313%{_datadir}/pixmaps/*
314%{_libdir}/menu/*
315
316##%{wxprefbase}
5ccc0a56 317
4726eec6 318
59455c67
RD
319%files -n wxPython%{port}-devel
320%defattr(-,root,root)
321%{wxpref}/include
322%{wxpref}/lib/wx
323%{wxconfigname}
324%{wxpref}/bin/wx-config
4726eec6 325
5ccc0a56 326#----------------------------------------------------------------
4726eec6 327# end of file