diff options
author | wiz <wiz@pkgsrc.org> | 2001-03-15 21:42:43 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2001-03-15 21:42:43 +0000 |
commit | d268bd38701cb912c5d27d45cff4849a15862ee3 (patch) | |
tree | d102abe975492c9f438173b05164f6b698573fdc /audio | |
parent | 3f5fb6c15d72969201558ac979373f811cd713e1 (diff) | |
download | pkgsrc-d268bd38701cb912c5d27d45cff4849a15862ee3.tar.gz |
Don't default to oss, use the standard way (null device). Note in a
MESSAGE how to set the default to oss. By Jeremy C. Reed.
Diffstat (limited to 'audio')
-rw-r--r-- | audio/vorbis-tools/files/patch-sum | 3 | ||||
-rw-r--r-- | audio/vorbis-tools/patches/patch-ac | 15 | ||||
-rw-r--r-- | audio/vorbis-tools/pkg/MESSAGE | 15 |
3 files changed, 16 insertions, 17 deletions
diff --git a/audio/vorbis-tools/files/patch-sum b/audio/vorbis-tools/files/patch-sum index 6a5594549dd..b556920981a 100644 --- a/audio/vorbis-tools/files/patch-sum +++ b/audio/vorbis-tools/files/patch-sum @@ -1,5 +1,4 @@ -$NetBSD: patch-sum,v 1.1.1.1 2001/03/15 20:53:06 wiz Exp $ +$NetBSD: patch-sum,v 1.2 2001/03/15 21:42:43 wiz Exp $ SHA1 (patch-aa) = aab33b5461b56f912ee7cb551c90612d20461323 SHA1 (patch-ab) = fc23be24de8b2e43f0a3fd2ce73d47bf3fe2196b -SHA1 (patch-ac) = b2cc1c6e290b4150f7803c2abdbfe5ab31f653c3 diff --git a/audio/vorbis-tools/patches/patch-ac b/audio/vorbis-tools/patches/patch-ac deleted file mode 100644 index a42eba28a5b..00000000000 --- a/audio/vorbis-tools/patches/patch-ac +++ /dev/null @@ -1,15 +0,0 @@ -$NetBSD: patch-ac,v 1.1.1.1 2001/03/15 20:53:06 wiz Exp $ - ---- ../vorbis-tools-1.0beta4.orig/ogg123/ogg123.c Fri Feb 23 16:52:22 2001 -+++ ogg123/ogg123.c Thu Mar 15 10:40:21 2001 -@@ -170,7 +170,9 @@ - if (temp_driver_id < 0) { - temp_driver_id = get_default_device(); - if(temp_driver_id < 0) { -- temp_driver_id = ao_get_driver_id(NULL); -+/* temp_driver_id = ao_get_driver_id(NULL); */ -+/* For the NetBSD package, I am assuming that audio is desired. */ -+ temp_driver_id = ao_get_driver_id("oss"); - } - if (temp_driver_id < 0) { - fprintf(stderr, diff --git a/audio/vorbis-tools/pkg/MESSAGE b/audio/vorbis-tools/pkg/MESSAGE new file mode 100644 index 00000000000..22dec4debab --- /dev/null +++ b/audio/vorbis-tools/pkg/MESSAGE @@ -0,0 +1,15 @@ +=========================================================================== +$NetBSD: MESSAGE,v 1.1 2001/03/15 21:42:44 wiz Exp $ + +By default, ogg123 will decode to a testing null device. + +If you want to hear the audio and if you have a sound card with a +working /dev/audio device, you can use libao's "oss" (Open Sound +System) device. To setup your personal ogg123 configuration so it +uses "oss" do: + + echo "default_device=oss" > ~/.ogg123rc + +Read the ogg123 manual page for further information. + +=========================================================================== |