Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Thomas Orgis (e830d2383c391a80d475030a931676956d8d9b92)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Thomas Orgis <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Thomas Orgis (e830d2383c391a80d475030a931676956d8d9b92)
  • Date: Sun, 30 Nov 2008 13:17:44 -0600

GIT changes to master grimoire by Thomas Orgis <sobukus AT sourcemage.org>:

ChangeLog | 4 ++++
audio-soft/meterbridge/DEPENDS | 3 +++
audio-soft/meterbridge/DETAILS | 16 ++++++++++++++++
audio-soft/meterbridge/HISTORY | 3 +++
audio-soft/meterbridge/PRE_BUILD | 17 +++++++++++++++++
5 files changed, 43 insertions(+)

New commits:
commit e830d2383c391a80d475030a931676956d8d9b92
Author: Thomas Orgis <sobukus AT sourcemage.org>
Commit: Thomas Orgis <sobukus AT sourcemage.org>

meterbridge: new spell

diff --git a/ChangeLog b/ChangeLog
index 904c773..9b03f5f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+
+2008-11-30 Thomas Orgis <sobukus AT sourcemage.org>
+ * audio-soft/meterbridge: New spell, monitoring jack audio.
+
2008-11-30 Juuso Alasuutari <iuso AT sourcemage.org>
* audio-soft/jack_capture: New spell, audio recording utility.
* audio-libs/celt: New spell, audio codec for low-delay communication.
diff --git a/audio-soft/meterbridge/DEPENDS b/audio-soft/meterbridge/DEPENDS
new file mode 100755
index 0000000..bd15d65
--- /dev/null
+++ b/audio-soft/meterbridge/DEPENDS
@@ -0,0 +1,3 @@
+depends JACK-DRIVER &&
+depends sdl &&
+depends sdl_image
diff --git a/audio-soft/meterbridge/DETAILS b/audio-soft/meterbridge/DETAILS
new file mode 100755
index 0000000..c0bfefc
--- /dev/null
+++ b/audio-soft/meterbridge/DETAILS
@@ -0,0 +1,16 @@
+ SPELL=meterbridge
+ VERSION=0.9.2
+ SOURCE=$SPELL-$VERSION.tar.gz
+SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION
+ SOURCE_URL[0]=http://plugin.org.uk/meterbridge/$SOURCE
+
SOURCE_HASH=sha512:dec68307430649f3281528b31f20f501df07c4c9841776bac9c532d16a309bc701d39a5f577dc55eccb0edebc514d2eeca45c057a81a5c6c57bd61faae7deff0
+ WEB_SITE=http://plugin.org.uk/meterbridge/
+ ENTERED=20081130
+ LICENSE[0]="GPL"
+ SHORT="a software meterbridge for the UNIX based JACK audio
system"
+cat << EOF
+This app visualizes the audio on JACK ports. A basic application is
monitoring the level
+of several channels (useful for tuning input levels from microphone preamps).
+It supports a number of different types of meter, rendered using the SDL
library and
+user-editable pixmaps.
+EOF
diff --git a/audio-soft/meterbridge/HISTORY b/audio-soft/meterbridge/HISTORY
new file mode 100644
index 0000000..26a1324
--- /dev/null
+++ b/audio-soft/meterbridge/HISTORY
@@ -0,0 +1,3 @@
+2008-11-30 Thomas Orgis <sobukus AT sourcemage.org>
+ * DETAILS, DEPENDS: created spell
+ * PRE_BUILD: patch one line for current gcc
diff --git a/audio-soft/meterbridge/PRE_BUILD
b/audio-soft/meterbridge/PRE_BUILD
new file mode 100755
index 0000000..5163110
--- /dev/null
+++ b/audio-soft/meterbridge/PRE_BUILD
@@ -0,0 +1,17 @@
+default_pre_build &&
+cd "$SOURCE_DIRECTORY" &&
+# Fixing this in version 0.9.2:
+# vu_meters.c:11: error: static declaration of 'buf_rect' follows non-static
declaration
+# main.h:11: error: previous declaration of 'buf_rect' was here
+echo '--- /usr/src/meterbridge-0.9.2/src/main.h 2003-06-05
11:42:41.000000000 +0200
++++ src/main.h 2008-08-01 10:08:16.000000000 +0200
+@@ -8,7 +8,8 @@
+
+ extern SDL_Surface *screen;
+ extern SDL_Surface *image, *meter, *meter_buf;
+-extern SDL_Rect win, buf_rect[MAX_METERS], dest[MAX_METERS];
++/* extern SDL_Rect win, buf_rect[MAX_METERS], dest[MAX_METERS]; */
++extern SDL_Rect win, dest[MAX_METERS];
+
+ extern jack_port_t *input_ports[MAX_METERS];
+ extern jack_port_t *output_ports[MAX_METERS];' | patch -Np0



  • [SM-Commit] GIT changes to master grimoire by Thomas Orgis (e830d2383c391a80d475030a931676956d8d9b92), Thomas Orgis, 11/30/2008

Archive powered by MHonArc 2.6.24.

Top of Page