Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Andraž Levstik (71cc552d5ed8d1fe2581e15af1e6846bbf98d114)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Andraž Levstik <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Andraž Levstik (71cc552d5ed8d1fe2581e15af1e6846bbf98d114)
  • Date: Tue, 11 Nov 2008 06:38:06 -0600

GIT changes to master grimoire by Andraž Levstik <ruskie AT codemages.net>:

audio-creation/lmms/BUILD | 4 -
audio-creation/lmms/CONFIGURE | 15 ++----
audio-creation/lmms/DEPENDS | 101
+++++++++++++++++++++++++-----------------
audio-creation/lmms/DETAILS | 4 -
audio-creation/lmms/HISTORY | 6 ++
5 files changed, 77 insertions(+), 53 deletions(-)

New commits:
commit 71cc552d5ed8d1fe2581e15af1e6846bbf98d114
Author: Andraž Levstik <ruskie AT codemages.net>
Commit: Andraž Levstik <ruskie AT codemages.net>

lmms: update to 0.4.0, now uses qt4_build

diff --git a/audio-creation/lmms/BUILD b/audio-creation/lmms/BUILD
index 2fa3eb0..886e38e 100755
--- a/audio-creation/lmms/BUILD
+++ b/audio-creation/lmms/BUILD
@@ -1,2 +1,2 @@
-OPTS="$LMMS_SURROUND $LMMS_SINC $LMMS_OSS $LMMS_VST $OPTS" &&
-default_build
+OPTS="$LMMS_VST $OPTS" &&
+qt4_build
diff --git a/audio-creation/lmms/CONFIGURE b/audio-creation/lmms/CONFIGURE
index 6a75497..67898ea 100755
--- a/audio-creation/lmms/CONFIGURE
+++ b/audio-creation/lmms/CONFIGURE
@@ -1,12 +1,7 @@
-config_query_option LMMS_SURROUND \
- "Enable surround support?" y \
- "--with-surround" "--without-surround" &&
-config_query_option LMMS_SINC \
- "Enable high quality sinc resampling?" n \
- "--with-hqsinc" "--without-hqsinc" &&
-config_query_option LMMS_OSS \
- "Enable OSS sound output?" y \
- "--with-oss" "--without-oss" &&
+persistent_read
+LMMS_VST=${LMMS_VST/--without-vst/-DWANT_VST=0}
+LMMS_VST=${LMMS_VST/--with-vst/-DWANT_VST=1}
+
config_query_option LMMS_VST \
"Enable support for builtin VST plugin hosting?" n \
- "--with-vst" "--without-vst"
+ "-DWANT_VST=1" "-DWANT_VST=0"
diff --git a/audio-creation/lmms/DEPENDS b/audio-creation/lmms/DEPENDS
index e96f0b5..1c06983 100755
--- a/audio-creation/lmms/DEPENDS
+++ b/audio-creation/lmms/DEPENDS
@@ -1,52 +1,75 @@
-depends qt-x11 &&
-depends g++ &&
+depends qt4 &&
+depends g++ &&
+depends cmake &&

-if [[ $LMMS_VST == "--with-vst" ]]; then
- depends vst_sdk2_3 '' '' z-rejected &&
+# we always want system libs
+depends libsamplerate "-DWANT_SYSTEM_SR=1" &&
+depends libsndfile &&
+
+if [[ $LMMS_VST == "-DWANT_VST=1" ]]; then
+ depends vst_sdk2_3 '' '' z-rejected &&
depends wine
-fi
+fi &&
+
+optional_depends alsa-lib \
+ "-DWANT_ALSA=1" \
+ "-DWANT_ALSA=0" \
+ "for ALSA sound output" &&
+
+optional_depends sdl \
+ "-DWANT_SDL=1" \
+ "-DWANT_SDL=0" \
+ "for SDL audio output" &&

-optional_depends alsa-lib \
- "--with-asound" \
- "--without-asound" \
- "for ALSA sound output" &&
+optional_depends JACK-DRIVER \
+ "-DWANT_JACK=1" \
+ "-DWANT_JACK=0" \
+ "for JACK transport" &&

-optional_depends sdl \
- "--with-sdl" \
- "--without-sdl" \
- "for SDL audio output" &&
+optional_depends swh-plugins \
+ "-DWANT_SWH=1" \
+ "-DWANT_SWH=0" \
+ "for LADSPA SWH plugins support" &&

-optional_depends sdl_sound \
- "--with-sdlsound" \
- "--without-sdlsound" \
- "for reading samples via SDL_sound" &&
+optional_depends tap-plugins \
+ "-DWANT_TAP=1" \
+ "-DWANT_TAP=0" \
+ "for LADSPA TAP plugins support" &&

-optional_depends JACK-DRIVER \
- "--with-jack" \
- "--without-jack" \
- "for JACK transport" &&
+optional_depends caps-plugins \
+ "-DWANT_CAPS=1" \
+ "-DWANT_CAPS=0" \
+ "for LADSPA CAPS plugins support" &&

-optional_depends ladspa \
- "--with-ladspa" \
- "--without-ladspa" \
- "for LADSPA support" &&
+optional_depends cmt \
+ "-DWANT_CMT=1" \
+ "-DWANT_CMT=0" \
+ "for LADSPA CMT support" &&

optional_depends libvorbis \
- "--with-vorbis" \
- "--without-vorbis" \
+ "-DWANT_OGGVORBIS=1" \
+ "-DWANT_OGGVORBIS=0" \
"for exporting song to OGG files" &&

-optional_depends flac \
- "--with-flac" \
- "--without-flac" \
- "for internal encoding/decoding with FLAC" &&
+optional_depends pulseaudio \
+ "-DWANT_PULSEAUDIO=1" \
+ "-DWANT_PULSEAUDIO=0" \
+ "for pulseaudio support" &&
+
+optional_depends fftw \
+ "-DWANT_FFTW3F=1" \
+ "-DWANT_FFTW3F=0" \
+ "for SpectrumAnalyzer plugin" &&
+
+optional_depends fluidsynth \
+ "-DWANT_SF2=1" \
+ "-DWANT_SF2=0" \
+ "for SpectrumAnalyzer plugin"
+
+# I have a spell for this locally but need to test it first
+#optional_depends synthesistoolkit \
+# "-DWANT_STK=1" \
+# "-DWANT_STK=0" \
+# "for Stk (Synthesis Toolkit) support"

-optional_depends libsndfile \
- "--with-libsf" \
- "--without-libsf" \
- "for importing files via libsndfile" &&

-optional_depends libsamplerate \
- "--with-libsrc" \
- "--without-libsrc" \
- "for resampling via libsamplerate"
diff --git a/audio-creation/lmms/DETAILS b/audio-creation/lmms/DETAILS
index 7ae8ba2..1b16e29 100755
--- a/audio-creation/lmms/DETAILS
+++ b/audio-creation/lmms/DETAILS
@@ -1,8 +1,8 @@
SPELL=lmms
- VERSION=0.3.2
+ VERSION=0.4.0
SOURCE=$SPELL-$VERSION.tar.bz2
SOURCE_URL[0]=$SOURCEFORGE_URL/$SPELL/$SOURCE
-
SOURCE_HASH=sha512:bc2aeaec5fe5ee64fcd2eb03aae5bac908508ab01d4060b4dc39d236ad286d5c0fde5feeaf137e9a093e3a1fa1b7d6bff8dd4dd25e571e296cc1948d1b65f07b
+
SOURCE_HASH=sha512:da34569d1b3ec99109cc280caef3e66e28a3d04ec7c8d7bedd004ab7d43fecccd3bd5cb8a90622c55840cd557d9a4ec0c5e0852d76b3f186d24cf85f29747d49
SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION
WEB_SITE=http://lmms.sourceforge.net/
ENTERED=20060724
diff --git a/audio-creation/lmms/HISTORY b/audio-creation/lmms/HISTORY
index 0463df0..d706268 100644
--- a/audio-creation/lmms/HISTORY
+++ b/audio-creation/lmms/HISTORY
@@ -1,3 +1,9 @@
+2008-11-11 Andraž "ruskie" Levstik <ruskie AT mages.ath.cx>
+ * DETAILS: updated spell to 0.4.0
+ * DEPENDS: now uses cmake
+ * BUILD: now uses cmake
+ * CONFIGURE: removed no longer supported stuff
+
2008-05-28 Remko van der Vossen <wich AT sourcemage.org>
* DETAILS: version 0.3.2




  • [SM-Commit] GIT changes to master grimoire by Andraž Levstik (71cc552d5ed8d1fe2581e15af1e6846bbf98d114), Andraž Levstik, 11/11/2008

Archive powered by MHonArc 2.6.24.

Top of Page