1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-04 06:15:24 +00:00
freebsd-ports/biology/seaview/files/patch-Makefile
Marcus Alves Grando 843d1a4279 - Update to 2006.02.13
PR:		95281
Submitted by:	maintainer
2006-04-05 01:58:03 +00:00

26 lines
847 B
Plaintext

--- Makefile.orig Mon Apr 3 16:30:03 2006
+++ Makefile Mon Apr 3 16:35:59 2006
@@ -1,18 +1,15 @@
-FLTK = ../fltk
-PDF = ../PDFlib-Lite-6.0.1/libs/pdflib
-X11 = /usr/X11R6
CXX = g++
-CFLAGS = -Dunix -U__APPLE__ -c $(OPT) -I$(FLTK) -I$(PDF) -I$(X11)/include
+CFLAGS+= -Dunix -U__APPLE__ -c $(OPT) -I$(X11BASE)/include -I$(LOCALBASE)/include
OBJECTS = seaview.o pdf.o custom.o use_mase_files.o regions.o load_seq.o align.o xfmatpt.o comlines.o chooser_plus.o resource.o nexus.o
seaview : $(OBJECTS)
- $(CXX) -o $@ $(OBJECTS) -L$(FLTK)/lib -lfltk \
- -Xlinker -Bstatic -L$(PDF)/.libs -lpdf -Xlinker -Bdynamic \
- -L$(X11)/lib -lX11 -lm
+ $(CXX) -o $@ $(OBJECTS) -L$(LOCALBASE)/lib -lfltk \
+ -Xlinker -Bstatic -lpdf -Xlinker -Bdynamic \
+ -L$(X11BASE)/lib -lX11 -lm
strip $@