diff options
author | ijliao <ijliao@FreeBSD.org> | 2001-02-06 00:48:20 +0800 |
---|---|---|
committer | ijliao <ijliao@FreeBSD.org> | 2001-02-06 00:48:20 +0800 |
commit | 4d4b7a26d57d8317eb845a57603bcad58d623f54 (patch) | |
tree | ef082f2c5e87d0b264beee70e9ad61e151fc01b4 | |
parent | 35a1a40a4d0c4ab18429e4ed80575c10c3fb75e1 (diff) | |
download | freebsd-ports-gnome-4d4b7a26d57d8317eb845a57603bcad58d623f54.tar.gz freebsd-ports-gnome-4d4b7a26d57d8317eb845a57603bcad58d623f54.tar.zst freebsd-ports-gnome-4d4b7a26d57d8317eb845a57603bcad58d623f54.zip |
add y2l, Yacc-to-Latex pretty printer/convertor
-rw-r--r-- | textproc/Makefile | 1 | ||||
-rw-r--r-- | textproc/y2l/Makefile | 25 | ||||
-rw-r--r-- | textproc/y2l/distinfo | 1 | ||||
-rw-r--r-- | textproc/y2l/pkg-comment | 1 | ||||
-rw-r--r-- | textproc/y2l/pkg-descr | 10 | ||||
-rw-r--r-- | textproc/y2l/pkg-plist | 1 |
6 files changed, 39 insertions, 0 deletions
diff --git a/textproc/Makefile b/textproc/Makefile index 76c6e3840c1e..9c6558e99dc9 100644 --- a/textproc/Makefile +++ b/textproc/Makefile @@ -151,6 +151,7 @@ SUBDIR += xml4j SUBDIR += xp SUBDIR += xt + SUBDIR += y2l SUBDIR += yodl .include <bsd.port.subdir.mk> diff --git a/textproc/y2l/Makefile b/textproc/y2l/Makefile new file mode 100644 index 000000000000..5939e2bf6c26 --- /dev/null +++ b/textproc/y2l/Makefile @@ -0,0 +1,25 @@ +# ex:ts=8 +# New ports collection makefile for: y2l +# Date created: Feb 6, 2001 +# Whom: Ying-Chieh Liao <ijliao@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= y2l +PORTVERSION= 1.1 +CATEGORIES= textproc +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITE_SUBDIR= ${PORTNAME} + +MAINTAINER= ijliao@FreeBSD.org + +NO_BUILD= yes + +MAN1= y2l.1 + +do-install: + @${INSTALL_SCRIPT} ${WRKSRC}/y2l ${PREFIX}/bin + @${INSTALL_MAN} ${WRKSRC}/y2l.man ${MANPREFIX}/man/man1/y2l.1 + +.include <bsd.port.mk> diff --git a/textproc/y2l/distinfo b/textproc/y2l/distinfo new file mode 100644 index 000000000000..e0c9b7b7344f --- /dev/null +++ b/textproc/y2l/distinfo @@ -0,0 +1 @@ +MD5 (y2l-1.1.tar.gz) = 3924e7937b6407763096c888d215c33f diff --git a/textproc/y2l/pkg-comment b/textproc/y2l/pkg-comment new file mode 100644 index 000000000000..a4a2e4bb78ab --- /dev/null +++ b/textproc/y2l/pkg-comment @@ -0,0 +1 @@ +Yacc-to-Latex pretty printer/convertor diff --git a/textproc/y2l/pkg-descr b/textproc/y2l/pkg-descr new file mode 100644 index 000000000000..a0fc2dd39108 --- /dev/null +++ b/textproc/y2l/pkg-descr @@ -0,0 +1,10 @@ +The Yacc to LaTeX utility takes (hopefully) any yacc source file, +and derives an Extended Backus-Naur Form (EBNF) description from +it. This EBNF is written out as LaTeX source. The output is a LaTeX +"longtable" environment, that can be included in any LaTeX document, +typically using an \input{} statement. + +WWW: http://www.alchar.org/~aedil/Projects/y2l.html + +-- Ying-Chieh Liao + ijliao@FreeBSD.org diff --git a/textproc/y2l/pkg-plist b/textproc/y2l/pkg-plist new file mode 100644 index 000000000000..3fc25b9c4d8d --- /dev/null +++ b/textproc/y2l/pkg-plist @@ -0,0 +1 @@ +bin/y2l |