Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 10 Jun 2015 17:11:12 +0000 (UTC)
From:      Jung-uk Kim <jkim@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r389079 - in head/graphics: . py-opengl-accelerate
Message-ID:  <201506101711.t5AHBCQl041948@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: jkim
Date: Wed Jun 10 17:11:11 2015
New Revision: 389079
URL: https://svnweb.freebsd.org/changeset/ports/389079

Log:
  This set of C (Cython) extensions provides acceleration of common
  operations for slow points in PyOpenGL 3.x.
  
  WWW: http://pyopengl.sourceforge.net/

Added:
  head/graphics/py-opengl-accelerate/
  head/graphics/py-opengl-accelerate/Makefile   (contents, props changed)
  head/graphics/py-opengl-accelerate/distinfo   (contents, props changed)
  head/graphics/py-opengl-accelerate/pkg-descr   (contents, props changed)
Modified:
  head/graphics/Makefile

Modified: head/graphics/Makefile
==============================================================================
--- head/graphics/Makefile	Wed Jun 10 17:03:39 2015	(r389078)
+++ head/graphics/Makefile	Wed Jun 10 17:11:11 2015	(r389079)
@@ -833,6 +833,7 @@
     SUBDIR += py-opencv
     SUBDIR += py-openexr
     SUBDIR += py-opengl
+    SUBDIR += py-opengl-accelerate
     SUBDIR += py-openimageio
     SUBDIR += py-paint
     SUBDIR += py-pillow

Added: head/graphics/py-opengl-accelerate/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/graphics/py-opengl-accelerate/Makefile	Wed Jun 10 17:11:11 2015	(r389079)
@@ -0,0 +1,21 @@
+# $FreeBSD$
+
+PORTNAME=	opengl
+PORTVERSION=	3.0.1
+CATEGORIES=	graphics python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+PKGNAMESUFFIX=	-accelerate
+DISTNAME=	PyOpenGL${PKGNAMESUFFIX}-${PORTVERSION}
+
+MAINTAINER=	ports@FreeBSD.org
+COMMENT=	OpenGL acceleration code for PyOpenGL
+
+LICENSE=	BSD3CLAUSE
+
+BUILD_DEPENDS=	cython:${PORTSDIR}/lang/cython
+
+USE_PYTHON=	autoplist distutils
+USES=		python
+
+.include <bsd.port.mk>

Added: head/graphics/py-opengl-accelerate/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/graphics/py-opengl-accelerate/distinfo	Wed Jun 10 17:11:11 2015	(r389079)
@@ -0,0 +1,2 @@
+SHA256 (PyOpenGL-accelerate-3.0.1.tar.gz) = 51bc771fd2fc9fc0acec5caf4dc3bd0739127eec4addc04baca545f8c3fe17cd
+SIZE (PyOpenGL-accelerate-3.0.1.tar.gz) = 194056

Added: head/graphics/py-opengl-accelerate/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/graphics/py-opengl-accelerate/pkg-descr	Wed Jun 10 17:11:11 2015	(r389079)
@@ -0,0 +1,4 @@
+This set of C (Cython) extensions provides acceleration of common
+operations for slow points in PyOpenGL 3.x.
+
+WWW: http://pyopengl.sourceforge.net/



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201506101711.t5AHBCQl041948>