From 8c722cac797fc6ca88741d41a1cf8009a29400eb Mon Sep 17 00:00:00 2001 From: Niclas Zeising Date: Fri, 14 Sep 2018 19:04:25 +0000 Subject: [PATCH] Document USES=gl properly. Reviewed by: mat, bcr Differential Revision: https://reviews.freebsd.org/D17114 --- .../books/porters-handbook/uses/chapter.xml | 85 +++++++++++++++++++ 1 file changed, 85 insertions(+) diff --git a/en_US.ISO8859-1/books/porters-handbook/uses/chapter.xml b/en_US.ISO8859-1/books/porters-handbook/uses/chapter.xml index b9ffba1e05..6d41bbd79b 100644 --- a/en_US.ISO8859-1/books/porters-handbook/uses/chapter.xml +++ b/en_US.ISO8859-1/books/porters-handbook/uses/chapter.xml @@ -689,6 +689,91 @@ build- and run-time dependencies. + + <literal>gl</literal> + + Possible arguments: (none) + + Provides an easy way to depend on + GL components. The components + should be listed in USE_GL. The available + components are: + + + + egl + + + add a library dependency on libEGL.so + from graphics/mesai-libs + + + + + gbm + + + Add a library dependency on libgbm.so + from graphics/mesa-libs + + + + + gl + + + Add a library dependency on libGL.so + from graphics/mesa-libs + + + + + glesv2 + + + Add a library dependency on libGLESv2.so + from graphics/mesa-libs + + + + + glew + + + Add a library dependency on libGLEW.so + from graphics/glew + + + + + glu + + + Add a library dependency on libGLU.so + from graphics/libGLU + + + + + glut + + + Add a library dependency on libglut.so + from graphics/freeglut + + + + + glw + + + Add a library dependency on libGLw.so + from graphics/libGLw + + + + + <literal>gmake</literal>