Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 2 Dec 2016 15:26:32 +0000 (UTC)
From:      Ganael LAPLANCHE <martymac@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r427565 - head/emulators/dolphin-emu
Message-ID:  <201612021526.uB2FQWDH079275@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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" \



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201612021526.uB2FQWDH079275>