New commits:
commit 84d78290dd94e023977da07f9916654c63944372
Author: Juuso Alasuutari <iuso AT sourcemage.org>
Commit: Juuso Alasuutari <iuso AT sourcemage.org>
qsynth: Added PRE_BUILD; need to sed the configure script so that it will
find Qt4's
qmake/moc/uic executables instead of Qt3's equivalent ones when both
libraries are
installed.
commit da70e3be16ba727f608ef27da7151e655ddb2bb5
Author: Juuso Alasuutari <iuso AT sourcemage.org>
Commit: Juuso Alasuutari <iuso AT sourcemage.org>
qjackctl: Re-added PRE_BUILD; we need to sed the configure script because
it detects the
Qt3 qmake/moc/uic executables instead of the Qt4 ones, so that the build
will fail if both
libraries are installed.
commit 7123d55bb5b0c7e6b838d9887af202bc3dba3c84
Author: Juuso Alasuutari <iuso AT sourcemage.org>
Commit: Juuso Alasuutari <iuso AT sourcemage.org>
gail: Removed depends libgnomecanvas because it depends on gail, not
vice-versa.
commit af37feb026bdffca5ab0b9b4714ac08703f67978
Author: Juuso Alasuutari <iuso AT sourcemage.org>
Commit: Juuso Alasuutari <iuso AT sourcemage.org>
libgnomecanvas: Added depends pango & gail, that's what ./configure says
commit d2fc9e95cf483730396c35853f4fc8c3049b798c
Author: Juuso Alasuutari <iuso AT sourcemage.org>
Commit: Juuso Alasuutari <iuso AT sourcemage.org>
jack-cvs: Deleted PROVIDES because this spell is deprecated.
diff --git a/audio-creation/qsynth/HISTORY b/audio-creation/qsynth/HISTORY
index e11e7c4..e42e785 100644
--- a/audio-creation/qsynth/HISTORY
+++ b/audio-creation/qsynth/HISTORY
@@ -5,6 +5,9 @@
and libxext for xorg-modular.
* BUILD: Added, add system tray option to OPTS and fluidsynth
path to PATH.
+ * PRE_BUILD: Added, need to sed configure script so that it
+ finds qt4's qmake/moc/uic executables instead of qt-x11's
+ equivalent ones if both libraries are installed.
2006-09-05 Juuso Alasuutari <iuso AT sourcemage.org>
* DETAILS: Removed BUILD_API=2, UPDATED, and MAINTAINER. Edited
diff --git a/audio-creation/qsynth/PRE_BUILD b/audio-creation/qsynth/PRE_BUILD
new file mode 100755
index 0000000..8bc1b5c
--- /dev/null
+++ b/audio-creation/qsynth/PRE_BUILD
@@ -0,0 +1,7 @@
+default_pre_build &&
+cd "$SOURCE_DIRECTORY" &&
+
+local qt4_bin="$INSTALL_ROOT/usr/bin/qt4" &&
+
+sed -i "s|as_dir in \$ac_path|as_dir in \"$qt4_bin\" \$ac_path|" \
+ configure
diff --git a/audio-drivers/jack-cvs/HISTORY b/audio-drivers/jack-cvs/HISTORY
index 01d7593..c6ef233 100644
--- a/audio-drivers/jack-cvs/HISTORY
+++ b/audio-drivers/jack-cvs/HISTORY
@@ -1,3 +1,6 @@
+2007-09-15 Juuso Alasuutari <iuso AT sourcemage.org>
+ * PROVIDES: Deleted, not healthy to have in a deprecated spell.
+
2007-04-11 Juuso Alasuutari <iuso AT sourcemage.org>
* Deprecated, SVN support now in main jack spell.
diff --git a/audio-drivers/jack-cvs/PROVIDES b/audio-drivers/jack-cvs/PROVIDES
deleted file mode 100755
index 9873a4b..0000000
--- a/audio-drivers/jack-cvs/PROVIDES
+++ /dev/null
@@ -1 +0,0 @@
-JACK-DRIVER
diff --git a/audio-soft/qjackctl/HISTORY b/audio-soft/qjackctl/HISTORY
index 99088c6..b7e7333 100644
--- a/audio-soft/qjackctl/HISTORY
+++ b/audio-soft/qjackctl/HISTORY
@@ -6,6 +6,9 @@
* BUILD: Added $INSTALL_ROOT/usr/bin/qt4 to PATH so that qmake
can be found during build.
* PRE_BUILD: Removed, unnecessary with qt4.
+ * PRE_BUILD: Re-added, need to sed configure script so that
+ it finds qt4's qmake/moc/uic executables instead of qt-x11's
+ equivalent ones if both libraries are installed.