freebsd-ports/games/xjig/files/patch-aa
Martin Wilke 3e4ed01146 - Remove unneeded dependency from gtk12/gtk20 [1]
- 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)
2008-04-19 17:56:05 +00:00

34 lines
795 B
Plaintext

--- Makefile.Linux.orig Wed Jul 17 22:10:55 1996
+++ Makefile.Linux Fri Nov 24 16:10:03 2006
@@ -1,7 +1,7 @@
### compiler section
-CXX = gcc -Wall -fstrength-reduce -fpcc-struct-return
-CXXFLAGS = -g -DUSE_MIT_SHM
+CXX ?= c++
+CXXFLAGS += -Wall -fstrength-reduce -fpcc-struct-return -DUSE_MIT_SHM -I${X_INCLUDE}
### default file to be used, when no options are set
@@ -9,9 +9,9 @@
### Directories for include files of X11 and libraries
-X_INCLUDE = /usr/X11R6/include
+X_INCLUDE = $(LOCALBASE)/include
-XLIB_DIR = /usr/X11R6/lib
+XLIB_DIR = $(LOCALBASE)/lib
###################################################################
@@ -20,7 +20,7 @@
.SUFFIXES: .C .o
.C.o:
- $(CXX) -I$(X_INCLUDE) $(CXXFLAGS) -c $<
+ $(CXX) $(CXXFLAGS) -c $<
LD = $(CXX)