New commits:
commit 8ab0d7f48a6efd6e11f0bd04f22bb0d238f99053
Author: Thomas Orgis <sobukus AT sourcemage.org>
Commit: Thomas Orgis <sobukus AT sourcemage.org>
libsndfile: version 1.2.2 with MPEG support and gcc15 fix
diff --git a/audio-libs/libsndfile/CONFIGURE b/audio-libs/libsndfile/CONFIGURE
index d1b0f34..8673692 100755
--- a/audio-libs/libsndfile/CONFIGURE
+++ b/audio-libs/libsndfile/CONFIGURE
@@ -1,7 +1,10 @@
config_query_option LIBSNDFILE_OPTS "Enable support for large files?" y \
"--enable-largefile" \
- "--disable-largefile"
+ "--disable-largefile" &&
config_query_option LIBSNDFILE_OPTS "Enable use of FLAC, Ogg and Vorbis?" y \
"--enable-external-libs" \
- "--disable-external-libs"
+ "--disable-external-libs" &&
+config_query_option LIBSNDFILE_OPTS "Enable MPEG (via libmpg123 & lame)?" y \
+ "--enable-mpeg" \
+ "--disable-mpeg"
diff --git a/audio-libs/libsndfile/DEPENDS b/audio-libs/libsndfile/DEPENDS
index c4bf74b..1fd7f12 100755
--- a/audio-libs/libsndfile/DEPENDS
+++ b/audio-libs/libsndfile/DEPENDS
@@ -12,6 +12,11 @@ if list_find "$LIBSNDFILE_OPTS" "--enable-external-libs";
then
depends flac
fi &&