summaryrefslogtreecommitdiff
path: root/audio/esound
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>2008-11-20 17:42:27 +0000
committerwiz <wiz@pkgsrc.org>2008-11-20 17:42:27 +0000
commit3c8952d62d51917395c74638188196372ba16f84 (patch)
tree632e8702c2dba31a37f39fd79ccf5337ef678508 /audio/esound
parentbc32c1c59f0d93fad78548d679ea257d143bceb2 (diff)
downloadpkgsrc-3c8952d62d51917395c74638188196372ba16f84.tar.gz
Update to 0.2.41:
=============== Version 0.2.41 =============== * Fix 32k samples turning into static when 8k samples played in the middle. Debian #79145. (Matthew Ashton) * Fix filter buffer handling so filters work. Debian #202027. (Ryan Murray) * Reconnect the ALSA driver and reload the config file after receiving a SIGUSR1. (Martin Pitt) * Fixed esd_audio_write() to use select() if the driver supports it (otherwise usleep) and write data in a configurable block size. (Ryan Murray) * Fixed esound.pc audifile linking. (Josselin Mouette) * Fixed esdcat.1. (Josselin Mouette) * Protect dsp_init() with a mutex lock. (Josselin Mouette) * Fixed to allow multiple esd instances (one per user). (Martin Pitt) * Fixes to startup time by not trying to exec a binary if it doesn't exist. (Martin Pitt) * Prettier debugging output. (Ryan Murray) * Fixed signedness compiler warnings. (Josselin Mouette) * Remove libesddsp from LD_PRELOAD when autospawning esd. (Ryan Murray) * Fixes for GStreamer using ESPEAKER. (Jeff Waugh) * Fixes for mmap64 (Josselin Mouette) * Close the spawnfd when the startup is successful. (Josselin Mouette) * Save a call to esd_audio_pause when run with -nobeeps. (Josselin Mouette) * Improved error checking for the -spawnfd switch. (Josselin Mouette) * Fixed buffer overflow possibilities. (Ryan Murray) * Call snd_pcm_hw_free() before calling snd_pcm_close() to avoid a memory leak. (Martin Pitt) * Add informative output for -double switch. (Josselin Mouette) * Use smaller sleep timeouts. (Josselin Mouette) * Updated to handle more file formats supported by audiofile 0.2.3. (Josselin Mouette)
Diffstat (limited to 'audio/esound')
-rw-r--r--audio/esound/Makefile4
-rw-r--r--audio/esound/distinfo10
-rw-r--r--audio/esound/patches/patch-ab10
3 files changed, 12 insertions, 12 deletions
diff --git a/audio/esound/Makefile b/audio/esound/Makefile
index 8fdc4be5245..445f9900ea1 100644
--- a/audio/esound/Makefile
+++ b/audio/esound/Makefile
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.72 2008/09/06 14:42:53 wiz Exp $
+# $NetBSD: Makefile,v 1.73 2008/11/20 17:42:27 wiz Exp $
-DISTNAME= esound-0.2.40
+DISTNAME= esound-0.2.41
CATEGORIES= audio
MASTER_SITES= ${MASTER_SITE_GNOME:=sources/esound/0.2/}
EXTRACT_SUFX= .tar.bz2
diff --git a/audio/esound/distinfo b/audio/esound/distinfo
index bcfc1bd3c92..73729c12e3d 100644
--- a/audio/esound/distinfo
+++ b/audio/esound/distinfo
@@ -1,7 +1,7 @@
-$NetBSD: distinfo,v 1.27 2008/09/06 14:42:53 wiz Exp $
+$NetBSD: distinfo,v 1.28 2008/11/20 17:42:27 wiz Exp $
-SHA1 (esound-0.2.40.tar.bz2) = 98cef3b8dbf8c4b664eca94d3c1b2f98736b0b88
-RMD160 (esound-0.2.40.tar.bz2) = 6b435a01bc8c5a22df31622c27f6a83be798aea2
-Size (esound-0.2.40.tar.bz2) = 423798 bytes
+SHA1 (esound-0.2.41.tar.bz2) = 6c343483b3789f439277935eaad7e478bee685ea
+RMD160 (esound-0.2.41.tar.bz2) = 72597ea46e507008e3a43efaaf5b4b9ef62b896f
+Size (esound-0.2.41.tar.bz2) = 396474 bytes
SHA1 (patch-aa) = d734a1004026287071e571ceb3fd346b809a6a30
-SHA1 (patch-ab) = 05b3d084546394fc47cdd21f40ce81b9d0e8f671
+SHA1 (patch-ab) = e01a89213d203861067e45f8f58d87ae6d19e01f
diff --git a/audio/esound/patches/patch-ab b/audio/esound/patches/patch-ab
index 57667a9cdd8..0e7eeb0578c 100644
--- a/audio/esound/patches/patch-ab
+++ b/audio/esound/patches/patch-ab
@@ -1,8 +1,8 @@
-$NetBSD: patch-ab,v 1.7 2008/09/06 14:42:53 wiz Exp $
+$NetBSD: patch-ab,v 1.8 2008/11/20 17:42:27 wiz Exp $
---- audio_oss.c.orig 2008-07-15 16:00:03.000000000 +0000
+--- audio_oss.c.orig 2008-11-18 20:35:19.000000000 +0000
+++ audio_oss.c
-@@ -19,7 +21,7 @@
+@@ -20,7 +20,7 @@
#define ARCH_esd_audio_devices
const char *esd_audio_devices()
{
@@ -10,8 +10,8 @@ $NetBSD: patch-ab,v 1.7 2008/09/06 14:42:53 wiz Exp $
+ return "/dev/audio, /dev/audio2, etc. or /dev/dsp, /dev/dsp2, etc.";
}
-
-@@ -38,7 +40,7 @@ int esd_audio_open()
+ #define NFRAGS 32
+@@ -56,7 +56,7 @@ int esd_audio_open()
mode |= O_NONBLOCK;
/* open the sound device */