summaryrefslogtreecommitdiff
path: root/games/xlines/files
diff options
context:
space:
mode:
authorSteve Price <steve@FreeBSD.org>1999-05-03 02:13:37 +0000
committerSteve Price <steve@FreeBSD.org>1999-05-03 02:13:37 +0000
commit0794bbed14ca06e93fce7f8cb60c0c1d511f31cf (patch)
tree86b921864dbada4f192b3614bd76c8629d64af9c /games/xlines/files
parentStick this port's distfiles on my homepage since it has disappeared (diff)
Minor cleanups from maintainer.
PR: 11422 Submitted by: maintainer
Notes
Notes: svn path=/head/; revision=18365
Diffstat (limited to 'games/xlines/files')
-rw-r--r--games/xlines/files/patch-aa24
1 files changed, 19 insertions, 5 deletions
diff --git a/games/xlines/files/patch-aa b/games/xlines/files/patch-aa
index b2af4347e014..e2f233bb005f 100644
--- a/games/xlines/files/patch-aa
+++ b/games/xlines/files/patch-aa
@@ -1,16 +1,30 @@
---- Makefile Mon Apr 27 21:47:35 1998
-+++ /home/andy/tmp/wrk/Makefile Mon Jul 6 11:56:02 1998
-@@ -1,8 +1,8 @@
+--- Makefile Tue Apr 28 01:47:35 1998
++++ /home/andy/tmp/wrk/Makefile Sat May 1 13:01:53 1999
+@@ -1,8 +1,7 @@
-INCDIR=/usr/local/qt/include
-CFLAGS=-O2 -I/usr/X11/include -DSHOW_NEXT_COLORS
-LFLAGS=-L/usr/local/qt/lib -lqt -L/usr/X11/lib -lX11
-CC=gcc
-MOC=/usr/local/qt/bin/moc
+INCDIR=${X11BASE}/include/X11/qt
-+CFLAGS+=-I${X11BASE}/include -DSHOW_NEXT_COLORS
++CXXFLAGS+=-I${X11BASE}/include -DSHOW_NEXT_COLORS
+LFLAGS=-L${X11BASE}/lib -lqt -lX11
-+#CC=gcc
+MOC=${X11BASE}/bin/moc
SRC=lines.cpp lines.moc
OBJECTS=lines.o
+@@ -14,12 +13,12 @@
+ .SUFFIXES: .cpp
+
+ .cpp.o:
+- $(CC) -c $(CFLAGS) -I$(INCDIR) $<
++ $(CXX) -c $(CXXFLAGS) -I$(INCDIR) $<
+
+ all: $(TARGET)
+
+ $(TARGET): $(MOCFILES) $(OBJECTS) lines.h
+- $(CC) $(OBJECTS) -o $(TARGET) $(LFLAGS) -I$(INCDIR)
++ $(CXX) $(OBJECTS) -o $(TARGET) $(LFLAGS) -I$(INCDIR)
+
+ lines.moc: lines.h
+ $(MOC) lines.h -o lines.moc