pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/audio/SDL2_mixer SDL2_mixer: updated to 2.0.4



details:   https://anonhg.NetBSD.org/pkgsrc/rev/db806c70683a
branches:  trunk
changeset: 314615:db806c70683a
user:      adam <adam%pkgsrc.org@localhost>
date:      Thu Nov 01 21:12:40 2018 +0000

description:
SDL2_mixer: updated to 2.0.4

2.0.4:
* Removed smpeg support for mp3 music, now that it's replaced by libmpg123
* Fixed mp3 mad decoder to skip tags, which otherwise would lead to crashes
* Added support for Opus music playback using opusfile library

2.0.3:
* Fixed regression where Mix_Init() would return 0 for available music formats

diffstat:

 audio/SDL2_mixer/Makefile                |   9 ++++++-
 audio/SDL2_mixer/distinfo                |  11 +++++----
 audio/SDL2_mixer/options.mk              |  33 +------------------------------
 audio/SDL2_mixer/patches/patch-configure |  15 ++++++++++++++
 4 files changed, 30 insertions(+), 38 deletions(-)

diffs (106 lines):

diff -r f6b4de3db912 -r db806c70683a audio/SDL2_mixer/Makefile
--- a/audio/SDL2_mixer/Makefile Thu Nov 01 21:10:22 2018 +0000
+++ b/audio/SDL2_mixer/Makefile Thu Nov 01 21:12:40 2018 +0000
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.7 2018/07/26 08:02:24 adam Exp $
+# $NetBSD: Makefile,v 1.8 2018/11/01 21:12:40 adam Exp $
 
-DISTNAME=      SDL2_mixer-2.0.2
+DISTNAME=      SDL2_mixer-2.0.4
 CATEGORIES=    audio devel
 MASTER_SITES=  http://www.libsdl.org/projects/SDL_mixer/release/
 
@@ -17,5 +17,10 @@
 
 .include "options.mk"
 
+.include "../../audio/flac/buildlink3.mk"
+.include "../../audio/libmodplug/buildlink3.mk"
+.include "../../audio/libvorbis/buildlink3.mk"
+.include "../../audio/mpg123/buildlink3.mk"
+.include "../../audio/opusfile/buildlink3.mk"
 .include "../../devel/SDL2/buildlink3.mk"
 .include "../../mk/bsd.pkg.mk"
diff -r f6b4de3db912 -r db806c70683a audio/SDL2_mixer/distinfo
--- a/audio/SDL2_mixer/distinfo Thu Nov 01 21:10:22 2018 +0000
+++ b/audio/SDL2_mixer/distinfo Thu Nov 01 21:12:40 2018 +0000
@@ -1,6 +1,7 @@
-$NetBSD: distinfo,v 1.5 2018/06/24 10:28:45 adam Exp $
+$NetBSD: distinfo,v 1.6 2018/11/01 21:12:40 adam Exp $
 
-SHA1 (SDL2_mixer-2.0.2.tar.gz) = 24af8db6e3e0e2a3f4af53fe08e891423d02f1d4
-RMD160 (SDL2_mixer-2.0.2.tar.gz) = f748e93033cf5e2fb9fbd8bed86459a7b4d40c76
-SHA512 (SDL2_mixer-2.0.2.tar.gz) = c40b5ac93933df1cc932e7afe796ad6765aafb24077601a23f98ac625a83341079ad903c164eafd022aff6011872e7a7956eebd8e3d3edad1bf5dc7eb9c306b7
-Size (SDL2_mixer-2.0.2.tar.gz) = 9620763 bytes
+SHA1 (SDL2_mixer-2.0.4.tar.gz) = 242a63b1c7f38e358e94b1e0dc5120a6c1f3763b
+RMD160 (SDL2_mixer-2.0.4.tar.gz) = d5674a92bc9a81e3aba0072c4d7e2314e56958d6
+SHA512 (SDL2_mixer-2.0.4.tar.gz) = 98c56069640668aaececa63748de21fc8f243c7d06386c45c43d0ee472bbb2595ccda644d9886ce5b95c3a3dee3c0a96903cf9a89ddc18d38f041133470699a3
+Size (SDL2_mixer-2.0.4.tar.gz) = 11125077 bytes
+SHA1 (patch-configure) = 1666d97f82c5f3dca03eb45dad6b9e73dc61dffd
diff -r f6b4de3db912 -r db806c70683a audio/SDL2_mixer/options.mk
--- a/audio/SDL2_mixer/options.mk       Thu Nov 01 21:10:22 2018 +0000
+++ b/audio/SDL2_mixer/options.mk       Thu Nov 01 21:12:40 2018 +0000
@@ -1,42 +1,13 @@
-# $NetBSD: options.mk,v 1.2 2018/06/24 10:28:45 adam Exp $
+# $NetBSD: options.mk,v 1.3 2018/11/01 21:12:40 adam Exp $
 
 PKG_OPTIONS_VAR=       PKG_OPTIONS.SDL2_mixer
-PKG_SUPPORTED_OPTIONS= flac fluidsynth modplug mpg123 vorbis
-PKG_SUGGESTED_OPTIONS+=        flac modplug mpg123 vorbis
+PKG_SUPPORTED_OPTIONS= fluidsynth
 
 .include "../../mk/bsd.options.mk"
 
-.if !empty(PKG_OPTIONS:Mflac)
-.include "../../audio/flac/buildlink3.mk"
-CONFIGURE_ARGS+=       --enable-music-flac=yes
-.else
-CONFIGURE_ARGS+=       --enable-music-flac=no
-.endif
-
 .if !empty(PKG_OPTIONS:Mfluidsynth)
 .include "../../audio/fluidsynth/buildlink3.mk"
 CONFIGURE_ARGS+=       --enable-music-midi-fluidsynth=yes
 .else
 CONFIGURE_ARGS+=       --enable-music-midi-fluidsynth=no
 .endif
-
-.if !empty(PKG_OPTIONS:Mmodplug)
-.include "../../audio/libmodplug/buildlink3.mk"
-CONFIGURE_ARGS+=       --enable-music-mod-modplug=yes
-.else
-CONFIGURE_ARGS+=       --enable-music-mod-modplug=no
-.endif
-
-.if !empty(PKG_OPTIONS:Mmpg123)
-.include "../../audio/mpg123/buildlink3.mk"
-CONFIGURE_ARGS+=       --enable-music-mp3-mpg123=yes
-.else
-CONFIGURE_ARGS+=       --enable-music-mp3-mpg123=no
-.endif
-
-.if !empty(PKG_OPTIONS:Mvorbis)
-.include "../../audio/libvorbis/buildlink3.mk"
-CONFIGURE_ARGS+=       --enable-music-ogg=yes
-.else
-CONFIGURE_ARGS+=       --enable-music-ogg=no
-.endif
diff -r f6b4de3db912 -r db806c70683a audio/SDL2_mixer/patches/patch-configure
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/audio/SDL2_mixer/patches/patch-configure  Thu Nov 01 21:12:40 2018 +0000
@@ -0,0 +1,15 @@
+$NetBSD: patch-configure,v 1.1 2018/11/01 21:12:40 adam Exp $
+
+Use absolute paths for dlopen(); don't expect users set LD_LIBRARY_PATH.
+
+--- configure.orig     2018-11-01 20:04:16.000000000 +0000
++++ configure
+@@ -11150,7 +11150,7 @@ find_lib()
+         host_lib_path="/usr/$base_libdir /usr/local/$base_libdir"
+     fi
+     for path in $env_lib_path $gcc_bin_path $gcc_lib_path $host_lib_path; do
+-        lib=`ls -- $path/$1 2>/dev/null | sed -e '/\.so\..*\./d' -e 's,.*/,,' | sort | tail -1`
++        lib=`ls -- $path/$1 2>/dev/null | sed -e '/\.so\..*\./d' | sort | tail -1`
+         if test x$lib != x; then
+             echo $lib
+             return



Home | Main Index | Thread Index | Old Index