summaryrefslogtreecommitdiff
path: root/audio/opus-tools
diff options
context:
space:
mode:
authorryoon <ryoon@pkgsrc.org>2014-01-02 14:52:10 +0000
committerryoon <ryoon@pkgsrc.org>2014-01-02 14:52:10 +0000
commitd1df5e1d282e996d6157ac90e14fe3d9e9c92333 (patch)
treeb24b6a9f1d0b521faeea233e8af16473fafacec8 /audio/opus-tools
parent6f286a1232e5eafcf07c521a99e95e405cd1652f (diff)
downloadpkgsrc-d1df5e1d282e996d6157ac90e14fe3d9e9c92333.tar.gz
Update to 0.1.8
* opusenc required audio/flac Changelog: opus-tools 0.1.8 This release fixes a memory corruption bug with FLAC album art handling. opus-tools 0.1.7 This release has numerious build fixes, including updated Visual Studio project files to match similar changes in the opus package. Support encoding from FLAC files. Metadata tag support, including album art. Use the new surround encoder API in opus 1.0.3. The opusenc --uncoupled switch no longer works.
Diffstat (limited to 'audio/opus-tools')
-rw-r--r--audio/opus-tools/Makefile5
-rw-r--r--audio/opus-tools/distinfo10
-rw-r--r--audio/opus-tools/patches/patch-configure.ac25
3 files changed, 20 insertions, 20 deletions
diff --git a/audio/opus-tools/Makefile b/audio/opus-tools/Makefile
index 3c171793dd5..26142419d38 100644
--- a/audio/opus-tools/Makefile
+++ b/audio/opus-tools/Makefile
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.5 2013/10/23 17:11:09 jperkin Exp $
+# $NetBSD: Makefile,v 1.6 2014/01/02 14:52:10 ryoon Exp $
#
-DISTNAME= opus-tools-0.1.6
+DISTNAME= opus-tools-0.1.8
CATEGORIES= audio
MASTER_SITES= http://downloads.xiph.org/releases/opus/
@@ -19,6 +19,7 @@ LDFLAGS.SunOS+= -lsocket -lnsl
pre-configure:
cd ${WRKSRC} && autoconf
+.include "../../audio/flac/buildlink3.mk"
.include "../../audio/libopus/buildlink3.mk"
.include "../../multimedia/libogg/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"
diff --git a/audio/opus-tools/distinfo b/audio/opus-tools/distinfo
index 96b29009c0c..70d05955714 100644
--- a/audio/opus-tools/distinfo
+++ b/audio/opus-tools/distinfo
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.2 2013/01/20 20:10:51 ryoon Exp $
+$NetBSD: distinfo,v 1.3 2014/01/02 14:52:10 ryoon Exp $
-SHA1 (opus-tools-0.1.6.tar.gz) = 305eb5eed76ddc0b5f12605a8b549638afc15885
-RMD160 (opus-tools-0.1.6.tar.gz) = b545e1c8602f6ab0ab105d1f8c23c66f891bf2ce
-Size (opus-tools-0.1.6.tar.gz) = 306902 bytes
-SHA1 (patch-configure.ac) = 50793b0b5b3ee53a5e8ecd4895d1b0d3865bdc1d
+SHA1 (opus-tools-0.1.8.tar.gz) = 71e3cf393399af0231d86434923093ca79eea8ab
+RMD160 (opus-tools-0.1.8.tar.gz) = 62e8034f0142fd2cc63fc0bd9eb6c1cac7709bcc
+Size (opus-tools-0.1.8.tar.gz) = 388711 bytes
+SHA1 (patch-configure.ac) = 0248fe49b394c94f26bf8516a6b10e212531431e
diff --git a/audio/opus-tools/patches/patch-configure.ac b/audio/opus-tools/patches/patch-configure.ac
index 9dc8d7892f7..a2b4eac04ba 100644
--- a/audio/opus-tools/patches/patch-configure.ac
+++ b/audio/opus-tools/patches/patch-configure.ac
@@ -1,11 +1,11 @@
-$NetBSD: patch-configure.ac,v 1.1 2012/09/16 14:17:54 ryoon Exp $
+$NetBSD: patch-configure.ac,v 1.2 2014/01/02 14:52:10 ryoon Exp $
* Disable opusdec's direct audio output
---- configure.ac.orig 2012-09-04 17:33:39.000000000 +0000
+--- configure.ac.orig 2013-12-06 02:31:11.000000000 +0000
+++ configure.ac
-@@ -165,18 +165,18 @@ then
- fi
+@@ -145,18 +145,18 @@ AS_IF([test "$HAVE_PKG_CONFIG" = "yes"],
+ ])
dnl check for OSS
-HAVE_OSS=no
@@ -20,16 +20,15 @@ $NetBSD: patch-configure.ac,v 1.1 2012/09/16 14:17:54 ryoon Exp $
+dnl ])
dnl check for sndio
--HAVE_SNDIO=no
-AC_CHECK_LIB([sndio], [sio_open])
--if test "x$ac_cv_lib_sndio_sio_open" = "xyes"; then
-- HAVE_SNDIO=yes
--fi
-+dnl HAVE_SNDIO=no
+dnl AC_CHECK_LIB([sndio], [sio_open])
-+dnl if test "x$ac_cv_lib_sndio_sio_open" = "xyes"; then
-+dnl HAVE_SNDIO=yes
+
+-if test "$HAVE_OSS" != "yes" && test "$ac_cv_lib_sndio_sio_open" != "yes"; then
+- AC_MSG_WARN([Audio support not found -- no direct audio output in opusdec])
+-fi
++dnl if test "$HAVE_OSS" != "yes" && test "$ac_cv_lib_sndio_sio_open" != "yes"; then
++dnl AC_MSG_WARN([Audio support not found -- no direct audio output in opusdec])
+dnl fi
- if test "x$HAVE_OSS" != "xyes" && test "x$HAVE_SNDIO" != "xyes"; then
- AC_MSG_WARN([Audio support not found -- no direct audio output in opusdec])
+ dnl check for flac
+ AC_ARG_WITH([flac],