diff options
author | vanilla <vanilla@FreeBSD.org> | 1997-12-22 06:04:39 +0800 |
---|---|---|
committer | vanilla <vanilla@FreeBSD.org> | 1997-12-22 06:04:39 +0800 |
commit | 874b04a2c9b15eadbb1a5ae5a817ac888733af9b (patch) | |
tree | f0572e987f27bd2dced8a2c7e15826961a1afaa8 /biology/seaview/files | |
parent | 7ef12999ef5bd60025257f5c738c8be362bd55ad (diff) | |
download | freebsd-ports-gnome-874b04a2c9b15eadbb1a5ae5a817ac888733af9b.tar.gz freebsd-ports-gnome-874b04a2c9b15eadbb1a5ae5a817ac888733af9b.tar.zst freebsd-ports-gnome-874b04a2c9b15eadbb1a5ae5a817ac888733af9b.zip |
Seaview is a multiple DNA sequence alignment editor.
It is capable of align DNA sequences from various organisms
and assign their position in the phylogenic tree.
PR: ports/5229
Submitted by: Frank Chen Hsiung Chan <frankch@waru.life.nthu.edu.tw>
Diffstat (limited to 'biology/seaview/files')
-rw-r--r-- | biology/seaview/files/patch-aa | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/biology/seaview/files/patch-aa b/biology/seaview/files/patch-aa new file mode 100644 index 000000000000..3e326a80032b --- /dev/null +++ b/biology/seaview/files/patch-aa @@ -0,0 +1,20 @@ +--- Makefile.orig Fri Dec 5 13:22:24 1997 ++++ Makefile Fri Dec 5 13:20:45 1997 +@@ -0,0 +1,17 @@ ++#matpt.h ++#seaview.h ++CC = gcc ++CFLAGS+= -I/usr/X11R6/include ++LIBS = -L/usr/X11R6/lib -lxforms -lX11 -lm ++SRCS = align.c load_seq.c regions.c seaview.c use_mase_files.c xfmatpt.c ++OBJS = align.o load_seq.o regions.o seaview.o use_mase_files.o xfmatpt.o ++ ++all: seaview ++ ++seaview: $(OBJS) ++ $(CC) -o seaview $(OBJS) $(LIBS) ++ ++c.o.: $(SRCS) ++ $(CC) $(CFLAGS) -c $(SRCS) ++ ++ |