1 %define pref
%{_prefix}
2 %define python @PYTHON@
5 %define lcport @LCPORT@
6 %define unicode @UNICODE@
7 %define tarname @TARNAME@
8 %define version @VERSION@
11 %define wxprefbase
%{pref}/lib
/wxPython
12 %define wxpref
%{wxprefbase}-%{version}
13 %define name wxPython
%{port}-py%{pyver}
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
19 %define builtin_libs
1
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.)
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)
32 %define DBGFLG %
(if [ "
%{debug_flag}"
= "
1"
]; then echo D
; fi)
33 %define UNIFLG %
(if [ "
%{unicode}"
= "
1"
]; then echo U
; fi)
34 %define wxconfigname
%{wxpref}/bin/wx%{lcport}%{uniflg}%{dbgflg}-%{ver2}-config
36 # turn off the generation of debuginfo rpm (RH9)
37 %define debug_package
%{nil}
39 #----------------------------------------------------------------
40 Summary: Cross platform GUI toolkit
for Python using wx
%{port}
44 Source0: %{tarname}-%{version}.tar.gz
45 License: wxWindows Library Licence
, Version 3
46 URL: http
://wxPython.org
/
47 Packager: Robin Dunn
<robin@alldunn.com
>
48 Group: Development
/Python
49 BuildRoot: %{_tmppath}/%{name}-buildroot
52 Provides: wxPython
= %{version}
53 Provides: wxPython
%{port} = %{version}
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})
61 # old wxPython packages
62 Obsoletes
: wxPython wxPython
%{port}
66 wxPython is a GUI toolkit
for Python that is a wrapper around the
67 wxWindows C
++ GUI library. wxPython provides a large variety of
68 window types and controls
, all implemented with a native look and feel
69 (and native runtime speed
) on the platforms it is supported on.
71 This package is implemented using the
%{port} port of wxWindows
, and
72 includes the wx
%{port} shared libs and etc.
75 %package -n wxPython
%{port}-devel
76 Summary: wxPython
%{port} development files
77 Group: Development
/Libraries
78 Requires: wxPython
%{port} = %{version}
81 %description -n wxPython
%{port}-devel
82 This packages contains the headers and etc.
for building apps or
83 Python extension modules that use the same wx
%{port} shared libraries
86 #----------------------------------------------------------------
88 %setup -q
-n
%{tarname}-%{version}
91 #----------------------------------------------------------------
98 # Configure, trying to reduce external dependencies
99 ..
/configure
--with
-%{lcport} \
102 --disable
-monolithic \
103 --enable-rpath
=%{wxpref}/lib \
112 --enable-debug_flag \
115 --with
-libjpeg
=builtin \
116 --with
-libpng
=builtin \
117 --with
-libtiff
=builtin \
118 --with
-zlib
=builtin \
122 # Build wxWindows and some contrib libs
124 make -C contrib
/src
/gizmos
125 make -C contrib
/src
/ogl CXXFLAGS
="
-DwxUSE_DEPRECATED
=0"
126 make -C contrib
/src
/stc
127 make -C contrib
/src
/xrc
130 # Link the contrib header directories in place so we can build all of
131 # wxPython without installing wxWindows
132 if [ ! -e $WXDIR
/include
/wx
/gizmos
]; then
134 ln
-s ..
/..
/contrib
/include
/wx
/* .
144 WX_CONFIG
="$WXDIR
/bld
/wx
-config
--prefix
=$WXDIR
--exec-prefix
=$WXDIR
/bld" \
148 # Build wxrc (XRC resource tool)
149 cd $WXDIR
/bld
/contrib
/utils
/wxrc
154 #----------------------------------------------------------------
160 # Install wxWindows and the contribs so the wxPython build can find
161 # all the headers it needs
162 make prefix
=$RPM_BUILD_ROOT
%{wxpref} install
163 make -C contrib
/src
/gizmos prefix
=$RPM_BUILD_ROOT
%{wxpref} install
164 make -C contrib
/src
/ogl CXXFLAGS
="
-DwxUSE_DEPRECATED
=0" prefix
=$RPM_BUILD_ROOT
%{wxpref} install
165 make -C contrib
/src
/stc prefix
=$RPM_BUILD_ROOT
%{wxpref} install
166 make -C contrib
/src
/xrc prefix
=$RPM_BUILD_ROOT
%{wxpref} install
175 WX_CONFIG
="$RPM_BUILD_ROOT
%{wxpref}/bin/wx-config --prefix=$RPM_BUILD_ROOT%{wxpref}" \
177 --root
=$RPM_BUILD_ROOT
183 # install the wxPython headers
184 cp
-R include $RPM_BUILD_ROOT
%{wxpref}
185 mkdir -p $RPM_BUILD_ROOT
%{wxpref}/include
/wx
/wxPython
/i_files
186 cp src
/*.i $RPM_BUILD_ROOT
%{wxpref}/include
/wx
/wxPython
/i_files
189 # Since I want this RPM to be as generic as possible I won't let
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
198 mkdir -p $RPM_BUILD_ROOT
%{pref}/bin
210 cp scripts
/$s $RPM_BUILD_ROOT
%{pref}/bin
215 cp $WXDIR
/bld
/contrib
/utils
/wxrc
/wxrc $RPM_BUILD_ROOT
%{pref}/bin
218 # install KDE & GNOME menus
219 mkdir -p $RPM_BUILD_ROOT
%{_datadir}/applnk
/Development
220 mkdir -p $RPM_BUILD_ROOT
%{_datadir}/applications
221 for 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
227 mkdir -p $RPM_BUILD_ROOT
%{_datadir}/icons/hicolor/{16x16,32x32}/apps
228 mkdir -p $RPM_BUILD_ROOT
%{_datadir}/pixmaps
229 install -m
644 wx
/py
/PyCrust_16.png $RPM_BUILD_ROOT
%{_datadir}/icons
/hicolor
/16x16
/apps
/PyCrust.png
230 install -m
644 wx
/py
/PyCrust_32.png $RPM_BUILD_ROOT
%{_datadir}/icons
/hicolor
/32x32
/apps
/PyCrust.png
231 install -m
644 wx
/py
/PyCrust_32.png $RPM_BUILD_ROOT
%{_datadir}/pixmaps
/PyCrust.png
232 install -m
644 wx
/tools
/XRCed
/XRCed_16.png $RPM_BUILD_ROOT
%{_datadir}/icons
/hicolor
/16x16
/apps
/XRCed.png
233 install -m
644 wx
/tools
/XRCed
/XRCed_32.png $RPM_BUILD_ROOT
%{_datadir}/icons
/hicolor
/32x32
/apps
/XRCed.png
234 install -m
644 wx
/tools
/XRCed
/XRCed_32.png $RPM_BUILD_ROOT
%{_datadir}/pixmaps
/XRCed.png
236 # install Mandrake menu
237 mkdir -p $RPM_BUILD_ROOT
/%{_libdir}/menu
238 cat
> $RPM_BUILD_ROOT
%{_libdir}/menu/%{name} <<EOF
239 ?package
(%{name}): \\
240 command="
%{_bindir}/pyshell" \\
242 icon
="PyCrust.png" \\
243 section
="Applications
/Development
/Tools" \\
245 longtitle
="GUI Python Shell"
246 ?package
(%{name}): \\
247 command="
%{_bindir}/pycrust" \\
249 icon
="PyCrust.png" \\
250 section
="Applications
/Development
/Tools" \\
252 longtitle
="GUI Python Shell with Filling"
253 ?package
(%{name}): \\
254 command="
%{_bindir}/pyalamode" \\
256 icon
="PyCrust.png" \\
257 section
="Applications
/Development
/Tools" \\
259 longtitle
="GUI Python Shell with Filling and editor windows"
260 ?package
(%{name}): \\
261 command="
%{_bindir}/xrced" \\
264 section
="Applications
/Development
/Tools" \\
266 longtitle
="wxPython XRC resource editor"
270 #----------------------------------------------------------------
273 if [ -e
%{wxprefbase} ]; then
274 # in case there are old dirs from an old install
280 if [ ! -e
%{wxprefbase} ]; then
281 ln
-s wxPython
-%{version} %{wxprefbase}
283 # This is done on Mandrake to update its menus:
284 if [ -x
/usr
/bin
/update
-menus
]; then /usr
/bin
/update
-menus || true
; fi
289 # This is done on Mandrake to update its menus:
290 if [ "$
1"
= "
0"
-a
-x
/usr
/bin
/update
-menus
]; then /usr
/bin
/update
-menus || true
; fi
293 #----------------------------------------------------------------
295 [ "$RPM_BUILD_ROOT"
!= "
/"
] && rm -rf $RPM_BUILD_ROOT
298 #----------------------------------------------------------------
301 %defattr(-,root
,root
)
302 %doc docs
/preamble.txt docs
/licence.txt docs
/lgpl.txt docs
/readme.txt docs
/changes.txt
305 %{_libdir}/python%{pyver}/site
-packages
/*
310 %{_datadir}/applnk
/Development
/*
311 %{_datadir}/applications
/*
312 %{_datadir}/icons
/hicolor
/*/apps
/*
313 %{_datadir}/pixmaps
/*
319 %files -n wxPython
%{port}-devel
320 %defattr(-,root
,root
)
324 %{wxpref}/bin
/wx
-config
326 #----------------------------------------------------------------