diff options
author | martymac <martymac@FreeBSD.org> | 2012-09-20 22:15:11 +0800 |
---|---|---|
committer | martymac <martymac@FreeBSD.org> | 2012-09-20 22:15:11 +0800 |
commit | ed8df9fe3a362b2602ebfeab93b6fa441433be35 (patch) | |
tree | d85962093067da1c14690c5bf616ef4afc7919ab /emulators/dolphin-emu-devel | |
parent | 4505623f9b007f5438aa2e397afdce45d340b2fb (diff) | |
download | freebsd-ports-gnome-ed8df9fe3a362b2602ebfeab93b6fa441433be35.tar.gz freebsd-ports-gnome-ed8df9fe3a362b2602ebfeab93b6fa441433be35.tar.zst freebsd-ports-gnome-ed8df9fe3a362b2602ebfeab93b6fa441433be35.zip |
Really force ENCODE_FRAMEDUMPS to OFF (forgotten in previous commit) and remove
dependency to multimedia/ffmpeg
Diffstat (limited to 'emulators/dolphin-emu-devel')
-rw-r--r-- | emulators/dolphin-emu-devel/Makefile | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/emulators/dolphin-emu-devel/Makefile b/emulators/dolphin-emu-devel/Makefile index d9ff014128dd..bb1cf0b9c69c 100644 --- a/emulators/dolphin-emu-devel/Makefile +++ b/emulators/dolphin-emu-devel/Makefile @@ -7,6 +7,7 @@ PORTNAME= dolphin-emu PORTVERSION= 3.0.r${REVDATE} +PORTREVISION= 1 CATEGORIES= emulators MASTER_SITES= http://contribs.martymac.org/FreeBSD-ports/distfiles/ \ LOCAL/martymac @@ -18,8 +19,7 @@ COMMENT= Gamecube and Wii Emulator LICENSE= GPLv2 -LIB_DEPENDS= avformat:${PORTSDIR}/multimedia/ffmpeg \ - execinfo:${PORTSDIR}/devel/libexecinfo \ +LIB_DEPENDS= execinfo:${PORTSDIR}/devel/libexecinfo \ freetype:${PORTSDIR}/print/freetype2 \ lzo2:${PORTSDIR}/archivers/lzo2 \ sfml-network:${PORTSDIR}/devel/sfml @@ -46,13 +46,13 @@ USE_GCC= 4.6+ USE_CMAKE= yes CMAKE_BUILD_TYPE= Release # Disable ao (seems buggy) and ALSA (emulated) -# XXX ENCODE_FRAMEDUMPS is activated but will fail detecting required libs -# (libavcodec, libavformat, libswscale, libavutil) as our version of ffmpeg is currently -# too old +# XXX ENCODE_FRAMEDUMPS is disabled because it will fail detecting required +# libs (libavcodec, libavformat, libswscale, libavutil) as our version of +# ffmpeg is currently too old CMAKE_ARGS+= -DDISABLE_AO:BOOL=ON \ -DDISABLE_ALSA:BOOL=ON \ -DDISABLE_BLUEZ:BOOL=ON \ - -DENCODE_FRAMEDUMPS:BOOL=ON \ + -DENCODE_FRAMEDUMPS:BOOL=OFF \ -DCMAKE_INSTALL_RPATH_USE_LINK_PATH:BOOL=ON SUB_FILES= pkg-message |