add ebnf2yacc

EBNF to YACC
This commit is contained in:
Ying-Chieh Liao 2001-07-02 17:33:46 +00:00
parent bf8c653677
commit b7f10e8777
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=44659
6 changed files with 28 additions and 0 deletions

View File

@ -102,6 +102,7 @@
SUBDIR += doc++
SUBDIR += dotconf
SUBDIR += doxygen
SUBDIR += ebnf2yacc
SUBDIR += ecgi
SUBDIR += elftoaout
SUBDIR += elib-emacs

19
devel/ebnf2yacc/Makefile Normal file
View File

@ -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>

1
devel/ebnf2yacc/distinfo Normal file
View File

@ -0,0 +1 @@
MD5 (ebnf2yacc-0.1.0.tar.gz) = 48a11d314b6ab3062b951e765634cf2a

View File

@ -0,0 +1 @@
EBNF to YACC

View File

@ -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/

View File

@ -0,0 +1 @@
bin/ebnf2yacc