diff options
author | drochner <drochner@pkgsrc.org> | 2010-11-15 18:56:52 +0000 |
---|---|---|
committer | drochner <drochner@pkgsrc.org> | 2010-11-15 18:56:52 +0000 |
commit | 7ed40f08e2aeadb65d12d0ad2d215cd7a8022637 (patch) | |
tree | 3663f089b2b9614a7d62f6a6576a41c5e01cb4ee /audio/sound-juicer | |
parent | 4ba81e20e9675395042a739fb6eb8833eff0384c (diff) | |
download | pkgsrc-7ed40f08e2aeadb65d12d0ad2d215cd7a8022637.tar.gz |
rename local "pause" definitions, these conflict with the useless
pause(3) function recently added to -current
Diffstat (limited to 'audio/sound-juicer')
-rw-r--r-- | audio/sound-juicer/distinfo | 3 | ||||
-rw-r--r-- | audio/sound-juicer/patches/patch-af | 22 |
2 files changed, 24 insertions, 1 deletions
diff --git a/audio/sound-juicer/distinfo b/audio/sound-juicer/distinfo index cfcb5bd9509..b48b1a40526 100644 --- a/audio/sound-juicer/distinfo +++ b/audio/sound-juicer/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.10 2010/05/18 20:03:04 drochner Exp $ +$NetBSD: distinfo,v 1.11 2010/11/15 18:56:53 drochner Exp $ SHA1 (sound-juicer-2.28.2.tar.gz) = 686d251a1cee27e9bb4d74f1b070409c3f09eba5 RMD160 (sound-juicer-2.28.2.tar.gz) = 6479256a91d46b7470658e467cf1c784ba37d511 @@ -7,3 +7,4 @@ SHA1 (patch-aa) = 6ebf792610b37c8a9c893205a56088c450065208 SHA1 (patch-ac) = a84f8723708ac79d8dbacbac9c3745511eddcf4b SHA1 (patch-ad) = 6a908c4ed4aa8ca4890a9e0c445cb3f94ec6bb94 SHA1 (patch-ae) = a0363fa03752f7d1c1d46b232ae3d4d08bd7b0a1 +SHA1 (patch-af) = 5b2ae061e8d6ebfe6049da2dd2ba46a54f911000 diff --git a/audio/sound-juicer/patches/patch-af b/audio/sound-juicer/patches/patch-af new file mode 100644 index 00000000000..96ffb96a93c --- /dev/null +++ b/audio/sound-juicer/patches/patch-af @@ -0,0 +1,22 @@ +$NetBSD: patch-af,v 1.1 2010/11/15 18:56:53 drochner Exp $ + +--- src/sj-play.c.orig 2010-03-30 14:29:55.000000000 +0000 ++++ src/sj-play.c +@@ -96,7 +96,7 @@ play (void) + * Pause + */ + static void +-pause (void) ++sj_pause (void) + { + gst_element_set_state (pipeline, GST_STATE_PAUSED); + } +@@ -440,7 +440,7 @@ on_play_activate (GtkWidget *button, gpo + GError *err = NULL; + + if (is_playing ()) { +- pause (); ++ sj_pause (); + gtk_list_store_set (track_store, ¤t_iter, + COLUMN_STATE, STATE_PAUSED, -1); + } else if (pipeline && GST_STATE (pipeline) == GST_STATE_PAUSED && |