Skip to Content.
Sympa Menu

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

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Juuso Alasuutari <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Juuso Alasuutari (fe40bd97936a710fd1183d25b4362ce3d76cb973)
  • Date: Fri, 14 Sep 2007 17:49:42 -0500

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

audio-soft/qjackctl/BUILD | 4 +++-
audio-soft/qjackctl/CONFIGURE | 10 +++++++---
audio-soft/qjackctl/DEPENDS | 9 ++++-----
audio-soft/qjackctl/DETAILS | 21 ++++++++++-----------
audio-soft/qjackctl/HISTORY | 9 +++++++++
audio-soft/qjackctl/PRE_BUILD | 9 ---------
6 files changed, 33 insertions(+), 29 deletions(-)

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

qjackctl 0.3.1a

diff --git a/audio-soft/qjackctl/BUILD b/audio-soft/qjackctl/BUILD
index 03b2656..4ab9c14 100755
--- a/audio-soft/qjackctl/BUILD
+++ b/audio-soft/qjackctl/BUILD
@@ -1 +1,3 @@
-OPTS="$QJCTL_TRAY $OPTS" default_build
+PATH="$INSTALL_ROOT/usr/bin/qt4:$PATH" \
+OPTS="$QJCTL_TRAY $QJCTL_JACK_MIDI $OPTS" \
+default_build
diff --git a/audio-soft/qjackctl/CONFIGURE b/audio-soft/qjackctl/CONFIGURE
index 28d4d53..f5e0506 100755
--- a/audio-soft/qjackctl/CONFIGURE
+++ b/audio-soft/qjackctl/CONFIGURE
@@ -1,5 +1,9 @@
-# QJackCtl 0.2.22's ./configure treats --enable as --disable
config_query_option QJCTL_TRAY \
"Enable system tray?" y \
- "" \
- "--disable-system-tray"
+ "--enable-system-tray" \
+ "--disable-system-tray" &&
+
+config_query_option QJCTL_JACK_MIDI \
+ "Enable JACK MIDI support?" y \
+ "--enable-jack-midi" \
+ "--disable-jack-midi"
diff --git a/audio-soft/qjackctl/DEPENDS b/audio-soft/qjackctl/DEPENDS
index b466e8f..b558a95 100755
--- a/audio-soft/qjackctl/DEPENDS
+++ b/audio-soft/qjackctl/DEPENDS
@@ -1,9 +1,9 @@
-depends g++ &&
-depends qt-x11 &&
+depends g++ &&
+depends qt4 &&

. "$GRIMOIRE/FUNCTIONS" &&

-if check_if_xorg_modular_libs qt-x11
+if check_if_xorg_modular_libs qt4
then
depends libx11 &&
depends libxext
@@ -11,8 +11,7 @@ fi &&

depends JACK-DRIVER &&

-# QJackCtl 0.2.22's ./configure treats --enable as --disable
optional_depends alsa-lib \
- "" \
+ "--enable-alsa-seq" \
"--disable-alsa-seq" \
"for ALSA/MIDI sequencer support"
diff --git a/audio-soft/qjackctl/DETAILS b/audio-soft/qjackctl/DETAILS
index 794a5e2..d04fc20 100755
--- a/audio-soft/qjackctl/DETAILS
+++ b/audio-soft/qjackctl/DETAILS
@@ -1,23 +1,22 @@
SPELL=qjackctl
- VERSION=0.2.22
+ VERSION=0.3.1a
SOURCE=$SPELL-$VERSION.tar.gz
SOURCE_DIRECTORY="$BUILD_DIRECTORY/$SPELL-$VERSION"
SOURCE_URL[0]=$SOURCEFORGE_URL/$SPELL/$SOURCE
-
SOURCE_HASH=sha512:e4c75e5341142e8d2663c42d21022f4852ec65a4803d8b1bec2d9206584dfd117d0306333ac861fad4abd69c9569cd98ff8a353e59ed89bb5de9b9365217d546
+
SOURCE_HASH=sha512:0b6863b30e600d689e43832416083a6d020963c174adb02f2585e295420259c1d5bcf10bc0c3d787d889658780ff541d1d1736375149733a5cce1d108fc4bd7e
WEB_SITE=http://qjackctl.sf.net
ENTERED=20031215
LICENSE[0]=GPL
KEYWORDS="jack qt tools audio"
- SHORT="A simple Qt application to control the JACK sound server
daemon."
+ SHORT="A Qt application to control the JACK sound server daemon."
cat << EOF
-Qjackctl is a simple Qt application to control the JACK sound server daemon,
+QjackCtl is a simple Qt application to control the JACK sound server daemon,
specific for the Linux Audio Desktop infrastructure.
-
-Written in C++ around the Qt3 toolkit for X11, most exclusively using Qt
+Written in C++ around the Qt4 toolkit for X11, most exclusively using Qt
Designer.
-
-Provides a simple GUI dialog for setting several JACK daemon parameters,
which
-are properly saved between sessions, and a way control of the status of the
-audio server daemon. With time, this primordial interface has become richer
by
-including a enhanced patchbay and connection control features.
+Provides a simple GUI dialog for setting several JACK daemon parameters,
+which are properly saved between sessions, and a way control of the status
+of the audio server daemon. With time, this primordial interface has become
+richer by including a enhanced patchbay and connection control features.
EOF
+
diff --git a/audio-soft/qjackctl/HISTORY b/audio-soft/qjackctl/HISTORY
index d367716..99088c6 100644
--- a/audio-soft/qjackctl/HISTORY
+++ b/audio-soft/qjackctl/HISTORY
@@ -1,3 +1,12 @@
+2007-09-15 Juuso Alasuutari <iuso AT sourcemage.org>
+ * DETAILS: Updated to 0.3.1a.
+ * DEPENDS: Changed depends qt-x11 to qt4.
+ * CONFIGURE, DEPENDS: Re-added --enable flags.
+ * CONFIGURE, BUILD: Added JACK MIDI option.
+ * BUILD: Added $INSTALL_ROOT/usr/bin/qt4 to PATH so that qmake
+ can be found during build.
+ * PRE_BUILD: Removed, unnecessary with qt4.
+
2007-04-06 Juuso Alasuutari <iuso AT sourcemage.org>
* CONFIGURE, DEPENDS: Removed --enable flags, ./configure treats
them as if they were --disable.
diff --git a/audio-soft/qjackctl/PRE_BUILD b/audio-soft/qjackctl/PRE_BUILD
deleted file mode 100755
index 1c5939e..0000000
--- a/audio-soft/qjackctl/PRE_BUILD
+++ /dev/null
@@ -1,9 +0,0 @@
-#
-# QTDIR needs to be set
-#
-if [[ -z $QTDIR ]]
-then
- . "$TRACK_ROOT/etc/profile.d/qt.sh"
-fi &&
-
-default_pre_build



  • [SM-Commit] GIT changes to master grimoire by Juuso Alasuutari (fe40bd97936a710fd1183d25b4362ce3d76cb973), Juuso Alasuutari, 09/14/2007

Archive powered by MHonArc 2.6.24.

Top of Page