diff options
author | wiz <wiz@pkgsrc.org> | 2003-12-08 14:43:48 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2003-12-08 14:43:48 +0000 |
commit | 6d0d4cf65c399aca06b122e72bd9f45a56821f54 (patch) | |
tree | 67545f07208ef9dadc4a4cfd1f54194feb48f749 /audio/vorbis-tools/Makefile | |
parent | df3fd7a9c2775fcef9ffb189e5906ae1925b73ad (diff) | |
download | pkgsrc-6d0d4cf65c399aca06b122e72bd9f45a56821f54.tar.gz |
Update to 1.0.1:
ogg123
* Support for playing FLAC and Speex files. Both the native FLAC and
Ogg FLAC varieties are supported. Special thanks to OldMan, adiabatic,
and smack from #vorbis for sponsoring the development of this feature.
* Send correct User Agent and Accept strings in the HTTP 1.1 headers
* Fixed bug preventing the status line from showing the total time
information in certain circumstances
* Fixed a pthread crash bug on certain platforms (like NetBSD)
* Added support for the --end option to specify at what time
playback should stop. Both --skip and --end also now accept times in
hh:mm:ss format. Thanks to Hans Schou.
* If the --skip option is greater than the length of the file,
ogg123 now terminates with an error.
oggdec
* Fixed small memory leak.
* Fixed error that caused oggdec to crash when output file was not
specified.
oggenc
* Patch from Jordan Mendelson to support reading little-endian AIFF
files (which happen to be made by MacOS X when ripping CDs?).
* --scale option to allow scaling the volume of the input. Helps
with clipping inputs.
* Fixed usage messages.
* 24 bit input support
* FLAC and Ogg FLAC read support. Comments from the FLAC file are
preserved unless explicitly dropped with the --discard-comments option.
Also funded by OldMan, adiabatic, and smack.
* Less frequent status updates.
ogginfo
* Minor typo and portability fixes.
* Emits fewer spurious errors when minor errors are detected.
* Return a useful status code.
* Fixed overflow bug on really long files.
vcut
* Patch from Jared Anderson allows the cutpoint to be specified in
(integer) seconds by prefixing it with a +.
vorbiscomment
* More forgiving of Ogg files that begin with garbage (like ID3v2
tags).
Diffstat (limited to 'audio/vorbis-tools/Makefile')
-rw-r--r-- | audio/vorbis-tools/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/audio/vorbis-tools/Makefile b/audio/vorbis-tools/Makefile index 3e5db9fdfad..d7b822a79e1 100644 --- a/audio/vorbis-tools/Makefile +++ b/audio/vorbis-tools/Makefile @@ -1,10 +1,8 @@ -# $NetBSD: Makefile,v 1.26 2003/09/05 19:16:36 explorer Exp $ +# $NetBSD: Makefile,v 1.27 2003/12/08 14:43:48 wiz Exp $ -DISTNAME= vorbis-tools-1.0 -PKGNAME= vorbis-tools-1.0.0.8 -PKGREVISION= 6 +DISTNAME= vorbis-tools-1.0.1 CATEGORIES= audio -MASTER_SITES= http://www.vorbis.com/files/1.0/unix/ +MASTER_SITES= http://www.vorbis.com/files/1.0.1/unix/ MAINTAINER= lukem@NetBSD.org HOMEPAGE= http://www.vorbis.com/ @@ -28,9 +26,11 @@ PLIST_SUBST+= DISTNAME="${DISTNAME}" PTHREAD_OPTS+= require +.include "../../audio/flac/buildlink2.mk" .include "../../audio/libao/buildlink2.mk" .include "../../audio/libogg/buildlink2.mk" .include "../../audio/libvorbis/buildlink2.mk" +.include "../../audio/speex/buildlink2.mk" .include "../../converters/libiconv/buildlink2.mk" .include "../../www/curl/buildlink2.mk" .include "../../mk/pthread.buildlink2.mk" |