a6421cba1e
2017-01-09 v1.6.1 "Long Tailed Duck" This release improves upon the VP9 encoder and speeds up the encoding and decoding processes. - Upgrading: This release is ABI compatible with 1.6.0. - Enhancements: Faster VP9 encoding and decoding. High bit depth builds now provide similar speed for 8 bit encode and decode for x86 targets. Other platforms and higher bit depth improvements are in progress. - Bug Fixes: A variety of fuzzing issues.
138 lines
4.4 KiB
Makefile
138 lines
4.4 KiB
Makefile
# $NetBSD: Makefile,v 1.67 2017/01/16 12:12:59 wiz Exp $
|
|
|
|
DISTNAME= libvpx-1.6.1
|
|
CATEGORIES= multimedia
|
|
MASTER_SITES= ${MASTER_SITE_GITHUB:=webmproject/}
|
|
GITHUB_PROJECT= libvpx
|
|
GITHUB_TAG= v${PKGVERSION_NOREV}
|
|
|
|
MAINTAINER= ryoon@NetBSD.org
|
|
HOMEPAGE= https://chromium.googlesource.com/webm/libvpx
|
|
COMMENT= On2 VP8 library from Google
|
|
LICENSE= modified-bsd
|
|
|
|
USE_LANGUAGES= c c++
|
|
USE_LIBTOOL= yes
|
|
USE_TOOLS+= gmake bash:build perl:build
|
|
HAS_CONFIGURE= yes
|
|
CONFIG_SHELL= ${BASH}
|
|
CONFIGURE_ARGS+= --disable-postproc
|
|
CONFIGURE_ARGS+= --enable-pic
|
|
CONFIGURE_ARGS+= --enable-runtime-cpu-detect
|
|
CONFIGURE_ARGS+= --prefix=${PREFIX}
|
|
CONFIGURE_ARGS+= --disable-unit-tests
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
.if ${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "x86_64"
|
|
. if ${PKGSRC_COMPILER} == "gcc" && (${OPSYS} == "NetBSD" || ${OPSYS} == "SunOS")
|
|
# PR pkg/48508: GCC 4.4 or later is required to compile ssse3 code on NetBSD & Solaris.
|
|
GCC_REQD+= 4.4
|
|
. endif
|
|
|
|
BUILD_DEPENDS+= yasm-[0-9]*:../../devel/yasm
|
|
.endif
|
|
|
|
REPLACE_BASH= configure
|
|
REPLACE_BASH+= build/make/configure.sh
|
|
REPLACE_BASH+= build/make/version.sh
|
|
REPLACE_BASH+= build/make/gen_asm_deps.sh
|
|
|
|
REPLACE_PERL= build/make/ads2gas.pl
|
|
|
|
.if ${OPSYS} == "Darwin"
|
|
BUILDLINK_TRANSFORM+= rm:-Wl,-Bsymbolic
|
|
. if ${MACHINE_ARCH} == "i386"
|
|
. if !empty(OS_VERSION:M1[3-9].*)
|
|
CONFIGURE_ARGS+= --target=x86-darwin13-gcc
|
|
. elif !empty(OS_VERSION:M12.*)
|
|
CONFIGURE_ARGS+= --target=x86-darwin12-gcc
|
|
. elif !empty(OS_VERSION:M11.*)
|
|
CONFIGURE_ARGS+= --target=x86-darwin11-gcc
|
|
. elif !empty(OS_VERSION:M10.*)
|
|
CONFIGURE_ARGS+= --target=x86-darwin10-gcc
|
|
. elif !empty(OS_VERSION:M9.*)
|
|
CONFIGURE_ARGS+= --target=x86-darwin9-gcc
|
|
. else
|
|
CONFIGURE_ARGS+= --target=x86-darwin8-gcc
|
|
. endif
|
|
. elif ${MACHINE_ARCH} == "x86_64"
|
|
. if !empty(OS_VERSION:M1[3-9].*)
|
|
CONFIGURE_ARGS+= --target=x86_64-darwin13-gcc
|
|
. elif !empty(OS_VERSION:M12.*)
|
|
CONFIGURE_ARGS+= --target=x86_64-darwin12-gcc
|
|
. elif !empty(OS_VERSION:M11.*)
|
|
CONFIGURE_ARGS+= --target=x86_64-darwin11-gcc
|
|
. elif !empty(OS_VERSION:M10.*)
|
|
CONFIGURE_ARGS+= --target=x86_64-darwin10-gcc
|
|
. else
|
|
CONFIGURE_ARGS+= --target=x86_64-darwin9-gcc
|
|
. endif
|
|
. elif ${MACHINE_ARCH} == "powerpc"
|
|
. if !empty(OS_VERSION:M9.*)
|
|
CONFIGURE_ARGS+= --target=ppc32-darwin9-gcc
|
|
. else
|
|
CONFIGURE_ARGS+= --target=ppc32-darwin8-gcc
|
|
. endif
|
|
. endif
|
|
.elif ${OPSYS} == "SunOS" && !empty(PKGSRC_COMPILER:Mgcc*)
|
|
. if ${MACHINE_ARCH} == "x86_64"
|
|
CONFIGURE_ARGS+= --target=x86_64-solaris-gcc
|
|
. elif ${MACHINE_ARCH} == "i386"
|
|
CONFIGURE_ARGS+= --target=x86-solaris-gcc
|
|
. endif
|
|
.endif
|
|
|
|
.include "../../mk/compiler.mk"
|
|
.if !empty(PKGSRC_COMPILER:Mclang)
|
|
CXXFLAGS+= -std=c++11
|
|
. if ${OPSYS} == "NetBSD" || ${OPSYS} == "Darwin"
|
|
# https://bugzilla.mozilla.org/show_bug.cgi?id=982693
|
|
SUBST_CLASSES+= clang
|
|
SUBST_STAGE.clang= pre-configure
|
|
SUBST_FILES.clang= build/make/Makefile
|
|
SUBST_MESSAGE.clang= Disabling clang integrated assembler
|
|
# Test for whether clang supports -fno-integrated-as instead of -no-integrated-as
|
|
CLANG_INTEGRATED_AS!= if ${CCPATH} --version -fno-integrated-as > /dev/null 2>&1; then ${ECHO} "-fno-integrated-as"; else ${ECHO} "-no-integrated-as"; fi
|
|
SUBST_SED.clang= -e 's/-DINLINE_ASM/-DINLINE_ASM ${CLANG_INTEGRATED_AS}/'
|
|
. endif
|
|
.endif
|
|
|
|
.if ${OPSYS} == "NetBSD" && ${MACHINE_ARCH} == "mipsel"
|
|
CONFIGURE_ARGS+= --target=mips32-linux-gcc
|
|
.endif
|
|
|
|
.if !empty(MACHINE_PLATFORM:MNetBSD-*-*arm*)
|
|
CONFIGURE_ARGS+= --disable-runtime-cpu-detect
|
|
.endif
|
|
|
|
BUILDLINK_TRANSFORM.MirBSD+= rm:-lrt
|
|
# Compiler is too old for these newfangled features
|
|
CONFIGURE_ENV.MirBSD+= sse2=no sse3=no ssse3=no sse4_1=no
|
|
# runtime_cpu_detect=no
|
|
CONFIGURE_ENV.MirBSD+= RTCD_OPTIONS='--disable-sse2 --disable-sse3 --disable-ssse3 --disable-sse4_1'
|
|
CONFIGURE_ARGS.MirBSD+= --disable-runtime-cpu-detect
|
|
|
|
# Under Solaris 10 its /usr/xpg4/bin/tr is not sufficient. PR pkg/48508
|
|
.if !empty(MACHINE_PLATFORM:MSunOS-5.10*)
|
|
BUILD_DEPENDS= coreutils-[0-9]*:../../sysutils/coreutils
|
|
TOOLS_PLATFORM.tr= ${LOCALBASE}/bin/gtr
|
|
.endif
|
|
|
|
BUILD_TARGET= # none
|
|
|
|
post-extract:
|
|
${CP} ${FILESDIR}/strip_fPIC.sh ${WRKSRC}
|
|
|
|
PKGCONFIG_OVERRIDE+= vpx.pc
|
|
PKGCONFIG_OVERRIDE_STAGE= post-build
|
|
|
|
# PR pkg/48508: newer gas from binutils is required to compile ssse3 code.
|
|
.if !empty(MACHINE_PLATFORM:MNetBSD-5.*) || \
|
|
!empty(MACHINE_PLATFORM:MSunOS-5.10*) || \
|
|
!empty(MACHINE_PLATFORM:MOpenBSD-5*)
|
|
.include "../../devel/binutils/buildlink3.mk"
|
|
.include "../../devel/binutils/override-as.mk"
|
|
.endif
|
|
.include "../../mk/pthread.buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|