diff options
-rw-r--r-- | biology/nab/Makefile | 5 | ||||
-rw-r--r-- | biology/nab/files/patch-nabgrm.y | 11 | ||||
-rw-r--r-- | biology/nab/files/patch-parser.y | 10 |
3 files changed, 25 insertions, 1 deletions
diff --git a/biology/nab/Makefile b/biology/nab/Makefile index d87e52a..1496ea2 100644 --- a/biology/nab/Makefile +++ b/biology/nab/Makefile @@ -1,12 +1,15 @@ # New ports collection Makefile for: nab # Date created: Sept. 10, 2000 # Whom: M. L. Dodson <bdodson@scms.utmb.edu> +# # $FreeBSD$ +# PORTNAME= nab PORTVERSION= 4.4 CATEGORIES= biology -MASTER_SITES= ftp://ftp.scripps.edu/pub/case/ +MASTER_SITES= ftp://ftp.scripps.edu/pub/case/ \ + http://www.scripps.edu/case/ MAINTAINER= bdodson@scms.utmb.edu diff --git a/biology/nab/files/patch-nabgrm.y b/biology/nab/files/patch-nabgrm.y new file mode 100644 index 0000000..78ff31d --- /dev/null +++ b/biology/nab/files/patch-nabgrm.y @@ -0,0 +1,11 @@ +--- src/nabgrm.y.orig Tue Oct 29 13:04:56 2002 ++++ src/nabgrm.y Tue Oct 29 13:40:29 2002 +@@ -244,7 +244,7 @@ + expr_stmt : expr SYM_SEMICOLON + { CG_genmain(); CG_genexpr( $1 ); + CG_genop( NULL, SYM_SEMICOLON ); } ; +-if_stmt : if_hdr stmt ; ++if_stmt : if_hdr stmt + | if_hdr stmt SYM_ELSE + { CG_genrword( SYM_ELSE ); } stmt ; + for_stmt : for_hdr stmt ; diff --git a/biology/nab/files/patch-parser.y b/biology/nab/files/patch-parser.y new file mode 100644 index 0000000..bdf23a7 --- /dev/null +++ b/biology/nab/files/patch-parser.y @@ -0,0 +1,10 @@ +--- tleap/parser.y.orig Tue Oct 29 13:46:35 2002 ++++ tleap/parser.y Tue Oct 29 13:48:18 2002 +@@ -220,6 +220,7 @@ + { + return; + } ++ ; + + line : LENDOFCOMMAND + | instruct |