aboutsummaryrefslogtreecommitdiffstats
path: root/www/erwn/files
diff options
context:
space:
mode:
authorjim <jim@FreeBSD.org>1999-08-24 17:50:50 +0800
committerjim <jim@FreeBSD.org>1999-08-24 17:50:50 +0800
commit25c0544b6fa407323cb70122883fab6c647068af (patch)
treef90f88cdbb381ded138d960f2c46c69520f8eb74 /www/erwn/files
parent86f201cf17ba46f59fa1fca54b935cc9ee6515ac (diff)
downloadfreebsd-ports-gnome-25c0544b6fa407323cb70122883fab6c647068af.tar.gz
freebsd-ports-gnome-25c0544b6fa407323cb70122883fab6c647068af.tar.zst
freebsd-ports-gnome-25c0544b6fa407323cb70122883fab6c647068af.zip
Renamed erwin to erwn to avoid copyright issues.
Diffstat (limited to 'www/erwn/files')
-rw-r--r--www/erwn/files/patch-aa24
1 files changed, 24 insertions, 0 deletions
diff --git a/www/erwn/files/patch-aa b/www/erwn/files/patch-aa
new file mode 100644
index 000000000000..eb079440fd16
--- /dev/null
+++ b/www/erwn/files/patch-aa
@@ -0,0 +1,24 @@
+--- Makefile.orig Sat Jul 31 17:03:44 1999
++++ Makefile Sat Jul 31 17:04:37 1999
+@@ -2,7 +2,7 @@
+ bindir = $(prefix)/bin
+
+ NAME = erwin-0.3.1
+-CC = gcc
++CC ?= gcc
+ PROG = erwin
+ OBJS = erwin.o erwinmenu.o erwinfunctions.o erwintoolbar.o \
+ erwinnotebook.o erwindialogs.o erwintags.o gtkmessage.o
+@@ -28,10 +28,10 @@
+ rm -f $(PROG) $(OBJS) *.?~ core license.h
+
+ $(PROG): $(OBJS)
+- $(CC) $(LDFLAGS) $(shell gtk-config --libs) -o $@ $(OBJS)
++ $(CC) $(LDFLAGS) $(shell gtk12-config --libs) -o $@ $(OBJS)
+
+ %.o: %.c
+- $(CC) $(CFLAGS) $(shell gtk-config --cflags) -o $@ -c $<
++ $(CC) $(CFLAGS) $(shell gtk12-config --cflags) -o $@ -c $<
+
+ tar: clean
+ cd ..; ln -s erwin $(NAME);tar cf - $(NAME)/* > $(NAME).tar;rm $(NAME);gzip -f $(NAME).tar