Skip to Content.
Sympa Menu

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

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 (1d6b06ff2098a43c410355ff311d219e01949e40)
  • Date: Mon, 14 Jul 2008 03:32:32 -0500

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

audio-drivers/alsa-lib/alsa-lib-1.0.17rc2.tar.bz2.sig |binary
audio-drivers/alsa-utils/BUILD | 11 +++++++++++
audio-drivers/alsa-utils/DEPENDS | 7 +++++++
audio-drivers/alsa-utils/DETAILS | 8 ++++----
audio-drivers/alsa-utils/FINAL | 11 ++++-------
audio-drivers/alsa-utils/HISTORY | 7 ++++++-
audio-drivers/alsa-utils/PRE_BUILD | 2 +-
7 files changed, 33 insertions(+), 13 deletions(-)

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

alsa-utils: => 1.0.17rc2, fixed git build

diff --git a/audio-drivers/alsa-lib/alsa-lib-1.0.17rc2.tar.bz2.sig
b/audio-drivers/alsa-lib/alsa-lib-1.0.17rc2.tar.bz2.sig
new file mode 100644
index 0000000..e93a999
Binary files /dev/null and
b/audio-drivers/alsa-lib/alsa-lib-1.0.17rc2.tar.bz2.sig differ
diff --git a/audio-drivers/alsa-utils/BUILD b/audio-drivers/alsa-utils/BUILD
new file mode 100755
index 0000000..1ce3003
--- /dev/null
+++ b/audio-drivers/alsa-utils/BUILD
@@ -0,0 +1,11 @@
+if [[ $ALSA_UTILS_GIT == y ]]; then
+ OPTS="--prefix=${INSTALL_ROOT}/usr \
+ --sysconfdir=${INSTALL_ROOT}/etc \
+ --localstatedir=${INSTALL_ROOT}/var \
+ --mandir=${INSTALL_ROOT}/usr/share/man \
+ --infodir=${INSTALL_ROOT}/usr/share/info \
+ $OPTS" &&
+ ./gitcompile $OPTS
+else
+ default_build
+fi
diff --git a/audio-drivers/alsa-utils/DEPENDS
b/audio-drivers/alsa-utils/DEPENDS
index 642ca10..de68a76 100755
--- a/audio-drivers/alsa-utils/DEPENDS
+++ b/audio-drivers/alsa-utils/DEPENDS
@@ -1,4 +1,11 @@
depends coreutils &&
depends alsa-lib &&

+if [[ $ALSA_UTILS_GIT == y ]]; then
+ depends git &&
+ depends libtool &&
+ depends automake &&
+ depends autoconf
+fi &&
+
runtime_depends which
diff --git a/audio-drivers/alsa-utils/DETAILS
b/audio-drivers/alsa-utils/DETAILS
index 6785b8f..f3df2ff 100755
--- a/audio-drivers/alsa-utils/DETAILS
+++ b/audio-drivers/alsa-utils/DETAILS
@@ -8,13 +8,13 @@ if [[ $ALSA_UTILS_GIT == y ]]; then
SOURCE=$SPELL-git.tar.bz2
SOURCE_URL[0]=git://git.alsa-project.org/alsa-utils.git:alsa-utils-git
SOURCE_IGNORE=volatile
-SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-git
+SOURCE_DIRECTORY="$BUILD_DIRECTORY/$SPELL-git"
FORCE_DOWNLOAD=1
else
- VERSION=1.0.17rc1
-
SOURCE_HASH=sha512:3283cf0b9227102a64b04b16badbc85fff985e6bde9d7b3f1527f70b8a1184a9b399c77e267bb93fff8b8cdd3345961725d1560e2bee5a9b9f04d69972803a01
+ VERSION=1.0.17rc2
+
SOURCE_HASH=sha512:53256977e83fb798be43be90e1ce60f45331b78e67f1dbbad566036d4144baa99e7bd4dbeb879c0016f859862a399324c37c354dba83c0b7e8af5583c9b22f49
SOURCE=$SPELL-$VERSION.tar.bz2
-SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION
+SOURCE_DIRECTORY="$BUILD_DIRECTORY/$SPELL-$VERSION"
SOURCE_URL[0]=ftp://ftp.alsa-project.org/pub/utils/$SOURCE
fi
WEB_SITE=http://www.alsa-project.org/
diff --git a/audio-drivers/alsa-utils/FINAL b/audio-drivers/alsa-utils/FINAL
index 1ce37bb..4a84835 100755
--- a/audio-drivers/alsa-utils/FINAL
+++ b/audio-drivers/alsa-utils/FINAL
@@ -1,9 +1,6 @@
-if [ ! -f /etc/asound.state ]; then
-
+if [[ ! -f /etc/asound.state ]]; then
alsactl store
- echo "Mixer setting saved."
- echo "You can save the default ALSA mixer levels"
- echo "at anytime as root by running"
- echo "# alsactl store"
-
+ message "${MESSAGE_COLOR}Mixer setting saved."
+ message "You can save the default mixer levels at anytime as root by
running:"
+ message "# alsactl store${DEFAULT_COLOR}"
fi
diff --git a/audio-drivers/alsa-utils/HISTORY
b/audio-drivers/alsa-utils/HISTORY
index 79e3181..cbf582e 100644
--- a/audio-drivers/alsa-utils/HISTORY
+++ b/audio-drivers/alsa-utils/HISTORY
@@ -1,3 +1,9 @@
+2008-07-14 Vlad Glagolev <stealth AT sourcemage.org>
+ * DETAILS: updated spell to 1.0.17rc2, quoting paths!
+ * BUILD, DEPENDS: fixed git build
+ * FINAL: message ftw
+ * PRE_BUILD: quoting paths!
+
2008-06-09 Pol Vinogradov <vin.public AT gmail.com>
* DETAILS: updated to 1.0.17rc1, added direct scm branch
* PREPARE: added for git branch query
@@ -161,4 +167,3 @@

2002-06-12 Unet <unet AT sourcemage.org>
* Created this.
-
diff --git a/audio-drivers/alsa-utils/PRE_BUILD
b/audio-drivers/alsa-utils/PRE_BUILD
index 8ddcaab..8987a5b 100755
--- a/audio-drivers/alsa-utils/PRE_BUILD
+++ b/audio-drivers/alsa-utils/PRE_BUILD
@@ -1,3 +1,3 @@
default_pre_build &&
-cd $SOURCE_DIRECTORY &&
+cd "$SOURCE_DIRECTORY" &&
patch -p0 < $SPELL_DIRECTORY/speaker-test.patch



  • [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (1d6b06ff2098a43c410355ff311d219e01949e40), Vlad Glagolev, 07/14/2008

Archive powered by MHonArc 2.6.24.

Top of Page