summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoragc <agc@pkgsrc.org>2000-05-12 09:39:07 +0000
committeragc <agc@pkgsrc.org>2000-05-12 09:39:07 +0000
commite36243ab2b266b88693f4f3396140f5a89aca67d (patch)
tree04d0c255298ba310e08922617364b67655e7f405
parent40dedc05d4dce93d1e85b4c4fa0dec698bbe0eea (diff)
downloadpkgsrc-e36243ab2b266b88693f4f3396140f5a89aca67d.tar.gz
Move rc package from plan9 to shells, by repository copy.
-rw-r--r--plan9/rc/Makefile15
-rw-r--r--plan9/rc/files/md53
-rw-r--r--plan9/rc/files/patch-sum3
-rw-r--r--plan9/rc/patches/patch-aa36
-rw-r--r--plan9/rc/pkg/COMMENT1
-rw-r--r--plan9/rc/pkg/DESCR20
-rw-r--r--plan9/rc/pkg/PLIST8
7 files changed, 0 insertions, 86 deletions
diff --git a/plan9/rc/Makefile b/plan9/rc/Makefile
deleted file mode 100644
index 2ff4fe81b6d..00000000000
--- a/plan9/rc/Makefile
+++ /dev/null
@@ -1,15 +0,0 @@
-# $NetBSD: Makefile,v 1.9 1999/06/03 10:29:48 agc Exp $
-# FreeBSD Id: Makefile,v 1.3 1996/11/12 02:19:38 obrien Exp
-#
-
-DISTNAME= rc-1.6
-CATEGORIES= plan9
-MASTER_SITES= http://www.star.le.ac.uk/%7Etjg/rc/release/
-
-MAINTAINER= packages@netbsd.org
-HOMEPAGE= http://www.star.le.ac.uk/%7Etjg/rc/
-
-GNU_CONFIGURE= yes
-CONFIGURE_ARGS= --with-history
-
-.include "../../mk/bsd.pkg.mk"
diff --git a/plan9/rc/files/md5 b/plan9/rc/files/md5
deleted file mode 100644
index d1138a87946..00000000000
--- a/plan9/rc/files/md5
+++ /dev/null
@@ -1,3 +0,0 @@
-$NetBSD: md5,v 1.3 1999/06/03 10:29:49 agc Exp $
-
-MD5 (rc-1.6.tar.gz) = 3b56f0e47e8496ea0363ebc202bcac23
diff --git a/plan9/rc/files/patch-sum b/plan9/rc/files/patch-sum
deleted file mode 100644
index 68cace7d7e4..00000000000
--- a/plan9/rc/files/patch-sum
+++ /dev/null
@@ -1,3 +0,0 @@
-$NetBSD: patch-sum,v 1.3 1999/08/03 15:05:45 agc Exp $
-
-MD5 (patch-aa) = 7fbc695d04e12351bb9c36ecf78ac8ee
diff --git a/plan9/rc/patches/patch-aa b/plan9/rc/patches/patch-aa
deleted file mode 100644
index 89cfbd1663f..00000000000
--- a/plan9/rc/patches/patch-aa
+++ /dev/null
@@ -1,36 +0,0 @@
-$NetBSD: patch-aa,v 1.9 1999/08/03 15:00:58 agc Exp $
-
-Use the strerror(3) function - it's much better at this than we are,
-and hides the internals of the error list.
-
---- utils.c.orig Thu Oct 29 08:26:08 1998
-+++ utils.c Sun Jun 20 16:35:35 1999
-@@ -2,6 +2,7 @@
-
- #include <errno.h>
- #include <setjmp.h>
-+#include <string.h>
- #include "rc.h"
- #include "jbwrap.h"
-
-@@ -19,6 +20,7 @@
- /* our perror */
-
- extern void uerror(char *s) {
-+#if 0
- extern int sys_nerr;
- extern char *sys_errlist[];
- if (errno > sys_nerr)
-@@ -27,6 +29,12 @@
- fprint(2, "%s: %s\n", s, sys_errlist[errno]);
- else
- fprint(2, "%s\n", sys_errlist[errno]);
-+#else
-+ if (s != (char *) NULL) {
-+ fprint(2, "%s: ", s);
-+ }
-+ fprint(2, "%s\n", strerror(errno));
-+#endif
- }
-
- /* Die horribly. This should never get called. Please let me know if it does. */
diff --git a/plan9/rc/pkg/COMMENT b/plan9/rc/pkg/COMMENT
deleted file mode 100644
index 9732b1160ea..00000000000
--- a/plan9/rc/pkg/COMMENT
+++ /dev/null
@@ -1 +0,0 @@
-Unix incarnation of the plan9 shell
diff --git a/plan9/rc/pkg/DESCR b/plan9/rc/pkg/DESCR
deleted file mode 100644
index 9c0367aebe8..00000000000
--- a/plan9/rc/pkg/DESCR
+++ /dev/null
@@ -1,20 +0,0 @@
-Excerpts from the README:
-
- This is release 1.6 of rc.
-
- A unix version of the Plan-9 Shell.
-
- FEEPING CREATURISM
-
- See the end of the man page, under "INCOMPATABILITIES" for (known?)
- differences from the "real" rc. Most of these changes were necessary
- to get rc to work in a reasonable fashion on a real (i.e., commercial,
- non-Labs) UNIX system; a few were changes motivated by concern
- about some inadequacies in the original design.
-
- CREDITS
-
- This shell was written by Byron Rakitzis, but kudos go to Paul
- Haahr for letting me know what a shell should do and for contributing
- certain bits and pieces to rc (notably the limits code, print.c,
- most of which.c and the backquote redirection code).
diff --git a/plan9/rc/pkg/PLIST b/plan9/rc/pkg/PLIST
deleted file mode 100644
index 78c22ecc07d..00000000000
--- a/plan9/rc/pkg/PLIST
+++ /dev/null
@@ -1,8 +0,0 @@
-@comment $NetBSD: PLIST,v 1.3 1999/06/03 10:29:52 agc Exp $
-bin/rc
-bin/-
-bin/--
-bin/-p
-bin/--p
-man/man1/history.1.gz
-man/man1/rc.1.gz