Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Juuso Alasuutari (14025fd834fc9abc9afcba1d02a8211e6720d4d4)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Juuso Alasuutari <scm AT mail.sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Juuso Alasuutari (14025fd834fc9abc9afcba1d02a8211e6720d4d4)
  • Date: Sat, 7 Oct 2006 17:01:14 -0500

GIT changes to master grimoire by Juuso Alasuutari <iuso AT sourcemage.org>:

audio-drivers/jack/BUILD | 10 ++++++----
audio-drivers/jack/CONFIGURE | 30 +++++++++++++++++++++++++-----
audio-drivers/jack/DEPENDS | 13 +++++++++----
audio-drivers/jack/DETAILS | 4 ++--
audio-drivers/jack/HISTORY | 9 +++++++++
5 files changed, 51 insertions(+), 15 deletions(-)

New commits:
commit 233bf29c22aa448d629f3ccb66b20cf95e60ed6b
Author: Juuso Alasuutari <iuso AT sourcemage.org>
Commit: Juuso Alasuutari <iuso AT sourcemage.org>

jack: Removed config option that breaks stuff.

commit 8e262637c9b361af653175bd67ba1e3480ca4150
Author: Juuso Alasuutari <iuso AT sourcemage.org>
Commit: Juuso Alasuutari <iuso AT sourcemage.org>

jack: Version 0.102.20, new options added.

diff --git a/audio-drivers/jack/BUILD b/audio-drivers/jack/BUILD
index e186be5..3a37ed4 100755
--- a/audio-drivers/jack/BUILD
+++ b/audio-drivers/jack/BUILD
@@ -1,5 +1,7 @@
-# Remove --disable-freebob and add FreeBob support in DEPENDS if/when
-# someone writes a spell for it
-OPTS="--disable-freebob --disable-coreaudio $MIXSSE $JACK_OSS \
- $JACK_OPTIMIZE --with-default-tmpdir=$JACK_TMPDIR $OPTS" &&
+OPTS="--disable-coreaudio \
+ $JACK_OSS $JACK_SIMD $JACK_SHM \
+ $JACK_RESIZE $JACK_OPTIMIZE \
+ --with-default-tmpdir=$JACK_TMPDIR \
+ $OPTS" &&
+
default_build
diff --git a/audio-drivers/jack/CONFIGURE b/audio-drivers/jack/CONFIGURE
index ac12dbf..4c7510b 100755
--- a/audio-drivers/jack/CONFIGURE
+++ b/audio-drivers/jack/CONFIGURE
@@ -1,11 +1,31 @@
-config_query_option JACK_OSS "Enable OSS driver support?" y \
- "--enable-oss" "--disable-oss" &&
+config_query_option JACK_OSS \
+ "Enable OSS driver support?" y \
+ "--enable-oss" \
+ "--disable-oss" &&

-config_query_option MIXSSE "Enable SSE/3DNow mixing support?" n \
- "--enable-dynsimd" "" &&
+# Old query & var name for dynsimd was misleading
+if [[ $MIXSSE ]]; then
+ local JACK_SIMD="$MIXSSE" &&
+ persistent_remove MIXSSE
+fi &&
+config_query_option JACK_SIMD \
+ "Enable dynamic SIMD selection?" n \
+ "--enable-dynsimd" \
+ "--disable-dynsimd" &&
+
+config_query_option JACK_SHM \
+ "Use POSIX shared memory API?" n \
+ "--enable-posix-shm" \
+ "--disable-posix-shm" &&
+
+config_query_option JACK_RESIZE \
+ "Enable buffer resizing feature?" n \
+ "--enable-resize" \
+ "--disable-resize" &&

config_query_option JACK_OPTIMIZE \
"Ask the compiler for its best optimizations?" n \
- "--enable-optimize" "" &&
+ "--enable-optimize" \
+ "--disable-optimize" &&

config_query_string JACK_TMPDIR "Input default JACK temp dir:" /tmp
diff --git a/audio-drivers/jack/DEPENDS b/audio-drivers/jack/DEPENDS
index c4d2fbe..c4de145 100755
--- a/audio-drivers/jack/DEPENDS
+++ b/audio-drivers/jack/DEPENDS
@@ -8,7 +8,12 @@ optional_depends portaudio
"--disable-portaudio" \
"for PortAudio driver support" &&

-optional_depends libcap \
- "--enable-capabilities" \
- "--disable-capabilities" \
- "to gain realtime scheduling priviledges"
+optional_depends libcap \
+ "--enable-capabilities" \
+ "--disable-capabilities" \
+ "to gain realtime scheduling priviledges" &&
+
+optional_depends doxygen \
+ "" \
+ "" \
+ "to generate API documentation"
diff --git a/audio-drivers/jack/DETAILS b/audio-drivers/jack/DETAILS
index 09dc5f8..4da88bf 100755
--- a/audio-drivers/jack/DETAILS
+++ b/audio-drivers/jack/DETAILS
@@ -1,9 +1,9 @@
SPELL=jack
- VERSION="0.101.1"
+ VERSION="0.102.20"
SOURCE=$SPELL-audio-connection-kit-$VERSION.tar.gz
SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-audio-connection-kit-$VERSION
SOURCE_URL[0]=$SOURCEFORGE_URL/jackit/$SOURCE
-SOURCE_HASH=sha512:2efb6cf057118489a908ddbecb52d410a6d078647e1beaf0533544c27eaf718b0044b79e5e342368f2ff51fcf3be3cea2ba306b025cd1aedd3aafca092cb1eb4
+
SOURCE_HASH=sha512:5deea275738c0569b6a03f440357d0de1052bc4d8b9fa54f2c078bcd035f0c2ab3a518bf0ab338b0b4d772bfc56f69d46ba7864cc872e41a264c3d0a54392d7f
WEB_SITE=http://jackaudio.org/
ENTERED=20030921
LICENSE[0]=GPL
diff --git a/audio-drivers/jack/HISTORY b/audio-drivers/jack/HISTORY
index 32f5667..e0ccb69 100644
--- a/audio-drivers/jack/HISTORY
+++ b/audio-drivers/jack/HISTORY
@@ -1,3 +1,12 @@
+2006-10-07 Juuso Alasuutari <iuso AT sourcemage.org>
+ * DETAILS: Updated to 0.102.20.
+ * CONFIGURE: Added queries for POSIX shm and buffer resize
+ options, fixed dynamic SIMD option query + var name wording,
+ tidied formatting.
+ * DEPENDS: Added optional_depends doxygen.
+ * BUILD: Added new options to OPTS, removed --disable-freebob
+ (breaks configure).
+
2006-09-21 Juuso Alasuutari <iuso AT sourcemage.org>
* PROVIDES: [automated] Fixed invalid entries.




  • [SM-Commit] GIT changes to master grimoire by Juuso Alasuutari (14025fd834fc9abc9afcba1d02a8211e6720d4d4), Juuso Alasuutari, 10/07/2006

Archive powered by MHonArc 2.6.24.

Top of Page