diff options
author | pat <pat@FreeBSD.org> | 2002-01-02 04:42:53 +0000 |
---|---|---|
committer | pat <pat@FreeBSD.org> | 2002-01-02 04:42:53 +0000 |
commit | 9f6c8ab5ecc900ed283a1791bb252b64a23893f0 (patch) | |
tree | bffd313ef02fe4d9ad3094f8d48f499b02ca8bbd /misc/icemc/files | |
parent | 543e1c0b8a134ffa7d237cb4a9eabdd8739ac01e (diff) | |
download | FreeBSD-ports-9f6c8ab5ecc900ed283a1791bb252b64a23893f0.zip FreeBSD-ports-9f6c8ab5ecc900ed283a1791bb252b64a23893f0.tar.gz |
Add new port x11-wm/icemc - a graphical configuration tool to edit
your IceWM menu
PR: 33409
Submitted by: Adam Weinberger <monkey@crackula.com>
Diffstat (limited to 'misc/icemc/files')
-rw-r--r-- | misc/icemc/files/patch-Makefile | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/misc/icemc/files/patch-Makefile b/misc/icemc/files/patch-Makefile new file mode 100644 index 0000000..d5ec86c --- /dev/null +++ b/misc/icemc/files/patch-Makefile @@ -0,0 +1,31 @@ +--- Makefile.orig Tue Dec 4 12:49:24 2001 ++++ Makefile Tue Jan 1 23:26:16 2002 +@@ -13,21 +13,18 @@ + # QTDIR = /usr/lib/qt + + # DESTDIR (location for installing) +-DESTDIR = /usr/local ++DESTDIR = ${PREFIX}/bin + + ####### Compiler, tools and options + +-CC = gcc +-CXX = g++ +-CFLAGS = -pipe -DNO_DEBUG +-CXXFLAGS= -pipe -DNO_DEBUG +-INCPATH = -I$(QTDIR)/include +-LINK = g++ ++CFLAGS += -DNO_DEBUG ++CXXFLAGS+= -DNO_DEBUG ++INCPATH = ${QTCPPFLAGS} ++LINK = $(CXX) + LFLAGS = + #LIBS = $(SUBLIBS) -L$(QTDIR)/lib -L/usr/X11R6/lib -lqt -lXext -lX11 -lm +-LIBS = $(SUBLIBS) -lqt +-MOC = $(QTDIR)/bin/moc +-UIC = $(QTDIR)/bin/uic ++LIBS = ${QTCFGLIBS} ${LIBQT} ++UIC = ${X11BASE}/uic + + TAR = tar -cf + GZIP = gzip -9f |