Index: branches/2017Q1/multimedia/libvpx/Makefile =================================================================== --- branches/2017Q1/multimedia/libvpx/Makefile (revision 431766) +++ branches/2017Q1/multimedia/libvpx/Makefile (revision 431767) @@ -1,95 +1,94 @@ # Created by: Ashish SHUKLA # $FreeBSD$ PORTNAME= libvpx DISTVERSIONPREFIX= v -DISTVERSION= 1.6.0 -PORTREVISION= 1 +DISTVERSION= 1.6.1 CATEGORIES= multimedia MAINTAINER= ashish@FreeBSD.org COMMENT= VP8/VP9 Codec SDK LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE BUILD_DEPENDS= yasm:devel/yasm USE_GITHUB= yes GH_ACCOUNT= webmproject USES= compiler:c11 cpe gmake perl5 shebangfix CPE_VENDOR= john_koleszar HAS_CONFIGURE= yes USE_PERL5= build USE_LDCONFIG= yes OPTIONS_DEFINE= DEBUG MULTIRES POSTPROC RUNTIME SHARED SIZE_LIMIT TEST THREADS OPTIONS_DEFAULT=MULTIRES POSTPROC RUNTIME SHARED SIZE_LIMIT THREADS OPTIONS_EXCLUDE_aarch64=RUNTIME OPTIONS_EXCLUDE_armv6= RUNTIME MULTIRES_DESC= Enable multi-resolution encoding POSTPROC_DESC= Enable postprocessing RUNTIME_DESC= Enable runtime CPU detection SHARED_DESC= Enable shared-library support SIZE_LIMIT_DESC=Maximum size allowed by decoder: ${SIZE_LIMIT} ALL_TARGET= CONFIGURE_ARGS+=--prefix=${PREFIX} \ --disable-install-docs \ --disable-install-srcs \ --enable-pic \ --enable-vp8 \ --enable-vp9 MAKE_ARGS+= verbose=yes MAKE_ENV= LC_ALL=C OPTIONS_SUB= SHARED DEBUG_CONFIGURE_ON= --enable-debug MULTIRES_CONFIGURE_ON= --enable-multi-res-encoding POSTPROC_CONFIGURE_ON= --enable-postproc --enable-vp9-postproc \ --enable-vp9-temporal-denoising RUNTIME_CONFIGURE_ON= --enable-runtime-cpu-detect SHARED_CONFIGURE_ON= --enable-shared SIZE_LIMIT_CONFIGURE_ON=--size-limit=${SIZE_LIMIT} SIZE_LIMIT?= 16384x16384 # Chromium; Firefox has 4000x3000 TEST_CONFIGURE_OFF= --disable-unit-tests THREADS_CONFIGURE_OFF= --disable-multithread SHEBANG_FILES= build/make/ads2gas.pl .include .if ${ARCH} == "amd64" CONFIGURE_ARGS+= --target=x86_64-linux-gcc .elif ${ARCH} == "i386" CONFIGURE_ARGS+= --target=x86-linux-gcc .elif ${ARCH} == "ia64" CONFIGURE_ARGS+= --target=ia64-linux-gcc .elif ${ARCH} == "powerpc" CONFIGURE_ARGS+= --target=ppc32-linux-gcc .elif ${ARCH} == "powerpc64" CONFIGURE_ARGS+= --target=ppc64-linux-gcc .elif ${ARCH} == "sparc64" CONFIGURE_ARGS+= --target=sparc64-linux-gcc .elif ${ARCH} == "aarch64" CONFIGURE_ARGS+= --target=arm64-linux-gcc .elif ${ARCH} == "armv6" CONFIGURE_ARGS+= --target=armv6-linux-gcc --cpu=armv6 EXTRA_PATCHES+= ${FILESDIR}/extra-patch-build_make_Makefile .else IGNORE= no support for ${ARCH} the moment. testing/patches are welcome .endif post-patch: @${REINPLACE_CMD} 's|\(link_with_cc\)=gcc|\1=$${CC}|' \ ${WRKSRC}/build/make/configure.sh post-install: @${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/vpx* post-install-SHARED-on: @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libvpx.so.*.*.* .include Index: branches/2017Q1/multimedia/libvpx/distinfo =================================================================== --- branches/2017Q1/multimedia/libvpx/distinfo (revision 431766) +++ branches/2017Q1/multimedia/libvpx/distinfo (revision 431767) @@ -1,3 +1,3 @@ -TIMESTAMP = 1475172408 -SHA256 (webmproject-libvpx-v1.6.0_GH0.tar.gz) = e2fc00c9f60c76f91a1cde16a2356e33a45b76a5a5a1370df65fd57052a4994a -SIZE (webmproject-libvpx-v1.6.0_GH0.tar.gz) = 2476097 +TIMESTAMP = 1484252847 +SHA256 (webmproject-libvpx-v1.6.1_GH0.tar.gz) = cda8bb6f0e4848c018177d3a576fa83ed96d762554d7010fe4cfb9d70c22e588 +SIZE (webmproject-libvpx-v1.6.1_GH0.tar.gz) = 2493087 Index: branches/2017Q1/multimedia/libvpx/files/patch-configure =================================================================== --- branches/2017Q1/multimedia/libvpx/files/patch-configure (revision 431766) +++ branches/2017Q1/multimedia/libvpx/files/patch-configure (revision 431767) @@ -1,37 +1,13 @@ --- configure.orig 2016-07-21 01:15:41 UTC +++ configure @@ -158,6 +158,10 @@ all_platforms="${all_platforms} x86_64-w all_platforms="${all_platforms} x86_64-win64-vs11" all_platforms="${all_platforms} x86_64-win64-vs12" all_platforms="${all_platforms} x86_64-win64-vs14" +all_platforms="${all_platforms} ia64-linux-gcc" +all_platforms="${all_platforms} ppc32-linux-gcc" +all_platforms="${all_platforms} ppc64-linux-gcc" +all_platforms="${all_platforms} sparc64-linux-gcc" all_platforms="${all_platforms} generic-gnu" # all_targets is a list of all targets that can be configured -@@ -585,15 +589,14 @@ process_toolchain() { - check_add_cflags -Wimplicit-function-declaration - check_add_cflags -Wuninitialized - check_add_cflags -Wunused-variable -- case ${CC} in -- *clang*) -- # libvpx and/or clang have issues with aliasing: -- # https://code.google.com/p/webm/issues/detail?id=603 -- # work around them until they are fixed -- check_add_cflags -fno-strict-aliasing -- ;; -- *) check_add_cflags -Wunused-but-set-variable ;; -- esac -+ if ${CC} -v 2>&1 | grep "clang version" >/dev/null; then -+ # libvpx and/or clang have issues with aliasing: -+ # https://code.google.com/p/webm/issues/detail?id=603 -+ # work around them until they are fixed -+ check_add_cflags -fno-strict-aliasing -+ else -+ check_add_cflags -Wunused-but-set-variable -+ fi - if enabled mips || [ -z "${INLINE}" ]; then - enabled extra_warnings || check_add_cflags -Wno-unused-function - else Index: branches/2017Q1/multimedia/libvpx/pkg-plist =================================================================== --- branches/2017Q1/multimedia/libvpx/pkg-plist (revision 431766) +++ branches/2017Q1/multimedia/libvpx/pkg-plist (revision 431767) @@ -1,17 +1,17 @@ bin/vpxdec bin/vpxenc include/vpx/vp8.h include/vpx/vp8cx.h include/vpx/vp8dx.h include/vpx/vpx_codec.h include/vpx/vpx_decoder.h include/vpx/vpx_encoder.h 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.4 -%%SHARED%%lib/libvpx.so.4.0 -%%SHARED%%lib/libvpx.so.4.0.0 +%%SHARED%%lib/libvpx.so.4.1 +%%SHARED%%lib/libvpx.so.4.1.0 libdata/pkgconfig/vpx.pc Index: branches/2017Q1 =================================================================== --- branches/2017Q1 (revision 431766) +++ branches/2017Q1 (revision 431767) Property changes on: branches/2017Q1 ___________________________________________________________________ Modified: svn:mergeinfo ## -0,0 +0,1 ## Merged /head:r431741