pkgsrc/graphics/py-OpenGL/patches/patch-ae
drochner a0ecfa37ff Sync with reality: pkgsrc/devel/py-ctypes is broken, it fails even
on sizeof(long) on i386. The ctypes module builtin to Python-2.5
appears to work, so don't depend on devel/py-ctypes but require
Python-2.5.
Being here, update to 3.0.1b1. There is no useful changelog - appearently
more new OpenGL features are supported.
2009-12-16 20:45:20 +00:00

12 lines
586 B
Text

$NetBSD: patch-ae,v 1.1 2009/12/16 20:45:20 drochner Exp $
--- OpenGL/__init__.py.orig 2009-11-08 01:45:34.000000000 +0000
+++ OpenGL/__init__.py
@@ -184,6 +184,7 @@ UNSIGNED_BYTE_IMAGES_AS_STRING = True
from OpenGL.plugins import PlatformPlugin, FormatHandler
PlatformPlugin( 'nt', 'OpenGL.platform.win32.Win32Platform' )
PlatformPlugin( 'linux2', 'OpenGL.platform.glx.GLXPlatform' )
+PlatformPlugin( 'netbsd5', 'OpenGL.platform.glx.GLXPlatform' )
PlatformPlugin( 'darwin', 'OpenGL.platform.darwin.DarwinPlatform' )
PlatformPlugin( 'posix', 'OpenGL.platform.glx.GLXPlatform' )