From owner-svn-ports-head@freebsd.org Thu Dec 13 21:28:17 2018 Return-Path: Delivered-To: svn-ports-head@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 0D03813350E2; Thu, 13 Dec 2018 21:28:17 +0000 (UTC) (envelope-from martymac@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id A424F73169; Thu, 13 Dec 2018 21:28:16 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 957172586F; Thu, 13 Dec 2018 21:28:16 +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 wBDLSGUw042310; Thu, 13 Dec 2018 21:28:16 GMT (envelope-from martymac@FreeBSD.org) Received: (from martymac@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id wBDLSGeU042308; Thu, 13 Dec 2018 21:28:16 GMT (envelope-from martymac@FreeBSD.org) Message-Id: <201812132128.wBDLSGeU042308@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: martymac set sender to martymac@FreeBSD.org using -f From: Ganael LAPLANCHE Date: Thu, 13 Dec 2018 21:28:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r487390 - in head/emulators/dolphin-emu: . files X-SVN-Group: ports-head X-SVN-Commit-Author: martymac X-SVN-Commit-Paths: in head/emulators/dolphin-emu: . files X-SVN-Commit-Revision: 487390 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: A424F73169 X-Spamd-Bar: - Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-1.25 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-0.82)[-0.825,0]; NEURAL_HAM_SHORT(-0.43)[-0.425,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 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: Thu, 13 Dec 2018 21:28:17 -0000 Author: martymac Date: Thu Dec 13 21:28:15 2018 New Revision: 487390 URL: https://svnweb.freebsd.org/changeset/ports/487390 Log: Update to 5.0.9209 and re-enable SDL support Modified: head/emulators/dolphin-emu/Makefile head/emulators/dolphin-emu/distinfo head/emulators/dolphin-emu/files/patch-CMakeLists.txt Modified: head/emulators/dolphin-emu/Makefile ============================================================================== --- head/emulators/dolphin-emu/Makefile Thu Dec 13 21:18:32 2018 (r487389) +++ head/emulators/dolphin-emu/Makefile Thu Dec 13 21:28:15 2018 (r487390) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= dolphin-emu -PORTVERSION= 5.0.8715 -PORTREVISION= 2 +PORTVERSION= 5.0.9209 CATEGORIES= emulators MAINTAINER= martymac@FreeBSD.org @@ -20,8 +19,6 @@ LICENSE_FILE= ${WRKSRC}/license.txt # - xxhash comes from Externals/ as it cannot be properly detected yet # - gtest detection is missing (Externals/ version enforced by CMakeLists.txt) # - cubeb comes from Externals/ as it is not available from ports yet -# - sdl2 support is buggy and leads to an infinite wait when Dolphin starts: -# ciface::SDL::PopulateDevices () at Source/Core/InputCommon/ControllerInterface/SDL/SDL.cpp:177 LIB_DEPENDS= libpulse.so:audio/pulseaudio \ libavcodec.so:multimedia/ffmpeg \ libavdevice.so:multimedia/ffmpeg \ @@ -46,9 +43,10 @@ USES= cmake compiler:c++17-lang desktop-file-utils gl USE_GITHUB= yes GH_PROJECT= dolphin -GH_TAGNAME= 5f0d825 +GH_TAGNAME= 2dcd058 USE_GL= gl glew glu +USE_SDL= sdl2 USE_XORG= ice sm x11 xext xi xrandr USE_QT= buildtools_build core gui widgets @@ -58,7 +56,6 @@ CMAKE_ARGS+= -DTRY_X11:BOOL=ON \ -DENABLE_ALSA:BOOL=OFF \ -DENABLE_PULSEAUDIO:BOOL=ON \ -DUSE_DISCORD_PRESENCE:BOOL=OFF \ - -DENABLE_SDL:BOOL=OFF \ -DCMAKE_REQUIRED_INCLUDES:PATH="${LOCALBASE}/include" \ -DCMAKE_REQUIRED_FLAGS:STRING="-L${LOCALBASE}/lib" MAKE_ENV+= DESTDIR="${STAGEDIR}" Modified: head/emulators/dolphin-emu/distinfo ============================================================================== --- head/emulators/dolphin-emu/distinfo Thu Dec 13 21:18:32 2018 (r487389) +++ head/emulators/dolphin-emu/distinfo Thu Dec 13 21:28:15 2018 (r487390) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536610912 -SHA256 (dolphin-emu-dolphin-5.0.8715-5f0d825_GH0.tar.gz) = d9cfc6b3ab5aeccfae8e78569580621c6a959291fea8c5e62dee7b0ca9c60cbd -SIZE (dolphin-emu-dolphin-5.0.8715-5f0d825_GH0.tar.gz) = 36775798 +TIMESTAMP = 1544740825 +SHA256 (dolphin-emu-dolphin-5.0.9209-2dcd058_GH0.tar.gz) = 5958e6f524420aa39ca3e1073f4dac190b9b96f201892675b225aef8533eded8 +SIZE (dolphin-emu-dolphin-5.0.9209-2dcd058_GH0.tar.gz) = 38095095 Modified: head/emulators/dolphin-emu/files/patch-CMakeLists.txt ============================================================================== --- head/emulators/dolphin-emu/files/patch-CMakeLists.txt Thu Dec 13 21:18:32 2018 (r487389) +++ head/emulators/dolphin-emu/files/patch-CMakeLists.txt Thu Dec 13 21:28:15 2018 (r487390) @@ -1,11 +1,11 @@ ---- CMakeLists.txt.orig 2018-09-17 22:39:14.470717000 +0200 -+++ CMakeLists.txt 2018-09-17 22:39:47.456106000 +0200 -@@ -92,7 +92,7 @@ - set(mandir ${CMAKE_INSTALL_PREFIX}/documentation/man CACHE PATH "mandir") - else() - set(datadir ${CMAKE_INSTALL_PREFIX}/share/dolphin-emu CACHE PATH "datadir") -- set(mandir ${CMAKE_INSTALL_PREFIX}/share/man CACHE PATH "mandir") -+ set(mandir ${CMAKE_INSTALL_PREFIX}/man CACHE PATH "mandir") - endif() +--- CMakeLists.txt.orig 2018-12-13 21:39:07.971867000 +0100 ++++ CMakeLists.txt 2018-12-13 21:39:46.807545000 +0100 +@@ -93,7 +93,7 @@ + # Set up paths + set(bindir ${CMAKE_INSTALL_PREFIX}/bin CACHE PATH "bindir") + set(datadir ${CMAKE_INSTALL_PREFIX}/share/dolphin-emu CACHE PATH "datadir") +-set(mandir ${CMAKE_INSTALL_PREFIX}/share/man CACHE PATH "mandir") ++set(mandir ${CMAKE_INSTALL_PREFIX}/man CACHE PATH "mandir") add_definitions(-DDATA_DIR="${datadir}/") + if(CMAKE_SYSROOT)