This commit is contained in:
sthen 2011-07-20 15:45:20 +00:00
parent da8416ecbe
commit 01d73e7432
2 changed files with 7 additions and 6 deletions

View File

@ -1,10 +1,10 @@
# $OpenBSD: Makefile,v 1.6 2011/06/08 17:35:28 jasper Exp $
# $OpenBSD: Makefile,v 1.7 2011/07/20 15:45:20 sthen Exp $
COMMENT = Python bindings for OpenGL
MODPY_EGG_VERSION = 3.0.0
DISTNAME = PyOpenGL-${MODPY_EGG_VERSION}
PKGNAME = py-opengl-${MODPY_EGG_VERSION}
REVISION= 1
REVISION= 2
WANTLIB = GL GLU glut>=4
CATEGORIES = graphics

View File

@ -1,11 +1,12 @@
$OpenBSD: patch-OpenGL___init___py,v 1.1.1.1 2009/06/04 00:38:43 wcmaier Exp $
--- OpenGL/__init__.py.orig Tue Jun 2 22:57:27 2009
+++ OpenGL/__init__.py Tue Jun 2 22:57:21 2009
@@ -115,6 +115,7 @@ from OpenGL.plugins import PlatformPlugin, FormatHandl
$OpenBSD: patch-OpenGL___init___py,v 1.2 2011/07/20 15:45:20 sthen Exp $
--- OpenGL/__init__.py.orig Sun Mar 29 15:30:08 2009
+++ OpenGL/__init__.py Wed Jul 20 16:42:50 2011
@@ -115,6 +115,8 @@ from OpenGL.plugins import PlatformPlugin, FormatHandl
PlatformPlugin( 'nt', 'OpenGL.platform.win32.Win32Platform' )
PlatformPlugin( 'posix ', 'OpenGL.platform.glx.GLXPlatform' )
PlatformPlugin( 'linux2', 'OpenGL.platform.glx.GLXPlatform' )
+PlatformPlugin( 'openbsd4', 'OpenGL.platform.glx.GLXPlatform' )
+PlatformPlugin( 'openbsd5', 'OpenGL.platform.glx.GLXPlatform' )
PlatformPlugin( 'darwin', 'OpenGL.platform.darwin.DarwinPlatform' )
FormatHandler( 'none', 'OpenGL.arrays.nones.NoneHandler' )