From owner-svn-ports-all@freebsd.org Mon Jan 6 22:39:15 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 573D91F813E; Mon, 6 Jan 2020 22:39:15 +0000 (UTC) (envelope-from jbeich@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 47s9RR1h0dz4LT8; Mon, 6 Jan 2020 22:39:15 +0000 (UTC) (envelope-from jbeich@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 34EB41D576; Mon, 6 Jan 2020 22:39:15 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 006MdFbo020453; Mon, 6 Jan 2020 22:39:15 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 006MdEDt020433; Mon, 6 Jan 2020 22:39:14 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <202001062239.006MdEDt020433@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Mon, 6 Jan 2020 22:39:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r522293 - head/multimedia/libvpx X-SVN-Group: ports-head X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: head/multimedia/libvpx X-SVN-Commit-Revision: 522293 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: Mon, 06 Jan 2020 22:39:15 -0000 Author: jbeich Date: Mon Jan 6 22:39:14 2020 New Revision: 522293 URL: https://svnweb.freebsd.org/changeset/ports/522293 Log: multimedia/libvpx: kill all options None of the consumers were tested with non-default options. As there're no additional dependencies users are better off with Makefile.local which provides access to more e.g. --enable-better-hw-compatibility --enable-onthefly-bitpacking --enable-error-concealment --enable-coefficient-range-checking --enable-postproc-visualizer Similar to multimedia/aom this reduces maintenance. Modified: head/multimedia/libvpx/Makefile (contents, props changed) head/multimedia/libvpx/pkg-plist (contents, props changed) Modified: head/multimedia/libvpx/Makefile ============================================================================== --- head/multimedia/libvpx/Makefile Mon Jan 6 22:39:14 2020 (r522292) +++ head/multimedia/libvpx/Makefile Mon Jan 6 22:39:14 2020 (r522293) @@ -27,40 +27,17 @@ SHEBANG_FILES= build/make/ads2gas.pl CONFIGURE_ARGS= --prefix=${PREFIX} \ --disable-install-docs \ --disable-install-srcs \ - --enable-pic + --disable-unit-tests \ + --enable-multi-res-encoding \ + --enable-pic \ + --enable-shared \ + --enable-vp9-highbitdepth \ + --enable-vp9-postproc \ + --enable-vp9-temporal-denoising \ + --size-limit=16384x16384 MAKE_ARGS+= verbose=yes ALL_TARGET= # empty -OPTIONS_DEFINE= DEBUG HI10P MULTIRES POSTPROC RTCPU SHARED SIZE_LIMIT TEST THREADS -OPTIONS_DEFAULT=HI10P MULTIRES POSTPROC RTCPU SHARED SIZE_LIMIT THREADS -OPTIONS_EXCLUDE_powerpcspe=RTCPU -OPTIONS_SUB= yes - -DEBUG_CONFIGURE_ENABLE= debug - -HI10P_DESC= VP9 high bit depth (10/12) profiles -HI10P_CONFIGURE_ENABLE= vp9-highbitdepth - -MULTIRES_DESC= Enable multi-resolution encoding -MULTIRES_CONFIGURE_ENABLE= multi-res-encoding - -POSTPROC_DESC= Enable postprocessing -POSTPROC_CONFIGURE_ENABLE= postproc vp9-postproc vp9-temporal-denoising - -RTCPU_DESC= Detect CPU capabilities at runtime -RTCPU_CONFIGURE_ENABLE= runtime-cpu-detect - -SHARED_DESC= Enable shared-library support -SHARED_CONFIGURE_ENABLE=shared - -SIZE_LIMIT_DESC= Maximum size allowed by decoder: ${SIZE_LIMIT} -SIZE_LIMIT_CONFIGURE_ON=--size-limit=${SIZE_LIMIT} -SIZE_LIMIT?= 16384x16384 # Chromium; Firefox has 8192x4608 - -TEST_CONFIGURE_ENABLE= unit-tests - -THREADS_CONFIGURE_ENABLE= multithread - post-patch: @${REINPLACE_CMD} -E '/gcctarget|link_with_cc/s/gcc[[:>:]]/$${CC}/' \ ${WRKSRC}/build/make/configure.sh @@ -70,8 +47,6 @@ post-patch: post-install: @${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/vpx* - -post-install-SHARED-on: @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libvpx.so.*.*.* .include Modified: head/multimedia/libvpx/pkg-plist ============================================================================== --- head/multimedia/libvpx/pkg-plist Mon Jan 6 22:39:14 2020 (r522292) +++ head/multimedia/libvpx/pkg-plist Mon Jan 6 22:39:14 2020 (r522293) @@ -10,8 +10,8 @@ include/vpx/vpx_frame_buffer.h include/vpx/vpx_image.h include/vpx/vpx_integer.h lib/libvpx.a -%%SHARED%%lib/libvpx.so -%%SHARED%%lib/libvpx.so.6 -%%SHARED%%lib/libvpx.so.6.2 -%%SHARED%%lib/libvpx.so.6.2.0 +lib/libvpx.so +lib/libvpx.so.6 +lib/libvpx.so.6.2 +lib/libvpx.so.6.2.0 libdata/pkgconfig/vpx.pc