diff options
author | gahr <gahr@FreeBSD.org> | 2010-04-28 05:58:27 +0800 |
---|---|---|
committer | gahr <gahr@FreeBSD.org> | 2010-04-28 05:58:27 +0800 |
commit | 5a71031394b0a0b65d9d5aece3362619c2d1169f (patch) | |
tree | abb9c1dc1cedf9be9c56cba34f1ca9ae07bd6108 /Mk | |
parent | 2b15c1b3a344354d1bb987c4199ab8c4e1cb3c88 (diff) | |
download | freebsd-ports-gnome-5a71031394b0a0b65d9d5aece3362619c2d1169f.tar.gz freebsd-ports-gnome-5a71031394b0a0b65d9d5aece3362619c2d1169f.tar.zst freebsd-ports-gnome-5a71031394b0a0b65d9d5aece3362619c2d1169f.zip |
- Add glew to the list of supported USE_GL variables
- Patch ports depending on GLEW directly
Approved by: portmgr (pav)
Diffstat (limited to 'Mk')
-rw-r--r-- | Mk/bsd.port.mk | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Mk/bsd.port.mk b/Mk/bsd.port.mk index 0edfa18ef189..d10445319efa 100644 --- a/Mk/bsd.port.mk +++ b/Mk/bsd.port.mk @@ -383,7 +383,7 @@ FreeBSD_MAINTAINER= portmgr@FreeBSD.org # USE_GL - A list of Mesa or GL related dependencies needed by the port. # Supported components are: glut, glu, glw, gl and linux. # If set to "yes", this is equivalent to "glu". Note that -# glut depends on glu, glw and glu depend on gl. +# glew and glut depend on glu, glw and glu depend on gl. # USE_MOTIF - If set, this port uses a Motif toolkit. Implies USE_XORG+= xpm # NO_OPENMOTIF - If set, this port uses a custom Motif toolkit # instead of Openmotif. @@ -1993,6 +1993,7 @@ PKG_IGNORE_DEPENDS?= 'this_port_does_not_exist' PLIST_SUB+= XAWVER=${XAWVER} _GL_gl_LIB_DEPENDS= GL.1:${PORTSDIR}/graphics/libGL +_GL_glew_LIB_DEPENDS= GLEW.1:${PORTSDIR}/graphics/glew _GL_glu_LIB_DEPENDS= GLU.1:${PORTSDIR}/graphics/libGLU _GL_glw_LIB_DEPENDS= GLw.1:${PORTSDIR}/graphics/libGLw _GL_glut_LIB_DEPENDS= glut.3:${PORTSDIR}/graphics/libglut |