View | Details | Raw Unified | Return to bug 12392
Collapse All | Expand All

(-)rc.new/Makefile (-4 / +5 lines)
Lines 6-19 Link Here
6
# $Id: Makefile,v 1.7 1999/03/15 04:34:14 steve Exp $
6
# $Id: Makefile,v 1.7 1999/03/15 04:34:14 steve Exp $
7
#
7
#
8
8
9
DISTNAME=	rc-1.5b2
9
DISTNAME=	rc-1.6
10
CATEGORIES=	shells plan9
10
CATEGORIES=	shells plan9
11
MASTER_SITES=   ftp://ftp.sys.toronto.edu/pub/rc/
11
MASTER_SITES=   http://www.star.le.ac.uk/~tjg/rc/release/ \
12
		ftp://ftp.sys.utoronto.ca/pub/rc/
12
13
13
MAINTAINER=	erich@FreeBSD.org
14
MAINTAINER=	saken@hotel.rmta.org
14
15
15
GNU_CONFIGURE=	yes
16
GNU_CONFIGURE=	yes
16
CONFIGURE_ARGS= --enable-history
17
CONFIGURE_ARGS=  --with-history
17
MAN1=		history.1 rc.1
18
MAN1=		history.1 rc.1
18
19
19
.include <bsd.port.mk>
20
.include <bsd.port.mk>
(-)rc.new/files/md5 (-1 / +1 lines)
Line 1 Link Here
1
MD5 (rc-1.5b2.tar.gz) = 4acc56de6a5595e4fd3f26c84856e699
1
MD5 (rc-1.6.tar.gz) = 3b56f0e47e8496ea0363ebc202bcac23
(-)rc.new/patches/patch-aa (-20 / +11 lines)
Lines 1-20 Link Here
1
--- Makefile.in.orig	Mon Jul  7 10:43:52 1997
1
--- Makefile.in.orig	Fri Jun 25 10:04:52 1999
2
+++ Makefile.in	Sun Mar  7 23:01:22 1999
2
+++ Makefile.in	Fri Jun 25 10:05:07 1999
3
@@ -15,7 +15,7 @@
3
@@ -109,7 +109,7 @@
4
 INSTALL=@INSTALL@
4
 glom.o hash.o heredoc.o input.o lex.o list.o main.o match.o nalloc.o \
5
 INSTALL_DATA=@INSTALL_DATA@
5
 open.o parse.o print.o redir.o signal.o status.o tree.o utils.o var.o \
6
 INSTALL_PROGRAM=@INSTALL_PROGRAM@
6
 wait.o walk.o which.o
7
-LN=@LN@
7
-rc_LDFLAGS = 
8
+LN=@LN@ -f
8
+rc_LDFLAGS = -static
9
 YACC=@YACC@
9
 mksignal_SOURCES = mksignal.c
10
 
10
 mksignal_OBJECTS =  mksignal.o
11
 HISTORY=@HISTORY@
11
 mksignal_LDADD = $(LDADD)
12
@@ -28,7 +28,7 @@
13
 all: rc $(HISTORY)
14
 
15
 rc: $(OBJS)
16
-	$(CC) -o $@ $(OBJS) $(LDFLAGS) $(LIBS)
17
+	$(CC) -static -o $@ $(OBJS) $(LDFLAGS) $(LIBS)
18
 
19
 sigmsgs.c: mksignal
20
 	sh mksignal @SIGNAL_H@
(-)rc.new/pkg/DESCR (-18 / +8 lines)
Lines 1-22 Link Here
1
Excerpts from the README:
1
This is a reimplementation for Unix, by Byron Rakitzis, of the Plan
2
9 shell. rc offers much the same capabilities as a traditional
3
Bourne shell, but with a much cleaner syntax.
2
4
3
  This is release 1.5 of rc.
5
This is a full release, rc-1.6.
4
6
5
  A unix version of the Plan-9 Shell.
7
See the end of the man page, under "INCOMPATABILITIES" for (known?)
8
differences from the "real" rc.
6
9
7
  FEEPING CREATURISM
10
WWW: http://www.star.le.ac.uk/~tjg/rc/
8
11
9
  See the end of the man page, under "INCOMPATABILITIES" for (known?)
12
Scott Kenney <saken@hotel.rmta.org>
10
  differences from the "real" rc. Most of these changes were necessary
11
  to get rc to work in a reasonable fashion on a real (i.e., commercial,
12
  non-Labs) UNIX system; a few were changes motivated by concern
13
  about some inadequacies in the original design.
14
15
  CREDITS
16
17
  This shell was written by Byron Rakitzis, but kudos go to Paul
18
  Haahr for letting me know what a shell should do and for contributing
19
  certain bits and pieces to rc (notably the limits code, print.c,
20
  most of which.c and the backquote redirection code).
21
22
eric.

Return to bug 12392