From owner-svn-ports-all@freebsd.org Thu Sep 15 16:16:24 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 65E20BDCB52; Thu, 15 Sep 2016 16:16:24 +0000 (UTC) (envelope-from marino@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 mx1.freebsd.org (Postfix) with ESMTPS id 0FB71104C; Thu, 15 Sep 2016 16:16:23 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8FGGNxF055168; Thu, 15 Sep 2016 16:16:23 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8FGGNGr055165; Thu, 15 Sep 2016 16:16:23 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609151616.u8FGGNGr055165@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Thu, 15 Sep 2016 16:16:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422214 - in head: graphics/dri graphics/libosmesa lang/clover X-SVN-Group: ports-head 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.23 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: Thu, 15 Sep 2016 16:16:24 -0000 Author: marino Date: Thu Sep 15 16:16:22 2016 New Revision: 422214 URL: https://svnweb.freebsd.org/changeset/ports/422214 Log: Add USES+=ssl to 3 of 8 graphics/libGL/Makefile.common consumers Despite having a configure argument of --with-sha1=libcrypto, only three of the eight users of graphics/libGL/Makefile.common actually link to SSL libraries. Individually add USES=ssl to these three ports rather than have all 8 having this requirement. Approved by: SSL blanket Modified: head/graphics/dri/Makefile head/graphics/libosmesa/Makefile head/lang/clover/Makefile Modified: head/graphics/dri/Makefile ============================================================================== --- head/graphics/dri/Makefile Thu Sep 15 16:03:44 2016 (r422213) +++ head/graphics/dri/Makefile Thu Sep 15 16:16:22 2016 (r422214) @@ -11,6 +11,7 @@ COMMENT= OpenGL hardware acceleration dr LIB_DEPENDS= libdrm.so:graphics/libdrm \ libexpat.so:textproc/expat2 +USES= ssl USE_XORG= glproto x11 xext xxf86vm xdamage xfixes dri2proto \ presentproto xvmc xshmfence Modified: head/graphics/libosmesa/Makefile ============================================================================== --- head/graphics/libosmesa/Makefile Thu Sep 15 16:03:44 2016 (r422213) +++ head/graphics/libosmesa/Makefile Thu Sep 15 16:16:22 2016 (r422214) @@ -11,6 +11,7 @@ COMMENT= Off-Screen Mesa implementation LIB_DEPENDS= libexpat.so:textproc/expat2 \ libglapi.so:graphics/libglapi +USES= ssl USE_XORG= x11 xau xcb xdmcp xvmc # libosmesa doesn't link agains libGL but osmesa.h needs GL/gl.h # and both headers are intalled by libGL .... Modified: head/lang/clover/Makefile ============================================================================== --- head/lang/clover/Makefile Thu Sep 15 16:03:44 2016 (r422213) +++ head/lang/clover/Makefile Thu Sep 15 16:16:22 2016 (r422214) @@ -13,6 +13,7 @@ LIB_DEPENDS= libdrm.so:graphics/libdrm \ libexpat.so:textproc/expat2 RUN_DEPENDS= opencl>=0:devel/opencl +USES= ssl USE_XORG= glproto x11 xext xxf86vm xdamage xfixes dri2proto \ presentproto xvmc xshmfence