summaryrefslogtreecommitdiff
path: root/devel/pccts
diff options
context:
space:
mode:
authorjlam <jlam>2003-07-16 09:33:46 +0000
committerjlam <jlam>2003-07-16 09:33:46 +0000
commite664449b954368894a4fd85edc962c90bc7b4903 (patch)
tree491111004206c0c3cb92ae9f1dd439e854e373be /devel/pccts
parentf6cad14a16265838094c96c2784856bdf35df1a9 (diff)
downloadpkgsrc-e664449b954368894a4fd85edc962c90bc7b4903.tar.gz
Initial work in merging bits of the pkgviews branch into modern pkgsrc.
Currently, the pkgviews/buildlink2 integration is incomplete. People who work on this branch should also check out src/usr.sbin/pkg_install from the pkgviews branch.
Diffstat (limited to 'devel/pccts')
-rw-r--r--devel/pccts/DESCR3
-rw-r--r--devel/pccts/Makefile37
-rw-r--r--devel/pccts/PLIST55
-rw-r--r--devel/pccts/buildlink2.mk24
-rw-r--r--devel/pccts/distinfo8
-rw-r--r--devel/pccts/patches/patch-aa15
-rw-r--r--devel/pccts/patches/patch-ab15
-rw-r--r--devel/pccts/patches/patch-ac21
-rw-r--r--devel/pccts/patches/patch-ad15
9 files changed, 0 insertions, 193 deletions
diff --git a/devel/pccts/DESCR b/devel/pccts/DESCR
deleted file mode 100644
index 04aee08c586..00000000000
--- a/devel/pccts/DESCR
+++ /dev/null
@@ -1,3 +0,0 @@
-PCCTS is the Purdue Compiler-Compiler Tool Set.
-Recursive descent parser generator supporting LL(k>=1) grammars and arbitrary
-lookahead with backtracking.
diff --git a/devel/pccts/Makefile b/devel/pccts/Makefile
deleted file mode 100644
index f85f1c09531..00000000000
--- a/devel/pccts/Makefile
+++ /dev/null
@@ -1,37 +0,0 @@
-# $NetBSD: Makefile,v 1.10 2003/03/29 12:40:37 jmmv Exp $
-#
-
-DISTNAME= pccts133mr22
-PKGNAME= pccts-1.33.22
-WRKSRC= ${WRKDIR}/pccts
-CATEGORIES= devel
-MASTER_SITES= http://www.polhode.com/
-EXTRACT_SUFX= .zip
-
-MAINTAINER= david@maxwell.net
-HOMEPAGE= http://www.polhode.com/pccts.html
-COMMENT= Purdue Compiler Construction Tool Set
-
-DIST_SUBDIR= ${PKGNAME}
-
-MAKEFILE= makefile
-ALL_TARGET=
-
-do-install:
- ${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
- ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/pccts
- ${INSTALL_MAN} ${WRKSRC}/CHANGES_FROM_131.txt \
- ${WRKSRC}/CHANGES_FROM_133.txt \
- ${WRKSRC}/CHANGES_FROM_133_BEFORE_MR13.txt \
- ${WRKSRC}/KNOWN_PROBLEMS.txt \
- ${WRKSRC}/RIGHTS ${WRKSRC}/history.txt \
- ${PREFIX}/share/doc/pccts/
- ${INSTALL_DATA_DIR} ${PREFIX}/include/pccts
- ${INSTALL_MAN} ${WRKSRC}/h/*.h ${PREFIX}/include/pccts/
- ${INSTALL_MAN} ${WRKSRC}/h/*.c ${PREFIX}/include/pccts/
- ${INSTALL_MAN} ${WRKSRC}/h/*.cpp ${PREFIX}/include/pccts/
-
-.include "../../mk/bsd.pkg.mk"
diff --git a/devel/pccts/PLIST b/devel/pccts/PLIST
deleted file mode 100644
index 5e0defb9d74..00000000000
--- a/devel/pccts/PLIST
+++ /dev/null
@@ -1,55 +0,0 @@
-@comment $NetBSD: PLIST,v 1.1 2001/11/01 01:25:47 zuntum Exp $
-bin/antlr
-bin/dlg
-bin/genmk
-bin/sor
-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/RIGHTS
-share/doc/pccts/history.txt
-include/pccts/AParser.h
-include/pccts/ASTBase.h
-include/pccts/ATokPtr.h
-include/pccts/AToken.h
-include/pccts/ATokenBuffer.h
-include/pccts/ATokenStream.h
-include/pccts/AToken_traditional.h
-include/pccts/BufFileInput.h
-include/pccts/DLG_stream_input.h
-include/pccts/DLexerBase.h
-include/pccts/PBlackBox.h
-include/pccts/PCCTSAST.h
-include/pccts/SList.h
-include/pccts/antlr.h
-include/pccts/ast.h
-include/pccts/charbuf.h
-include/pccts/charptr.h
-include/pccts/config.h
-include/pccts/dlgauto.h
-include/pccts/dlgdef.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
-include/pccts/AParser.cpp
-include/pccts/ASTBase.cpp
-include/pccts/ATokPtr.cpp
-include/pccts/ATokenBuffer.cpp
-include/pccts/BufFileInput.cpp
-include/pccts/DLexer.cpp
-include/pccts/DLexerBase.cpp
-include/pccts/PCCTSAST.cpp
-include/pccts/ast.c
-include/pccts/charptr.c
-include/pccts/slist.cpp
-@dirrm share/doc/pccts
-@dirrm include/pccts
diff --git a/devel/pccts/buildlink2.mk b/devel/pccts/buildlink2.mk
deleted file mode 100644
index 91152720e6a..00000000000
--- a/devel/pccts/buildlink2.mk
+++ /dev/null
@@ -1,24 +0,0 @@
-# $NetBSD: buildlink2.mk,v 1.2 2002/10/31 15:49:26 wiz Exp $
-#
-# This Makefile fragment is included by packages that use pccts.
-#
-# This file was created automatically using createbuildlink 2.0.
-#
-
-.if !defined(PCCTS_BUILDLINK2_MK)
-PCCTS_BUILDLINK2_MK= # defined
-
-BUILDLINK_PACKAGES+= pccts
-BUILDLINK_DEPENDS.pccts?= pccts>=1.33.22
-BUILDLINK_PKGSRCDIR.pccts?= ../../devel/pccts
-BUILDLINK_DEPMETHOD.pccts?= build
-
-EVAL_PREFIX+= BUILDLINK_PREFIX.pccts=pccts
-BUILDLINK_PREFIX.pccts_DEFAULT= ${LOCALBASE}
-BUILDLINK_FILES.pccts+= include/pccts/*
-
-BUILDLINK_TARGETS+= pccts-buildlink
-
-pccts-buildlink: _BUILDLINK_USE
-
-.endif # PCCTS_BUILDLINK2_MK
diff --git a/devel/pccts/distinfo b/devel/pccts/distinfo
deleted file mode 100644
index 9b3942f6bbf..00000000000
--- a/devel/pccts/distinfo
+++ /dev/null
@@ -1,8 +0,0 @@
-$NetBSD: distinfo,v 1.3 2001/04/21 00:44:41 wiz Exp $
-
-SHA1 (pccts-1.33.22/pccts133mr22.zip) = ccdfaf8f69ddc59ad6d7e3f05922c693db0cf987
-Size (pccts-1.33.22/pccts133mr22.zip) = 717522 bytes
-SHA1 (patch-aa) = f44db7a7fb0c8a81e8b5445b2ec7d6160c9a2fdc
-SHA1 (patch-ab) = b9ebaf849cb738bd975cdee733afa3a3c0d8e0c9
-SHA1 (patch-ac) = b249a362461e460be6be7195d96ea7705485105f
-SHA1 (patch-ad) = 0af7bb8491402f8fb2e96fb0e5aa6cc117ffae0c
diff --git a/devel/pccts/patches/patch-aa b/devel/pccts/patches/patch-aa
deleted file mode 100644
index ebcd737edd0..00000000000
--- a/devel/pccts/patches/patch-aa
+++ /dev/null
@@ -1,15 +0,0 @@
-$NetBSD: patch-aa,v 1.1 2000/03/20 16:55:37 agc Exp $
-
-Use gcc instead of cc, mainly for Solaris.
-
---- antlr/makefile 2000/03/20 16:33:12 1.1
-+++ antlr/makefile 2000/03/20 16:33:29
-@@ -164,7 +164,7 @@
- #
- # UNIX (default)
- #
--CC=cc
-+CC=gcc
- ANTLR=../bin/antlr
- DLG=../bin/dlg
- OBJ_EXT=o
diff --git a/devel/pccts/patches/patch-ab b/devel/pccts/patches/patch-ab
deleted file mode 100644
index 583920b449a..00000000000
--- a/devel/pccts/patches/patch-ab
+++ /dev/null
@@ -1,15 +0,0 @@
-$NetBSD: patch-ab,v 1.2 2000/04/04 02:17:11 itohy Exp $
-
-Use gcc in place of cc.
-
---- dlg/makefile 2000/03/20 16:10:48 1.1
-+++ dlg/makefile 2000/04/04 10:38:49
-@@ -114,7 +114,7 @@
- #
- # UNIX
- #
--CC=cc
-+CC=gcc
- ANTLR=../bin/antlr
- DLG=../bin/dlg
- CFLAGS= -O -I. -I$(SET) -I$(PCCTS_H) -DUSER_ZZSYN -DZZLEXBUFSIZE=32000
diff --git a/devel/pccts/patches/patch-ac b/devel/pccts/patches/patch-ac
deleted file mode 100644
index 4c65d7025f1..00000000000
--- a/devel/pccts/patches/patch-ac
+++ /dev/null
@@ -1,21 +0,0 @@
-$NetBSD: patch-ac,v 1.1 2000/03/20 16:55:37 agc Exp $
-
-Use gcc in place of cc, mainly for Solaris.
-
---- sorcerer/makefile 2000/03/20 16:13:28 1.1
-+++ sorcerer/makefile 2000/03/20 16:13:41
-@@ -16,12 +16,12 @@
- SRC = sor.c scan.c err.c main.c globals.c gen.c $(SET)/set.c hash.c look.c cpp.c
- OBJ = sor.o scan.o err.o main.o globals.o gen.o set.o hash.o look.o cpp.o
- GENHFILES = tokens.h mode.h stdpccts.h
--CC=cc
-+CC=gcc
- SHELL=/bin/sh
-
- all:
- $(MAKE) sor
-- (cd lib; $(MAKE))
-+ (cd lib; $(MAKE) "CC=${CC}")
-
- sor: $(OBJ) $(SRC)
- $(CC) -o sor $(CFLAGS) $(OBJ)
diff --git a/devel/pccts/patches/patch-ad b/devel/pccts/patches/patch-ad
deleted file mode 100644
index 7f95a5e374e..00000000000
--- a/devel/pccts/patches/patch-ad
+++ /dev/null
@@ -1,15 +0,0 @@
-$NetBSD: patch-ad,v 1.1 2000/03/20 16:55:37 agc Exp $
-
-Use gcc in place of cc, mainly for Solaris.
-
---- support/genmk/makefile 2000/03/20 16:36:13 1.1
-+++ support/genmk/makefile 2000/03/20 16:36:24
-@@ -9,7 +9,7 @@
- # see pccts/h/pcctscfg.h
- #CFLAGS=-I../../h -DPC
- CFLAGS=-I../../h
--CC=cc
-+CC=gcc
- BAG=../../bin/bag
-
- genmk: $(OBJ) $(SRC) ../../h/pcctscfg.h