From owner-svn-ports-all@freebsd.org Tue Sep 11 18:52:08 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B54A21099A65; Tue, 11 Sep 2018 18:52:08 +0000 (UTC) (envelope-from zeising@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 6BB42840D8; Tue, 11 Sep 2018 18:52:08 +0000 (UTC) (envelope-from zeising@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 66BF71BC57; Tue, 11 Sep 2018 18:52:08 +0000 (UTC) (envelope-from zeising@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w8BIq8RP003602; Tue, 11 Sep 2018 18:52:08 GMT (envelope-from zeising@FreeBSD.org) Received: (from zeising@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w8BIq8Ac003601; Tue, 11 Sep 2018 18:52:08 GMT (envelope-from zeising@FreeBSD.org) Message-Id: <201809111852.w8BIq8Ac003601@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: zeising set sender to zeising@FreeBSD.org using -f From: Niclas Zeising Date: Tue, 11 Sep 2018 18:52:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r479543 - head/Mk/Uses X-SVN-Group: ports-head X-SVN-Commit-Author: zeising X-SVN-Commit-Paths: head/Mk/Uses X-SVN-Commit-Revision: 479543 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Sep 2018 18:52:08 -0000 Author: zeising Date: Tue Sep 11 18:52:07 2018 New Revision: 479543 URL: https://svnweb.freebsd.org/changeset/ports/479543 Log: Sort alphabetically Modified: head/Mk/Uses/gl.mk Modified: head/Mk/Uses/gl.mk ============================================================================== --- head/Mk/Uses/gl.mk Tue Sep 11 18:47:07 2018 (r479542) +++ head/Mk/Uses/gl.mk Tue Sep 11 18:52:07 2018 (r479543) @@ -4,7 +4,7 @@ # # Feature: gl # Usage: USES=gl -# USE_GL=egl glesv2 glut glu glw gl +# USE_GL=egl gbm gl glesv2 glew glu glut glw # # USE_GL specifies which GL components to add as dependencies. # Not specifying USE_GL with USES=gl is an error. @@ -15,16 +15,16 @@ .if !defined(_INCLUDE_USES_GL_MK) _INCLUDE_USES_GL_MK=yes -_GL_gbm_LIB_DEPENDS= libgbm.so:graphics/mesa-libs -_GL_glesv2_LIB_DEPENDS= libGLESv2.so:graphics/mesa-libs _GL_egl_LIB_DEPENDS= libEGL.so:graphics/mesa-libs +_GL_gbm_LIB_DEPENDS= libgbm.so:graphics/mesa-libs _GL_gl_LIB_DEPENDS= libGL.so:graphics/mesa-libs _GL_gl_USE_XORG= xorgproto +_GL_glesv2_LIB_DEPENDS= libGLESv2.so:graphics/mesa-libs _GL_glew_LIB_DEPENDS= libGLEW.so:graphics/glew _GL_glu_LIB_DEPENDS= libGLU.so:graphics/libGLU _GL_glu_USE_XORG= xorgproto -_GL_glw_LIB_DEPENDS= libGLw.so:graphics/libGLw _GL_glut_LIB_DEPENDS= libglut.so:graphics/freeglut +_GL_glw_LIB_DEPENDS= libGLw.so:graphics/libGLw .if !empty(gl_ARGS) IGNORE= USES=gl takes no arguments