1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-24 00:45:52 +00:00

This set of C (Cython) extensions provides acceleration of common

operations for slow points in PyOpenGL 3.x.

WWW: http://pyopengl.sourceforge.net/
This commit is contained in:
Jung-uk Kim 2015-06-10 17:11:11 +00:00
parent bd8572b5a0
commit 4c66c93dd4
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=389079
4 changed files with 28 additions and 0 deletions

View File

@ -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

View File

@ -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>

View File

@ -0,0 +1,2 @@
SHA256 (PyOpenGL-accelerate-3.0.1.tar.gz) = 51bc771fd2fc9fc0acec5caf4dc3bd0739127eec4addc04baca545f8c3fe17cd
SIZE (PyOpenGL-accelerate-3.0.1.tar.gz) = 194056

View File

@ -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/