aboutsummaryrefslogtreecommitdiffstats
path: root/biology/seaview/files
diff options
context:
space:
mode:
authorvanilla <vanilla@FreeBSD.org>1997-12-22 06:04:39 +0800
committervanilla <vanilla@FreeBSD.org>1997-12-22 06:04:39 +0800
commit874b04a2c9b15eadbb1a5ae5a817ac888733af9b (patch)
treef0572e987f27bd2dced8a2c7e15826961a1afaa8 /biology/seaview/files
parent7ef12999ef5bd60025257f5c738c8be362bd55ad (diff)
downloadfreebsd-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-aa20
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)
++
++