From owner-svn-ports-head@FreeBSD.ORG Wed Jun 10 17:11:13 2015 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6457F7AE; Wed, 10 Jun 2015 17:11:13 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 38A9511DD; Wed, 10 Jun 2015 17:11:13 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t5AHBD7I041952; Wed, 10 Jun 2015 17:11:13 GMT (envelope-from jkim@FreeBSD.org) Received: (from jkim@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t5AHBCQl041948; Wed, 10 Jun 2015 17:11:12 GMT (envelope-from jkim@FreeBSD.org) Message-Id: <201506101711.t5AHBCQl041948@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: jkim set sender to jkim@FreeBSD.org using -f From: Jung-uk Kim Date: Wed, 10 Jun 2015 17:11:12 +0000 (UTC) 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 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Jun 2015 17:11:13 -0000 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 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/