svn commit: r404376 - in head/audio/opus: . files
Christian Weisgerber
naddy at FreeBSD.org
Thu Dec 24 16:34:40 UTC 2015
Author: naddy
Date: Thu Dec 24 16:34:38 2015
New Revision: 404376
URL: https://svnweb.freebsd.org/changeset/ports/404376
Log:
Update to 1.1.1 for minor bug fixes and optimizations.
Modified:
head/audio/opus/Makefile
head/audio/opus/distinfo
head/audio/opus/files/patch-configure
head/audio/opus/pkg-plist
Modified: head/audio/opus/Makefile
==============================================================================
--- head/audio/opus/Makefile Thu Dec 24 15:40:39 2015 (r404375)
+++ head/audio/opus/Makefile Thu Dec 24 16:34:38 2015 (r404376)
@@ -1,8 +1,7 @@
# $FreeBSD$
PORTNAME= opus
-PORTVERSION= 1.1
-PORTREVISION= 2
+PORTVERSION= 1.1.1
CATEGORIES= audio
MASTER_SITES= http://downloads.xiph.org/releases/opus/ \
MOZILLA/opus
@@ -26,6 +25,11 @@ 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
Modified: head/audio/opus/distinfo
==============================================================================
--- head/audio/opus/distinfo Thu Dec 24 15:40:39 2015 (r404375)
+++ head/audio/opus/distinfo Thu Dec 24 16:34:38 2015 (r404376)
@@ -1,2 +1,2 @@
-SHA256 (opus-1.1.tar.gz) = b9727015a58affcf3db527322bf8c4d2fcf39f5f6b8f15dbceca20206cbe1d95
-SIZE (opus-1.1.tar.gz) = 850208
+SHA256 (opus-1.1.1.tar.gz) = 9b84ff56bd7720d5554103c557664efac2b8b18acc4bbcc234cb881ab9a3371e
+SIZE (opus-1.1.1.tar.gz) = 957948
Modified: head/audio/opus/files/patch-configure
==============================================================================
--- head/audio/opus/files/patch-configure Thu Dec 24 15:40:39 2015 (r404375)
+++ head/audio/opus/files/patch-configure Thu Dec 24 16:34:38 2015 (r404376)
@@ -1,20 +1,11 @@
---- configure.orig 2013-12-17 16:51:41.000000000 +0100
-+++ configure 2013-12-17 16:52:02.000000000 +0100
-@@ -12807,7 +12807,7 @@ else
- CPU_ARM_FALSE=
- fi
+--- configure.orig 2015-11-25 20:46:28 UTC
++++ configure
+@@ -13229,7 +13229,7 @@ $as_echo "$as_me: WARNING: Compiler does
-- if test x"${inline_optimization:0:3}" = x"ARM"; then
-+ if expr x"${inline_optimization}" : x"ARM" >/dev/null; then
- OPUS_ARM_INLINE_ASM_TRUE=
- OPUS_ARM_INLINE_ASM_FALSE='#'
- else
-@@ -12815,7 +12815,7 @@ else
- OPUS_ARM_INLINE_ASM_FALSE=
fi
+ ;; #(
+- i?86|x86_64) :
++ i?86|x86_64|amd64) :
+
-- if test x"${asm_optimization:0:3}" = x"ARM"; then
-+ if expr x"${asm_optimization}" : x"ARM" >/dev/null; then
- OPUS_ARM_EXTERNAL_ASM_TRUE=
- OPUS_ARM_EXTERNAL_ASM_FALSE='#'
- else
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking if compiler supports SSE intrinsics" >&5
Modified: head/audio/opus/pkg-plist
==============================================================================
--- head/audio/opus/pkg-plist Thu Dec 24 15:40:39 2015 (r404375)
+++ head/audio/opus/pkg-plist Thu Dec 24 16:34:38 2015 (r404376)
@@ -6,6 +6,6 @@ include/opus/opus_types.h
lib/libopus.a
lib/libopus.so
lib/libopus.so.0
-lib/libopus.so.0.5.0
+lib/libopus.so.0.5.1
libdata/pkgconfig/opus.pc
share/aclocal/opus.m4
More information about the svn-ports-head
mailing list