summaryrefslogtreecommitdiff
path: root/audio
diff options
context:
space:
mode:
authorwiz <wiz>2007-06-13 22:29:20 +0000
committerwiz <wiz>2007-06-13 22:29:20 +0000
commita2a6dc73b3ff7baf6b4c1ca0d0a745e359025252 (patch)
treee713f03c218e042df4ad365f18cd94ec586c75da /audio
parent2ed0db256200f7722c5b96cc6b7f3a3d88e8917c (diff)
downloadpkgsrc-a2a6dc73b3ff7baf6b4c1ca0d0a745e359025252.tar.gz
Add patch from Jesse Peterson in PR 36480:
Fix volume changes with auvia on amd64 port.
Diffstat (limited to 'audio')
-rw-r--r--audio/xmms/Makefile4
-rw-r--r--audio/xmms/distinfo3
-rw-r--r--audio/xmms/patches/patch-ar24
3 files changed, 28 insertions, 3 deletions
diff --git a/audio/xmms/Makefile b/audio/xmms/Makefile
index 75259962f57..4ebf043c972 100644
--- a/audio/xmms/Makefile
+++ b/audio/xmms/Makefile
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.66 2007/04/14 22:12:14 dillo Exp $
+# $NetBSD: Makefile,v 1.67 2007/06/13 22:29:20 wiz Exp $
#
-PKGREVISION= 8
+PKGREVISION= 9
.include "Makefile.common"
diff --git a/audio/xmms/distinfo b/audio/xmms/distinfo
index 3715fe01d93..1acf8206f33 100644
--- a/audio/xmms/distinfo
+++ b/audio/xmms/distinfo
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.31 2007/04/10 12:19:40 drochner Exp $
+$NetBSD: distinfo,v 1.32 2007/06/13 22:29:21 wiz Exp $
SHA1 (xmms-1.2.10.tar.bz2) = a3c3d3756d5263183c27b3c50a7f5404cba8bfaf
RMD160 (xmms-1.2.10.tar.bz2) = 0360cbb8c326b3325bd8ebb3343c69a9788d7084
@@ -20,3 +20,4 @@ SHA1 (patch-an) = 3abc68bd37018800dc70b151a5b419211a727a02
SHA1 (patch-ao) = 2cadee08e6db7b802d1b700559705a8fe591f2dd
SHA1 (patch-ap) = 101c54e2ce0e575893b8d3880ca54a021e89a8dd
SHA1 (patch-aq) = 1b5e0b7a2f3e9c529deffad63f24a498b11d96f6
+SHA1 (patch-ar) = b9cf22e3ab585ef255a533e56a3430f49f2fba4f
diff --git a/audio/xmms/patches/patch-ar b/audio/xmms/patches/patch-ar
new file mode 100644
index 00000000000..f51fe7554dc
--- /dev/null
+++ b/audio/xmms/patches/patch-ar
@@ -0,0 +1,24 @@
+$NetBSD: patch-ar,v 1.3 2007/06/13 22:29:21 wiz Exp $
+
+--- Output/OSS/mixer.c.orig 2001-06-16 13:30:35.000000000 +0000
++++ Output/OSS/mixer.c
+@@ -34,7 +34,8 @@ static char* get_mixer_device(void)
+
+ void oss_get_volume(int *l, int *r)
+ {
+- int fd, v, cmd, devs;
++ int fd, v, devs;
++ unsigned long cmd;
+ gchar *devname;
+
+ devname = get_mixer_device();
+@@ -66,7 +67,8 @@ void oss_get_volume(int *l, int *r)
+
+ void oss_set_volume(int l, int r)
+ {
+- int fd, v, cmd, devs;
++ int fd, v, devs;
++ unsigned long cmd;
+ gchar *devname;
+
+ devname = get_mixer_device();