From owner-svn-ports-all@freebsd.org Mon Mar 14 21:21:45 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 0FF15AD19F6; Mon, 14 Mar 2016 21:21:45 +0000 (UTC) (envelope-from rakuco@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 B572D955; Mon, 14 Mar 2016 21:21:44 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u2ELLhZ4034078; Mon, 14 Mar 2016 21:21:43 GMT (envelope-from rakuco@FreeBSD.org) Received: (from rakuco@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u2ELLh1Z034077; Mon, 14 Mar 2016 21:21:43 GMT (envelope-from rakuco@FreeBSD.org) Message-Id: <201603142121.u2ELLh1Z034077@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rakuco set sender to rakuco@FreeBSD.org using -f From: Raphael Kubo da Costa Date: Mon, 14 Mar 2016 21:21:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r411115 - head/x11/virtualgl 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.21 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: Mon, 14 Mar 2016 21:21:45 -0000 Author: rakuco Date: Mon Mar 14 21:21:43 2016 New Revision: 411115 URL: https://svnweb.freebsd.org/changeset/ports/411115 Log: Reduce number of dependencies, add SSL option. - Drop dependencies, that are not from ${WRKSRC}/BUILDING.txt. - Add optional OpenSSL support. - Turn (added) XVideo dependency into an option. - Drop obsolete comment (jpeg-turbo can be compiled for non-amd64/i386 architectures since r388256). - Bump PORTREVISION. PR: 203237 Submitted by: Andriy Voskoboinyk Approved by: maintainer timeout (175 days) Modified: head/x11/virtualgl/Makefile Modified: head/x11/virtualgl/Makefile ============================================================================== --- head/x11/virtualgl/Makefile Mon Mar 14 20:02:15 2016 (r411114) +++ head/x11/virtualgl/Makefile Mon Mar 14 21:21:43 2016 (r411115) @@ -3,6 +3,7 @@ PORTNAME= virtualgl PORTVERSION= 2.4.1 +PORTREVISION= 1 CATEGORIES= x11 graphics MASTER_SITES= SF/${PORTNAME}/${PORTVERSION} DISTNAME= VirtualGL-${PORTVERSION} @@ -10,13 +11,10 @@ DISTNAME= VirtualGL-${PORTVERSION} MAINTAINER= davidjx8p@gmail.com COMMENT= Redirects commands from an OpenGL app to another X server -LIB_DEPENDS= libdrm.so:${PORTSDIR}/graphics/libdrm \ - libfltk.so:${PORTSDIR}/x11-toolkits/fltk \ - libpthread-stubs.so:${PORTSDIR}/devel/libpthread-stubs \ +LIB_DEPENDS= libfltk.so:${PORTSDIR}/x11-toolkits/fltk \ libturbojpeg.so:${PORTSDIR}/graphics/libjpeg-turbo \ libxcb-keysyms.so:${PORTSDIR}/x11/xcb-util-keysyms -# due to the libjpeg-turbo requirement ONLY_FOR_ARCHS= amd64 i386 CMAKE_INSTALL_PREFIX= ${LOCALBASE}/VirtualGL @@ -24,13 +22,23 @@ DOCSDIR= ${LOCALBASE}/VirtualGL/doc USES= cmake compiler:c++11-lang USE_GL= gl glu -USE_XORG= x11 xau xcb xdamage xdmcp xext xfixes xxf86vm +USE_XORG= x11 xcb xext CMAKE_ARGS= -DTJPEG_INCLUDE_DIR=${LOCALBASE}/include\ -DTJPEG_LIBRARY=${LOCALBASE}/lib/libturbojpeg.so\ -DVGL_FAKEXCB=on -DVGL_SYSTEMFLTK=on -DVGL_SYSTEMGLX=on USE_LDCONFIG= ${PREFIX}/VirtualGL/fakelib ${PREFIX}/VirtualGL/lib LDFLAGS+= -L${LOCALBASE}/lib +OPTIONS_DEFINE= OPENSSL XVIDEO + +OPENSSL_CMAKE_ON= -DVGL_USESSL:BOOL=ON +OPENSSL_CMAKE_OFF= -DVGL_USESSL:BOOL=OFF +OPENSSL_USE= OPENSSL=yes + +XVIDEO_CMAKE_ON= -DVGL_USEXV:BOOL=ON +XVIDEO_CMAKE_OFF= -DVGL_USEXV:BOOL=OFF +XVIDEO_USE= XORG=xv + .include .if ${ARCH} == "i386"