From owner-svn-ports-all@freebsd.org Thu Mar 12 19:25:05 2020 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 1425B26948D; Thu, 12 Mar 2020 19:25:05 +0000 (UTC) (envelope-from tcberner@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 48df0w4hDYz4R5w; Thu, 12 Mar 2020 19:25:04 +0000 (UTC) (envelope-from tcberner@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 627922A09F; Thu, 12 Mar 2020 19:25:04 +0000 (UTC) (envelope-from tcberner@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 02CJP4gg028268; Thu, 12 Mar 2020 19:25:04 GMT (envelope-from tcberner@FreeBSD.org) Received: (from tcberner@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 02CJP3hJ028266; Thu, 12 Mar 2020 19:25:03 GMT (envelope-from tcberner@FreeBSD.org) Message-Id: <202003121925.02CJP3hJ028266@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tcberner set sender to tcberner@FreeBSD.org using -f From: "Tobias C. Berner" Date: Thu, 12 Mar 2020 19:25:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r528315 - in head/multimedia/handbrake: . files X-SVN-Group: ports-head X-SVN-Commit-Author: tcberner X-SVN-Commit-Paths: in head/multimedia/handbrake: . files X-SVN-Commit-Revision: 528315 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Mar 2020 19:25:05 -0000 Author: tcberner Date: Thu Mar 12 19:25:03 2020 New Revision: 528315 URL: https://svnweb.freebsd.org/changeset/ports/528315 Log: multimedia/handbrake: Fails to build against ffmpeg with DAV1D=off PR: 244432 Submitted by: Yuichiro NAITO (maintainer) Reported by: Steve Peurifoy Added: head/multimedia/handbrake/files/A01-src-meson-build.patch (contents, props changed) Modified: head/multimedia/handbrake/Makefile Modified: head/multimedia/handbrake/Makefile ============================================================================== --- head/multimedia/handbrake/Makefile Thu Mar 12 19:21:23 2020 (r528314) +++ head/multimedia/handbrake/Makefile Thu Mar 12 19:25:03 2020 (r528315) @@ -124,6 +124,8 @@ post-extract: .SILENT # for powerpc64. # picked from multimedia/ffmpeg/files/patch-libswscale_ppc_swscale__altivec.c ${CP} ${FILESDIR}/P02-freebsd-ppc-libswscale.patch ${WRKSRC}/contrib/ffmpeg +# fix pkgconfig directory name for meson build + ${CP} ${FILESDIR}/A01-src-meson-build.patch ${WRKSRC}/contrib/libdav1d post-install-X11-on: ${LN} -sf ghb ${STAGEDIR}${PREFIX}/bin/HandBrake Added: head/multimedia/handbrake/files/A01-src-meson-build.patch ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/handbrake/files/A01-src-meson-build.patch Thu Mar 12 19:25:03 2020 (r528315) @@ -0,0 +1,10 @@ +--- dav1d-0.5.1/src/meson.build.orig 2019-10-26 04:38:21.000000000 +0900 ++++ dav1d-0.5.1/src/meson.build 2020-02-27 16:48:19.664008000 +0900 +@@ -288,6 +288,7 @@ + # + pkg_mod = import('pkgconfig') + pkg_mod.generate(libraries: libdav1d, ++ install_dir: 'lib/pkgconfig', + version: meson.project_version(), + name: 'libdav1d', + filebase: 'dav1d',