diff options
author | Steve Price <steve@FreeBSD.org> | 1999-04-03 01:48:17 +0000 |
---|---|---|
committer | Steve Price <steve@FreeBSD.org> | 1999-04-03 01:48:17 +0000 |
commit | d137d396bc04c1220840a49d9e1c78de472305cb (patch) | |
tree | 19d173e946e333c37d76901e1bf6f815398b0b39 /audio/gmixer/files | |
parent | 17f317b5aa5b17eab95610d3c8c0b0370a85f157 (diff) |
Notes
Diffstat (limited to 'audio/gmixer/files')
-rw-r--r-- | audio/gmixer/files/patch-aa | 18 | ||||
-rw-r--r-- | audio/gmixer/files/patch-ab | 11 |
2 files changed, 29 insertions, 0 deletions
diff --git a/audio/gmixer/files/patch-aa b/audio/gmixer/files/patch-aa new file mode 100644 index 000000000000..a58710516ba8 --- /dev/null +++ b/audio/gmixer/files/patch-aa @@ -0,0 +1,18 @@ +--- Makefile.orig Thu Feb 25 21:31:39 1999 ++++ Makefile Thu Feb 25 21:36:58 1999 +@@ -1,11 +1,11 @@ +-CC = gcc ++#CC = gcc + #CC = egcs + #FLAGS = -g + + gmixer: gmixer.c +- $(CC) $(FLAGS) `gtk-config --cflags` `gtk-config --libs` gmixer.c -o gmixer ++ $(CC) $(CFLAGS) `gtk11d-config --cflags` `gtk11d-config --libs` gmixer.c -o gmixer + install: gmixer +- install -s -m 755 -o 0 -g 0 gmixer /usr/X11R6/bin/ +- install -m 644 -o 0 -g 0 icons/gmixer.xpm /usr/share/pixmaps/ ++ install -c -s -m 755 -o 0 -g 0 gmixer $(PREFIX)/bin ++ install -c -m 644 -o 0 -g 0 icons/gmixer.xpm $(PREFIX)/share/pixmaps + clean: + rm -f gmixer diff --git a/audio/gmixer/files/patch-ab b/audio/gmixer/files/patch-ab new file mode 100644 index 000000000000..2be423772f31 --- /dev/null +++ b/audio/gmixer/files/patch-ab @@ -0,0 +1,11 @@ +--- gmixer.c.orig Thu Feb 25 21:32:29 1999 ++++ gmixer.c Thu Feb 25 21:32:48 1999 +@@ -4,7 +4,7 @@ + #include <fcntl.h> + #include <unistd.h> + #include <sys/ioctl.h> +-#include <linux/soundcard.h> ++#include <machine/soundcard.h> + #include <gtk/gtk.h> + #include "icons/gmixer.xpm" + #include "icons/mix_logo.xpm" |