diff options
author | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2001-07-02 17:33:46 +0000 |
---|---|---|
committer | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2001-07-02 17:33:46 +0000 |
commit | b7f10e8777ef7d8d2ba2c023ef29f6f14f3a8cb5 (patch) | |
tree | 87411ef8e60674a15d44b1de140bd65a8324359b | |
parent | bf8c6536778ff0aabdc47317e4aa90fd4d293c39 (diff) | |
download | ports-b7f10e8777ef7d8d2ba2c023ef29f6f14f3a8cb5.tar.gz ports-b7f10e8777ef7d8d2ba2c023ef29f6f14f3a8cb5.zip |
add ebnf2yacc
EBNF to YACC
Notes
Notes:
svn path=/head/; revision=44659
-rw-r--r-- | devel/Makefile | 1 | ||||
-rw-r--r-- | devel/ebnf2yacc/Makefile | 19 | ||||
-rw-r--r-- | devel/ebnf2yacc/distinfo | 1 | ||||
-rw-r--r-- | devel/ebnf2yacc/pkg-comment | 1 | ||||
-rw-r--r-- | devel/ebnf2yacc/pkg-descr | 5 | ||||
-rw-r--r-- | devel/ebnf2yacc/pkg-plist | 1 |
6 files changed, 28 insertions, 0 deletions
diff --git a/devel/Makefile b/devel/Makefile index f9bcd00e8aa9..0d3d30842117 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -102,6 +102,7 @@ SUBDIR += doc++ SUBDIR += dotconf SUBDIR += doxygen + SUBDIR += ebnf2yacc SUBDIR += ecgi SUBDIR += elftoaout SUBDIR += elib-emacs diff --git a/devel/ebnf2yacc/Makefile b/devel/ebnf2yacc/Makefile new file mode 100644 index 000000000000..d82834b001c3 --- /dev/null +++ b/devel/ebnf2yacc/Makefile @@ -0,0 +1,19 @@ +# ex:ts=8 +# New ports collection makefile for: ebnf2yacc +# Date created: Jul 3, 2001 +# Whom: ijliao +# +# $FreeBSD$ +# + +PORTNAME= ebnf2yacc +PORTVERSION= 0.1.0 +CATEGORIES= devel +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITE_SUBDIR= ${PORTNAME} + +MAINTAINER= ijliao@FreeBSD.org + +GNU_CONFIGURE= yes + +.include <bsd.port.mk> diff --git a/devel/ebnf2yacc/distinfo b/devel/ebnf2yacc/distinfo new file mode 100644 index 000000000000..08c2b55af8d8 --- /dev/null +++ b/devel/ebnf2yacc/distinfo @@ -0,0 +1 @@ +MD5 (ebnf2yacc-0.1.0.tar.gz) = 48a11d314b6ab3062b951e765634cf2a diff --git a/devel/ebnf2yacc/pkg-comment b/devel/ebnf2yacc/pkg-comment new file mode 100644 index 000000000000..ae5237ff9e61 --- /dev/null +++ b/devel/ebnf2yacc/pkg-comment @@ -0,0 +1 @@ +EBNF to YACC diff --git a/devel/ebnf2yacc/pkg-descr b/devel/ebnf2yacc/pkg-descr new file mode 100644 index 000000000000..ca30e01434e8 --- /dev/null +++ b/devel/ebnf2yacc/pkg-descr @@ -0,0 +1,5 @@ +ebnf2yacc is a tool to help write yacc parsers/compilers. It takes as input a +grammar written in ebnf, and outputs a c++ abstract syntax tree that supports +the visitor pattern, along with a yacc file to build the tree. + +WWW: http://sourceforge.net/projects/ebnf2yacc/ diff --git a/devel/ebnf2yacc/pkg-plist b/devel/ebnf2yacc/pkg-plist new file mode 100644 index 000000000000..00698cd5047e --- /dev/null +++ b/devel/ebnf2yacc/pkg-plist @@ -0,0 +1 @@ +bin/ebnf2yacc |