Ticket #11781: Portfile

File Portfile, 1.2 KB (added by giulio.eulisse@…, 17 years ago)

The portfile

Line 
1# $Id: Portfile 20443 2006-11-03 02:55:29Z jberry@macports.org $
2
3PortSystem              1.0
4PortGroup               python24 1.0
5
6name                    py-glewpy
7version                 0.7.4
8revision                2
9maintainers             nomaintainer@macports.org
10description             Python bindings for GLEW (OpenGL Extension Wrangler)
11long_description        GLEWpy aims to bring advanced OpenGL extensions to Python. \
12                        This will allow the Python OpenGL developer to use features such as \
13                        fragment and vertex shaders and image processing on the GPU. \
14                        It serves as a compliment to PyOpenGL and toolkits such as \
15                        GLUT and SDL (pygame).
16categories-append       graphics
17platforms               darwin freebsd
18homepage                http://glewpy.sourceforge.net/
19master_sites            http://ovh.dl.sourceforge.net/sourceforge/glewpy/
20distname                glewpy-${version}
21checksums               md5 3d2aae86aae328ab60897915bf9530fc
22patchfiles              patch-setup.py
23
24depends_lib-append      port:glew \
25                        port:py-pyrex
26
27post-destroot {
28        xinstall -d -m 0755 ${destroot}${prefix}/share/doc/${name}
29}