From owner-svn-ports-head@freebsd.org Fri Dec 2 15:26:33 2016 Return-Path: Delivered-To: svn-ports-head@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 66AD4C63631; Fri, 2 Dec 2016 15:26:33 +0000 (UTC) (envelope-from martymac@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 35F7D1C98; Fri, 2 Dec 2016 15:26:33 +0000 (UTC) (envelope-from martymac@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uB2FQWBs079276; Fri, 2 Dec 2016 15:26:32 GMT (envelope-from martymac@FreeBSD.org) Received: (from martymac@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uB2FQWDH079275; Fri, 2 Dec 2016 15:26:32 GMT (envelope-from martymac@FreeBSD.org) Message-Id: <201612021526.uB2FQWDH079275@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: martymac set sender to martymac@FreeBSD.org using -f From: Ganael LAPLANCHE Date: Fri, 2 Dec 2016 15:26:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r427565 - head/emulators/dolphin-emu X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Dec 2016 15:26:33 -0000 Author: martymac Date: Fri Dec 2 15:26:32 2016 New Revision: 427565 URL: https://svnweb.freebsd.org/changeset/ports/427565 Log: Use gtest from ports instead of Externals/ Reported by: jbeich Modified: head/emulators/dolphin-emu/Makefile Modified: head/emulators/dolphin-emu/Makefile ============================================================================== --- head/emulators/dolphin-emu/Makefile Fri Dec 2 15:20:46 2016 (r427564) +++ head/emulators/dolphin-emu/Makefile Fri Dec 2 15:26:32 2016 (r427565) @@ -3,6 +3,7 @@ PORTNAME= dolphin-emu PORTVERSION= 5.0 +PORTREVISION= 1 CATEGORIES= emulators MAINTAINER= martymac@FreeBSD.org @@ -13,7 +14,7 @@ LICENSE_FILE= ${WRKSRC}/license.txt # Notes on dependencies: # - keep enet from Externals as Dolphin's version diverges -# - xxhash, SOIL and gtest are not (yet?) in ports and built from Externals +# - xxhash and SOIL are not (yet?) in ports and built from Externals # - skip ALSA (emulated), ao (buggy) and bluez support LIB_DEPENDS= libpulse.so:audio/pulseaudio \ libavcodec.so:multimedia/ffmpeg \ @@ -27,7 +28,8 @@ LIB_DEPENDS= libpulse.so:audio/pulseaudi libsfml-system.so:devel/sfml \ libminiupnpc.so:net/miniupnpc \ libmbedtls.so:security/mbedtls \ - libcurl.so:ftp/curl + libcurl.so:ftp/curl \ + libgtest.so:devel/googletest USE_GITHUB= yes GH_PROJECT= dolphin @@ -43,6 +45,7 @@ USES= cmake compiler:c++11-lib iconv op CMAKE_ARGS+= -DTRY_X11:BOOL=ON \ -DUSE_UPNP:BOOL=ON \ -DDISABLE_WX:BOOL=OFF \ + -DUSE_SHARED_GTEST:BOOL=ON \ -DENABLE_PCH:BOOL=OFF \ -DCMAKE_REQUIRED_INCLUDES:PATH="${LOCALBASE}/include" \ -DCMAKE_REQUIRED_FLAGS:STRING="-L${LOCALBASE}/lib" \