diff --git a/.cvsignore b/.cvsignore new file mode 100644 index 0000000..5ff901a --- /dev/null +++ b/.cvsignore @@ -0,0 +1 @@ +wxPythonSrc-2.4.2.4.tar.gz diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..d2485ab --- /dev/null +++ b/Makefile @@ -0,0 +1,21 @@ +# Makefile for source rpm: wxPython +# $Id$ +NAME := wxPython +SPECFILE = $(firstword $(wildcard *.spec)) + +define find-makefile-common +for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done +endef + +MAKEFILE_COMMON := $(shell $(find-makefile-common)) + +ifeq ($(MAKEFILE_COMMON),) +# attept a checkout +define checkout-makefile-common +test -f CVS/Rootx && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 +endef + +MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) +endif + +include $(MAKEFILE_COMMON) diff --git a/dead.package b/dead.package deleted file mode 100644 index fb13297..0000000 --- a/dead.package +++ /dev/null @@ -1 +0,0 @@ -Python 2 only - replaced by python-wxpython4 diff --git a/sources b/sources new file mode 100644 index 0000000..d49d5e3 --- /dev/null +++ b/sources @@ -0,0 +1 @@ +ea4eb68e10a0c2a9be643b35dcb78e41 wxPythonSrc-2.4.2.4.tar.gz diff --git a/wxPython.spec b/wxPython.spec new file mode 100644 index 0000000..b834409 --- /dev/null +++ b/wxPython.spec @@ -0,0 +1,64 @@ +%define pyver %(python -c 'import sys ; print sys.version[:3]') + +%define buildflags WXPORT=gtk2 UNICODE=1 + +Name: wxPython +Version: 2.4.2.4 +Release: 0.fdr.2.1 +Epoch: 0 +Summary: wxPython is a GUI toolkit for the Python programming language. + +Group: Development/Languages +License: LGPL +URL: http://www.wxpython.org/ +Source0: http://dl.sf.net/wxpython/wxPythonSrc-%{version}.tar.gz +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) + +BuildRequires: wxGTK2-devel >= 0:2.4.2, pkgconfig +BuildRequires: zlib-devel, libpng-devel, libjpeg-devel, libtiff-devel +BuildRequires: python-devel, wxGTK2-gl +Requires: %{_libdir}/python%{pyver} + +%description +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 wxWindows cross +platform GUI library, which is written in C++. + +%prep +%setup -q -n %{name}Src-%{version} + +%build +# just build the wxPython part, not all of wxWindows which we already have +# in fedora... +cd wxPython +python setup.py %{buildflags} build + +# this doesn't get built automatically, resulting in bogus libwx_gtk2-2.3.so.0 +# dependency for the package +cd demo/dllwidget +make clean +make + +%install +rm -rf $RPM_BUILD_ROOT +cd wxPython +python setup.py %{buildflags} install --root=$RPM_BUILD_ROOT + +%clean +rm -rf $RPM_BUILD_ROOT + +%files +%defattr(-,root,root,-) +%doc wxPython/docs wxPython/demo wxPython/licence/ wxPython/samples +%{_bindir}/* +%{_libdir}/python%{pyver}/site-packages/wxPython +%{_libdir}/python%{pyver}/site-packages/wx + +%changelog +* Thu Nov 20 2003 Panu Matilainen 0:2.4.2.4-0.fdr.2 +- add missing buildrequires: python-devel, wxGTK2-gl + +* Sun Nov 02 2003 Panu Matilainen 0:2.4.2.4-0.fdr.1 +- Initial RPM release.