diff options
author | adam <adam@pkgsrc.org> | 2012-01-08 11:31:28 +0000 |
---|---|---|
committer | adam <adam@pkgsrc.org> | 2012-01-08 11:31:28 +0000 |
commit | fa2b61b263d853ea56dd060255802c88434755a6 (patch) | |
tree | 569e06a524f51b5ebe9d038ba9f684bc061ff84a /multimedia | |
parent | ee1c4dcbc9fe4aa1131b2a752e40547528417715 (diff) | |
download | pkgsrc-fa2b61b263d853ea56dd060255802c88434755a6.tar.gz |
Changes 1.3.0:
* Add ogg_stream_flush_fill() call
This produces longer packets on flush, similar to
what ogg_stream_pageout_fill() does for single pages.
* Windows build fixes
Changes 1.2.2:
* Build fix (types correction) for Mac OS X
* Update win32 project files to Visual Studio 2008
* ogg_stream_pageout_fill documentation fix
Diffstat (limited to 'multimedia')
-rw-r--r-- | multimedia/libogg/Makefile | 7 | ||||
-rw-r--r-- | multimedia/libogg/distinfo | 8 | ||||
-rw-r--r-- | multimedia/libogg/patches/patch-aa | 18 |
3 files changed, 7 insertions, 26 deletions
diff --git a/multimedia/libogg/Makefile b/multimedia/libogg/Makefile index 24e2e00b3d6..e328880b0ff 100644 --- a/multimedia/libogg/Makefile +++ b/multimedia/libogg/Makefile @@ -1,10 +1,9 @@ -# $NetBSD: Makefile,v 1.16 2010/11/11 18:21:23 tron Exp $ +# $NetBSD: Makefile,v 1.17 2012/01/08 11:31:28 adam Exp $ -DISTNAME= libogg-1.2.1 -PKGREVISION= 1 +DISTNAME= libogg-1.3.0 CATEGORIES= multimedia devel MASTER_SITES= http://downloads.xiph.org/releases/ogg/ -EXTRACT_SUFX= .tar.bz2 +EXTRACT_SUFX= .tar.xz MAINTAINER= wiz@NetBSD.org HOMEPAGE= http://www.xiph.org/ogg/ diff --git a/multimedia/libogg/distinfo b/multimedia/libogg/distinfo index 0bb26ccaa8a..a9bf8935e21 100644 --- a/multimedia/libogg/distinfo +++ b/multimedia/libogg/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.8 2010/11/11 18:21:23 tron Exp $ +$NetBSD: distinfo,v 1.9 2012/01/08 11:31:28 adam Exp $ -SHA1 (libogg-1.2.1.tar.bz2) = 0fdb133ea5207712772ef492b7982628d447f3bb -RMD160 (libogg-1.2.1.tar.bz2) = 66428c5410bc4a24d0eb22028a875be026593545 -Size (libogg-1.2.1.tar.bz2) = 321690 bytes +SHA1 (libogg-1.3.0.tar.xz) = d74e7514f268d58a171b4b9baf15602fd8060c33 +RMD160 (libogg-1.3.0.tar.xz) = fb6dcdadeccabbd8555e007f9efd28fc11708ba5 +Size (libogg-1.3.0.tar.xz) = 289384 bytes SHA1 (patch-aa) = 36d34f1dfc27abf5779a0bd2e8cfbd5e862a19a7 diff --git a/multimedia/libogg/patches/patch-aa b/multimedia/libogg/patches/patch-aa deleted file mode 100644 index 25020c7efab..00000000000 --- a/multimedia/libogg/patches/patch-aa +++ /dev/null @@ -1,18 +0,0 @@ -$NetBSD: patch-aa,v 1.3 2010/11/11 18:36:13 tron Exp $ - -Fix build problem of dependent packages under Mac OS X. - ---- include/ogg/os_types.h.orig 2010-10-26 11:56:36.000000000 +0100 -+++ include/ogg/os_types.h 2010-11-11 18:04:34.000000000 +0000 -@@ -70,9 +70,9 @@ - - # include <inttypes.h> - typedef int16_t ogg_int16_t; -- typedef u_int16_t ogg_uint16_t; -+ typedef uint16_t ogg_uint16_t; - typedef int32_t ogg_int32_t; -- typedef u_int32_t ogg_uint32_t; -+ typedef uint32_t ogg_uint32_t; - typedef int64_t ogg_int64_t; - - #elif defined(__HAIKU__) |