summaryrefslogtreecommitdiff
path: root/security/qtfw/files/patch-Makefile
diff options
context:
space:
mode:
authorRene Ladan <rene@FreeBSD.org>2013-07-26 19:19:20 +0000
committerRene Ladan <rene@FreeBSD.org>2013-07-26 19:19:20 +0000
commit66fee909266a1dedf3dfc1f03bb0841380d78805 (patch)
tree4c98d494bc4532b5dd5b19f4e47bcb3babf104c2 /security/qtfw/files/patch-Makefile
parentRemove support for Qt3/kde in preparation for full Qt3/kde3 removal (diff)
KDE3 and QT3 expired on 2013-07-01, remove these ports.
Unfortunately, this also affects some ports using QT3 as a GUI toolkit. Changes to infrastructure files: - bsd.kde.mk : obsolete, remove - bsd.qt.mk : note that a CONFLICTS_BUILD line can probably go after a while - CHANGES : document the removals from bsd.port.mk - KNOBS : remove KDE and QT (KDE4 and QT4 should be used instead) - MOVED : add the removed ports PR: ports/180745 Submitted by: rene Approved by: portmgr (bapt) Exp-run by: bapt
Diffstat (limited to 'security/qtfw/files/patch-Makefile')
-rw-r--r--security/qtfw/files/patch-Makefile32
1 files changed, 0 insertions, 32 deletions
diff --git a/security/qtfw/files/patch-Makefile b/security/qtfw/files/patch-Makefile
deleted file mode 100644
index 4a7e877cb27a..000000000000
--- a/security/qtfw/files/patch-Makefile
+++ /dev/null
@@ -1,32 +0,0 @@
---- Makefile.orig Fri Sep 20 04:42:41 2002
-+++ Makefile Sat Sep 21 01:08:11 2002
-@@ -1,16 +1,14 @@
- TARGET:=qtfw
--prefix=/usr/local
- INSTALL=install
--CXX:=g++
- MOC:=moc
- UIC:=uic
- RM:=rm -f
- AWK=awk
- LDFLAGS=
--CFLAGS=-O -I. -I.. -Wall
--QT_INCLUDES:=-I/usr/X11R6/include
--QT_LIBS:=-L/usr/X11R6/lib
--LIBS:=-lqt-mt -pthread
-+CXXFLAGS+=-I. -I.. -Wall ${PTHREAD_CFLAGS}
-+QT_INCLUDES:=-I${LOCALBASE}/include
-+QT_LIBS:=-L${LOCALBASE}/lib
-+LIBS:=-lqt-mt ${PTHREAD_LIBS}
-
- UI_TEMPLATES_DIR:=../qtdesigner-ui
- UI_TEMPLATES=$(wildcard $(UI_TEMPLATES_DIR)/*.ui)
-@@ -32,7 +30,7 @@
- $(TARGET) :$(UI_HEADERS) $(UI_SOURCES) $(OBJECTS)
- $(CXX) $(LDFLAGS) $(QT_LIBS) $(LIBS) $(OBJECTS) -o $@
- %.o : %.cpp
-- $(CXX) $(CFLAGS) $(QT_INCLUDES) -c $<
-+ $(CXX) $(CXXFLAGS) $(QT_INCLUDES) -c $<
- $(UI_HEADERS) : %.H : $(UI_TEMPLATES_DIR)/%.ui
- $(UIC) -o $@ $<
- $(UI_SOURCES) : %.cpp : %.H $(UI_TEMPLATES_DIR)/%.ui