diff options
author | sobomax <sobomax@FreeBSD.org> | 2001-01-23 16:47:05 +0000 |
---|---|---|
committer | sobomax <sobomax@FreeBSD.org> | 2001-01-23 16:47:05 +0000 |
commit | 24e6494bc3c9e22c32522bb9eedc75040228c85b (patch) | |
tree | 3c32beb6dbfdf7a2a61a407cff01e548f826e9ad /sysutils/qtpkg/files | |
parent | d83fdda98b24fb7d68b644a93a0aa08737d8519f (diff) | |
download | FreeBSD-ports-24e6494bc3c9e22c32522bb9eedc75040228c85b.zip FreeBSD-ports-24e6494bc3c9e22c32522bb9eedc75040228c85b.tar.gz |
Add qtpkg 1.0, a Qt based package removal tool.
PR: 24573
Submitted by: Trenton Schulz <twschulz@cord.edu>
Diffstat (limited to 'sysutils/qtpkg/files')
-rw-r--r-- | sysutils/qtpkg/files/patch-Makefile | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/sysutils/qtpkg/files/patch-Makefile b/sysutils/qtpkg/files/patch-Makefile new file mode 100644 index 0000000..b053c5d --- /dev/null +++ b/sysutils/qtpkg/files/patch-Makefile @@ -0,0 +1,25 @@ + +$FreeBSD$ + +--- Makefile 2001/01/23 16:32:54 1.1 ++++ Makefile 2001/01/23 16:36:12 +@@ -9,13 +9,13 @@ + + CC = cc + CXX = c++ +-CFLAGS = -pipe -Wall -W -O2 -DNO_DEBUG +-CXXFLAGS = -pipe -Wall -W -O2 -DNO_DEBUG +-INCPATH = -I/usr/local/include -I/usr/X11R6/include/qt2 ++CFLAGS += -pipe -Wall -W -DNO_DEBUG ++CXXFLAGS += -pipe -Wall -W -DNO_DEBUG ++INCPATH = -I$(LOCALBASE)/include -I$(X11BASE)/include/qt2 + LINK = c++ +-LIBS = $(SUBLIBS) -L/usr/local/lib -L/usr/X11R6/lib -lqt2 -lXext -lX11 -lm +-MOC = /usr/X11R6/bin/moc2 +-UIC = /usr/X11R6/bin/uic ++LIBS = $(SUBLIBS) -L$(LOCALBASE)/lib -L$(X11BASE)/lib -lqt2 -lXext -lX11 -lm -pthread ++MOC = $(X11BASE)/bin/moc2 ++UIC = $(X11BASE)/bin/uic + + TAR = tar -cf + GZIP = gzip -9f |