summaryrefslogtreecommitdiff
path: root/audio/grip/files/patch-aa
diff options
context:
space:
mode:
authorSteve Price <steve@FreeBSD.org>2000-07-10 03:09:55 +0000
committerSteve Price <steve@FreeBSD.org>2000-07-10 03:09:55 +0000
commit3a28a2cc4aa6152e79eadd761dfa248e0fdf8501 (patch)
tree09dfcaa8ad36fe94fb5ed10aa461d51e906c16ea /audio/grip/files/patch-aa
parentAdding seti_appelt version 0.2.2. (diff)
Add grip version 2.94.
GTK-based front-end to external cd audio rippers and mp3 encoders. PR: 19167 Submitted by: Kelly Yancey <kbyanc@posi.net>
Diffstat (limited to 'audio/grip/files/patch-aa')
-rw-r--r--audio/grip/files/patch-aa41
1 files changed, 41 insertions, 0 deletions
diff --git a/audio/grip/files/patch-aa b/audio/grip/files/patch-aa
new file mode 100644
index 000000000000..390bbd4a889e
--- /dev/null
+++ b/audio/grip/files/patch-aa
@@ -0,0 +1,41 @@
+--- Makefile.orig Tue Apr 18 08:37:44 2000
++++ Makefile Fri May 5 23:55:16 2000
+@@ -4,24 +4,24 @@
+ OS=$(shell uname -s)
+
+ # Compiler
+-CC= gcc
++CC?= gcc
+
+ # Install prefix
+-PREFIX=/usr
++PREFIX?=/usr/local
+
+ # Installation directory -- where the binary will go
+ INSTALLDIR= $(PREFIX)/bin
+
+ # Location to store auxilliary files
+-AUXDIR= $(PREFIX)/lib/grip
++AUXDIR= $(PREFIX)/lib
+
+
+ # Compiler flags
+-CFLAGS= -Wall `gtk-config --cflags` -DAUXDIR=\"$(AUXDIR)\" \
++CFLAGS= -Wall `gtk12-config --cflags` -DAUXDIR=\"$(AUXDIR)\" \
+ -DINSTALLDIR=\"$(INSTALLDIR)\" -D_REENTRANT
+
+ # Link libraries
+-LIBS= `gtk-config --libs`
++LIBS= `gtk12-config --libs`
+ ifeq ($(OS), Linux)
+ LIBS+= -lpthread
+ endif
+@@ -34,7 +34,7 @@
+ # This is needed for "make install"
+ OWNER = root
+ GROUP = root
+-INSTALL = /usr/bin/install -o $(OWNER) -g $(GROUP)
++INSTALL ?= /usr/bin/install -o $(OWNER) -g $(GROUP)
+
+
+ # ----------- You shouldn't need to make changes below here. -------------