Skip to Content.
Sympa Menu

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

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 (f45c6458b1b4afbeba8ee9156d9e6fdbf0a85ae7)
  • Date: Tue, 28 Oct 2008 08:03:25 -0500

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

audio-soft/aumix/CONFIGURE | 1 +
audio-soft/aumix/DEPENDS | 18 +++++++++++++++---
audio-soft/aumix/DETAILS | 18 ++++++++----------
audio-soft/aumix/HISTORY | 10 +++++++++-
audio-soft/aumix/PRE_BUILD | 8 ++++++--
audio-soft/aumix/aumix-2.8-hoss.patch.bz2 |binary
6 files changed, 39 insertions(+), 16 deletions(-)

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

aumix: added selection of hoss patch; cleaned up

diff --git a/audio-soft/aumix/CONFIGURE b/audio-soft/aumix/CONFIGURE
new file mode 100755
index 0000000..fc906ed
--- /dev/null
+++ b/audio-soft/aumix/CONFIGURE
@@ -0,0 +1 @@
+config_query HOSS "Do you want to apply hoss patch (allows you to pass a -V
option to say what channels you want to show)?" n
diff --git a/audio-soft/aumix/DEPENDS b/audio-soft/aumix/DEPENDS
index 50b058f..f583aa6 100755
--- a/audio-soft/aumix/DEPENDS
+++ b/audio-soft/aumix/DEPENDS
@@ -1,3 +1,15 @@
-optional_depends "gtk+" "" "--without-gtk1" "for gtk+ GUI" &&
-optional_depends "gtk+2" "" "--without-gtk" "for gtk+2 GUI" &&
-optional_depends "gpm" "" "--without-gpm" "for console mouse support"
+optional_depends ncurses \
+ "" "--without-ncurses" \
+ "for ncurses interface support" &&
+
+optional_depends gpm \
+ "" "--without-gpm" \
+ "for console mouse support" &&
+
+optional_depends gtk+ \
+ "" "--without-gtk1" \
+ "for GTK+1 GUI support" &&
+
+optional_depends gtk+2 \
+ "" "--without-gtk" \
+ "for GTK+2 GUI support"
diff --git a/audio-soft/aumix/DETAILS b/audio-soft/aumix/DETAILS
index 3b36fd0..5678330 100755
--- a/audio-soft/aumix/DETAILS
+++ b/audio-soft/aumix/DETAILS
@@ -1,22 +1,20 @@
SPELL=aumix
VERSION=2.8
+ PATCHLEVEL=1
SOURCE=$SPELL-$VERSION.tar.bz2
SOURCE2=$SOURCE.sig
-SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION
+SOURCE_DIRECTORY="$BUILD_DIRECTORY/$SPELL-$VERSION"
SOURCE_URL[0]=http://www.jpj.net/~trevor/$SPELL/$SOURCE
- SOURCE2_URL[0]=${SOURCE_URL[0]}.sig
+ SOURCE2_URL[0]=$SOURCE_URL.sig
WEB_SITE=http://jpj.net/~trevor/aumix.html
ENTERED=20010922
- UPDATED=20021201
SOURCE_GPG=aumix.gpg:$SOURCE2:UPSTREAM_KEY
SOURCE2_IGNORE=signature
- LICENSE[0]=GPL
- MAINTAINER=unet AT sourcemage.org
+ LICENSE[0]=GPL
KEYWORDS="mixer tools audio"
- SHORT="aumix is a program for adjusting an audio mixer."
+ SHORT="program for adjusting an audio mixer"
cat << EOF
-aumix is a program for adjusting an audio mixer. It can run under X
-with GTK+, in full-screen text mode with ncurses and (if available)
-gpm, or non-interactively, and can store all settings in a file. It
-works with the OSS API.
+aumix is a program for adjusting an audio mixer. It can run under X with
GTK+,
+in full-screen text mode with ncurses and (if available) gpm, or
+non-interactively, and can store all settings in a file.
EOF
diff --git a/audio-soft/aumix/HISTORY b/audio-soft/aumix/HISTORY
index 7ed629f..ef8bded 100644
--- a/audio-soft/aumix/HISTORY
+++ b/audio-soft/aumix/HISTORY
@@ -1,3 +1,12 @@
+2008-10-28 Vlad Glagolev <stealth AT sourcemage.org>
+ * DETAILS: removed deprecated MAINTAINER, UPDATED vars; PATCHLEVEL+=1;
+ quoting paths; fixed descs
+ * DEPENDS: added ncurses opt dep; cleaned up
+ * PRE_BUILD: apply hoss patch if selected; quoting paths
+ * CONFIGURE: added conf option for hoss patch
+ * aumix-2.8-hoss.patch.bz2: added, based on Aaron McDaid patch for 2.7
+ (http://www.jpj.net/~trevor/aumix/patches/hoss.diffs.tar.gz)
+
2007-05-06 Jaka Kranjc <lynxlynxlynx AT sourcemage.org>
* DETAILS: converted to upstream signature checking
* aumix.gpg: added gpg keyring
@@ -22,4 +31,3 @@

2002-06-12 Unet <unet AT sourcemage.org>
* Created this.
-
diff --git a/audio-soft/aumix/PRE_BUILD b/audio-soft/aumix/PRE_BUILD
index f15a363..020552d 100755
--- a/audio-soft/aumix/PRE_BUILD
+++ b/audio-soft/aumix/PRE_BUILD
@@ -1,5 +1,9 @@
default_pre_build &&
-cd $SOURCE_DIRECTORY &&
+cd "$SOURCE_DIRECTORY" &&
+
+if [[ $HOSS == y ]]; then
+ bzcat "$SPELL_DIRECTORY/aumix-2.8-hoss.patch.bz2" | patch -p0
+fi &&
+
touch aclocal.m4 configure stamp-h.in &&
find -name Makefile.in -exec touch '{}' ';'
-
diff --git a/audio-soft/aumix/aumix-2.8-hoss.patch.bz2
b/audio-soft/aumix/aumix-2.8-hoss.patch.bz2
new file mode 100644
index 0000000..0230864
Binary files /dev/null and b/audio-soft/aumix/aumix-2.8-hoss.patch.bz2 differ



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

Archive powered by MHonArc 2.6.24.

Top of Page