Skip to Content.
Sympa Menu

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

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 (bbba37f3821fd4a4b216fe1469d84de723ca743a)
  • Date: Fri, 18 Aug 2006 17:26:45 -0500

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

audio-soft/alsa-patch-bay/CONFIGURE | 3 +++
audio-soft/alsa-patch-bay/DEPENDS | 18 +++++++++++++++---
audio-soft/alsa-patch-bay/DETAILS | 18 +++++++++---------
audio-soft/alsa-patch-bay/HISTORY | 8 ++++++++
audio-soft/alsa-patch-bay/PRE_BUILD | 7 +++++++
5 files changed, 42 insertions(+), 12 deletions(-)

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

alsa-patch-bay: Updated to 1.0.0, lots of other fixes.

diff --git a/audio-soft/alsa-patch-bay/CONFIGURE
b/audio-soft/alsa-patch-bay/CONFIGURE
new file mode 100755
index 0000000..706b135
--- /dev/null
+++ b/audio-soft/alsa-patch-bay/CONFIGURE
@@ -0,0 +1,3 @@
+config_query_list APB_AUDIO \
+ "Select audio drivers:" \
+ "ALSA and JACK" ALSA JACK
diff --git a/audio-soft/alsa-patch-bay/DEPENDS
b/audio-soft/alsa-patch-bay/DEPENDS
index dfa5471..3b30bee 100755
--- a/audio-soft/alsa-patch-bay/DEPENDS
+++ b/audio-soft/alsa-patch-bay/DEPENDS
@@ -1,3 +1,15 @@
-depends alsa-utils &&
-depends gtkmm &&
-depends fltk
+# GTKmm support requires 2.0 series, our gtkmm2 spell is 2.4+
+depends fltk "--disable-gtkmm" &&
+
+if [[ "$APB_AUDIO" == ALSA ]]; then
+ depends alsa-lib "--disable-jack"
+fi &&
+
+if [[ "$APB_AUDIO" == JACK ]]; then
+ depends jack "--disable-alsa"
+fi &&
+
+if [[ "$APB_AUDIO" == "ALSA and JACK" ]]; then
+ depends alsa-lib &&
+ depends jack
+fi
diff --git a/audio-soft/alsa-patch-bay/DETAILS
b/audio-soft/alsa-patch-bay/DETAILS
index 17237e7..0c3e2ea 100755
--- a/audio-soft/alsa-patch-bay/DETAILS
+++ b/audio-soft/alsa-patch-bay/DETAILS
@@ -1,16 +1,16 @@
SPELL=alsa-patch-bay
- VERSION=0.5.1
+ VERSION=1.0.0
SOURCE=$SPELL-$VERSION.tar.gz
SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION
- SOURCE_URL[0]=http://pkl.net/~node/software/$SOURCE
- WEB_SITE=http://pkl.net/~node/
+ SOURCE_URL[0]=http://pkl.net/~node/software/$SPELL/$SOURCE
+ WEB_SITE=http://pkl.net/~node/software/$SPELL/
ENTERED=20020516
- UPDATED=20030329
-
SOURCE_HASH=sha512:9f0a4365babb6ad154030b5a4d57d327be5c84fc47d41bf66392098b23fc1623a37dc11bc770c45f454febb0168cadd907ee573349b48d86bfe80734c36dafdb
- LICENSE[0]=GPL
- MAINTAINER=unet AT sourcemage.org
+
SOURCE_HASH=sha512:214dd0b75c1ae272d5de8f678a6dafa7b55fbcd7988ad4b4fc3862ba949940d9a5cd9b40a619c434f252799500e639ed5040bcecfe9fd76d8e41cb2c62c0604c
+ LICENSE[0]=GPL
KEYWORDS="tools audio"
- SHORT="A small GUI version of alsa's aconnect."
+ SHORT="A graphical patch bay for ALSA and JACK."
cat << EOF
-A small GUI version of alsa's aconnect.
+ALSA Patch Bay is a graphical patch bay for the ALSA sequencer API and the
+JACK audio API. It can use FLTK or GTKmm for the interface and take
advantage
+of LASH session management.
EOF
diff --git a/audio-soft/alsa-patch-bay/HISTORY
b/audio-soft/alsa-patch-bay/HISTORY
index 108ad27..3ac0233 100644
--- a/audio-soft/alsa-patch-bay/HISTORY
+++ b/audio-soft/alsa-patch-bay/HISTORY
@@ -1,3 +1,11 @@
+2006-08-19 Juuso Alasuutari <iuso AT sourcemage.org>
+ * DETAILS: Updated to 1.0.0, fixed URLs, removed UPDATED &
+ MAINTAINER, updated descriptions.
+ * CONFIGURE: Added. Query about audio drivers.
+ * DEPENDS: Conditionals added for driver depends.
+ * PRE_BUILD: Added. Prevent install of jack-patch-bay stuff when
+ JACK not selected.
+
2006-03-12 Karsten Behrmann <BearPerson AT sourcemage.org>
* DETAILS: (automated) Add KEYWORDS

diff --git a/audio-soft/alsa-patch-bay/PRE_BUILD
b/audio-soft/alsa-patch-bay/PRE_BUILD
new file mode 100755
index 0000000..777879a
--- /dev/null
+++ b/audio-soft/alsa-patch-bay/PRE_BUILD
@@ -0,0 +1,7 @@
+default_pre_build &&
+cd $SOURCE_DIRECTORY &&
+
+if [[ "$APB_AUDIO" == ALSA ]]; then
+ sedit "/.*jack-patch-bay/D" src/Makefile.in &&
+ sedit "s/jack-patch-bay.desktop//g" Makefile.in
+fi



  • [SM-Commit] GIT changes to master grimoire by Juuso Alasuutari (bbba37f3821fd4a4b216fe1469d84de723ca743a), Juuso Alasuutari, 08/18/2006

Archive powered by MHonArc 2.6.24.

Top of Page