diff options
author | Martin Cracauer <cracauer@FreeBSD.org> | 1998-06-08 13:59:35 +0000 |
---|---|---|
committer | Martin Cracauer <cracauer@FreeBSD.org> | 1998-06-08 13:59:35 +0000 |
commit | aa2af247b4b8367afa18d5f45f40e0cd031c7d73 (patch) | |
tree | 703ce34a1f0ca4a11a3846407fd0de6e474aeaaa /shells/es | |
parent | 116a2abbae7c8218a7c5ca4f56261af1c9bb8eb0 (diff) |
Notes
Diffstat (limited to 'shells/es')
-rw-r--r-- | shells/es/Makefile | 11 | ||||
-rw-r--r-- | shells/es/distinfo | 2 | ||||
-rw-r--r-- | shells/es/files/patch-aa | 121 | ||||
-rw-r--r-- | shells/es/pkg-plist | 1 |
4 files changed, 42 insertions, 93 deletions
diff --git a/shells/es/Makefile b/shells/es/Makefile index 9ba10337aadb..32e1cdebd1f0 100644 --- a/shells/es/Makefile +++ b/shells/es/Makefile @@ -3,14 +3,19 @@ # Date created: Sun Aug 13 12:36:14 CDT 1995 # Whom: erich@rrnet.com # -# $Id: Makefile,v 1.3 1996/07/30 04:17:03 asami Exp $ +# $Id: Makefile,v 1.4 1996/11/18 11:39:46 asami Exp $ # -DISTNAME= es-0.9-alpha1 -PKGNAME= es-0.9a1 +DISTNAME= es-0.9-beta1 +PKGNAME= es-0.9b1 CATEGORIES= shells MASTER_SITES= ftp://ftp.sys.toronto.edu/pub/es/ MAINTAINER= erich@FreeBSD.org +GNU_CONFIGURE= yes + +ALL_TARGET= es +MAN1= es.1 + .include <bsd.port.mk> diff --git a/shells/es/distinfo b/shells/es/distinfo index cef218f706f8..c6657f302712 100644 --- a/shells/es/distinfo +++ b/shells/es/distinfo @@ -1 +1 @@ -MD5 (es-0.9-alpha1.tar.gz) = 2e7372fc4c8eaeb00571e721730b6108 +MD5 (es-0.9-beta1.tar.gz) = 1d0f771d94d9d8f958f264f1757b8620 diff --git a/shells/es/files/patch-aa b/shells/es/files/patch-aa index 1f649e60e899..757999f6eb21 100644 --- a/shells/es/files/patch-aa +++ b/shells/es/files/patch-aa @@ -1,93 +1,38 @@ -*** Makefile.orig Tue May 30 06:14:14 1995 ---- Makefile Fri Aug 11 16:02:11 1995 +*** prim-sys.c.original Mon Jun 8 14:55:11 1998 +--- prim-sys.c Mon Jun 8 14:51:15 1998 *************** -*** 33,40 **** - SHELL = /bin/sh - CC = cc - #CC = gcc -! CFLAGS = -g -! #CFLAGS = -g -O -Wall - LDFLAGS = - LIBS = +*** 213,219 **** + lim /= suf->amount; + break; + } +! print("%-8s\t%d%s\n", limit->name, lim, (suf == NULL || lim == 0) ? "" : suf->name); + } + } ---- 33,40 ---- - SHELL = /bin/sh - CC = cc - #CC = gcc -! #CFLAGS = -g -! CFLAGS = -O2 - LDFLAGS = - LIBS = +--- 213,219 ---- + lim /= suf->amount; + break; + } +! print("%-8s\t%d%s\n", limit->name, (int)lim, (suf == NULL || lim == 0) ? "" : suf->name); + } + } +*** configure.orig Mon Jun 8 15:02:05 1998 +--- configure Mon Jun 8 15:02:37 1998 *************** -*** 52,57 **** ---- 52,66 ---- - tree.o util.o var.o vec.o version.o y.tab.o - OTHER = Makefile parse.y mksignal - GEN = esdump y.tab.c y.tab.h y.output token.h sigmsgs.c initial.c -+ -+ all: es -+ -+ install: -+ $(INSTALL) -c es $(PREFIX)/bin -+ $(INSTALL) -c esdebug $(PREFIX)/bin/esdebug -+ $(INSTALL) -c es.1 $(PREFIX)/man/man1 -+ strip $(PREFIX)/bin/es -+ gzip -9nf $(PREFIX)/man/man1/es.1 +*** 2344,2350 **** + + + cat >> confdefs.h <<EOF +! #define LIMIT_T $es_cv_rlimit_t + EOF + + +--- 2344,2350 ---- + + + cat >> confdefs.h <<EOF +! #define LIMIT_T u_quad_t + EOF + - es : ${OFILES} initial.o - ${CC} -o es ${LDFLAGS} ${OFILES} initial.o ${LIBS} ---- prim-sys.c.orig Tue May 30 06:13:51 1995 -+++ prim-sys.c Thu Apr 10 10:15:40 1997 -@@ -194,7 +194,7 @@ - - static void printlimit(const Limit *limit, Boolean hard) { - struct rlimit rlim; -- long lim; -+ u_quad_t lim; - getrlimit(limit->flag, &rlim); - if (hard) - lim = rlim.rlim_max; -@@ -209,11 +209,11 @@ - lim /= suf->amount; - break; - } -- print("%-8s\t%d%s\n", limit->name, lim, (suf == NULL || lim == 0) ? "" : suf->name); -+ print("%-8s\t%ud%s\n", limit->name, (unsigned int)lim, (suf == NULL || lim == 0) ? "" : suf->name); - } - } - --static long parselimit(const Limit *limit, char *s) { -+static u_quad_t parselimit(const Limit *limit, char *s) { - long lim; - char *t; - const Suffix *suf = limit->suffix; ---- main.c~ Tue May 30 06:13:50 1995 -+++ main.c Thu Apr 10 09:20:49 1997 -@@ -9,7 +9,7 @@ - Boolean gcinfo = FALSE; /* -I */ - #endif - --#if !HPUX && !defined(linux) -+#if !HPUX && !defined(linux) && !defined(__FreeBSD__) && !defined(__NetBSD__) && !defined(__OpenBSD__) - extern int getopt (int argc, char **argv, const char *optstring); - #endif - extern int optind; ---- stdenv.h~ Tue May 30 06:13:53 1995 -+++ stdenv.h Thu Apr 10 09:32:22 1997 -@@ -283,6 +283,7 @@ - - /* stdlib */ - -+#if !defined(__FreeBSD__) && !defined(__NetBSD__) && !defined(__OpenBSD__) - extern noreturn exit(int); - extern noreturn abort(void); - extern long strtol(const char *num, char **end, int base); -@@ -290,6 +291,7 @@ - void *base, size_t nmemb, size_t size, - int (*compar)(const void *, const void *) - ); -+#endif - - /* setjmp */ - diff --git a/shells/es/pkg-plist b/shells/es/pkg-plist index 03aafe9fe6b3..9da6f324b5f5 100644 --- a/shells/es/pkg-plist +++ b/shells/es/pkg-plist @@ -1,3 +1,2 @@ bin/es -bin/esdebug man/man1/es.1.gz |