Update 0.8 -> 0.8.5.

Release MAINTAINER.
This commit is contained in:
Jacques Vidrine 2002-02-06 22:40:05 +00:00
parent 5ffc8523e2
commit 7a2c36bffc
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=54274
5 changed files with 22 additions and 38 deletions

View File

@ -6,15 +6,17 @@
#
PORTNAME= esh
PORTVERSION= 0.8
PORTVERSION= 0.8.5
CATEGORIES= shells
MASTER_SITES= MASTER_SITE_LOCAL
MASTER_SITE_SUBDIR=
MASTER_SITES= http://slon.ttk.ru/esh/
MAINTAINER= nectar@FreeBSD.org
MAINTAINER= ports@FreeBSD.org
WRKSRC= ${WRKDIR}/esh
pre-build:
@(cd ${WRKSRC} && ${MAKE} clean)
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/esh ${PREFIX}/bin/esh
@${ECHO} "updating /etc/shells"

View File

@ -1 +1 @@
MD5 (esh-0.8.tar.gz) = b59022b88bae24420156d25869b8be54
MD5 (esh-0.8.5.tar.gz) = ab8dc77db3eb7aa5b1097336a91cdd39

View File

@ -1,19 +1,21 @@
--- Makefile.orig Thu May 20 14:08:23 1999
+++ Makefile Thu May 20 14:10:30 1999
@@ -1,8 +1,3 @@
-
-# Your C compiler.
-
--- Makefile.orig Wed Feb 6 16:23:28 2002
+++ Makefile Wed Feb 6 16:23:51 2002
@@ -1,7 +1,7 @@
# Your C compiler.
-CC=gcc
-
+#CC=gcc
# Where your readline library is.
# You can compile with a hacked replacement of readline instead by
# doing this:
@@ -18,7 +13,7 @@
# You can compile with a "gets()" replacement instead.
@@ -19,7 +19,8 @@
# -DMEM_DEBUG Check for memory leaks.
#
-CFLAGS=-g -Wall -DMEM_DEBUG $(INC) -pg
+CFLAGS+=$(INC)
-CFLAGS=-g -Wall -DMEM_DEBUG $(INC)
+#CFLAGS=-g -Wall -DMEM_DEBUG $(INC)
+CFLAGS+= $(INC)
# No need to change this stuff.

View File

@ -1,18 +0,0 @@
--- esh.c.orig Thu May 20 14:13:25 1999
+++ esh.c Thu May 20 14:22:34 1999
@@ -657,7 +656,9 @@
void job_wait(job_t* job) {
int tmp;
+ sig_t oldsig;
+ oldsig = signal(SIGCHLD, SIG_DFL);
if (interactive) {
waitpid(job->last_pid, &tmp, WUNTRACED);
@@ -676,6 +677,7 @@
} else {
waitpid(job->last_pid, &tmp, WUNTRACED);
}
+ signal(SIGCHLD, oldsig);
}

View File

@ -9,6 +9,4 @@ current version is 0.8, though it is already stable and
featureful. The reason for the low version number is lack of
real-world testing. It is released under the GPL, of course.
WWW: http://esh.netpedia.net/
Jacques Vidrine <nectar@FreeBSD.ORG>
WWW: http://slon.ttk.ru/esh/