From 041e34d028184eb82116119ea21415b8cfe947d0 Mon Sep 17 00:00:00 2001 From: "David E. O'Brien" Date: Wed, 6 Oct 1999 08:11:30 +0000 Subject: The latest Bison is now in the base system (and has been for a while). This port is no longer needed. --- devel/bison-devel/Makefile | 28 ---------------------------- devel/bison-devel/distinfo | 1 - devel/bison-devel/pkg-comment | 1 - devel/bison-devel/pkg-descr | 22 ---------------------- devel/bison-devel/pkg-plist | 9 --------- devel/bison/Makefile | 28 ---------------------------- devel/bison/distinfo | 1 - devel/bison/pkg-comment | 1 - devel/bison/pkg-descr | 22 ---------------------- devel/bison/pkg-plist | 9 --------- devel/bison175/Makefile | 28 ---------------------------- devel/bison175/distinfo | 1 - devel/bison175/pkg-comment | 1 - devel/bison175/pkg-descr | 22 ---------------------- devel/bison175/pkg-plist | 9 --------- devel/bison1875/Makefile | 28 ---------------------------- devel/bison1875/distinfo | 1 - devel/bison1875/pkg-comment | 1 - devel/bison1875/pkg-descr | 22 ---------------------- devel/bison1875/pkg-plist | 9 --------- devel/bison2/Makefile | 28 ---------------------------- devel/bison2/distinfo | 1 - devel/bison2/pkg-comment | 1 - devel/bison2/pkg-descr | 22 ---------------------- devel/bison2/pkg-plist | 9 --------- devel/bison20/Makefile | 28 ---------------------------- devel/bison20/distinfo | 1 - devel/bison20/pkg-comment | 1 - devel/bison20/pkg-descr | 22 ---------------------- devel/bison20/pkg-plist | 9 --------- 30 files changed, 366 deletions(-) delete mode 100644 devel/bison-devel/Makefile delete mode 100644 devel/bison-devel/distinfo delete mode 100644 devel/bison-devel/pkg-comment delete mode 100644 devel/bison-devel/pkg-descr delete mode 100644 devel/bison-devel/pkg-plist delete mode 100644 devel/bison/Makefile delete mode 100644 devel/bison/distinfo delete mode 100644 devel/bison/pkg-comment delete mode 100644 devel/bison/pkg-descr delete mode 100644 devel/bison/pkg-plist delete mode 100644 devel/bison175/Makefile delete mode 100644 devel/bison175/distinfo delete mode 100644 devel/bison175/pkg-comment delete mode 100644 devel/bison175/pkg-descr delete mode 100644 devel/bison175/pkg-plist delete mode 100644 devel/bison1875/Makefile delete mode 100644 devel/bison1875/distinfo delete mode 100644 devel/bison1875/pkg-comment delete mode 100644 devel/bison1875/pkg-descr delete mode 100644 devel/bison1875/pkg-plist delete mode 100644 devel/bison2/Makefile delete mode 100644 devel/bison2/distinfo delete mode 100644 devel/bison2/pkg-comment delete mode 100644 devel/bison2/pkg-descr delete mode 100644 devel/bison2/pkg-plist delete mode 100644 devel/bison20/Makefile delete mode 100644 devel/bison20/distinfo delete mode 100644 devel/bison20/pkg-comment delete mode 100644 devel/bison20/pkg-descr delete mode 100644 devel/bison20/pkg-plist diff --git a/devel/bison-devel/Makefile b/devel/bison-devel/Makefile deleted file mode 100644 index 8967357fe38c..000000000000 --- a/devel/bison-devel/Makefile +++ /dev/null @@ -1,28 +0,0 @@ -# New ports collection makefile for: bison -# Version required: 1.28 -# Date created: 27 Mar 1999 -# Whom: Jerry Hicks -# -# $FreeBSD$ -# - -DISTNAME= bison-1.28 -CATEGORIES= devel -MASTER_SITES= ${MASTER_SITE_GNU} -MASTER_SITE_SUBDIR= bison - -MAINTAINER= wghicks@bellsouth.net - -Y2K= http://www.gnu.org/software/year2000.html - -GNU_CONFIGURE= yes - -MAN1= bison.1 - -post-install: - @if [ ! -f ${PREFIX}/info/dir ]; then \ - ${SED} -ne '1,/Menu:/p' \/usr\/share\/info/dir > ${PREFIX}/info/dir; \ - fi - @install-info ${PREFIX}/info/bison.info ${PREFIX}/info/dir - -.include diff --git a/devel/bison-devel/distinfo b/devel/bison-devel/distinfo deleted file mode 100644 index bf42a21c5426..000000000000 --- a/devel/bison-devel/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (bison-1.28.tar.gz) = 4afb3989f2270043c47c3daa1fa7ffab diff --git a/devel/bison-devel/pkg-comment b/devel/bison-devel/pkg-comment deleted file mode 100644 index a0850f8a7b1f..000000000000 --- a/devel/bison-devel/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -A parser generator from FSF, (mostly) compatible with Yacc diff --git a/devel/bison-devel/pkg-descr b/devel/bison-devel/pkg-descr deleted file mode 100644 index c968b052baf7..000000000000 --- a/devel/bison-devel/pkg-descr +++ /dev/null @@ -1,22 +0,0 @@ -Bison is a tool used to write parsers, such as the parser for GNU cc. -It is similar to Yacc, which is included in the base FreeBSD system. - -The main difference between Bison and Yacc that I know of is that -Bison supports the @N construction, which gives you access to -the starting and ending line number and character number associated -with any of the symbols in the current rule. - -Also, Bison supports the command `%expect N' which says not to mention -the conflicts if there are N shift/reduce conflicts and no reduce/reduce -conflicts. - -The differences in the algorithms stem mainly from the horrible -kludges that Johnson had to perpetrate to make Yacc fit in a PDP-11. - -Also, Bison uses a faster but less space-efficient encoding for the -parse tables (see Corbett's PhD thesis from Berkeley, "Static -Semantics in Compiler Error Recovery", June 1985, Report No. UCB/CSD -85/251), and more modern technique for generating the lookahead sets. -(See "Efficient Construction of LALR(1) Lookahead Sets" by F. DeRemer -and A. Pennello, in ACM TOPLS Vol 4 No 4, October 1982. Their -technique is the standard one now.) diff --git a/devel/bison-devel/pkg-plist b/devel/bison-devel/pkg-plist deleted file mode 100644 index 7666d8f6dc2d..000000000000 --- a/devel/bison-devel/pkg-plist +++ /dev/null @@ -1,9 +0,0 @@ -bin/bison -share/bison.hairy -share/bison.simple -@unexec install-info --delete %D/info/bison.info %D/info/dir -info/bison.info -share/locale/de/LC_MESSAGES/bison.mo -share/locale/es/LC_MESSAGES/bison.mo -share/locale/fr/LC_MESSAGES/bison.mo -share/locale/nl/LC_MESSAGES/bison.mo diff --git a/devel/bison/Makefile b/devel/bison/Makefile deleted file mode 100644 index 8967357fe38c..000000000000 --- a/devel/bison/Makefile +++ /dev/null @@ -1,28 +0,0 @@ -# New ports collection makefile for: bison -# Version required: 1.28 -# Date created: 27 Mar 1999 -# Whom: Jerry Hicks -# -# $FreeBSD$ -# - -DISTNAME= bison-1.28 -CATEGORIES= devel -MASTER_SITES= ${MASTER_SITE_GNU} -MASTER_SITE_SUBDIR= bison - -MAINTAINER= wghicks@bellsouth.net - -Y2K= http://www.gnu.org/software/year2000.html - -GNU_CONFIGURE= yes - -MAN1= bison.1 - -post-install: - @if [ ! -f ${PREFIX}/info/dir ]; then \ - ${SED} -ne '1,/Menu:/p' \/usr\/share\/info/dir > ${PREFIX}/info/dir; \ - fi - @install-info ${PREFIX}/info/bison.info ${PREFIX}/info/dir - -.include diff --git a/devel/bison/distinfo b/devel/bison/distinfo deleted file mode 100644 index bf42a21c5426..000000000000 --- a/devel/bison/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (bison-1.28.tar.gz) = 4afb3989f2270043c47c3daa1fa7ffab diff --git a/devel/bison/pkg-comment b/devel/bison/pkg-comment deleted file mode 100644 index a0850f8a7b1f..000000000000 --- a/devel/bison/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -A parser generator from FSF, (mostly) compatible with Yacc diff --git a/devel/bison/pkg-descr b/devel/bison/pkg-descr deleted file mode 100644 index c968b052baf7..000000000000 --- a/devel/bison/pkg-descr +++ /dev/null @@ -1,22 +0,0 @@ -Bison is a tool used to write parsers, such as the parser for GNU cc. -It is similar to Yacc, which is included in the base FreeBSD system. - -The main difference between Bison and Yacc that I know of is that -Bison supports the @N construction, which gives you access to -the starting and ending line number and character number associated -with any of the symbols in the current rule. - -Also, Bison supports the command `%expect N' which says not to mention -the conflicts if there are N shift/reduce conflicts and no reduce/reduce -conflicts. - -The differences in the algorithms stem mainly from the horrible -kludges that Johnson had to perpetrate to make Yacc fit in a PDP-11. - -Also, Bison uses a faster but less space-efficient encoding for the -parse tables (see Corbett's PhD thesis from Berkeley, "Static -Semantics in Compiler Error Recovery", June 1985, Report No. UCB/CSD -85/251), and more modern technique for generating the lookahead sets. -(See "Efficient Construction of LALR(1) Lookahead Sets" by F. DeRemer -and A. Pennello, in ACM TOPLS Vol 4 No 4, October 1982. Their -technique is the standard one now.) diff --git a/devel/bison/pkg-plist b/devel/bison/pkg-plist deleted file mode 100644 index 7666d8f6dc2d..000000000000 --- a/devel/bison/pkg-plist +++ /dev/null @@ -1,9 +0,0 @@ -bin/bison -share/bison.hairy -share/bison.simple -@unexec install-info --delete %D/info/bison.info %D/info/dir -info/bison.info -share/locale/de/LC_MESSAGES/bison.mo -share/locale/es/LC_MESSAGES/bison.mo -share/locale/fr/LC_MESSAGES/bison.mo -share/locale/nl/LC_MESSAGES/bison.mo diff --git a/devel/bison175/Makefile b/devel/bison175/Makefile deleted file mode 100644 index 8967357fe38c..000000000000 --- a/devel/bison175/Makefile +++ /dev/null @@ -1,28 +0,0 @@ -# New ports collection makefile for: bison -# Version required: 1.28 -# Date created: 27 Mar 1999 -# Whom: Jerry Hicks -# -# $FreeBSD$ -# - -DISTNAME= bison-1.28 -CATEGORIES= devel -MASTER_SITES= ${MASTER_SITE_GNU} -MASTER_SITE_SUBDIR= bison - -MAINTAINER= wghicks@bellsouth.net - -Y2K= http://www.gnu.org/software/year2000.html - -GNU_CONFIGURE= yes - -MAN1= bison.1 - -post-install: - @if [ ! -f ${PREFIX}/info/dir ]; then \ - ${SED} -ne '1,/Menu:/p' \/usr\/share\/info/dir > ${PREFIX}/info/dir; \ - fi - @install-info ${PREFIX}/info/bison.info ${PREFIX}/info/dir - -.include diff --git a/devel/bison175/distinfo b/devel/bison175/distinfo deleted file mode 100644 index bf42a21c5426..000000000000 --- a/devel/bison175/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (bison-1.28.tar.gz) = 4afb3989f2270043c47c3daa1fa7ffab diff --git a/devel/bison175/pkg-comment b/devel/bison175/pkg-comment deleted file mode 100644 index a0850f8a7b1f..000000000000 --- a/devel/bison175/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -A parser generator from FSF, (mostly) compatible with Yacc diff --git a/devel/bison175/pkg-descr b/devel/bison175/pkg-descr deleted file mode 100644 index c968b052baf7..000000000000 --- a/devel/bison175/pkg-descr +++ /dev/null @@ -1,22 +0,0 @@ -Bison is a tool used to write parsers, such as the parser for GNU cc. -It is similar to Yacc, which is included in the base FreeBSD system. - -The main difference between Bison and Yacc that I know of is that -Bison supports the @N construction, which gives you access to -the starting and ending line number and character number associated -with any of the symbols in the current rule. - -Also, Bison supports the command `%expect N' which says not to mention -the conflicts if there are N shift/reduce conflicts and no reduce/reduce -conflicts. - -The differences in the algorithms stem mainly from the horrible -kludges that Johnson had to perpetrate to make Yacc fit in a PDP-11. - -Also, Bison uses a faster but less space-efficient encoding for the -parse tables (see Corbett's PhD thesis from Berkeley, "Static -Semantics in Compiler Error Recovery", June 1985, Report No. UCB/CSD -85/251), and more modern technique for generating the lookahead sets. -(See "Efficient Construction of LALR(1) Lookahead Sets" by F. DeRemer -and A. Pennello, in ACM TOPLS Vol 4 No 4, October 1982. Their -technique is the standard one now.) diff --git a/devel/bison175/pkg-plist b/devel/bison175/pkg-plist deleted file mode 100644 index 7666d8f6dc2d..000000000000 --- a/devel/bison175/pkg-plist +++ /dev/null @@ -1,9 +0,0 @@ -bin/bison -share/bison.hairy -share/bison.simple -@unexec install-info --delete %D/info/bison.info %D/info/dir -info/bison.info -share/locale/de/LC_MESSAGES/bison.mo -share/locale/es/LC_MESSAGES/bison.mo -share/locale/fr/LC_MESSAGES/bison.mo -share/locale/nl/LC_MESSAGES/bison.mo diff --git a/devel/bison1875/Makefile b/devel/bison1875/Makefile deleted file mode 100644 index 8967357fe38c..000000000000 --- a/devel/bison1875/Makefile +++ /dev/null @@ -1,28 +0,0 @@ -# New ports collection makefile for: bison -# Version required: 1.28 -# Date created: 27 Mar 1999 -# Whom: Jerry Hicks -# -# $FreeBSD$ -# - -DISTNAME= bison-1.28 -CATEGORIES= devel -MASTER_SITES= ${MASTER_SITE_GNU} -MASTER_SITE_SUBDIR= bison - -MAINTAINER= wghicks@bellsouth.net - -Y2K= http://www.gnu.org/software/year2000.html - -GNU_CONFIGURE= yes - -MAN1= bison.1 - -post-install: - @if [ ! -f ${PREFIX}/info/dir ]; then \ - ${SED} -ne '1,/Menu:/p' \/usr\/share\/info/dir > ${PREFIX}/info/dir; \ - fi - @install-info ${PREFIX}/info/bison.info ${PREFIX}/info/dir - -.include diff --git a/devel/bison1875/distinfo b/devel/bison1875/distinfo deleted file mode 100644 index bf42a21c5426..000000000000 --- a/devel/bison1875/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (bison-1.28.tar.gz) = 4afb3989f2270043c47c3daa1fa7ffab diff --git a/devel/bison1875/pkg-comment b/devel/bison1875/pkg-comment deleted file mode 100644 index a0850f8a7b1f..000000000000 --- a/devel/bison1875/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -A parser generator from FSF, (mostly) compatible with Yacc diff --git a/devel/bison1875/pkg-descr b/devel/bison1875/pkg-descr deleted file mode 100644 index c968b052baf7..000000000000 --- a/devel/bison1875/pkg-descr +++ /dev/null @@ -1,22 +0,0 @@ -Bison is a tool used to write parsers, such as the parser for GNU cc. -It is similar to Yacc, which is included in the base FreeBSD system. - -The main difference between Bison and Yacc that I know of is that -Bison supports the @N construction, which gives you access to -the starting and ending line number and character number associated -with any of the symbols in the current rule. - -Also, Bison supports the command `%expect N' which says not to mention -the conflicts if there are N shift/reduce conflicts and no reduce/reduce -conflicts. - -The differences in the algorithms stem mainly from the horrible -kludges that Johnson had to perpetrate to make Yacc fit in a PDP-11. - -Also, Bison uses a faster but less space-efficient encoding for the -parse tables (see Corbett's PhD thesis from Berkeley, "Static -Semantics in Compiler Error Recovery", June 1985, Report No. UCB/CSD -85/251), and more modern technique for generating the lookahead sets. -(See "Efficient Construction of LALR(1) Lookahead Sets" by F. DeRemer -and A. Pennello, in ACM TOPLS Vol 4 No 4, October 1982. Their -technique is the standard one now.) diff --git a/devel/bison1875/pkg-plist b/devel/bison1875/pkg-plist deleted file mode 100644 index 7666d8f6dc2d..000000000000 --- a/devel/bison1875/pkg-plist +++ /dev/null @@ -1,9 +0,0 @@ -bin/bison -share/bison.hairy -share/bison.simple -@unexec install-info --delete %D/info/bison.info %D/info/dir -info/bison.info -share/locale/de/LC_MESSAGES/bison.mo -share/locale/es/LC_MESSAGES/bison.mo -share/locale/fr/LC_MESSAGES/bison.mo -share/locale/nl/LC_MESSAGES/bison.mo diff --git a/devel/bison2/Makefile b/devel/bison2/Makefile deleted file mode 100644 index 8967357fe38c..000000000000 --- a/devel/bison2/Makefile +++ /dev/null @@ -1,28 +0,0 @@ -# New ports collection makefile for: bison -# Version required: 1.28 -# Date created: 27 Mar 1999 -# Whom: Jerry Hicks -# -# $FreeBSD$ -# - -DISTNAME= bison-1.28 -CATEGORIES= devel -MASTER_SITES= ${MASTER_SITE_GNU} -MASTER_SITE_SUBDIR= bison - -MAINTAINER= wghicks@bellsouth.net - -Y2K= http://www.gnu.org/software/year2000.html - -GNU_CONFIGURE= yes - -MAN1= bison.1 - -post-install: - @if [ ! -f ${PREFIX}/info/dir ]; then \ - ${SED} -ne '1,/Menu:/p' \/usr\/share\/info/dir > ${PREFIX}/info/dir; \ - fi - @install-info ${PREFIX}/info/bison.info ${PREFIX}/info/dir - -.include diff --git a/devel/bison2/distinfo b/devel/bison2/distinfo deleted file mode 100644 index bf42a21c5426..000000000000 --- a/devel/bison2/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (bison-1.28.tar.gz) = 4afb3989f2270043c47c3daa1fa7ffab diff --git a/devel/bison2/pkg-comment b/devel/bison2/pkg-comment deleted file mode 100644 index a0850f8a7b1f..000000000000 --- a/devel/bison2/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -A parser generator from FSF, (mostly) compatible with Yacc diff --git a/devel/bison2/pkg-descr b/devel/bison2/pkg-descr deleted file mode 100644 index c968b052baf7..000000000000 --- a/devel/bison2/pkg-descr +++ /dev/null @@ -1,22 +0,0 @@ -Bison is a tool used to write parsers, such as the parser for GNU cc. -It is similar to Yacc, which is included in the base FreeBSD system. - -The main difference between Bison and Yacc that I know of is that -Bison supports the @N construction, which gives you access to -the starting and ending line number and character number associated -with any of the symbols in the current rule. - -Also, Bison supports the command `%expect N' which says not to mention -the conflicts if there are N shift/reduce conflicts and no reduce/reduce -conflicts. - -The differences in the algorithms stem mainly from the horrible -kludges that Johnson had to perpetrate to make Yacc fit in a PDP-11. - -Also, Bison uses a faster but less space-efficient encoding for the -parse tables (see Corbett's PhD thesis from Berkeley, "Static -Semantics in Compiler Error Recovery", June 1985, Report No. UCB/CSD -85/251), and more modern technique for generating the lookahead sets. -(See "Efficient Construction of LALR(1) Lookahead Sets" by F. DeRemer -and A. Pennello, in ACM TOPLS Vol 4 No 4, October 1982. Their -technique is the standard one now.) diff --git a/devel/bison2/pkg-plist b/devel/bison2/pkg-plist deleted file mode 100644 index 7666d8f6dc2d..000000000000 --- a/devel/bison2/pkg-plist +++ /dev/null @@ -1,9 +0,0 @@ -bin/bison -share/bison.hairy -share/bison.simple -@unexec install-info --delete %D/info/bison.info %D/info/dir -info/bison.info -share/locale/de/LC_MESSAGES/bison.mo -share/locale/es/LC_MESSAGES/bison.mo -share/locale/fr/LC_MESSAGES/bison.mo -share/locale/nl/LC_MESSAGES/bison.mo diff --git a/devel/bison20/Makefile b/devel/bison20/Makefile deleted file mode 100644 index 8967357fe38c..000000000000 --- a/devel/bison20/Makefile +++ /dev/null @@ -1,28 +0,0 @@ -# New ports collection makefile for: bison -# Version required: 1.28 -# Date created: 27 Mar 1999 -# Whom: Jerry Hicks -# -# $FreeBSD$ -# - -DISTNAME= bison-1.28 -CATEGORIES= devel -MASTER_SITES= ${MASTER_SITE_GNU} -MASTER_SITE_SUBDIR= bison - -MAINTAINER= wghicks@bellsouth.net - -Y2K= http://www.gnu.org/software/year2000.html - -GNU_CONFIGURE= yes - -MAN1= bison.1 - -post-install: - @if [ ! -f ${PREFIX}/info/dir ]; then \ - ${SED} -ne '1,/Menu:/p' \/usr\/share\/info/dir > ${PREFIX}/info/dir; \ - fi - @install-info ${PREFIX}/info/bison.info ${PREFIX}/info/dir - -.include diff --git a/devel/bison20/distinfo b/devel/bison20/distinfo deleted file mode 100644 index bf42a21c5426..000000000000 --- a/devel/bison20/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (bison-1.28.tar.gz) = 4afb3989f2270043c47c3daa1fa7ffab diff --git a/devel/bison20/pkg-comment b/devel/bison20/pkg-comment deleted file mode 100644 index a0850f8a7b1f..000000000000 --- a/devel/bison20/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -A parser generator from FSF, (mostly) compatible with Yacc diff --git a/devel/bison20/pkg-descr b/devel/bison20/pkg-descr deleted file mode 100644 index c968b052baf7..000000000000 --- a/devel/bison20/pkg-descr +++ /dev/null @@ -1,22 +0,0 @@ -Bison is a tool used to write parsers, such as the parser for GNU cc. -It is similar to Yacc, which is included in the base FreeBSD system. - -The main difference between Bison and Yacc that I know of is that -Bison supports the @N construction, which gives you access to -the starting and ending line number and character number associated -with any of the symbols in the current rule. - -Also, Bison supports the command `%expect N' which says not to mention -the conflicts if there are N shift/reduce conflicts and no reduce/reduce -conflicts. - -The differences in the algorithms stem mainly from the horrible -kludges that Johnson had to perpetrate to make Yacc fit in a PDP-11. - -Also, Bison uses a faster but less space-efficient encoding for the -parse tables (see Corbett's PhD thesis from Berkeley, "Static -Semantics in Compiler Error Recovery", June 1985, Report No. UCB/CSD -85/251), and more modern technique for generating the lookahead sets. -(See "Efficient Construction of LALR(1) Lookahead Sets" by F. DeRemer -and A. Pennello, in ACM TOPLS Vol 4 No 4, October 1982. Their -technique is the standard one now.) diff --git a/devel/bison20/pkg-plist b/devel/bison20/pkg-plist deleted file mode 100644 index 7666d8f6dc2d..000000000000 --- a/devel/bison20/pkg-plist +++ /dev/null @@ -1,9 +0,0 @@ -bin/bison -share/bison.hairy -share/bison.simple -@unexec install-info --delete %D/info/bison.info %D/info/dir -info/bison.info -share/locale/de/LC_MESSAGES/bison.mo -share/locale/es/LC_MESSAGES/bison.mo -share/locale/fr/LC_MESSAGES/bison.mo -share/locale/nl/LC_MESSAGES/bison.mo -- cgit v1.2.3