diff options
author | Nick Hadaway <raker@gentoo.org> | 2002-09-29 22:18:18 +0000 |
---|---|---|
committer | Nick Hadaway <raker@gentoo.org> | 2002-09-29 22:18:18 +0000 |
commit | 25b0b0c3c0e42f1e2eea8e32da9229cb0142776b (patch) | |
tree | fdc623313e1728db5e4b2f121812d6c12b38245d /dev-python | |
parent | Removed un-needed ebuilds (diff) | |
download | gentoo-2-25b0b0c3c0e42f1e2eea8e32da9229cb0142776b.tar.gz gentoo-2-25b0b0c3c0e42f1e2eea8e32da9229cb0142776b.tar.bz2 gentoo-2-25b0b0c3c0e42f1e2eea8e32da9229cb0142776b.zip |
Removed stale ebuilds.
Diffstat (limited to 'dev-python')
-rw-r--r-- | dev-python/wxPython/ChangeLog | 4 | ||||
-rw-r--r-- | dev-python/wxPython/files/digest-wxPython-2.3.2.1 | 1 | ||||
-rw-r--r-- | dev-python/wxPython/files/digest-wxPython-2.3.2.1-r1 | 1 | ||||
-rw-r--r-- | dev-python/wxPython/files/nogizmos.diff | 160 | ||||
-rw-r--r-- | dev-python/wxPython/wxPython-2.3.2.1-r1.ebuild | 55 | ||||
-rw-r--r-- | dev-python/wxPython/wxPython-2.3.2.1.ebuild | 49 |
6 files changed, 3 insertions, 267 deletions
diff --git a/dev-python/wxPython/ChangeLog b/dev-python/wxPython/ChangeLog index 98dfc2da5a5e..85300ce0e1dd 100644 --- a/dev-python/wxPython/ChangeLog +++ b/dev-python/wxPython/ChangeLog @@ -1,6 +1,8 @@ # ChangeLog for dev-python/wxPython # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/dev-python/wxPython/ChangeLog,v 1.8 2002/09/13 18:38:19 raker Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/wxPython/ChangeLog,v 1.9 2002/09/29 22:18:18 raker Exp $ + +HEY - wxPython 2.3.3.1 is out - Upgrade after Gentoo 1.4 is released :) *wxPython-2.3.2.1-r2 (29 Aug 2002) diff --git a/dev-python/wxPython/files/digest-wxPython-2.3.2.1 b/dev-python/wxPython/files/digest-wxPython-2.3.2.1 deleted file mode 100644 index 2dac4ca0b00e..000000000000 --- a/dev-python/wxPython/files/digest-wxPython-2.3.2.1 +++ /dev/null @@ -1 +0,0 @@ -MD5 e57b4d030c4ba43a9030fdaee083011c wxPython-2.3.2.1.tar.gz 2845829 diff --git a/dev-python/wxPython/files/digest-wxPython-2.3.2.1-r1 b/dev-python/wxPython/files/digest-wxPython-2.3.2.1-r1 deleted file mode 100644 index 2dac4ca0b00e..000000000000 --- a/dev-python/wxPython/files/digest-wxPython-2.3.2.1-r1 +++ /dev/null @@ -1 +0,0 @@ -MD5 e57b4d030c4ba43a9030fdaee083011c wxPython-2.3.2.1.tar.gz 2845829 diff --git a/dev-python/wxPython/files/nogizmos.diff b/dev-python/wxPython/files/nogizmos.diff deleted file mode 100644 index 239406689893..000000000000 --- a/dev-python/wxPython/files/nogizmos.diff +++ /dev/null @@ -1,160 +0,0 @@ -diff -urN wxPython-2.3.2.1/setup.py wxPython-2.3.2.1-modified/setup.py ---- wxPython-2.3.2.1/setup.py Thu Dec 20 11:33:42 2001 -+++ wxPython-2.3.2.1-modified/setup.py Thu Aug 22 14:07:18 2002 -@@ -32,8 +32,8 @@ - BUILD_OGL = 1 # If true, build the contrib/ogl extension module - BUILD_STC = 1 # If true, build the contrib/stc extension module - BUILD_XRC = 1 # XML based resource system --BUILD_GIZMOS = 1 # Build a module for the gizmos contrib library --BUILD_DLLWIDGET = 1# Build a module for the gizmos contrib library -+BUILD_GIZMOS = 0 # Build a module for the gizmos contrib library -+BUILD_DLLWIDGET = 0# Build a module for the gizmos contrib library - - BUILD_IEWIN = 0 # Internet Explorer wrapper (experimental) - -@@ -757,46 +757,46 @@ - #---------------------------------------------------------------------- - # Define the GIZMOS extension module - #---------------------------------------------------------------------- -- --if not GL_ONLY and BUILD_GIZMOS: -- msg('Preparing GIZMOS...') -- location = 'contrib/gizmos' -- GIZMOLOC = opj(location, 'contrib/src/gizmos') -- GIZMOINC = opj(location, 'contrib/include') -- -- swig_files = ['gizmos.i'] -- -- swig_sources = run_swig(swig_files, location, '', PKGDIR, -- USE_SWIG, swig_force, swig_args) -- -- gizmos_includes = includes[:] -- gizmos_includes.append(GIZMOINC) -- -- -- # make sure local copy of contrib files are up to date -- if IN_CVS_TREE: -- contrib_copy_tree(opj(CTRB_INC, 'gizmos'), opj(GIZMOINC, 'wx/gizmos')) -- contrib_copy_tree(opj(CTRB_SRC, 'gizmos'), GIZMOLOC) -- -- ext = Extension('gizmosc', [ -- '%s/dynamicsash.cpp' % GIZMOLOC, -- '%s/editlbox.cpp' % GIZMOLOC, -- #'%s/multicell.cpp' % GIZMOLOC, -- '%s/splittree.cpp' % GIZMOLOC, -- '%s/ledctrl.cpp' % GIZMOLOC, -- ] + swig_sources, -- -- include_dirs = gizmos_includes, -- define_macros = defines, -- -- library_dirs = libdirs, -- libraries = libs, -- -- extra_compile_args = cflags, -- extra_link_args = lflags, -- ) -- -- wxpExtensions.append(ext) -+# -+#if not GL_ONLY and BUILD_GIZMOS: -+# msg('Preparing GIZMOS...') -+# location = 'contrib/gizmos' -+# GIZMOLOC = opj(location, 'contrib/src/gizmos') -+# GIZMOINC = opj(location, 'contrib/include') -+# -+# swig_files = ['gizmos.i'] -+# -+# swig_sources = run_swig(swig_files, location, '', PKGDIR, -+# USE_SWIG, swig_force, swig_args) -+# -+# gizmos_includes = includes[:] -+# gizmos_includes.append(GIZMOINC) -+# -+# -+# # make sure local copy of contrib files are up to date -+# if IN_CVS_TREE: -+# contrib_copy_tree(opj(CTRB_INC, 'gizmos'), opj(GIZMOINC, 'wx/gizmos')) -+# contrib_copy_tree(opj(CTRB_SRC, 'gizmos'), GIZMOLOC) -+# -+# ext = Extension('gizmosc', [ -+# '%s/dynamicsash.cpp' % GIZMOLOC, -+# '%s/editlbox.cpp' % GIZMOLOC, -+# #'%s/multicell.cpp' % GIZMOLOC, -+# '%s/splittree.cpp' % GIZMOLOC, -+# '%s/ledctrl.cpp' % GIZMOLOC, -+# ] + swig_sources, -+# -+# include_dirs = gizmos_includes, -+# define_macros = defines, -+# -+# library_dirs = libdirs, -+# libraries = libs, -+# -+# extra_compile_args = cflags, -+# extra_link_args = lflags, -+# ) -+# -+# wxpExtensions.append(ext) - - - -@@ -804,32 +804,32 @@ - # Define the DLLWIDGET extension module - #---------------------------------------------------------------------- - --if not GL_ONLY and BUILD_DLLWIDGET: -- msg('Preparing DLLWIDGET...') -- location = 'contrib/dllwidget' -- swig_files = ['dllwidget_.i'] -- -- swig_sources = run_swig(swig_files, location, '', PKGDIR, -- USE_SWIG, swig_force, swig_args) -- -- # copy a contrib project specific py module to the main package dir -- copy_file(opj(location, 'dllwidget.py'), PKGDIR, update=1, verbose=0) -- -- ext = Extension('dllwidget_c', [ -- '%s/dllwidget.cpp' % location, -- ] + swig_sources, -- -- include_dirs = includes, -- define_macros = defines, -- -- library_dirs = libdirs, -- libraries = libs, -- -- extra_compile_args = cflags, -- extra_link_args = lflags, -- ) -- -- wxpExtensions.append(ext) -+#if not GL_ONLY and BUILD_DLLWIDGET: -+# msg('Preparing DLLWIDGET...') -+# location = 'contrib/dllwidget' -+# swig_files = ['dllwidget_.i'] -+# -+# swig_sources = run_swig(swig_files, location, '', PKGDIR, -+# USE_SWIG, swig_force, swig_args) -+# -+# # copy a contrib project specific py module to the main package dir -+# copy_file(opj(location, 'dllwidget.py'), PKGDIR, update=1, verbose=0) -+# -+# ext = Extension('dllwidget_c', [ -+# '%s/dllwidget.cpp' % location, -+# ] + swig_sources, -+# -+# include_dirs = includes, -+# define_macros = defines, -+# -+# library_dirs = libdirs, -+# libraries = libs, -+# -+# extra_compile_args = cflags, -+# extra_link_args = lflags, -+# ) -+# -+# wxpExtensions.append(ext) - - - #---------------------------------------------------------------------- diff --git a/dev-python/wxPython/wxPython-2.3.2.1-r1.ebuild b/dev-python/wxPython/wxPython-2.3.2.1-r1.ebuild deleted file mode 100644 index 65812679f939..000000000000 --- a/dev-python/wxPython/wxPython-2.3.2.1-r1.ebuild +++ /dev/null @@ -1,55 +0,0 @@ -# Copyright 1999-2002 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/dev-python/wxPython/wxPython-2.3.2.1-r1.ebuild,v 1.4 2002/08/22 19:35:19 raker Exp $ - -S=${WORKDIR}/${P} -DESCRIPTION="A blending of the wxWindows C++ class library with Python." -SRC_URI="mirror://sourceforge/wxpython/${P}.tar.gz" -HOMEPAGE="http://www.wxpython.org/" -DEPEND=">=dev-lang/python-2.1 - =dev-libs/glib-1.2* - =x11-libs/gtk+-1.2* - x11-libs/wxGTK" - #opengl? ( virtual/opengl )" - #really need opengl? ( virtual/opengl dev-python/PyOpenGL ) - #to get full opengl functionality, i.e. wxGLCanvas. - -SLOT="0" -LICENSE="LGPL-2" -KEYWORDS="x86 sparc sparc64" - -src_compile() { -# local myconf -# myconf="" -# -# if use opengl; then -# myconf="${myconf} BUILD_GLCANVAS=1" -# else -# myconf="${myconf} BUILD_GLCANVAS=0" -# fi - -#Other possible configuration variables are BUILD_OGL and BUILD_STC. -#BUILD_OGL builds the Object Graphics Library extension module. -#BUILD_STC builds the wxStyledTextCtrl (the Scintilla wrapper) extension module. -#Both these variable are enabled by default. To disable them set equal to zero -#and add to myconf. - - # this doesn't work yet with opengl, thus, - # force the issue for now. - # It *builds* but sigsegs at runtime. - # myconf="BUILD_GLCANVAS=0" - cd ${S} - patch -p1 < ${FILESDIR}/noglcanvas.diff || die "patch failed" - - # gizmos currently fails compiling on gcc3 - # myconf="${myconf} BUILD_GIZMOS=0" - patch -p1 < ${FILESDIR}/nogizmos.diff || die "patch failed" - - python setup.py build || die -} - -src_install () { - python setup.py install --prefix=${D}/usr || die - - dodoc BUILD.unix.txt CHANGES.txt MANIFEST.in PKG-INFO README.txt -} diff --git a/dev-python/wxPython/wxPython-2.3.2.1.ebuild b/dev-python/wxPython/wxPython-2.3.2.1.ebuild deleted file mode 100644 index 7532e01b442c..000000000000 --- a/dev-python/wxPython/wxPython-2.3.2.1.ebuild +++ /dev/null @@ -1,49 +0,0 @@ -# Copyright 1999-2002 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/dev-python/wxPython/wxPython-2.3.2.1.ebuild,v 1.7 2002/08/16 02:49:58 murphy Exp $ - -S=${WORKDIR}/${P} -DESCRIPTION="A blending of the wxWindows C++ class library with Python." -SRC_URI="mirror://sourceforge/wxpython/${P}.tar.gz" -HOMEPAGE="http://www.wxpython.org/" - -SLOT="0" -LICENSE="LGPL-2" -KEYWORDS="x86 sparc sparc64" - -DEPEND=">=dev-lang/python-2.1 - =dev-libs/glib-1.2* - =x11-libs/gtk+-1.2* - x11-libs/wxGTK" - #opengl? ( virtual/opengl )" - #really need opengl? ( virtual/opengl dev-python/PyOpenGL ) - #to get full opengl functionality, i.e. wxGLCanvas. - -src_compile() { - - #local myconf - #myconf="" - -#Other possible configuration variables are BUILD_OGL and BUILD_STC. -#BUILD_OGL builds the Object Graphics Library extension module. -#BUILD_STC builds the wxStyledTextCtrl (the Scintilla wrapper) extension -module. -#Both these variable are enabled by default. To disable them set equal to -zero -#and add to myconf. - - #use opengl || myconf="${myconf} BUILD_GLCANVAS=0" - #myconf="${myconf} BUILD_GLCANVAS=0" - - - python setup.py build ${myconf} || die - -} - -src_install () { - - python setup.py install --prefix=${D}/usr || die - - dodoc BUILD.unix.txt CHANGES.txt MANIFEST.in PKG-INFO README.txt - -} |