diff options
author | hubertf <hubertf> | 1999-05-27 00:49:44 +0000 |
---|---|---|
committer | hubertf <hubertf> | 1999-05-27 00:49:44 +0000 |
commit | ca6b24d83bbbd5fbfd59ae9db54d7dc7ed0d3ba5 (patch) | |
tree | 0c0e2649ef28d03a268845f91c70f8cf61a69b93 /audio/gqmpeg/patches | |
parent | 1720e6a77f9e7b81d2ac12b9fb94c49a20af8e08 (diff) | |
download | pkgsrc-ca6b24d83bbbd5fbfd59ae9db54d7dc7ed0d3ba5.tar.gz |
Update to V0.6.0
- Shoutcast/streaming support, including saving to playlists.
- Multiple file selection in playlist window.
- Drag n drop in playlist and main window, playlist can be ordered by
dragging too (with the middle button).
- BSD cpu utilization code patch.
- SGI mixer support patch.
- Window Maker docking option -dockwm, standard -dock option.
- Ability to play a file not in playlist (right click menu->Open)
- Ability to import playlists not created with gqmpeg
- More complete ipc and command line options (gqmpeg -help for more).
- If an ipc command is specified on the command line, and gqmpeg is not
currently running, it is launched.
- Internal interface redesigned, it should now be easy to add playback
facilities for additional file types.
- Pressing stop when already stopped now resets to beginning of playlist.
- NetBSD mixer support.
- The icecast / shoutcast netscape plugin now works.
- Entries with tab completion are now obvious. (via tab arrow icon).
- Better detection of mpg123 error messages, now prints unrecognized
mpg123 messages as warnings (to the terminal).
- Fix to set Solaris mixer device to /dev/audioctl.
- Fix crash in shuffle code in some circumstances.
- Various bugs fixes.
Diffstat (limited to 'audio/gqmpeg/patches')
-rw-r--r-- | audio/gqmpeg/patches/patch-aa | 23 | ||||
-rw-r--r-- | audio/gqmpeg/patches/patch-ab | 28 |
2 files changed, 19 insertions, 32 deletions
diff --git a/audio/gqmpeg/patches/patch-aa b/audio/gqmpeg/patches/patch-aa index 34116c38a5a..463ab352f2e 100644 --- a/audio/gqmpeg/patches/patch-aa +++ b/audio/gqmpeg/patches/patch-aa @@ -1,26 +1,29 @@ -$NetBSD: patch-aa,v 1.2 1999/05/15 03:49:14 hubertf Exp $ - ---- Makefile.BAK Sat May 15 05:28:13 1999 -+++ Makefile Sat May 15 05:28:41 1999 -@@ -1,11 +1,10 @@ +--- Makefile.orig Mon May 17 23:11:01 1999 ++++ Makefile Tue May 18 13:38:58 1999 +@@ -1,12 +1,10 @@ -PREFIX=/usr/local - +- GTK_INCLUDE = `gtk-config --cflags` GTK_LIB = `gtk-config --libs` IMLIB_INCLUDE = `imlib-config --cflags-gdk` IMLIB_LIB = `imlib-config --libs-gdk` + -CFLAGS = $(GTK_INCLUDE) $(IMLIB_INCLUDE) +CFLAGS += $(GTK_INCLUDE) $(IMLIB_INCLUDE) LDFLAGS = $(GTK_LIB) $(IMLIB_LIB) - CC = gcc -Wall $(CFLAGS) -@@ -81,7 +80,7 @@ - default_skin/volume_sl.xpm + CC = gcc -g -Wall +@@ -107,10 +105,10 @@ + # targets: gqmpeg: $(OBJS) - $(CC) $(OBJS) -o gqmpeg $(LDFLAGS) + $(CC) $(OBJS) -o gqmpeg $(LDFLAGS) -lossaudio static: $(OBJS) - $(CC) $(OBJS) -o gqmpeg.static -static $(LDFLAGS) +- $(CC) $(OBJS) -o gqmpeg.static -static $(LDFLAGS) ++ $(CC) $(OBJS) -o gqmpeg.static -static $(LDFLAGS) -lossaudio + + install: gqmpeg + install -c gqmpeg $(PREFIX)/bin/gqmpeg diff --git a/audio/gqmpeg/patches/patch-ab b/audio/gqmpeg/patches/patch-ab index f8bb7876b6e..3e0cfecbc61 100644 --- a/audio/gqmpeg/patches/patch-ab +++ b/audio/gqmpeg/patches/patch-ab @@ -1,8 +1,9 @@ -$NetBSD: patch-ab,v 1.3 1999/05/15 18:50:58 he Exp $ +$NetBSD: patch-ab,v 1.4 1999/05/27 00:49:45 hubertf Exp $ ---- mixer.c.orig Sat Mar 27 13:38:09 1999 -+++ mixer.c Sat May 15 20:19:54 1999 -@@ -33,4 +33,9 @@ +--- mixer.c.orig Tue May 25 00:15:57 1999 ++++ mixer.c Thu May 27 02:16:01 1999 +@@ -42,6 +42,11 @@ + #include <audio.h> #endif +#ifdef __NetBSD__ @@ -12,21 +13,4 @@ $NetBSD: patch-ab,v 1.3 1999/05/15 18:50:58 he Exp $ + #define LEFT 1 #define RIGHT 256 -@@ -56,5 +61,5 @@ - static DeviceData *current_device = NULL; - --#if defined (linux) || defined (__FreeBSD__) -+#if defined (linux) || defined (__FreeBSD__) || defined (__NetBSD__) - void mixer_init(gint init_device_id) - { -@@ -91,5 +96,9 @@ - for (i=0; i<SOUND_MIXER_NRDEVICES; i++) - { -- if ((dev_mask & (1<<i)) && !(rec_mask & (1<<i))) /* skip unsupported & record devs */ -+ if ((dev_mask & (1<<i)) /* skip unsupported */ -+#ifndef __NetBSD__ -+ && !(rec_mask & (1<<i)) /* & record devs */ -+#endif -+ ) - { - DeviceData *device = g_new0(DeviceData, 1); + #define LEFT_MASK 0x00ff |