%define pref %{_prefix}
%define python @PYTHON@
%define pyver @PYVER@
-%define debug @DEBUG@
%define port @PORT@
%define lcport @LCPORT@
+%define unicode @UNICODE@
%define tarname @TARNAME@
%define version @VERSION@
-%define ver2 2.3
+%define ver2 @VER2@
%define release 1
-%define wxpref %{pref}/lib/wxPython
-
-%if %{debug}
- %define name wxPython%{port}-py%{pyver}-dbg
- %define othername wxPython%{port}-py%{pyver}
-%else
- %define name wxPython%{port}-py%{pyver}
- %define othername wxPython%{port}-py%{pyver}-dbg
-%endif
+%define wxprefbase %{pref}/lib/wxPython
+%define wxpref %{wxprefbase}-%{version}
+%define name wxPython%{port}-py%{pyver}
+
+
+# Should the builtin image and etc. libs be used, or system libs?
+# Distro specific RPMs should probably set this to 0, generic ones
+# should use 1
+%define builtin_libs 1
+
+
+# Should --enable-debug_flag be used in release builds? Using it
+# defines __WXDEBUG__ and gives us runtime diagnostics that are turned
+# into Python exceptions starting with 2.3.4. (So turning it on is a
+# very helpful thing IMO and is recommended.) The code is still
+# compiled with optimization flags and such when this option is used,
+# it simply turns on some extra code.
+%define debug_flag 1
+# build the name of the real wx-config from the port, flags, etc.
+%define dbgflg %(if [ "%{debug_flag}" = "1" ]; then echo d; fi)
+%define uniflg %(if [ "%{unicode}" = "1" ]; then echo u; fi)
+%define DBGFLG %(if [ "%{debug_flag}" = "1" ]; then echo D; fi)
+%define UNIFLG %(if [ "%{unicode}" = "1" ]; then echo U; fi)
+%define wxconfigname %{wxpref}/bin/wx%{lcport}%{uniflg}%{dbgflg}-%{ver2}-config
+
+# turn off the generation of debuginfo rpm (RH9)
+%define debug_package %{nil}
+
#----------------------------------------------------------------
Summary: Cross platform GUI toolkit for Python using wx%{port}
Name: %{name}
Version: %{version}
Release: %{release}
Source0: %{tarname}-%{version}.tar.gz
-License: wxWindows Library Licence, Version 3
+License: wx Library Licence, Version 3
URL: http://wxPython.org/
-Packager: Robin Dunn <robind@alldunn.com>
+Packager: Robin Dunn <robin@alldunn.com>
Group: Development/Python
BuildRoot: %{_tmppath}/%{name}-buildroot
Prefix: %{pref}
-#BuildRequires: %{python}
-Provides: wxwin
-Provides: wx%{port} = %{version}
Provides: wxPython = %{version}
+Provides: wxPython%{port} = %{version}
+
+# Provides: libwx_%{lcport}%{uniflg}%{dbgflg}-%{ver2}.so
+# Provides: libwx_%{lcport}%{uniflg}%{dbgflg}-%{ver2}.so(WX%{port}%{UNIFLG}%{DBGFLG}_%{ver2})
+# Provides: libwx_%{lcport}%{uniflg}%{dbgflg}_gl-%{ver2}.so
+# Provides: libwx_%{lcport}%{uniflg}%{dbgflg}_gl-%{ver2}.so(WX%{port}%{UNIFLG}%{DBGFLG}_%{ver2})
-# They conflict with each other, so let them replace each other
-Obsoletes: %{othername}
# old wxPython packages
-Obsoletes: wxPython
+Obsoletes: wxPython wxPython%{port}
%description
wxPython is a GUI toolkit for Python that is a wrapper around the
-wxWindows C++ GUI library. wxPython provides a large variety of
+wxWidgets C++ GUI library. wxPython provides a large variety of
window types and controls, all implemented with a native look and feel
(and native runtime speed) on the platforms it is supported on.
-This package is implemented using the %{port} port of wxWindows, and
+This package is implemented using the %{port} port of wxWidgets, and
includes the wx%{port} shared libs and etc.
-%package devel
+%package -n wxPython%{port}-devel
Summary: wxPython%{port} development files
Group: Development/Libraries
Requires: wxPython%{port} = %{version}
-%description devel
+%description -n wxPython%{port}-devel
This packages contains the headers and etc. for building apps or
Python extension modules that use the same wx%{port} shared libraries
that wxPython uses.
#----------------------------------------------------------------
%build
-if [ "$SMP" != "" ]; then
- MAKE="make -j$SMP"
-else
- MAKE="make"
-fi
-mkdir build
-cd build
+WXDIR=`pwd`
+mkdir bld
+cd bld
-# Configure, trying to reduce dependencies
+# Configure, trying to reduce external dependencies
../configure --with-%{lcport} \
--prefix=%{wxpref} \
--disable-soname \
+ --disable-monolithic \
+ --enable-rpath=%{wxpref}/lib \
--with-opengl \
-%if %{debug}
- --enable-debug \
-%else
+%if %{unicode}
+ --enable-gtk2 \
+ --enable-unicode \
+%endif
+ --enable-geometry \
--enable-optimise \
+ --enable-sound --with-sdl \
+ --enable-display \
+%if %{debug_flag}
+ --enable-debug_flag \
%endif
+%if %{builtin_libs}
--with-libjpeg=builtin \
--with-libpng=builtin \
--with-libtiff=builtin \
--with-zlib=builtin \
-
-## --enable-debug_flag \
-## --with-odbc \
-
-
-# Build wxWindows
-$MAKE
-
-cd ../locale
-make allmo
+%endif
-# ** Unfortunately we have to do a bit of installation here so wxPython
-# can be built. Perhaps wx-config should be changed to be able to be
-# used from the build dir, maybe with an --inplace flag... Move these
-# three lines to %install if/when that happens.
-[ "$RPM_BUILD_ROOT" != "/" ] && rm -rf $RPM_BUILD_ROOT
-cd ../build
-make prefix=$RPM_BUILD_ROOT%{wxpref} install
+# Build wxWidgets and some contrib libs
+make
+make -C contrib/src/gizmos
+make -C contrib/src/ogl CXXFLAGS="-DwxUSE_DEPRECATED=0"
+make -C contrib/src/stc
+make -C contrib/src/xrc
# Now build wxPython
-cd ../wxPython
+cd $WXDIR/wxPython
%{python} setup.py \
- IN_CVS_TREE=1 \
- WX_CONFIG="$RPM_BUILD_ROOT%{wxpref}/bin/wx-config --prefix=$RPM_BUILD_ROOT%{wxpref}" \
- build
+ NO_SCRIPTS=1 \
+ WXPORT=%{lcport} \
+ UNICODE=%{unicode} \
+ WX_CONFIG="$WXDIR/bld/wx-config --inplace" \
+ build
+
+
+# Build wxrc (XRC resource tool)
+cd $WXDIR/bld/contrib/utils/wxrc
+make
+strip wxrc
#----------------------------------------------------------------
%install
-## ** [ "$RPM_BUILD_ROOT" != "/" ] && rm -rf $RPM_BUILD_ROOT
-%find_lang wxstd
-cd wxPython
+
+WXDIR=`pwd`
+cd bld
+
+# Install wxWidgets and the contribs
+make prefix=$RPM_BUILD_ROOT%{wxpref} install
+make -C contrib/src/gizmos prefix=$RPM_BUILD_ROOT%{wxpref} install
+make -C contrib/src/ogl CXXFLAGS="-DwxUSE_DEPRECATED=0" prefix=$RPM_BUILD_ROOT%{wxpref} install
+make -C contrib/src/stc prefix=$RPM_BUILD_ROOT%{wxpref} install
+make -C contrib/src/xrc prefix=$RPM_BUILD_ROOT%{wxpref} install
+
+
+# install wxPython
+cd $WXDIR/wxPython
%{python} setup.py \
- IN_CVS_TREE=1 \
+ NO_SCRIPTS=1 \
+ WXPORT=%{lcport} \
+ UNICODE=%{unicode} \
WX_CONFIG="$RPM_BUILD_ROOT%{wxpref}/bin/wx-config --prefix=$RPM_BUILD_ROOT%{wxpref}" \
install \
--root=$RPM_BUILD_ROOT
+cd $WXDIR/wxPython
+
+
+# Since I want this RPM to be as generic as possible I won't let
+# distutils copy the scripts (NO_SCRIPTS=1 above) since it will mangle
+# the #! line to use the real python pathname. Since some distros
+# install python 2.2 as python2 and others as python I can't let
+# distutils do that otherwise the dependencies will be fouled up.
+# Copy them manually instead, leaving the #!/bin/env line intact.
+# TODO: Should this be dependent on %{builtin_libs} or something like
+# it?
+
+mkdir -p $RPM_BUILD_ROOT%{pref}/bin
+for s in \
+ helpviewer \
+ img2png \
+ img2py \
+ img2xpm \
+ pyalacarte \
+ pyalamode \
+ pycrust \
+ pywrap \
+ pyshell \
+ xrced; do
+ cp scripts/$s $RPM_BUILD_ROOT%{pref}/bin
+done
+
+
+# Install wxrc
+cp $WXDIR/bld/contrib/utils/wxrc/wxrc $RPM_BUILD_ROOT%{pref}/bin
+
+
+# install KDE & GNOME menus
+mkdir -p $RPM_BUILD_ROOT%{_datadir}/applnk/Development
+mkdir -p $RPM_BUILD_ROOT%{_datadir}/applications
+for d in distrib/*.desktop; do
+ install -m 644 $d $RPM_BUILD_ROOT%{_datadir}/applnk/Development
+ install -m 644 $d $RPM_BUILD_ROOT%{_datadir}/applications
+done
+
+# install KDE icons
+mkdir -p $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/{16x16,32x32}/apps
+mkdir -p $RPM_BUILD_ROOT%{_datadir}/pixmaps
+install -m 644 wx/py/PyCrust_16.png $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/16x16/apps/PyCrust.png
+install -m 644 wx/py/PyCrust_32.png $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/32x32/apps/PyCrust.png
+install -m 644 wx/py/PyCrust_32.png $RPM_BUILD_ROOT%{_datadir}/pixmaps/PyCrust.png
+install -m 644 wx/tools/XRCed/XRCed_16.png $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/16x16/apps/XRCed.png
+install -m 644 wx/tools/XRCed/XRCed_32.png $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/32x32/apps/XRCed.png
+install -m 644 wx/tools/XRCed/XRCed_32.png $RPM_BUILD_ROOT%{_datadir}/pixmaps/XRCed.png
+
+# install Mandrake menu
+mkdir -p $RPM_BUILD_ROOT/%{_libdir}/menu
+cat > $RPM_BUILD_ROOT%{_libdir}/menu/%{name} <<EOF
+?package(%{name}): \\
+ command="%{_bindir}/pyshell" \\
+ needs="X11" \\
+ icon="PyCrust.png" \\
+ section="Applications/Development/Tools" \\
+ title="PyShell" \\
+ longtitle="GUI Python Shell"
+?package(%{name}): \\
+ command="%{_bindir}/pycrust" \\
+ needs="X11" \\
+ icon="PyCrust.png" \\
+ section="Applications/Development/Tools" \\
+ title="PyCrust" \\
+ longtitle="GUI Python Shell with Filling"
+?package(%{name}): \\
+ command="%{_bindir}/pyalamode" \\
+ needs="X11" \\
+ icon="PyCrust.png" \\
+ section="Applications/Development/Tools" \\
+ title="PyAlaMode" \\
+ longtitle="GUI Python Shell with Filling and editor windows"
+?package(%{name}): \\
+ command="%{_bindir}/xrced" \\
+ needs="X11" \\
+ icon="XRCed.png" \\
+ section="Applications/Development/Tools" \\
+ title="XRCed" \\
+ longtitle="wxPython XRC resource editor"
+EOF
+
#----------------------------------------------------------------
-%clean
-#[ "$RPM_BUILD_ROOT" != "/" ] && rm -rf $RPM_BUILD_ROOT
+
+%pre
+if [ -e %{wxprefbase} ]; then
+ # in case there are old dirs from an old install
+ rm -r %{wxprefbase}
+fi
-#----------------------------------------------------------------
%post
-/sbin/ldconfig
+if [ ! -e %{wxprefbase} ]; then
+ ln -s wxPython-%{version} %{wxprefbase}
+fi
+# This is done on Mandrake to update its menus:
+if [ -x /usr/bin/update-menus ]; then /usr/bin/update-menus || true ; fi
-#----------------------------------------------------------------
%postun
-/sbin/ldconfig
+rm -f %{wxprefbase}
+# This is done on Mandrake to update its menus:
+if [ "$1" = "0" -a -x /usr/bin/update-menus ]; then /usr/bin/update-menus || true ; fi
+
+#----------------------------------------------------------------
+%clean
+[ "$RPM_BUILD_ROOT" != "/" ] && rm -rf $RPM_BUILD_ROOT
#----------------------------------------------------------------
+
%files
-%doc docs/preamble.txt
-%doc docs/licence.txt
-%doc docs/readme.txt
-%doc docs/changes.txt
-%doc wxPython/README.txt
-%doc wxPython/CHANGES.txt
%defattr(-,root,root)
+%doc docs/preamble.txt docs/licence.txt docs/lgpl.txt docs/readme.txt docs/changes.txt
+%doc wxPython/docs/*
+%{_bindir}/*
+%{_libdir}/python%{pyver}/site-packages/*
+%dir %{wxpref}
+%dir %{wxpref}/lib
%{wxpref}/lib/libwx*
-%{pref}/lib/python*
-%{wxpref}/share/
+%{wxpref}/share
+%{_datadir}/applnk/Development/*
+%{_datadir}/applications/*
+%{_datadir}/icons/hicolor/*/apps/*
+%{_datadir}/pixmaps/*
+%{_libdir}/menu/*
+##%{wxprefbase}
-%files devel
+%files -n wxPython%{port}-devel
%defattr(-,root,root)
-%{wxpref}/include/wx
+%{wxpref}/include
%{wxpref}/lib/wx
-%if %{debug}
- %{wxpref}/bin/wx%{lcport}d-%{ver2}-config
-%else
- %{wxpref}/bin/wx%{lcport}-%{ver2}-config
-%endif
+%{wxconfigname}
%{wxpref}/bin/wx-config
-
#----------------------------------------------------------------
-%changelog
-
# end of file