svn commit: r331154 - in head/emulators/dolphin-emu: . files

William Grzybowski wg at FreeBSD.org
Mon Oct 21 16:23:23 UTC 2013


Author: wg
Date: Mon Oct 21 16:23:22 2013
New Revision: 331154
URL: http://svnweb.freebsd.org/changeset/ports/331154

Log:
  emulators/dolphin-emu: link against ffmpeg
  
  - Link against ffmpeg instead of ffmpeg1
  
  Approved by:	portmgr (bapt, implicit)

Deleted:
  head/emulators/dolphin-emu/files/patch-CMakeTests-CheckLib.cmake
Modified:
  head/emulators/dolphin-emu/Makefile

Modified: head/emulators/dolphin-emu/Makefile
==============================================================================
--- head/emulators/dolphin-emu/Makefile	Mon Oct 21 16:20:56 2013	(r331153)
+++ head/emulators/dolphin-emu/Makefile	Mon Oct 21 16:23:22 2013	(r331154)
@@ -3,6 +3,7 @@
 
 PORTNAME=	dolphin-emu
 PORTVERSION=	4.0.0
+PORTREVISION=	1
 CATEGORIES=	emulators
 MASTER_SITES=	http://contribs.martymac.org/FreeBSD-ports/distfiles/ \
 		LOCAL/martymac
@@ -79,10 +80,10 @@ CMAKE_ARGS+=	-DDISABLE_PORTAUDIO:BOOL=ON
 
 .if ${PORT_OPTIONS:MFRAMEDUMPS}
 CMAKE_ARGS+=	-DENCODE_FRAMEDUMPS:BOOL=ON
-LIB_DEPENDS+=	libavcodec1.so:${PORTSDIR}/multimedia/ffmpeg1 \
-		libavformat1.so:${PORTSDIR}/multimedia/ffmpeg1 \
-		libswscale1.so:${PORTSDIR}/multimedia/ffmpeg1 \
-		libavutil1.so:${PORTSDIR}/multimedia/ffmpeg1
+LIB_DEPENDS+=	libavcodec.so:${PORTSDIR}/multimedia/ffmpeg \
+		libavformat.so:${PORTSDIR}/multimedia/ffmpeg \
+		libswscale.so:${PORTSDIR}/multimedia/ffmpeg \
+		libavutil.so:${PORTSDIR}/multimedia/ffmpeg
 .else
 CMAKE_ARGS+=	-DENCODE_FRAMEDUMPS:BOOL=OFF
 .endif


More information about the svn-ports-all mailing list