diff options
author | wiz <wiz@pkgsrc.org> | 2003-03-25 09:14:06 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2003-03-25 09:14:06 +0000 |
commit | c9a4493c0bfd6154de6466efee049e2f44d84a87 (patch) | |
tree | 3e8d90a657d414f013893d2bcff45328fdb86f84 /audio | |
parent | 15b326b05305b06403c7ca59691ce0c171cdd01a (diff) | |
download | pkgsrc-c9a4493c0bfd6154de6466efee049e2f44d84a87.tar.gz |
Update to 12.17.4; add dependency on mad.
Selection of changes:
* Various bugfixes to Ogg Vorbis handler as well as updating
to use version 1.0 of library. Also, modified the files
that are output by Ogg Vorbis handler to use VBR format.
* Minor cleanups to sox.c to free and close all files instead
of relying on C library to do it on exit.
* Fixed some integer overflow problems in compand effect.
* libst prototype cleanups and private data structure
cleanups.
* Added new handler for Psion Record.app files.
* Play/Record scripts now look at an AUDIODEV
enviornment variable to see what audio device to
play to. Also scripts to work on Sun Rays.
* Added support for reading and writing MP3 files if
external MP3 libraries are avaliable.
* Fix multile channel bug in avg effect.
* Allow AIFF files with an invalid length of 0 to be
processed.
Diffstat (limited to 'audio')
-rw-r--r-- | audio/sox/Makefile | 12 | ||||
-rw-r--r-- | audio/sox/distinfo | 7 | ||||
-rw-r--r-- | audio/sox/patches/patch-aa | 13 |
3 files changed, 10 insertions, 22 deletions
diff --git a/audio/sox/Makefile b/audio/sox/Makefile index 3e256acd4f8..7ac807936bd 100644 --- a/audio/sox/Makefile +++ b/audio/sox/Makefile @@ -1,13 +1,14 @@ -# $NetBSD: Makefile,v 1.19 2002/11/25 19:02:45 wiz Exp $ +# $NetBSD: Makefile,v 1.20 2003/03/25 09:14:06 wiz Exp $ # -DISTNAME= sox-12.17.3 -PKGREVISION= 1 +DISTNAME= sox-12.17.4 CATEGORIES= audio -MASTER_SITES= http://home.sprynet.com/~cbagwell/ +MASTER_SITES= http://prdownloads.sourceforge.net/sox/ \ + ${MASTER_SITE_SOURCEFORGE:=sox/} \ + http://www.cnpbagwell.com/ MAINTAINER= packages@netbsd.org -HOMEPAGE= http://home.sprynet.com/~cbagwell/sox.html +HOMEPAGE= http://sox.sourceforge.net/ COMMENT= SOund eXchange - universal sound sample translator USE_BUILDLINK2= yes @@ -20,4 +21,5 @@ CONFIGURE_ARGS+= --enable-fast-ulaw \ --with-ogg-vorbisinc=${BUILDLINK_PREFIX.libvorbis}/include .include "../../audio/libvorbis/buildlink2.mk" +.include "../../audio/mad/buildlink2.mk" .include "../../mk/bsd.pkg.mk" diff --git a/audio/sox/distinfo b/audio/sox/distinfo index 5f7ec95b1db..c80a951c88f 100644 --- a/audio/sox/distinfo +++ b/audio/sox/distinfo @@ -1,6 +1,5 @@ -$NetBSD: distinfo,v 1.3 2002/07/12 19:30:50 mycroft Exp $ +$NetBSD: distinfo,v 1.4 2003/03/25 09:14:06 wiz Exp $ -SHA1 (sox-12.17.3.tar.gz) = 2598f5b64305430a644d74f061843ed993cfe316 -Size (sox-12.17.3.tar.gz) = 405660 bytes -SHA1 (patch-aa) = d651b2bf19b27a603bc1f40d7c670561e757e28e +SHA1 (sox-12.17.4.tar.gz) = d6fba1e40b20f73334917d4aaab113b6066283cd +Size (sox-12.17.4.tar.gz) = 417497 bytes SHA1 (patch-ab) = 0632e13e99f358e1a54a2a1d64f39aacf11d4a0f diff --git a/audio/sox/patches/patch-aa b/audio/sox/patches/patch-aa deleted file mode 100644 index b7fd067441a..00000000000 --- a/audio/sox/patches/patch-aa +++ /dev/null @@ -1,13 +0,0 @@ -$NetBSD: patch-aa,v 1.6 2002/07/12 19:30:50 mycroft Exp $ - ---- Makefile.in.orig Sun Dec 16 22:47:37 2001 -+++ Makefile.in Fri Jul 12 19:22:14 2002 -@@ -78,7 +78,7 @@ - $(CC) $(LDFLAGS) -o sox sox.o $(LIBS) - - soxmix.o: sox.c -- $(CC) $(CFLAGS) -DSOXMIX -c -o soxmix.o $< -+ $(CC) $(CFLAGS) -DSOXMIX -c -o soxmix.o sox.c - - soxmix: libst.a $(GSM_$(GSM_SUPPORT)) soxmix.o - $(CC) $(LDFLAGS) -o soxmix soxmix.o $(LIBS) |