summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarinus Schraal <foser@gentoo.org>2004-12-13 14:29:10 +0000
committerMarinus Schraal <foser@gentoo.org>2004-12-13 14:29:10 +0000
commit3aae895e71af97583b91e856aaf55245ac9a12bc (patch)
tree50792337e65ff2d1714e15fab44cb504b980f2d1 /media-sound/sound-juicer/files
parentstable for x86 (Manifest recommit) (diff)
downloadgentoo-2-3aae895e71af97583b91e856aaf55245ac9a12bc.tar.gz
gentoo-2-3aae895e71af97583b91e856aaf55245ac9a12bc.tar.bz2
gentoo-2-3aae895e71af97583b91e856aaf55245ac9a12bc.zip
new release, mark .14 x86
Diffstat (limited to 'media-sound/sound-juicer/files')
-rw-r--r--media-sound/sound-juicer/files/digest-sound-juicer-0.5.151
-rw-r--r--media-sound/sound-juicer/files/sound-juicer-0.5.15-fix_hal_build.patch22
2 files changed, 23 insertions, 0 deletions
diff --git a/media-sound/sound-juicer/files/digest-sound-juicer-0.5.15 b/media-sound/sound-juicer/files/digest-sound-juicer-0.5.15
new file mode 100644
index 000000000000..007b728c92ab
--- /dev/null
+++ b/media-sound/sound-juicer/files/digest-sound-juicer-0.5.15
@@ -0,0 +1 @@
+MD5 f1c344b2dcd3f0efd4f9e0318f8526e1 sound-juicer-0.5.15.tar.gz 594694
diff --git a/media-sound/sound-juicer/files/sound-juicer-0.5.15-fix_hal_build.patch b/media-sound/sound-juicer/files/sound-juicer-0.5.15-fix_hal_build.patch
new file mode 100644
index 000000000000..84b14821dab6
--- /dev/null
+++ b/media-sound/sound-juicer/files/sound-juicer-0.5.15-fix_hal_build.patch
@@ -0,0 +1,22 @@
+diff -x '*~' -uNr sound-juicer-0.5.15/src/cd-drive.c sound-juicer-0.5.15.patched/src/cd-drive.c
+--- sound-juicer-0.5.15/src/cd-drive.c 2004-11-23 14:54:52.000000000 +0100
++++ sound-juicer-0.5.15.patched/src/cd-drive.c 2004-12-13 15:15:28.552252416 +0100
+@@ -89,17 +89,9 @@
+ get_hal_context (void)
+ {
+ static LibHalContext *ctx = NULL;
+- LibHalFunctions hal_functions = {
+- NULL, /* mainloop integration */
+- NULL, /* device_added */
+- NULL, /* device_removed */
+- NULL, /* device_new_capability */
+- NULL, /* property_modified */
+- NULL, /* device_condition */
+- };
+
+ if (ctx == NULL)
+- ctx = hal_initialize (&hal_functions, FALSE);
++ ctx = hal_initialize (NULL, FALSE);
+
+ return ctx;
+ }