diff options
author | wiz <wiz> | 2000-12-08 21:18:35 +0000 |
---|---|---|
committer | wiz <wiz> | 2000-12-08 21:18:35 +0000 |
commit | 0f63bcc19dc4aae1dbfd44fd77870c24fe85df24 (patch) | |
tree | b10826173e06a0915a8f448100236ac1f41c6133 /audio/gqmpeg/patches | |
parent | 14dd7d0ef9af6121fd9fa69521b31d948c4b655f (diff) | |
download | pkgsrc-0f63bcc19dc4aae1dbfd44fd77870c24fe85df24.tar.gz |
Update to 0.8.1. Changes since 0.7.3:
New skin format; skin editor (press tilde (~)); repeat 1 and A-B buttons;
optional delay between songs (counted down); user options for mpg123 in
preferences; ipc commands --skin_set, --volume and --status; randomize
playlist in right-click menu; updated translations, some bugfixes.
Diffstat (limited to 'audio/gqmpeg/patches')
-rw-r--r-- | audio/gqmpeg/patches/patch-aa | 13 | ||||
-rw-r--r-- | audio/gqmpeg/patches/patch-ab | 20 |
2 files changed, 9 insertions, 24 deletions
diff --git a/audio/gqmpeg/patches/patch-aa b/audio/gqmpeg/patches/patch-aa deleted file mode 100644 index d68e8f8ccdb..00000000000 --- a/audio/gqmpeg/patches/patch-aa +++ /dev/null @@ -1,13 +0,0 @@ -$NetBSD: patch-aa,v 1.9 2000/08/02 06:06:15 jlam Exp $ - ---- po/Makefile.in.in.orig Mon Jun 5 20:46:40 2000 -+++ po/Makefile.in.in Wed Aug 2 01:44:50 2000 -@@ -19,7 +19,7 @@ - prefix = @prefix@ - exec_prefix = @exec_prefix@ - datadir = $(prefix)/@DATADIRNAME@ --localedir = $(datadir)/locale -+localedir = $(prefix)/share/locale - gnulocaledir = $(prefix)/share/locale - gettextsrcdir = $(prefix)/share/gettext/po - subdir = po diff --git a/audio/gqmpeg/patches/patch-ab b/audio/gqmpeg/patches/patch-ab index 8e0650e9e37..1b421bf0ba9 100644 --- a/audio/gqmpeg/patches/patch-ab +++ b/audio/gqmpeg/patches/patch-ab @@ -1,7 +1,7 @@ -$NetBSD: patch-ab,v 1.12 2000/09/01 15:58:37 toshii Exp $ +$NetBSD: patch-ab,v 1.13 2000/12/08 21:18:36 wiz Exp $ ---- src/mixer.c.orig Mon Jul 24 07:25:50 2000 -+++ src/mixer.c Fri Sep 1 21:42:16 2000 +--- src/mixer.c.orig Sun Dec 3 06:44:59 2000 ++++ src/mixer.c @@ -265,6 +265,17 @@ mixer_devinfo_t *infos; mixer_ctrl_t *values; @@ -20,15 +20,13 @@ $NetBSD: patch-ab,v 1.12 2000/09/01 15:58:37 toshii Exp $ void mixer_init(gint init_device_id) { int fd, i, ndev; -@@ -306,7 +317,12 @@ - if (infos[i].type == AUDIO_MIXER_VALUE) { - DeviceData *device = g_new0(DeviceData, 1); - device->device_id = i; -- device->device_name = infos[i].label.name; +@@ -309,7 +320,10 @@ + /* if problem, revert back to this: + device->device_name = infos[i].label.name; + */ +- device->device_name = g_strconcat(infos[infos[i].mixer_class].label.name, "." ,infos[i].label.name, NULL); + if (0 <= infos[i].mixer_class && infos[i].mixer_class < ndev) -+ device->device_name = -+ catstr(infos[infos[i].mixer_class].label.name, -+ infos[i].label.name); ++ device->device_name = g_strconcat(infos[infos[i].mixer_class].label.name, "." ,infos[i].label.name, NULL); + else + device->device_name = infos[i].label.name; device->stereo = 1; |