diff options
author | Dmitry Marakasov <amdmi3@FreeBSD.org> | 2009-05-06 22:59:45 +0000 |
---|---|---|
committer | Dmitry Marakasov <amdmi3@FreeBSD.org> | 2009-05-06 22:59:45 +0000 |
commit | 70ae4a9b2cf07b5fad4e3c2fb0bf6982fbc74296 (patch) | |
tree | b22c08d257020eab7a9fe19dd3cfdd5a22b58e60 /graphics/py-opengl/files | |
parent | - Re-roll tarball (diff) |
- The port was completely broken, all py-opengl apps failed to run with error "No platform plugin registered for ('freebsd7', 'posix')", fix this
PR: 130821 [1], 133638 [2]
Submitted by: Michael Krauss <hippodriver at gmx.net> [1], myself [2]
Approved by: maintainer timeout (ahze, >3 months)
Diffstat (limited to 'graphics/py-opengl/files')
-rw-r--r-- | graphics/py-opengl/files/patch-OpenGL-__init__.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/graphics/py-opengl/files/patch-OpenGL-__init__.py b/graphics/py-opengl/files/patch-OpenGL-__init__.py new file mode 100644 index 000000000000..5c30f4685978 --- /dev/null +++ b/graphics/py-opengl/files/patch-OpenGL-__init__.py @@ -0,0 +1,11 @@ +--- OpenGL/__init__.py.orig 2008-12-07 06:58:16.000000000 +0300 ++++ OpenGL/__init__.py 2009-04-12 07:52:27.000000000 +0400 +@@ -102,7 +102,7 @@ + # Declarations of plugins provided by PyOpenGL itself + from OpenGL.plugins import PlatformPlugin, FormatHandler + PlatformPlugin( 'nt', 'OpenGL.platform.win32.Win32Platform' ) +-PlatformPlugin( 'posix ', 'OpenGL.platform.glx.GLXPlatform' ) ++PlatformPlugin( 'posix', 'OpenGL.platform.glx.GLXPlatform' ) + PlatformPlugin( 'linux2', 'OpenGL.platform.glx.GLXPlatform' ) + PlatformPlugin( 'darwin', 'OpenGL.platform.darwin.DarwinPlatform' ) + |