New commits:
commit 095c7ada6a40602963ae8313412297697914fd45
Author: Pol Vinogradov <vin.public AT gmail.com>
Commit: Pol Vinogradov <vin.public AT gmail.com>
audio-drivers/alsa-driver/INSTALL: minor fix
commit 321251a33757cd4f14278ad4eab6b83a0e1cd201
Author: Pol Vinogradov <vin.public AT gmail.com>
Commit: Pol Vinogradov <vin.public AT gmail.com>
kernels/CONFIGURE: removed to avoid sourcing by other spells in this
section
commit 404de4c406f8d44ba9cede542e39fb8565d10989
Author: Pol Vinogradov <vin.public AT gmail.com>
Commit: Pol Vinogradov <vin.public AT gmail.com>
audio-drivers/alsa-driver:
BUILD: install and track_rootifying, switched to default_build and
get_kernel_version, added module directory to OPTS, removed
make_single, added missing &&
CONFIGURE, FINAL, INSTALL, POST_REMOVE, PREPARE: install and
track_rootifying, added missing &&, removed make_normal from INSTALL
diff --git a/ChangeLog b/ChangeLog
index 042a768..68748bd 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2007-02-27 Pol Vinogradov <vin.public AT gmail.com>
+ * kernels/CONFIGURE: removed to avoid sourcing by other spells in this
+ section
+
2007-02-27 Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>
* audio-players/qmpdclient: new spell, a QT4 client for mpd
diff --git a/audio-drivers/alsa-driver/BUILD b/audio-drivers/alsa-driver/BUILD
index 4cea2a6..f0e106f 100755
--- a/audio-drivers/alsa-driver/BUILD
+++ b/audio-drivers/alsa-driver/BUILD
@@ -1,26 +1,20 @@
# Clean out the old alsa drivers. FIXME: Bad location for 2.6!
-rm -f /lib/modules/`installed_version linux`/misc/snd* &&
+rm -f ${TRACK_ROOT}/lib/modules/`get_kernel_version`/misc/snd* &&
-if [ -e /proc/config.gz ] ; then
- if [ `zgrep -c CONFIG_SOUND=m /proc/config.gz` = 1 ] ; then
+if [ -e ${TRACK_ROOT}/proc/config.gz ] ; then
+ if [ `zgrep -c CONFIG_SOUND=m ${TRACK_ROOT}/proc/config.gz` = 1 ] ; then
modprobe -q soundcore
fi
-elif [ `grep -c CONFIG_SOUND=m /etc/sorcery/local/kernel.config` = 1 ] ; then
+elif [ `grep -c CONFIG_SOUND=m
${TRACK_ROOT}/etc/sorcery/local/kernel.config` = 1 ] ; then
modprobe -q soundcore
-fi
+fi &&