Date: Sun, 5 Apr 2015 17:10:27 +0000 (UTC) From: Alexander Leidinger <netchild@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r383305 - head/multimedia/handbrake Message-ID: <201504051710.t35HARIt037543@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: netchild Date: Sun Apr 5 17:10:27 2015 New Revision: 383305 URL: https://svnweb.freebsd.org/changeset/ports/383305 Log: Add libvpx and x264 dependency: - the bundled ffmpeg seems to want to use it despite libvpx being disabled in the handbrake patches - x264 comes bundled, but there are reports it's needed as a dependency so that the port builds, so better safe than sorry This allows to build the port by hand (make install in the port directory). The BROKEN line stays in, seems those changes don't make poudriere happy. PR: 199126 Submitted by: w.schwarzenfeld@utanet.at Discussed with: olgeni Modified: head/multimedia/handbrake/Makefile Modified: head/multimedia/handbrake/Makefile ============================================================================== --- head/multimedia/handbrake/Makefile Sun Apr 5 17:09:52 2015 (r383304) +++ head/multimedia/handbrake/Makefile Sun Apr 5 17:10:27 2015 (r383305) @@ -42,7 +42,9 @@ LIB_DEPENDS= libfontconfig.so:${PORTSDIR libvorbisenc.so:${PORTSDIR}/audio/libvorbis \ libtheoradec.so:${PORTSDIR}/multimedia/libtheora \ libtheoraenc.so:${PORTSDIR}/multimedia/libtheora \ - libsamplerate.so:${PORTSDIR}/audio/libsamplerate + libsamplerate.so:${PORTSDIR}/audio/libsamplerate \ + libvpx.so:${PORTSDIR}/multimedia/libvpx \ + libx264.so:${PORTSDIR}/multimedia/libx264 .if !defined(PACKAGE_BUILDING) # DVDCSS version hardcoded in contrib/libdvdread/libdvdread/src/dvd_input.c (dlopen'ed) LIB_DEPENDS+= libdvdcss.so.2:${PORTSDIR}/multimedia/libdvdcss
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201504051710.t35HARIt037543>