Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (798c9903ecac83012d2461b9e45f15cb47213cac)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Vlad Glagolev <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (798c9903ecac83012d2461b9e45f15cb47213cac)
  • Date: Fri, 24 Oct 2008 21:24:29 -0500

GIT changes to master grimoire by Vlad Glagolev <stealth AT sourcemage.org>:

ChangeLog | 4 +++
audio-creation/mhwaveedit/BUILD | 3 ++
audio-creation/mhwaveedit/CONFIGURE | 11 ++++++++
audio-creation/mhwaveedit/DEPENDS | 48
++++++++++++++++++++++++++++++++++++
audio-creation/mhwaveedit/DETAILS | 24 ++++++++++++++++++
audio-creation/mhwaveedit/HISTORY | 2 +
6 files changed, 92 insertions(+)

New commits:
commit 798c9903ecac83012d2461b9e45f15cb47213cac
Author: Vlad Glagolev <stealth AT sourcemage.org>
Commit: Vlad Glagolev <stealth AT sourcemage.org>

mhwaveedit: new spell, graphical program for editing, playing and
recording sound files

diff --git a/ChangeLog b/ChangeLog
index 58250e8..8c8cf71 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2008-10-25 Vlad Glagolev <stealth AT sourcemage.org>
+ * audio-creation/mhwaveedit: new spell, graphical program for editing,
+ playing and recording sound files
+
2008-10-24 Ladislav Hagara <hgr AT vabo.cz>
* audio-soft/enscribe-watermark: new spell
a tool that converts JPEG and PNG images into audio watermarks
diff --git a/audio-creation/mhwaveedit/BUILD b/audio-creation/mhwaveedit/BUILD
new file mode 100755
index 0000000..9ee02ae
--- /dev/null
+++ b/audio-creation/mhwaveedit/BUILD
@@ -0,0 +1,3 @@
+OPTS="$MHWAVEEDIT_OPTS $OPTS" &&
+
+default_build
diff --git a/audio-creation/mhwaveedit/CONFIGURE
b/audio-creation/mhwaveedit/CONFIGURE
new file mode 100755
index 0000000..774002f
--- /dev/null
+++ b/audio-creation/mhwaveedit/CONFIGURE
@@ -0,0 +1,11 @@
+config_query_list MHWAVEEDIT_GTK "Which GTK+ version to use for GUI?" \
+ gtk+2 \
+ gtk+ &&
+
+config_query_option MHWAVEEDIT_OPTS "Enable support for large files?" y \
+ "--enable-largefile" \
+ "--disable-largefile" &&
+
+config_query_option MHWAVEEDIT_OPTS "Use double precision floating point
numbers for sound processing (slows down program but may increase quality for
24/32-bit samplerates)?" n \
+ "--with-double-samples" \
+ "--without-double-samples"
diff --git a/audio-creation/mhwaveedit/DEPENDS
b/audio-creation/mhwaveedit/DEPENDS
new file mode 100755
index 0000000..a6de313
--- /dev/null
+++ b/audio-creation/mhwaveedit/DEPENDS
@@ -0,0 +1,48 @@
+depends $MHWAVEEDIT_GTK &&
+
+optional_depends alsa-lib \
+ "--with-alsalib" \
+ "--without-alsalib" \
+ "for ALSA driver support" &&
+
+optional_depends JACK-DRIVER \
+ "--with-jack" \
+ "--without-jack" \
+ "for JACK driver support" &&
+
+optional_depends esound \
+ "--with-esound" \
+ "--without-esound" \
+ "for EsounD driver support" &&
+
+optional_depends arts \
+ "--with-arts" \
+ "--without-arts" \
+ "for aRts driver support" &&
+
+optional_depends oss \
+ "--with-oss" \
+ "--without-oss" \
+ "for OSS driver support" &&
+
+optional_depends libsndfile \
+ "--with-libsndfile" \
+ "--without-libsndfile" \
+ "for libsndfile library support" &&
+
+optional_depends libsamplerate \
+ "--with-libsamplerate" \
+ "--without-libsamplerate" \
+ "for libsamplerate library support" &&
+
+optional_depends sdl \
+ "--with-sdl" \
+ "--without-sdl" \
+ "for SDL library support" &&
+
+optional_depends PORTAUDIO \
+ "--with-portaudio" \
+ "--without-portaudio" \
+ "for PortAudio library support" &&
+
+optional_depends ladspa "" "" "for LADSPA plugins support"
diff --git a/audio-creation/mhwaveedit/DETAILS
b/audio-creation/mhwaveedit/DETAILS
new file mode 100755
index 0000000..348a995
--- /dev/null
+++ b/audio-creation/mhwaveedit/DETAILS
@@ -0,0 +1,24 @@
+ SPELL=mhwaveedit
+ VERSION=1.4.15
+ SOURCE=$SPELL-$VERSION.tar.bz2
+ SOURCE_URL[0]=http://download.gna.org/$SPELL/$SOURCE
+
SOURCE_HASH=sha512:5b6cb43abd0947605aba011b301a6a75760ff57d0c4f1639a3f4d868db211160161d74876d2f1d981a3a00867bc3d0d2b25610937080cd29f588f2d1072471be
+SOURCE_DIRECTORY="$BUILD_DIRECTORY/$SPELL-$VERSION"
+ WEB_SITE=https://gna.org/projects/mhwaveedit/
+ LICENSE[0]=GPL
+ ENTERED=20081025
+ SHORT="graphical program for editing/playing/recording sound
files"
+cat << EOF
+mhWaveEdit is a graphical program for editing, playing and recording sound
+files. It is lightweight, portable, user-friendly and handles large files
very
+well.
+
+The program itself has only simple editing features such as cut'n'paste and
+volume adjustment but it can also use Ladspa effect plugins and the effects
+provided by the SoX application. It can also support additional file formats
+besides wav through libsndfile and mp3/ogg import and export through lame and
+oggenc/oggdec.
+
+For sound playback and recording, mhWaveEdit supports OSS, ALSA, Jack, SDL,
+PortAudio and EsounD.
+EOF
diff --git a/audio-creation/mhwaveedit/HISTORY
b/audio-creation/mhwaveedit/HISTORY
new file mode 100644
index 0000000..038fa5c
--- /dev/null
+++ b/audio-creation/mhwaveedit/HISTORY
@@ -0,0 +1,2 @@
+2008-10-25 Vlad Glagolev <stealth AT sourcemage.org>
+ * BUILD, CONFIGURE, DEPENDS, DETAILS: spell created



  • [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (798c9903ecac83012d2461b9e45f15cb47213cac), Vlad Glagolev, 10/24/2008

Archive powered by MHonArc 2.6.24.

Top of Page