- Remove USE_XLIB/USE_X_PREFIX/USE_XPM in favor of USE_XORG - Remove X11BASE support in favor of LOCALBASE or PREFIX - Use USE_LDCONFIG instead of INSTALLS_SHLIB - Remove unneeded USE_GCC 3.4+ Thanks to all Helpers: Dmitry Marakasov, Chess Griffin, beech@, dinoex, rafan, gahr, ehaupt, nox, itetcu, flz, pav PR: 116263 Tested on: pointyhat Approved by: portmgr (pav)
17 lines
450 B
Text
17 lines
450 B
Text
--- Makefile.orig Sat Apr 8 00:51:27 2000
|
|
+++ Makefile Mon Jul 2 21:51:07 2001
|
|
@@ -1,10 +1,9 @@
|
|
# Makefile for wmScoreBoard
|
|
|
|
-CC = gcc
|
|
-CFLAGS = -g -O2 -Wall
|
|
-INCDIR = -I/usr/X11R6/include/X11 -I/usr/X11R6/include
|
|
-LIBDIR = -L/usr/X11R6/lib
|
|
-DESTDIR = /usr/X11R6
|
|
+CFLAGS += -g -Wall
|
|
+INCDIR = -I${LOCALBASE}/include/X11 -I${LOCALBASE}/include
|
|
+LIBDIR = -L${LOCALBASE}/lib
|
|
+DESTDIR = $(PREFIX)
|
|
|
|
# for linux
|
|
LIBS = -lXpm -lX11 -lXext
|