X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/1e4a197e4c60e461b8068b0619692ea083e30b8b..d21f1d8f155ad46e93e0bd3d8a5b2528b8c43330:/wxPython/distrib/wxPythonFull.spec.in diff --git a/wxPython/distrib/wxPythonFull.spec.in b/wxPython/distrib/wxPythonFull.spec.in index fa0745bb6f..0c4e78f163 100644 --- a/wxPython/distrib/wxPythonFull.spec.in +++ b/wxPython/distrib/wxPythonFull.spec.in @@ -1,107 +1,203 @@ -%define pref %{_prefix} -%define python @PYTHON@ -%define pyver @PYVER@ -%define port @PORT@ -%define lcport @LCPORT@ -%define unicode @UNICODE@ -%define tarname @TARNAME@ -%define version @VERSION@ -%define ver2 @VER2@ -%define release 1 -%define wxpref %{pref}/lib/wxPython -%define name wxPython%{port}-py%{pyver} +#---------------------------------------------------------------------- +# Name: wxPython.spec +# Purpose: RPM Build and packaging instructions +# +# Author: Robin Dunn +# +# RCS-ID: $Id$ +# Copyright: (c) 2004 by Total Control Software +# Licence: wxWindows license +#---------------------------------------------------------------------- + + +# The following values can be set on the rpmbuild command line with +# --define 'name VALUE' If no value is set on the command line then +# the default value set here will be used instead. + + +# Which version of Python to build with. Used to assemble python +# binary name so use '2.2', '2.3', etc. +%if %{?pyver:0}%{!?pyver:1} +%define pyver 2.3 +%endif + + +# Which wxWidgets port to build and use. Current acceptable values +# are 'gtk' and 'gtk2'. +%if %{?port:0}%{!?port:1} +%define port gtk2 +%endif + + +# Build in unicode mode? Can only be used if port is gtk2, acceptable +# values are '0' and '1' +%if %{?unicode:0}%{!?unicode:1} +%define unicode 1 +%endif # 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 use 1. +# NOTE: I'm trying 0 for this next release to see if I can get rid of +# this... +%if %{?builtin_libs:0}%{!?builtin_libs:1} +%define builtin_libs 0 +%endif # 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.) +# into Python exceptions. (So turning it on is a very helpful thing +# IMO and is recommended.) The code is still compiled with +# optimization flags and and without debug info and such when this +# option is used, it simply turns on some extra code. +%if %{?debug_flag:0}%{!?debug_flag:1} %define debug_flag 1 +%endif + + +# Used to set the Release tag below. I normally use it to define what +# distro the RPM was build on and also include the version of Python +# it was built with. +%if %{?release:0}%{!?release:1} +%define release 1_py%{pyver} +%endif + -# 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 wxconfigname %{wxpref}/bin/wx%{lcport}%{uniflg}%{dbgflg}-%{ver2}-config +#---------------------------------------------------------------------- +# Other variables used below +%define pref %{_prefix} +%define python /usr/bin/python%{pyver} +%define tarname @TARNAME@ +%define version @VERSION@ +%define ver2 @VER2@ -#---------------------------------------------------------------- -Summary: Cross platform GUI toolkit for Python using wx%{port} -Name: %{name} +%define chartype %(if [ "%{unicode}" = "1" ]; then echo unicode; else echo ansi; fi) +%define gtktype %(if [ "%{port}" = "gtk2" ]; then echo 2; fi) +%define using_gtk1 %(if [ "%{port}" = "gtk" ]; then echo 1; else echo 0; fi) + +%define wxprefbase %{pref}/lib/wxPython +%define wxpref %{wxprefbase}-%{version}-%{port}-%{chartype} +%define pkgname wxPython + +# turn off the generation of debuginfo rpm (RH9) ?? +%define debug_package %{nil} + + +#---------------------------------------------------------------------- +# Package definition +#---------------------------------------------------------------------- +Name: %{pkgname}%{ver2} +Summary: Cross platform GUI toolkit for Python 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 Group: Development/Python -BuildRoot: %{_tmppath}/%{name}-buildroot +BuildRoot: %{_tmppath}/%{pkgname}-buildroot Prefix: %{pref} -#BuildRequires: %{python} -Provides: wxPython = %{version} -Provides: wxPython%{port} = %{version} +%description +Cross platform GUI toolkit for Python -# old wxPython packages -Obsoletes: wxPython -%description -wxPython is a GUI toolkit for Python that is a wrapper around the -wxWindows 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 -includes the wx%{port} shared libs and etc. +%package -n %{pkgname}%{ver2}-%{port}-%{chartype} +Summary: Cross platform GUI toolkit for Python +Group: Development/Python +Requires: %{pkgname}-common +Obsoletes: wxPythonGTK%{gtktype}-py%{pyver} +Provides: wxPython -%package -n wxPython%{port}-devel -Summary: wxPython%{port} development files -Group: Development/Libraries -Requires: wxPython%{port} = %{version} +%description -n %{pkgname}%{ver2}-%{port}-%{chartype} +wxPython is a GUI toolkit for the Python programming language. It + allows Python programmers to create programs with a robust, highly +functional graphical user interface, simply and easily. It is +implemented as a Python extension module (native code) that wraps the +popular wxWidgets cross platform GUI library, which is written in C++. +wxPython is a cross-platform toolkit. The same program will usually +run on multiple platforms without modification. Currently supported +platforms are 32-bit Microsoft Windows, most Unix or unix-like +systems, and Macintosh OS X. -%description -n wxPython%{port}-devel +This package contains the wxPython runtime files built for the +wxWidgets %{port} port with %{chartype} character type. + + + + + +%package -n %{pkgname}-common-%{port}-%{chartype} +Summary: Common files for needed by all wxPython runtimes +Group: Development/Python +Provides: %{pkgname}-common + +# They obsolete each other so any of them can be installed over another +# without conflicts +Obsoletes: %{pkgname}-common-gtk-ansi +Obsoletes: %{pkgname}-common-gtk2-ansi +Obsoletes: %{pkgname}-common-gtk2-unicode + +%description -n %{pkgname}-common-%{port}-%{chartype} +This package contains the common files needed by any version of the +wxPython runtime. This pacakge also installs a wx.pth file which will +determine which of the installed runtimes is the default version of +wxPython that is imported automatically with a bare "import wx". + + + + + +%package -n %{pkgname}%{ver2}-devel-%{port}-%{chartype} +Summary: wxPython development files +Group: Development/Libraries +Requires: %{pkgname}%{ver2}-%{port}-%{chartype} = %{version} + +%description -n %{pkgname}%{ver2}-devel-%{port}-%{chartype} This packages contains the headers and etc. for building apps or -Python extension modules that use the same wx%{port} shared libraries +Python extension modules that use the same wxWidgets shared libraries that wxPython uses. -#---------------------------------------------------------------- + + +#---------------------------------------------------------------------- %prep %setup -q -n %{tarname}-%{version} -#---------------------------------------------------------------- +#---------------------------------------------------------------------- %build -if [ "$SMP" != "" ]; then - MAKE="make -j$SMP" -else - MAKE="make" -fi WXDIR=`pwd` -mkdir build -cd build -# Configure, trying to reduce external dependencies -$WXDIR/configure --with-%{lcport} \ +# Configure and build wxWidgets +mkdir bld +cd bld +../configure --with-gtk \ --prefix=%{wxpref} \ - --disable-soname \ + --enable-monolithic \ --enable-rpath=%{wxpref}/lib \ --with-opengl \ -%if %{unicode} + --enable-geometry \ + --enable-optimise \ + --enable-sound --with-sdl \ + --enable-display \ +%if %{using_gtk1} + --disable-gtk2 \ +%else --enable-gtk2 \ +%endif +%if %{unicode} --enable-unicode \ %endif - --enable-geometry \ - --enable-optimise \ %if %{debug_flag} --enable-debug_flag \ %endif @@ -113,135 +209,211 @@ $WXDIR/configure --with-%{lcport} \ %endif -# Build wxWindows -$MAKE +make +make -C contrib/src/gizmos +make -C contrib/src/ogl CXXFLAGS="-DwxUSE_DEPRECATED=0" +make -C contrib/src/stc -# Now build wxPython + +# Build wxPython cd $WXDIR/wxPython %{python} setup.py \ - IN_CVS_TREE=1 \ - NO_SCRIPTS=1 \ - WXPORT=%{lcport} \ + WXPORT=%{port} \ UNICODE=%{unicode} \ - WX_CONFIG="$WXDIR/build/wx-config --prefix=$WXDIR --exec-prefix=$WXDIR/build" \ - build - -## WX_CONFIG="$WXDIR/build/wx-config --inplace --prefix=$RPM_BUILD_ROOT%{wxpref}" \ - - - -# Build wxrc (XRC resource tool) but don't use the makefiles since they expect -# a shared version of the xrc lib to have been built... -cd $WXDIR/contrib/utils/wxrc -WX_CONFIG="$WXDIR/build/wx-config --prefix=$WXDIR --exec-prefix=$WXDIR/build" -wCC=`$WX_CONFIG --cc` -wCXX=`$WX_CONFIG --cxx` - -for f in wxrc.cpp ../../src/xrc/*.cpp; do - echo $f - $wCXX `$WX_CONFIG --cxxflags` -I ../../include -I ../../src/xrc/expat/xmlparse -I ../../src/xrc/expat/xmltok -c $f -done -for f in ../../src/xrc/expat/xmlparse/xmlparse.c ../../src/xrc/expat/xmltok/xmlrole.c ../../src/xrc/expat/xmltok/xmltok.c; do - echo $f - $wCC `$WX_CONFIG --cxxflags` -I ../../include -I ../../src/xrc/expat/xmlparse -I ../../src/xrc/expat/xmltok -c $f -done - -# the handlers are not needed -rm xh_*.o xmlrsall.o + EP_ADD_OPTS=1 \ + NO_SCRIPTS=1 \ + WX_CONFIG="$WXDIR/bld/wx-config --inplace" \ + build -$wCXX `$WX_CONFIG --libs` *.o -o wxrc -strip wxrc -#---------------------------------------------------------------- +#---------------------------------------------------------------------- %install -[ "$RPM_BUILD_ROOT" != "/" ] && rm -rf $RPM_BUILD_ROOT -# install wxWindows WXDIR=`pwd` -cd build + +# Install wxGTK and contribs +cd bld 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 + + -# install wxPython +# Install wxPython for wxGTK cd $WXDIR/wxPython %{python} setup.py \ - IN_CVS_TREE=1 \ - NO_SCRIPTS=1 \ - WXPORT=%{lcport} \ + WXPORT=%{port} \ UNICODE=%{unicode} \ + EP_ADD_OPTS=1 \ + NO_SCRIPTS=1 \ WX_CONFIG="$RPM_BUILD_ROOT%{wxpref}/bin/wx-config --prefix=$RPM_BUILD_ROOT%{wxpref}" \ install \ --root=$RPM_BUILD_ROOT -# Since I want this RPM to be as generic as possible I won't let -# distutils copy the scripts 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, then 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/usr/bin +# remove the wx-config symlink, we'll redo it when installing the -devel package +rm $RPM_BUILD_ROOT%{wxpref}/bin/wx-config + +# make sure that debug info is stripped +strip $RPM_BUILD_ROOT%{pref}/lib*/python%{pyver}/site-packages/wx-%{ver2}*-%{port}-%{chartype}/wx/*.so + + +# 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 #!/usr/bin/env line intact. +cd $WXDIR/wxPython +mkdir -p $RPM_BUILD_ROOT%{pref}/bin for s in \ helpviewer \ img2png \ img2py \ img2xpm \ + pyalacarte \ + pyalamode \ pycrust \ - pycwrap \ + pywrap \ pyshell \ + pywxrc \ xrced; do - cp scripts/$s $RPM_BUILD_ROOT/%{pref}/bin + cp scripts/$s $RPM_BUILD_ROOT%{pref}/bin done -# Install wxrc -cp $WXDIR/contrib/utils/wxrc/wxrc $RPM_BUILD_ROOT/%{pref}/bin - - -# Generate the filelists. For some reason the %defattr below is still -# resulting in many (but not all) files not owned by root when just -# specifying directories and wildcards to be included in each package. -# So instead we'll build some explicit filelists here and use %attr on -# each entry. -cd $WXDIR -mkdir -p $RPM_BUILD_ROOT%{pref}/share/doc -GFL="%{python} wxPython/distrib/genfilelist.py" -$GFL $RPM_BUILD_ROOT %{pref} > FILELIST -$GFL -r $RPM_BUILD_ROOT %{pref}/bin >> FILELIST -$GFL $RPM_BUILD_ROOT %{pref}/lib >> FILELIST -$GFL -r $RPM_BUILD_ROOT %{pref}/lib/python%{pyver} >> FILELIST -$GFL -r $RPM_BUILD_ROOT %{pref}/share >> FILELIST -$GFL $RPM_BUILD_ROOT %{wxpref} >> FILELIST -$GFL $RPM_BUILD_ROOT %{wxpref}/lib >> FILELIST -$GFL $RPM_BUILD_ROOT "%{wxpref}/lib/libwx*" >> FILELIST -$GFL -r $RPM_BUILD_ROOT %{wxpref}/share >> FILELIST - -$GFL $RPM_BUILD_ROOT %{wxpref}/include > DEVELLIST -$GFL -r $RPM_BUILD_ROOT %{wxpref}/include/wx >> DEVELLIST -$GFL -r $RPM_BUILD_ROOT %{wxpref}/lib/wx >> DEVELLIST -$GFL $RPM_BUILD_ROOT %{wxconfigname} >> DEVELLIST -$GFL $RPM_BUILD_ROOT %{wxpref}/bin/wx-config >> DEVELLIST - - -#---------------------------------------------------------------- + +# install KDE & GNOME menu items +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 items +mkdir -p $RPM_BUILD_ROOT%{_libdir}/menu +cat > $RPM_BUILD_ROOT%{_libdir}/menu/%{pkgname} <