diff options
author | Martin Wilke <miwi@FreeBSD.org> | 2006-11-27 22:03:42 +0000 |
---|---|---|
committer | Martin Wilke <miwi@FreeBSD.org> | 2006-11-27 22:03:42 +0000 |
commit | e74a5f887e6f838e4afab2c3cae1a427edd9f5ac (patch) | |
tree | b0d6df73bee995e50f8f3407201916da5d74718c /graphics/isreal | |
parent | c2d205b26110b27c58093ee777a74e83d66890fb (diff) | |
download | ports-e74a5f887e6f838e4afab2c3cae1a427edd9f5ac.tar.gz ports-e74a5f887e6f838e4afab2c3cae1a427edd9f5ac.zip |
- Respect X11BASE
PR: ports/105894
Submitted by: trasz
Notes
Notes:
svn path=/head/; revision=178140
Diffstat (limited to 'graphics/isreal')
-rw-r--r-- | graphics/isreal/files/patch-Makefile | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/graphics/isreal/files/patch-Makefile b/graphics/isreal/files/patch-Makefile index 0f678134e02a..0e787f8d23be 100644 --- a/graphics/isreal/files/patch-Makefile +++ b/graphics/isreal/files/patch-Makefile @@ -1,15 +1,18 @@ ---- Makefile.orig Thu Jan 6 08:09:10 2000 -+++ Makefile Sat Mar 31 19:46:20 2001 -@@ -3,13 +3,14 @@ +--- Makefile.orig Wed Jan 5 22:39:10 2000 ++++ Makefile Mon Nov 27 00:23:30 2006 +@@ -1,16 +1,17 @@ # - LIBS = -L/usr/X11R6/lib -L/usr/local/lib -lX11 -lXext \ + # $Id: Makefile,v 1.7 2000/01/05 21:39:10 aland Exp $ + # +-LIBS = -L/usr/X11R6/lib -L/usr/local/lib -lX11 -lXext \ - -ljpeg -lpng -ltiff -lz -lgif -lm -lImlib -CFLAGS = -g -Wall -Wshadow -Wpointer-arith -Wcast-qual -Wcast-align \ - -Wwrite-strings -Wconversion -Waggregate-return -Wstrict-prototypes \ - -Wmissing-prototypes -Wmissing-declarations -Wnested-externs ++LIBS = -L$(X11BASE)/lib -L/usr/local/lib -lX11 -lXext \ + -ljpeg -lpng -ltiff -lz -lungif -lm -lImlib + -+CFLAGS += -I/usr/X11R6/include ++CFLAGS += -I$(X11BASE)/include VERSION=2.0 @@ -20,3 +23,4 @@ + $(CC) isreal.o $(LIBS) -o $@ clean: + @rm -f *~ *.o isreal |