pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/audio/SDL_sound Update to version 1.0.1, and fix gcc-3...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/6ce0c1f9d848
branches:  trunk
changeset: 466432:6ce0c1f9d848
user:      cube <cube%pkgsrc.org@localhost>
date:      Sun Jan 18 13:51:15 2004 +0000

description:
Update to version 1.0.1, and fix gcc-3 bug in configure script.

Changes:
10102003 - Changed some SDL_Error()s to __Sound_SetError() in new DLS code
           to fix linking issues.
10052003 - Fixed memory corruption when freeing DLS instruments,
           and bug when timidity is initialized multiple times (Thanks, Sam!).
09252003 - Sam Lantinga added support for DLS instruments to the MIDI decoder.
09132003 - Happy September. Added Speex (.spx) decoder.
08052003 - Fixed MIDI decoder on bigendian systems.
03102003 - Never actually created samplelist_mutex (Thanks, Glenn Maynard!).
01122003 - Fix to smpeg.c's rewinding code (Thanks, Eric).
12212002 - Fixed ogg.c to decode a full buffer at a time instead of one ogg
           packet per call, and mikmod has a check during initialization to
           prevent a clash with SDL_mixer (Thanks, Eric).
12092002 - Changed Sound_Init()'s call to SDL_Init() to SDL_InitSubSystem(),
           to prevent unwanted use of the SDL parachute (thanks, Glenn).

diffstat:

 audio/SDL_sound/DESCR            |  23 ++++++++++++-----------
 audio/SDL_sound/Makefile         |   7 +++----
 audio/SDL_sound/PLIST            |   6 +++---
 audio/SDL_sound/buildlink2.mk    |   4 ++--
 audio/SDL_sound/distinfo         |   7 ++++---
 audio/SDL_sound/patches/patch-aa |  24 ++++++++++++++++++++++++
 6 files changed, 48 insertions(+), 23 deletions(-)

diffs (118 lines):

diff -r c43fd1c3b4c2 -r 6ce0c1f9d848 audio/SDL_sound/DESCR
--- a/audio/SDL_sound/DESCR     Sun Jan 18 12:45:35 2004 +0000
+++ b/audio/SDL_sound/DESCR     Sun Jan 18 13:51:15 2004 +0000
@@ -1,11 +1,12 @@
-SDL_sound is a library that handles the decoding of several popular
-sound file formats, such as .WAV and .MP3. It is meant to make the
-programmer's sound playback tasks simpler. The programmer gives
-SDL_sound a filename, or feeds it data directly from one of many
-sources, and then reads the decoded waveform data back at her
-leisure. If resource constraints are a concern, SDL_sound can
-process sound data in programmer-specified blocks.  Alternately,
-SDL_sound can decode a whole sound file and hand back a single
-pointer to the whole waveform.  SDL_sound can also handle sample
-rate, audio format, and channel conversion on-the-fly and behind-the-
-scenes, if the programmer desires.
+SDL_sound is a library that handles the decoding of several popular sound file
+formats, such as .WAV and .MP3.  It is meant to make the programmer's sound
+playback tasks simpler.
+
+The programmer gives SDL_sound a filename, or feeds it data directly from one
+of many sources, and then reads the decoded waveform data back at her leisure.
+
+If resource constraints are a concern, SDL_sound can process sound data in
+programmer-specified blocks.  Alternately, SDL_sound can decode a whole sound
+file and hand back a single pointer to the whole waveform.  SDL_sound can also
+handle sample rate, audio format, and channel conversion on-the-fly and
+behind-the-scenes, if the programmer desires.
diff -r c43fd1c3b4c2 -r 6ce0c1f9d848 audio/SDL_sound/Makefile
--- a/audio/SDL_sound/Makefile  Sun Jan 18 12:45:35 2004 +0000
+++ b/audio/SDL_sound/Makefile  Sun Jan 18 13:51:15 2004 +0000
@@ -1,12 +1,11 @@
-# $NetBSD: Makefile,v 1.5 2003/12/08 14:41:38 wiz Exp $
+# $NetBSD: Makefile,v 1.6 2004/01/18 13:51:15 cube Exp $
 #
 
-DISTNAME=              SDL_sound-1.0.0
-PKGREVISION=           4
+DISTNAME=              SDL_sound-1.0.1
 CATEGORIES=            audio
 MASTER_SITES=          http://icculus.org/SDL_sound/downloads/
 
-MAINTAINER=            cube%cubidou.net@localhost
+MAINTAINER=            cube%NetBSD.org@localhost
 HOMEPAGE=              http://icculus.org/SDL_sound/
 COMMENT=               SDL library to handle the decoding of different file formats
 
diff -r c43fd1c3b4c2 -r 6ce0c1f9d848 audio/SDL_sound/PLIST
--- a/audio/SDL_sound/PLIST     Sun Jan 18 12:45:35 2004 +0000
+++ b/audio/SDL_sound/PLIST     Sun Jan 18 13:51:15 2004 +0000
@@ -1,9 +1,9 @@
-@comment $NetBSD: PLIST,v 1.1.1.1 2003/03/26 22:48:26 wiz Exp $
+@comment $NetBSD: PLIST,v 1.2 2004/01/18 13:51:15 cube Exp $
 bin/playsound
 include/SDL/SDL_sound.h
 lib/libSDL_sound-1.0.so
-lib/libSDL_sound-1.0.so.0
-lib/libSDL_sound-1.0.so.0.0
+lib/libSDL_sound-1.0.so.1
+lib/libSDL_sound-1.0.so.1.0
 lib/libSDL_sound.a
 lib/libSDL_sound.la
 lib/libSDL_sound.so
diff -r c43fd1c3b4c2 -r 6ce0c1f9d848 audio/SDL_sound/buildlink2.mk
--- a/audio/SDL_sound/buildlink2.mk     Sun Jan 18 12:45:35 2004 +0000
+++ b/audio/SDL_sound/buildlink2.mk     Sun Jan 18 13:51:15 2004 +0000
@@ -1,10 +1,10 @@
-# $NetBSD: buildlink2.mk,v 1.5 2003/12/08 14:41:38 wiz Exp $
+# $NetBSD: buildlink2.mk,v 1.6 2004/01/18 13:51:15 cube Exp $
 
 .if !defined(SDL_SOUND_BUILDLINK2_MK)
 SDL_SOUND_BUILDLINK2_MK=       # defined
 
 BUILDLINK_PACKAGES+=           SDL_sound
-BUILDLINK_DEPENDS.SDL_sound?=  SDL_sound>=1.0.0nb4
+BUILDLINK_DEPENDS.SDL_sound?=  SDL_sound>=1.0.1
 BUILDLINK_PKGSRCDIR.SDL_sound?=        ../../audio/SDL_sound
 
 EVAL_PREFIX+=                          BUILDLINK_PREFIX.SDL_sound=SDL_sound
diff -r c43fd1c3b4c2 -r 6ce0c1f9d848 audio/SDL_sound/distinfo
--- a/audio/SDL_sound/distinfo  Sun Jan 18 12:45:35 2004 +0000
+++ b/audio/SDL_sound/distinfo  Sun Jan 18 13:51:15 2004 +0000
@@ -1,4 +1,5 @@
-$NetBSD: distinfo,v 1.1.1.1 2003/03/26 22:48:26 wiz Exp $
+$NetBSD: distinfo,v 1.2 2004/01/18 13:51:15 cube Exp $
 
-SHA1 (SDL_sound-1.0.0.tar.gz) = ec0651919b1d5337dc69a70f181e2827be24dde7
-Size (SDL_sound-1.0.0.tar.gz) = 952534 bytes
+SHA1 (SDL_sound-1.0.1.tar.gz) = 9cb8550facf64f941179ba5767f763d1d52ddd6b
+Size (SDL_sound-1.0.1.tar.gz) = 1019056 bytes
+SHA1 (patch-aa) = b65a1ff2fc5f75dfb5e1e05c6aa74318836792fd
diff -r c43fd1c3b4c2 -r 6ce0c1f9d848 audio/SDL_sound/patches/patch-aa
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/audio/SDL_sound/patches/patch-aa  Sun Jan 18 13:51:15 2004 +0000
@@ -0,0 +1,24 @@
+$NetBSD: patch-aa,v 1.1 2004/01/18 13:51:15 cube Exp $
+
+--- configure.orig     2003-10-12 20:54:57.000000000 +0200
++++ configure
+@@ -7363,15 +7363,15 @@ int main (int argc, char *argv[])
+     }
+   else
+     {
+-      printf("\n*** 'smpeg-config --version' returned %d.%d.%d, but the
++      printf("\n*** 'smpeg-config --version' returned %d.%d.%d, but the \
+ minimum version\n", $smpeg_major_version, $smpeg_minor_version,
+ $smpeg_micro_version);
+-      printf("*** of SMPEG required is %d.%d.%d. If smpeg-config is
++      printf("*** of SMPEG required is %d.%d.%d. If smpeg-config is \
+ correct, then it is\n", major, minor, micro);
+       printf("*** best to upgrade to the required version.\n");
+-      printf("*** If smpeg-config was wrong, set the environment variable
++      printf("*** If smpeg-config was wrong, set the environment variable \
+ SMPEG_CONFIG\n");
+-      printf("*** to point to the correct copy of smpeg-config, and remove
++      printf("*** to point to the correct copy of smpeg-config, and remove \
+ the file\n");
+       printf("*** config.cache before re-running configure\n");
+       return 1;



Home | Main Index | Thread Index | Old Index