diff options
author | wiz <wiz@pkgsrc.org> | 2009-07-17 20:28:21 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2009-07-17 20:28:21 +0000 |
commit | 29e23721ba7a3a081bf96390a5e27fba009b0c6e (patch) | |
tree | aa0594e91ba084f14f2b6d2f549064d5ffe45a0f /audio/libvorbis/Makefile | |
parent | 496313d8f32097439f0f256d1ca5e1766e8f9bf9 (diff) | |
download | pkgsrc-29e23721ba7a3a081bf96390a5e27fba009b0c6e.tar.gz |
Update to 1.2.3. Set LICENSE.
Two of the patches were from upstream CVS, the other two are not needed
any longer because the configure script was improved.
libvorbis 1.2.3 (2009-07-09) -- "Xiph.Org libVorbis I 20090709"
* correct a vorbisfile bug that prevented proper playback of
Vorbis files where all audio in a logical stream is in a
single page
* Additional decode setup hardening against malicious streams
* Add 'OV_EXCLUDE_STATIC_CALLBACKS' define for developers who
wish to avoid avoid unused symbol warnings from the static
callbacks defined in vorbisfile.h
libvorbis 1.2.2 (2009-06-24) -- "Xiph.Org libVorbis I 20090624"
* define VENDOR and ENCODER strings
* seek correctly in files bigger than 2 GB (Windows)
* fix regression from CVE-2008-1420; 1.0b1 files work again
* mark all tables as constant to reduce memory occupation
* additional decoder hardening against malicious streams
* substantially reduce amount of seeking performed by Vorbisfile
* Multichannel decode bugfix
* build system updates
* minor specification clarifications/fixes
libvorbis 1.2.1 (unreleased) -- "Xiph.Org libVorbis I 20080501"
* Improved robustness with corrupt streams.
* New ov_read_filter() vorbisfile call allows filtering decoded
audio as floats before converting to integer samples.
* Fix an encoder bug with multichannel streams.
* Replaced RTP payload format draft with RFC 5215.
* Bare bones self test under 'make check'.
* Fix a problem encoding some streams between 14 and 28 kHz.
* Fix a numerical instability in the edge extrapolation filter.
* Build system improvements.
* Specification correction.
Diffstat (limited to 'audio/libvorbis/Makefile')
-rw-r--r-- | audio/libvorbis/Makefile | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/audio/libvorbis/Makefile b/audio/libvorbis/Makefile index 890e1713997..8bfd935c586 100644 --- a/audio/libvorbis/Makefile +++ b/audio/libvorbis/Makefile @@ -1,13 +1,13 @@ -# $NetBSD: Makefile,v 1.47 2008/05/14 16:36:18 drochner Exp $ +# $NetBSD: Makefile,v 1.48 2009/07/17 20:28:21 wiz Exp $ -DISTNAME= libvorbis-1.2.0 -PKGREVISION= 1 +DISTNAME= libvorbis-1.2.3 CATEGORIES= devel audio MASTER_SITES= http://downloads.xiph.org/releases/vorbis/ MAINTAINER= wiz@NetBSD.org HOMEPAGE= http://www.xiph.org/vorbis/ COMMENT= Library for the Ogg Vorbis audio encoding format +LICENSE= modified-bsd PKG_INSTALLATION_TYPES= overwrite pkgviews PKG_DESTDIR_SUPPORT= user-destdir @@ -15,15 +15,9 @@ PKG_DESTDIR_SUPPORT= user-destdir GNU_CONFIGURE= YES USE_LIBTOOL= YES -GCC_REQD+= 2.95.3 - -# Avoid an ICE in gcc2 on sparc64 -CONFIGURE_ENV+= F77=${FALSE:Q} - PKGCONFIG_OVERRIDE+= vorbis.pc.in PKGCONFIG_OVERRIDE+= vorbisenc.pc.in PKGCONFIG_OVERRIDE+= vorbisfile.pc.in .include "../../multimedia/libogg/buildlink3.mk" - .include "../../mk/bsd.pkg.mk" |