svn commit: r492206 - in head/graphics: . py-glfw
Tobias Kortkamp
tobik at FreeBSD.org
Tue Feb 5 12:58:00 UTC 2019
Author: tobik
Date: Tue Feb 5 12:57:58 2019
New Revision: 492206
URL: https://svnweb.freebsd.org/changeset/ports/492206
Log:
New port: graphics/py-glfw
pyGLFW provides Python bindings for GLFW. It is a ctypes wrapper
which aims to be very close to the original GLFW API.
WWW: https://github.com/FlorianRhiem/pyGLFW
PR: 230424
Submitted by: neel at neelc.org
Reviewed by: koobs
Added:
head/graphics/py-glfw/
head/graphics/py-glfw/Makefile (contents, props changed)
head/graphics/py-glfw/distinfo (contents, props changed)
head/graphics/py-glfw/pkg-descr (contents, props changed)
Modified:
head/graphics/Makefile
Modified: head/graphics/Makefile
==============================================================================
--- head/graphics/Makefile Tue Feb 5 12:52:03 2019 (r492205)
+++ head/graphics/Makefile Tue Feb 5 12:57:58 2019 (r492206)
@@ -836,6 +836,7 @@
SUBDIR += py-gimp
SUBDIR += py-gizeh
SUBDIR += py-glewpy
+ SUBDIR += py-glfw
SUBDIR += py-goocanvas
SUBDIR += py-gphoto2
SUBDIR += py-graph-core
Added: head/graphics/py-glfw/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/graphics/py-glfw/Makefile Tue Feb 5 12:57:58 2019 (r492206)
@@ -0,0 +1,22 @@
+# $FreeBSD$
+
+PORTNAME= glfw
+PORTVERSION= 1.7.1
+CATEGORIES= graphics python
+MASTER_SITES= CHEESESHOP
+PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER= neel at neelc.org
+COMMENT= Ctypes-based wrapper for GLFW3
+
+LICENSE= MIT
+LICENSE_FILE= ${WRKSRC}/LICENSE.txt
+
+LIB_DEPENDS= libglfw.so:graphics/glfw
+
+USES= python
+USE_PYTHON= autoplist distutils
+
+NO_ARCH= yes
+
+.include <bsd.port.mk>
Added: head/graphics/py-glfw/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/graphics/py-glfw/distinfo Tue Feb 5 12:57:58 2019 (r492206)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1549307581
+SHA256 (glfw-1.7.1.tar.gz) = 51e2539e0e39eac124f47e4e032f817cd87b0d4f4836b65b90925e66adeb514d
+SIZE (glfw-1.7.1.tar.gz) = 19502
Added: head/graphics/py-glfw/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/graphics/py-glfw/pkg-descr Tue Feb 5 12:57:58 2019 (r492206)
@@ -0,0 +1,4 @@
+pyGLFW provides Python bindings for GLFW. It is a ctypes wrapper
+which aims to be very close to the original GLFW API.
+
+WWW: https://github.com/FlorianRhiem/pyGLFW
More information about the svn-ports-head
mailing list