summaryrefslogtreecommitdiff
path: root/games/xlines/files
diff options
context:
space:
mode:
authorWill Andrews <will@FreeBSD.org>2002-04-19 02:30:02 +0000
committerWill Andrews <will@FreeBSD.org>2002-04-19 02:30:02 +0000
commite05ed36727813c752300995435b0dc1aee51ecc3 (patch)
treed926f0f9b039ccf866d06988fbb956f5373cb5b9 /games/xlines/files
parentAdd support for localization. (diff)
Say goodbye to Qt 1.x and all of its dependents. The one port I found
which probably isn't supposed to be removed is misc/instant-workstation, which had a dependency on audio/xamp (being removed), so I removed that dependency and bumped PORTREVISION. All other ports are real dependents upon Qt 1.x, including KDE 1.x stuff. Code in bsd.kde.mk supporting these ports is also removed or adjusted. Also, some adjustments made to accomodate Qt3/KDE3 ports, which will be committed Real Soon Now (TM), pending repo-copies. This commit made in impending view of Qt3/KDE3 entering ports tree.
Notes
Notes: svn path=/head/; revision=57872
Diffstat (limited to 'games/xlines/files')
-rw-r--r--games/xlines/files/patch-aa31
-rw-r--r--games/xlines/files/patch-ab11
2 files changed, 0 insertions, 42 deletions
diff --git a/games/xlines/files/patch-aa b/games/xlines/files/patch-aa
deleted file mode 100644
index 7f4c05076817..000000000000
--- a/games/xlines/files/patch-aa
+++ /dev/null
@@ -1,31 +0,0 @@
---- Makefile.orig Mon Apr 27 16:47:35 1998
-+++ Makefile Sun Jul 16 19:47:51 2000
-@@ -1,8 +1,8 @@
--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
-+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 +14,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
diff --git a/games/xlines/files/patch-ab b/games/xlines/files/patch-ab
deleted file mode 100644
index 2e74e16c0ffa..000000000000
--- a/games/xlines/files/patch-ab
+++ /dev/null
@@ -1,11 +0,0 @@
---- lines.cpp.orig Sat Jan 17 18:11:13 1998
-+++ lines.cpp Fri Feb 13 23:57:07 1998
-@@ -502,7 +502,7 @@
- score->setGeometry(300,120,85,45);
- curScore=0;
- score->display(0);
-- movie=new QMovie("trolltech.gif");
-+ movie=new QMovie("%%PREFIX%%/share/xlines/trolltech.gif");
- label=new QLabel(this,"label");
- label->setFrameStyle(QFrame::Box|QFrame::Plain);
- label->setMovie(*movie);