mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-12 03:00:28 +00:00
b3f6c07e1c
integer wrap-around in the SILK LSF stabilization code. Reported as CVE-2017-0381, but upstream does not believe that any remote code execution is possible. https://git.xiph.org/?p=opus.git;a=commit;h=70a3d641b760b3d313b6025f82aed93a4607
38 lines
745 B
Makefile
38 lines
745 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= opus
|
|
PORTVERSION= 1.1.4
|
|
CATEGORIES= audio
|
|
MASTER_SITES= http://downloads.xiph.org/releases/opus/ \
|
|
MOZILLA/opus
|
|
|
|
MAINTAINER= naddy@FreeBSD.org
|
|
COMMENT= IETF audio codec
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
USES= cpe gmake libtool pathfix
|
|
CPE_VENDOR= opus-codec
|
|
USE_LDCONFIG= yes
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --enable-custom-modes \
|
|
--disable-maintainer-mode \
|
|
--disable-doc # requires doxygen
|
|
INSTALL_TARGET= install-strip
|
|
TEST_TARGET= check
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
# i386: needs cpuid instruction; arm: only floating point
|
|
.if ${ARCH} == "amd64"
|
|
CONFIGURE_ARGS+=--enable-intrinsics
|
|
.endif
|
|
|
|
.if ${ARCH} == "arm"
|
|
CONFIGURE_ARGS+=--enable-fixed-point
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|