From owner-freebsd-ports Sun Jul 4 5:30:10 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 56DFD14EB9 for ; Sun, 4 Jul 1999 05:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA06277; Sun, 4 Jul 1999 05:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from icc.surw.chel.su (surw.chel.su [195.54.2.162]) by hub.freebsd.org (Postfix) with ESMTP id EB90E14C87 for ; Sun, 4 Jul 1999 05:20:38 -0700 (PDT) (envelope-from andy@icc.surw.chel.su) Received: (from andy@localhost) by icc.surw.chel.su (8.9.2/8.8.8) id QAA65888; Sun, 4 Jul 1999 16:20:37 +0400 (MSD) (envelope-from andy) Message-Id: <199907041220.QAA65888@icc.surw.chel.su> Date: Sun, 4 Jul 1999 16:20:37 +0400 (MSD) From: Andrey Zakhvatov Reply-To: andy@icc.surw.chel.su To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/12505: Update port: devel/pccts Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 12505 >Category: ports >Synopsis: Update port: devel/pccts >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Jul 4 05:30:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Andrey Zakhvatov >Release: FreeBSD 3.1-RELEASE i386 >Organization: South Ural Railway ICC >Environment: >Description: This is a patch to update devel/pccts port. diff -Nru pccts/Makefile pccts-1.33.19/Makefile --- pccts/Makefile Tue Apr 20 14:26:47 1999 +++ pccts-1.33.19/Makefile Sun Jul 4 16:15:03 1999 @@ -1,25 +1,35 @@ # New ports collection makefile for: pccts -# Version required: 1.33 +# Version required: 1.33.19 # Date created: 22 June 1997 # Whom: Andrey Zakhvatov # # $Id: Makefile,v 1.3 1999/04/20 02:05:24 mharo Exp $ # -DISTNAME= pccts -PKGNAME= pccts-1.33 +DISTNAME= pccts133mr +PKGNAME= pccts-1.33.19 CATEGORIES= devel -MASTER_SITES= http://www.antlr.org/1.33/ +MASTER_SITES= http://www.polnode.com/ +EXTRACT_SUFX= .zip MAINTAINER= andy@icc.surw.chel.su -MAKEFILE= makefile +BUILD_DEPENDS= unzip:${PORTSDIR}/archivers/unzip + +WRKSRC= ${WRKDIR}/pccts ALL_TARGET= +MAKEFILE= makefile +EXTRACT_CMD= unzip +EXTRACT_AFTER_ARGS= +EXTRACT_BEFORE_ARGS= + MAN1= antlr.1 dlg.1 pccts.1 do-install: - @ ${INSTALL_PROGRAM} ${WRKSRC}/bin/antlr ${PREFIX}/bin/antlr - @ ${INSTALL_PROGRAM} ${WRKSRC}/bin/dlg ${PREFIX}/bin/dlg + @ ${INSTALL_PROGRAM} ${WRKSRC}/bin/antlr ${PREFIX}/bin + @ ${INSTALL_PROGRAM} ${WRKSRC}/bin/dlg ${PREFIX}/bin + @ ${INSTALL_PROGRAM} ${WRKSRC}/bin/genmk ${PREFIX}/bin + @ ${INSTALL_PROGRAM} ${WRKSRC}/bin/sor ${PREFIX}/bin .for file in pccts antlr/antlr dlg/dlg @ ${INSTALL_MAN} ${WRKSRC}/${file}.1 ${PREFIX}/man/man1 .endfor @@ -30,7 +40,7 @@ .for file in AParser ASTBase ATokPtr ATokenBuffer DLexer DLexerBase PCCTSAST SList @ ${INSTALL_DATA} ${WRKSRC}/h/${file}.cpp ${PREFIX}/include/pccts/${file}.cpp .endfor -.for file in AParser ASTBase ATokPtr AToken ATokenBuffer ATokenStream DLexerBase PBlackBox PCCTSAST SList antlr ast charbuf charptr config dlgauto dlgdef err int +.for file in AParser ASTBase ATokPtr AToken ATokenBuffer ATokenStream DLexerBase PBlackBox PCCTSAST SList antlr ast charbuf charptr config dlgauto dlgdef err int pcctscfg pccts_assert pccts_setjmp pccts_stdarg pccts_stdio pccts_stdlib pccts_string pccts_iostream pccts_istream @ ${INSTALL_DATA} ${WRKSRC}/h/${file}.h ${PREFIX}/include/pccts/${file}.h .endfor @ ${MKDIR} ${PREFIX}/share/examples/pccts @@ -40,9 +50,11 @@ .for file in makefile 1/makefile 1/test.g 2/MyLexer.cpp 2/MyLexer.h 2/makefile 2/test.g 3/MyLexer.cpp 3/MyLexer.h 3/makefile 3/mytokens.h 3/test.g 4/makefile 4/mytokens.h 4/test.g 5/input.h 5/makefile 5/test.g 6/file1 6/file2 6/main.cpp 6/makefile 6/makefile2 6/test.g 6/test2.g 7/makefile 7/test.g 8/main.cpp 8/makefile 8/test.g 9/makefile 9/test.g 10/makefile 10/test.g 11/input.h 11/makefile 11/test.g 12/makefile 12/test.g 13/makefile 13/test.g @ ${INSTALL_DATA} ${WRKSRC}/testcpp/${file} ${PREFIX}/share/examples/pccts/${file} .endfor + +post-install: .if !defined(NOPORTDOCS) @ ${MKDIR} ${PREFIX}/share/doc/pccts -.for file in BOOK README RIGHTS SERVICES history.ps history.txt +.for file in CHANGES_FROM_131.txt CHANGES_FROM_133.txt CHANGES_FROM_133_BEFORE_MR13.txt KNOWN_PROBLEMS.txt README RIGHTS SERVICES history.ps history.txt old_README @ ${INSTALL_DATA} ${WRKSRC}/${file} ${PREFIX}/share/doc/pccts/${file} .endfor .endif diff -Nru pccts/files/md5 pccts-1.33.19/files/md5 --- pccts/files/md5 Tue Apr 20 14:26:48 1999 +++ pccts-1.33.19/files/md5 Sun Jul 4 14:07:13 1999 @@ -1 +1 @@ -MD5 (pccts.tar.gz) = 1931d1c30805f5919cac2a400e66b474 +MD5 (pccts133mr.zip) = fc84eaf174097172a5cbeeb25185e9fc diff -Nru pccts/patches/patch-aa pccts-1.33.19/patches/patch-aa --- pccts/patches/patch-aa Tue Jul 1 11:48:25 1997 +++ pccts-1.33.19/patches/patch-aa Thu Jan 1 03:00:00 1970 @@ -1,21 +0,0 @@ -*** makefile Fri Oct 6 00:39:42 1995 ---- /home/andy/tmp/wrk/makefile Mon Jun 23 11:16:43 1997 -*************** -*** 49,56 **** - echo antlr executable now in $(BINDIR) - (cd dlg; make -s) - echo dlg executable now in $(BINDIR) -! (cd support/genmk; make -s; mv genmk ../../$(BINDIR)) -! echo genmk executable now in $(BINDIR) - echo - echo " PCCTS 1.33 installation complete (have a nice day)" - ---- 49,56 ---- - echo antlr executable now in $(BINDIR) - (cd dlg; make -s) - echo dlg executable now in $(BINDIR) -! # (cd support/genmk; make -s; mv genmk ../../$(BINDIR)) -! # echo genmk executable now in $(BINDIR) - echo - echo " PCCTS 1.33 installation complete (have a nice day)" - diff -Nru pccts/patches/patch-ab pccts-1.33.19/patches/patch-ab --- pccts/patches/patch-ab Tue Jul 1 11:48:25 1997 +++ pccts-1.33.19/patches/patch-ab Thu Jan 1 03:00:00 1970 @@ -1,19 +0,0 @@ -*** antlr/scan.c Fri Oct 6 00:40:15 1995 ---- /home/andy/tmp/wrk/antlr/scan.c Mon Jun 23 18:25:58 1997 -*************** -*** 140,146 **** - static void act10() - { - NLA = 82; -! warn("Missing <<; found dangling \>\>"); zzskip(); - } - - ---- 140,146 ---- - static void act10() - { - NLA = 82; -! warn("Missing <<; found dangling >>"); zzskip(); - } - - diff -Nru pccts/patches/patch-ac pccts-1.33.19/patches/patch-ac --- pccts/patches/patch-ac Tue Jul 1 11:48:25 1997 +++ pccts-1.33.19/patches/patch-ac Sun Jul 4 15:16:36 1999 @@ -1,19 +1,11 @@ -*** testcpp/makefile Tue Oct 3 23:48:53 1995 ---- /home/andy/tmp/wrk/testcpp/makefile Tue Jun 24 05:44:59 1997 -*************** -*** 5,11 **** - # - # For SGI machines, we recommend using "-woff 3262" in your CFLAGS - # -! #CCC = g++ - make: - -(cd 1; make CCC=$(CCC)) - -(cd 2; make CCC=$(CCC)) ---- 5,11 ---- - # - # For SGI machines, we recommend using "-woff 3262" in your CFLAGS - # -! CCC = g++ - make: - -(cd 1; make CCC=$(CCC)) - -(cd 2; make CCC=$(CCC)) +--- testcpp/makefile Mon Jun 29 21:00:42 1998 ++++ /home/andy/tmp/wrk/testcpp/makefile Sun Jul 4 15:15:19 1999 +@@ -6,7 +6,7 @@ + # For SGI machines, we recommend using "-woff 3262" in your CFLAGS + # + #CCC = g++ +-CCC = CC ++CCC = ${CXX} + make: + -(cd 1; make CCC=$(CCC)) + -(cd 2; make CCC=$(CCC)) diff -Nru pccts/patches/patch-ad pccts-1.33.19/patches/patch-ad --- pccts/patches/patch-ad Tue Jul 1 11:48:25 1997 +++ pccts-1.33.19/patches/patch-ad Sun Jul 4 15:34:56 1999 @@ -1,21 +1,13 @@ -*** testcpp/1/makefile Sat Sep 23 22:33:26 1995 ---- /home/andy/tmp/wrk/testcpp/1/makefile Tue Jun 24 05:49:51 1997 -*************** -*** 16,23 **** - ERR = err - HDR_FILE = - SCAN = DLGLexer -! PCCTS = ../.. -! ANTLR_H = $(PCCTS)/h - BIN = $(PCCTS)/bin - ANTLR = $(BIN)/antlr - DLG = $(BIN)/dlg ---- 16,23 ---- - ERR = err - HDR_FILE = - SCAN = DLGLexer -! PCCTS = /usr/local -! ANTLR_H = $(PCCTS)/include/pccts - BIN = $(PCCTS)/bin - ANTLR = $(BIN)/antlr - DLG = $(BIN)/dlg +--- testcpp/1/makefile Wed Mar 25 19:56:40 1998 ++++ /home/andy/tmp/wrk/testcpp/1/makefile Sun Jul 4 15:34:32 1999 +@@ -16,8 +16,8 @@ + ERR = err + HDR_FILE = + SCAN = DLGLexer +-PCCTS = ../.. +-ANTLR_H = $(PCCTS)/h ++PCCTS = /usr/local ++ANTLR_H = $(PCCTS)/include/pccts + BIN = $(PCCTS)/bin + ANTLR = $(BIN)/antlr + DLG = $(BIN)/dlg diff -Nru pccts/patches/patch-ae pccts-1.33.19/patches/patch-ae --- pccts/patches/patch-ae Tue Jul 1 11:48:25 1997 +++ pccts-1.33.19/patches/patch-ae Sun Jul 4 15:42:25 1999 @@ -1,21 +1,13 @@ -*** testcpp/2/makefile Sat Sep 23 22:53:10 1995 ---- /home/andy/tmp/wrk/testcpp/2/makefile Tue Jun 24 05:50:47 1997 -*************** -*** 16,23 **** - ERR = err - HDR_FILE = - SCAN = DLGLexer -! PCCTS = ../.. -! ANTLR_H = $(PCCTS)/h - BIN = $(PCCTS)/bin - ANTLR = $(BIN)/antlr - DLG = $(BIN)/dlg ---- 16,23 ---- - ERR = err - HDR_FILE = - SCAN = DLGLexer -! PCCTS = /usr/local -! ANTLR_H = $(PCCTS)/include/pccts - BIN = $(PCCTS)/bin - ANTLR = $(BIN)/antlr - DLG = $(BIN)/dlg +--- testcpp/2/makefile Wed Mar 25 20:09:12 1998 ++++ /home/andy/tmp/wrk/testcpp/2/makefile Sun Jul 4 15:38:56 1999 +@@ -16,8 +16,8 @@ + ERR = err + HDR_FILE = + SCAN = DLGLexer +-PCCTS = ../.. +-ANTLR_H = $(PCCTS)/h ++PCCTS = /usr/local ++ANTLR_H = $(PCCTS)/include/pccts + BIN = $(PCCTS)/bin + ANTLR = $(BIN)/antlr + DLG = $(BIN)/dlg diff -Nru pccts/patches/patch-af pccts-1.33.19/patches/patch-af --- pccts/patches/patch-af Tue Jul 1 11:48:26 1997 +++ pccts-1.33.19/patches/patch-af Sun Jul 4 15:42:32 1999 @@ -1,21 +1,13 @@ -*** testcpp/3/makefile Sat Sep 23 22:54:45 1995 ---- /home/andy/tmp/wrk/testcpp/3/makefile Tue Jun 24 05:51:21 1997 -*************** -*** 17,24 **** - ERR = err - HDR_FILE = - SCAN = DLGLexer -! PCCTS = ../.. -! ANTLR_H = $(PCCTS)/h - BIN = $(PCCTS)/bin - ANTLR = $(BIN)/antlr - DLG = $(BIN)/dlg ---- 17,24 ---- - ERR = err - HDR_FILE = - SCAN = DLGLexer -! PCCTS = /usr/local -! ANTLR_H = $(PCCTS)/include/pccts - BIN = $(PCCTS)/bin - ANTLR = $(BIN)/antlr - DLG = $(BIN)/dlg +--- testcpp/3/makefile Wed Mar 25 20:10:26 1998 ++++ /home/andy/tmp/wrk/testcpp/3/makefile Sun Jul 4 15:39:17 1999 +@@ -17,8 +17,8 @@ + ERR = err + HDR_FILE = + SCAN = DLGLexer +-PCCTS = ../.. +-ANTLR_H = $(PCCTS)/h ++PCCTS = /usr/local ++ANTLR_H = $(PCCTS)/include/pccts + BIN = $(PCCTS)/bin + ANTLR = $(BIN)/antlr + DLG = $(BIN)/dlg diff -Nru pccts/patches/patch-ag pccts-1.33.19/patches/patch-ag --- pccts/patches/patch-ag Tue Jul 1 11:48:26 1997 +++ pccts-1.33.19/patches/patch-ag Sun Jul 4 15:43:31 1999 @@ -1,21 +1,13 @@ -*** testcpp/4/makefile Tue Oct 3 18:52:25 1995 ---- /home/andy/tmp/wrk/testcpp/4/makefile Tue Jun 24 05:51:58 1997 -*************** -*** 17,24 **** - ERR = err - HDR_FILE = - SCAN = DLGLexer -! PCCTS = ../.. -! ANTLR_H = $(PCCTS)/h - BIN = $(PCCTS)/bin - ANTLR = $(BIN)/antlr - DLG = $(BIN)/dlg ---- 17,24 ---- - ERR = err - HDR_FILE = - SCAN = DLGLexer -! PCCTS = /usr/local -! ANTLR_H = $(PCCTS)/include/pccts - BIN = $(PCCTS)/bin - ANTLR = $(BIN)/antlr - DLG = $(BIN)/dlg +--- testcpp/4/makefile Wed Mar 25 20:15:48 1998 ++++ /home/andy/tmp/wrk/testcpp/4/makefile Sun Jul 4 15:39:35 1999 +@@ -17,8 +17,8 @@ + ERR = err + HDR_FILE = + SCAN = DLGLexer +-PCCTS = ../.. +-ANTLR_H = $(PCCTS)/h ++PCCTS = /usr/local ++ANTLR_H = $(PCCTS)/include/pccts + BIN = $(PCCTS)/bin + ANTLR = $(BIN)/antlr + DLG = $(BIN)/dlg diff -Nru pccts/patches/patch-ah pccts-1.33.19/patches/patch-ah --- pccts/patches/patch-ah Tue Jul 1 11:48:26 1997 +++ pccts-1.33.19/patches/patch-ah Sun Jul 4 15:50:21 1999 @@ -1,21 +1,13 @@ -*** testcpp/5/makefile Sat Sep 23 22:59:24 1995 ---- /home/andy/tmp/wrk/testcpp/5/makefile Tue Jun 24 05:52:25 1997 -*************** -*** 16,23 **** - ERR = err - HDR_FILE = - SCAN = Lexer -! PCCTS = ../.. -! ANTLR_H = $(PCCTS)/h - BIN = $(PCCTS)/bin - ANTLR = $(BIN)/antlr - DLG = $(BIN)/dlg ---- 16,23 ---- - ERR = err - HDR_FILE = - SCAN = Lexer -! PCCTS = /usr/local -! ANTLR_H = $(PCCTS)/include/pccts - BIN = $(PCCTS)/bin - ANTLR = $(BIN)/antlr - DLG = $(BIN)/dlg +--- testcpp/5/makefile Wed Mar 25 20:19:18 1998 ++++ /home/andy/tmp/wrk/testcpp/5/makefile Sun Jul 4 15:48:28 1999 +@@ -16,8 +16,8 @@ + ERR = err + HDR_FILE = + SCAN = Lexer +-PCCTS = ../.. +-ANTLR_H = $(PCCTS)/h ++PCCTS = /usr/local ++ANTLR_H = $(PCCTS)/include/pccts + BIN = $(PCCTS)/bin + ANTLR = $(BIN)/antlr + DLG = $(BIN)/dlg diff -Nru pccts/patches/patch-ai pccts-1.33.19/patches/patch-ai --- pccts/patches/patch-ai Tue Jul 1 11:48:26 1997 +++ pccts-1.33.19/patches/patch-ai Sun Jul 4 15:52:45 1999 @@ -1,21 +1,13 @@ -*** testcpp/6/makefile Tue Oct 3 23:31:24 1995 ---- /home/andy/tmp/wrk/testcpp/6/makefile Tue Jun 24 05:53:19 1997 -*************** -*** 14,21 **** - ERR = A/err - HDR_FILE = - SCAN = A/ALexer -! PCCTS = ../.. -! A_H = $(PCCTS)/h - BIN = $(PCCTS)/bin - A = $(BIN)/antlr - D = $(BIN)/dlg ---- 14,21 ---- - ERR = A/err - HDR_FILE = - SCAN = A/ALexer -! PCCTS = /usr/local -! A_H = $(PCCTS)/include/pccts - BIN = $(PCCTS)/bin - A = $(BIN)/antlr - D = $(BIN)/dlg +--- testcpp/6/makefile Wed Mar 25 20:55:56 1998 ++++ /home/andy/tmp/wrk/testcpp/6/makefile Sun Jul 4 15:50:39 1999 +@@ -14,8 +14,8 @@ + ERR = A/err + HDR_FILE = + SCAN = A/ALexer +-PCCTS = ../.. +-A_H = $(PCCTS)/h ++PCCTS = /usr/local ++A_H = $(PCCTS)/include/pccts + BIN = $(PCCTS)/bin + A = $(BIN)/antlr + D = $(BIN)/dlg diff -Nru pccts/patches/patch-aj pccts-1.33.19/patches/patch-aj --- pccts/patches/patch-aj Tue Jul 1 11:48:26 1997 +++ pccts-1.33.19/patches/patch-aj Sun Jul 4 16:04:10 1999 @@ -1,21 +1,13 @@ -*** testcpp/6/makefile2 Tue Oct 3 23:40:01 1995 ---- /home/andy/tmp/wrk/testcpp/6/makefile2 Tue Jun 24 12:53:56 1997 -*************** -*** 14,21 **** - ERR = B/err - HDR_FILE = - SCAN = B/BLexer -! PCCTS = ../.. -! A_H = $(PCCTS)/h - BIN = $(PCCTS)/bin - A = $(BIN)/antlr - D = $(BIN)/dlg ---- 14,21 ---- - ERR = B/err - HDR_FILE = - SCAN = B/BLexer -! PCCTS = /usr/local -! A_H = $(PCCTS)/include/pccts - BIN = $(PCCTS)/bin - A = $(BIN)/antlr - D = $(BIN)/dlg +--- testcpp/6/makefile2 Wed Oct 4 02:40:02 1995 ++++ /home/andy/tmp/wrk/testcpp/6/makefile2 Sun Jul 4 16:01:45 1999 +@@ -14,8 +14,8 @@ + ERR = B/err + HDR_FILE = + SCAN = B/BLexer +-PCCTS = ../.. +-A_H = $(PCCTS)/h ++PCCTS = /usr/local ++A_H = $(PCCTS)/include/pccts + BIN = $(PCCTS)/bin + A = $(BIN)/antlr + D = $(BIN)/dlg diff -Nru pccts/patches/patch-ak pccts-1.33.19/patches/patch-ak --- pccts/patches/patch-ak Tue Jul 1 11:48:26 1997 +++ pccts-1.33.19/patches/patch-ak Sun Jul 4 15:52:50 1999 @@ -1,21 +1,13 @@ -*** testcpp/7/makefile Sat Sep 23 23:11:34 1995 ---- /home/andy/tmp/wrk/testcpp/7/makefile Tue Jun 24 05:54:51 1997 -*************** -*** 16,23 **** - ERR = err - HDR_FILE = - SCAN = DLGLexer -! PCCTS = ../.. -! ANTLR_H = $(PCCTS)/h - BIN = $(PCCTS)/bin - ANTLR = $(BIN)/antlr - DLG = $(BIN)/dlg ---- 16,23 ---- - ERR = err - HDR_FILE = - SCAN = DLGLexer -! PCCTS = /usr/local -! ANTLR_H = $(PCCTS)/include/pccts - BIN = $(PCCTS)/bin - ANTLR = $(BIN)/antlr - DLG = $(BIN)/dlg +--- testcpp/7/makefile Wed Mar 25 20:22:24 1998 ++++ /home/andy/tmp/wrk/testcpp/7/makefile Sun Jul 4 15:50:57 1999 +@@ -16,8 +16,8 @@ + ERR = err + HDR_FILE = + SCAN = DLGLexer +-PCCTS = ../.. +-ANTLR_H = $(PCCTS)/h ++PCCTS = /usr/local ++ANTLR_H = $(PCCTS)/include/pccts + BIN = $(PCCTS)/bin + ANTLR = $(BIN)/antlr + DLG = $(BIN)/dlg diff -Nru pccts/patches/patch-al pccts-1.33.19/patches/patch-al --- pccts/patches/patch-al Tue Jul 1 11:48:26 1997 +++ pccts-1.33.19/patches/patch-al Sun Jul 4 15:52:54 1999 @@ -1,21 +1,13 @@ -*** testcpp/8/makefile Sat Sep 23 23:50:56 1995 ---- /home/andy/tmp/wrk/testcpp/8/makefile Tue Jun 24 05:55:23 1997 -*************** -*** 16,23 **** - ERR = err - HDR_FILE = - SCAN = DLGLexer -! PCCTS = ../.. -! ANTLR_H = $(PCCTS)/h - BIN = $(PCCTS)/bin - ANTLR = $(BIN)/antlr - DLG = $(BIN)/dlg ---- 16,23 ---- - ERR = err - HDR_FILE = - SCAN = DLGLexer -! PCCTS = /usr/local -! ANTLR_H = $(PCCTS)/include/pccts - BIN = $(PCCTS)/bin - ANTLR = $(BIN)/antlr - DLG = $(BIN)/dlg +--- testcpp/8/makefile Wed Mar 25 20:24:12 1998 ++++ /home/andy/tmp/wrk/testcpp/8/makefile Sun Jul 4 15:51:13 1999 +@@ -16,8 +16,8 @@ + ERR = err + HDR_FILE = + SCAN = DLGLexer +-PCCTS = ../.. +-ANTLR_H = $(PCCTS)/h ++PCCTS = /usr/local ++ANTLR_H = $(PCCTS)/include/pccts + BIN = $(PCCTS)/bin + ANTLR = $(BIN)/antlr + DLG = $(BIN)/dlg diff -Nru pccts/patches/patch-am pccts-1.33.19/patches/patch-am --- pccts/patches/patch-am Tue Jul 1 11:48:26 1997 +++ pccts-1.33.19/patches/patch-am Sun Jul 4 15:52:59 1999 @@ -1,21 +1,13 @@ -*** testcpp/9/makefile Sat Sep 23 23:52:19 1995 ---- /home/andy/tmp/wrk/testcpp/9/makefile Tue Jun 24 05:55:54 1997 -*************** -*** 16,23 **** - ERR = err - HDR_FILE = - SCAN = DLGLexer -! PCCTS = ../.. -! ANTLR_H = $(PCCTS)/h - BIN = $(PCCTS)/bin - ANTLR = $(BIN)/antlr - DLG = $(BIN)/dlg ---- 16,23 ---- - ERR = err - HDR_FILE = - SCAN = DLGLexer -! PCCTS = /usr/local -! ANTLR_H = $(PCCTS)/include/pccts - BIN = $(PCCTS)/bin - ANTLR = $(BIN)/antlr - DLG = $(BIN)/dlg +--- testcpp/9/makefile Wed Mar 25 20:25:46 1998 ++++ /home/andy/tmp/wrk/testcpp/9/makefile Sun Jul 4 15:51:27 1999 +@@ -16,8 +16,8 @@ + ERR = err + HDR_FILE = + SCAN = DLGLexer +-PCCTS = ../.. +-ANTLR_H = $(PCCTS)/h ++PCCTS = /usr/local ++ANTLR_H = $(PCCTS)/include/pccts + BIN = $(PCCTS)/bin + ANTLR = $(BIN)/antlr + DLG = $(BIN)/dlg diff -Nru pccts/patches/patch-an pccts-1.33.19/patches/patch-an --- pccts/patches/patch-an Tue Jul 1 11:48:26 1997 +++ pccts-1.33.19/patches/patch-an Sun Jul 4 15:53:05 1999 @@ -1,21 +1,13 @@ -*** testcpp/10/makefile Sun Sep 24 00:01:13 1995 ---- /home/andy/tmp/wrk/testcpp/10/makefile Tue Jun 24 05:56:24 1997 -*************** -*** 16,23 **** - ERR = err - HDR_FILE = - SCAN = DLGLexer -! PCCTS = ../.. -! ANTLR_H = $(PCCTS)/h - BIN = $(PCCTS)/bin - ANTLR = $(BIN)/antlr - DLG = $(BIN)/dlg ---- 16,23 ---- - ERR = err - HDR_FILE = - SCAN = DLGLexer -! PCCTS = /usr/local -! ANTLR_H = $(PCCTS)/include/pccts - BIN = $(PCCTS)/bin - ANTLR = $(BIN)/antlr - DLG = $(BIN)/dlg +--- testcpp/10/makefile Wed Mar 25 20:27:28 1998 ++++ /home/andy/tmp/wrk/testcpp/10/makefile Sun Jul 4 15:51:42 1999 +@@ -16,8 +16,8 @@ + ERR = err + HDR_FILE = + SCAN = DLGLexer +-PCCTS = ../.. +-ANTLR_H = $(PCCTS)/h ++PCCTS = /usr/local ++ANTLR_H = $(PCCTS)/include/pccts + BIN = $(PCCTS)/bin + ANTLR = $(BIN)/antlr + DLG = $(BIN)/dlg diff -Nru pccts/patches/patch-ao pccts-1.33.19/patches/patch-ao --- pccts/patches/patch-ao Tue Jul 1 11:48:26 1997 +++ pccts-1.33.19/patches/patch-ao Sun Jul 4 15:53:08 1999 @@ -1,21 +1,13 @@ -*** testcpp/11/makefile Sun Sep 24 00:02:11 1995 ---- /home/andy/tmp/wrk/testcpp/11/makefile Tue Jun 24 05:57:50 1997 -*************** -*** 16,23 **** - ERR = err - HDR_FILE = - SCAN = Lexer -! PCCTS = ../.. -! ANTLR_H = $(PCCTS)/h - BIN = $(PCCTS)/bin - ANTLR = $(BIN)/antlr - DLG = $(BIN)/dlg ---- 16,23 ---- - ERR = err - HDR_FILE = - SCAN = Lexer -! PCCTS = /usr/local -! ANTLR_H = $(PCCTS)/include/pccts - BIN = $(PCCTS)/bin - ANTLR = $(BIN)/antlr - DLG = $(BIN)/dlg +--- testcpp/11/makefile Wed Mar 25 20:28:50 1998 ++++ /home/andy/tmp/wrk/testcpp/11/makefile Sun Jul 4 15:51:57 1999 +@@ -16,8 +16,8 @@ + ERR = err + HDR_FILE = + SCAN = Lexer +-PCCTS = ../.. +-ANTLR_H = $(PCCTS)/h ++PCCTS = /usr/local ++ANTLR_H = $(PCCTS)/include/pccts + BIN = $(PCCTS)/bin + ANTLR = $(BIN)/antlr + DLG = $(BIN)/dlg diff -Nru pccts/patches/patch-ap pccts-1.33.19/patches/patch-ap --- pccts/patches/patch-ap Tue Jul 1 11:48:26 1997 +++ pccts-1.33.19/patches/patch-ap Sun Jul 4 15:53:19 1999 @@ -1,21 +1,13 @@ -*** testcpp/12/makefile Sun Sep 24 00:05:31 1995 ---- /home/andy/tmp/wrk/testcpp/12/makefile Tue Jun 24 05:58:27 1997 -*************** -*** 16,23 **** - ERR = err - HDR_FILE = - SCAN = DLGLexer -! PCCTS = ../.. -! ANTLR_H = $(PCCTS)/h - BIN = $(PCCTS)/bin - ANTLR = $(BIN)/antlr - DLG = $(BIN)/dlg ---- 16,23 ---- - ERR = err - HDR_FILE = - SCAN = DLGLexer -! PCCTS = /usr/local -! ANTLR_H = $(PCCTS)/include/pccts - BIN = $(PCCTS)/bin - ANTLR = $(BIN)/antlr - DLG = $(BIN)/dlg +--- testcpp/12/makefile Wed Mar 25 20:30:32 1998 ++++ /home/andy/tmp/wrk/testcpp/12/makefile Sun Jul 4 15:52:14 1999 +@@ -16,8 +16,8 @@ + ERR = err + HDR_FILE = + SCAN = DLGLexer +-PCCTS = ../.. +-ANTLR_H = $(PCCTS)/h ++PCCTS = /usr/local ++ANTLR_H = $(PCCTS)/include/pccts + BIN = $(PCCTS)/bin + ANTLR = $(BIN)/antlr + DLG = $(BIN)/dlg diff -Nru pccts/patches/patch-aq pccts-1.33.19/patches/patch-aq --- pccts/patches/patch-aq Tue Jul 1 11:48:26 1997 +++ pccts-1.33.19/patches/patch-aq Sun Jul 4 15:53:25 1999 @@ -1,21 +1,13 @@ -*** testcpp/13/makefile Sun Sep 24 00:08:42 1995 ---- /home/andy/tmp/wrk/testcpp/13/makefile Tue Jun 24 05:58:53 1997 -*************** -*** 16,23 **** - ERR = err - HDR_FILE = - SCAN = DLGLexer -! PCCTS = ../.. -! ANTLR_H = $(PCCTS)/h - BIN = $(PCCTS)/bin - ANTLR = $(BIN)/antlr - DLG = $(BIN)/dlg ---- 16,23 ---- - ERR = err - HDR_FILE = - SCAN = DLGLexer -! PCCTS = /usr/local -! ANTLR_H = $(PCCTS)/include/pccts - BIN = $(PCCTS)/bin - ANTLR = $(BIN)/antlr - DLG = $(BIN)/dlg +--- testcpp/13/makefile Wed Mar 25 20:31:50 1998 ++++ /home/andy/tmp/wrk/testcpp/13/makefile Sun Jul 4 15:52:31 1999 +@@ -16,8 +16,8 @@ + ERR = err + HDR_FILE = + SCAN = DLGLexer +-PCCTS = ../.. +-ANTLR_H = $(PCCTS)/h ++PCCTS = /usr/local ++ANTLR_H = $(PCCTS)/include/pccts + BIN = $(PCCTS)/bin + ANTLR = $(BIN)/antlr + DLG = $(BIN)/dlg diff -Nru pccts/pkg/DESCR pccts-1.33.19/pkg/DESCR --- pccts/pkg/DESCR Mon May 3 02:34:38 1999 +++ pccts-1.33.19/pkg/DESCR Sun Jul 4 14:19:49 1999 @@ -12,4 +12,4 @@ make it easier to use for a wider range of translation problems. -WWW: http://www.ANTLR.org/ +WWW: http://www.polnode.com/ diff -Nru pccts/pkg/PLIST pccts-1.33.19/pkg/PLIST --- pccts/pkg/PLIST Tue Apr 20 14:26:48 1999 +++ pccts-1.33.19/pkg/PLIST Sun Jul 4 16:03:51 1999 @@ -1,40 +1,55 @@ bin/antlr bin/dlg -include/pccts/charptr.c -include/pccts/ast.c -include/pccts/SList.cpp -include/pccts/PCCTSAST.cpp -include/pccts/DLexerBase.cpp -include/pccts/DLexer.cpp -include/pccts/ATokenBuffer.cpp -include/pccts/ATokPtr.cpp -include/pccts/ASTBase.cpp +bin/genmk +bin/sor include/pccts/AParser.cpp -include/pccts/int.h -include/pccts/err.h +include/pccts/AParser.h +include/pccts/ASTBase.cpp +include/pccts/ASTBase.h +include/pccts/ATokPtr.h +include/pccts/ATokPtr.cpp +include/pccts/ATokenBuffer.cpp +include/pccts/AToken.h +include/pccts/ATokenBuffer.h +include/pccts/ATokenStream.h +include/pccts/DLexer.cpp +include/pccts/DLexerBase.cpp +include/pccts/DLexerBase.h +include/pccts/PBlackBox.h +include/pccts/PCCTSAST.cpp +include/pccts/PCCTSAST.h +include/pccts/SList.cpp +include/pccts/SList.h +include/pccts/antlr.h +include/pccts/ast.c +include/pccts/ast.h +include/pccts/charbuf.h +include/pccts/charptr.c +include/pccts/charptr.h +include/pccts/config.h include/pccts/dlgdef.h include/pccts/dlgauto.h -include/pccts/config.h -include/pccts/charptr.h -include/pccts/charbuf.h -include/pccts/ast.h -include/pccts/antlr.h -include/pccts/SList.h -include/pccts/PCCTSAST.h -include/pccts/PBlackBox.h -include/pccts/DLexerBase.h -include/pccts/ATokenStream.h -include/pccts/ATokenBuffer.h -include/pccts/AToken.h -include/pccts/ATokPtr.h -include/pccts/ASTBase.h -include/pccts/AParser.h +include/pccts/err.h +include/pccts/int.h +include/pccts/pccts_assert.h +include/pccts/pccts_iostream.h +include/pccts/pccts_istream.h +include/pccts/pccts_setjmp.h +include/pccts/pccts_stdarg.h +include/pccts/pccts_stdio.h +include/pccts/pccts_stdlib.h +include/pccts/pccts_string.h +include/pccts/pcctscfg.h +share/doc/pccts/CHANGES_FROM_131.txt +share/doc/pccts/CHANGES_FROM_133.txt +share/doc/pccts/CHANGES_FROM_133_BEFORE_MR13.txt +share/doc/pccts/KNOWN_PROBLEMS.txt +share/doc/pccts/README +share/doc/pccts/RIGHTS +share/doc/pccts/SERVICES share/doc/pccts/history.txt share/doc/pccts/history.ps -share/doc/pccts/SERVICES -share/doc/pccts/RIGHTS -share/doc/pccts/README -share/doc/pccts/BOOK +share/doc/pccts/old_README share/examples/pccts/makefile share/examples/pccts/1/makefile share/examples/pccts/1/test.g >How-To-Repeat: >Fix: Please, check and apply this patch. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message