aboutsummaryrefslogtreecommitdiff
path: root/shells/esh
diff options
context:
space:
mode:
authorJacques Vidrine <nectar@FreeBSD.org>2002-02-06 22:40:05 +0000
committerJacques Vidrine <nectar@FreeBSD.org>2002-02-06 22:40:05 +0000
commit7a2c36bffc2c68a2d5e1288106d00d4a5ed0efb2 (patch)
treeef1c1e0308ced1ef6b75ec0b4639660ebf587389 /shells/esh
parent5ffc8523e2b4f73672f5629671022a527c23a266 (diff)
downloadports-7a2c36bffc2c68a2d5e1288106d00d4a5ed0efb2.tar.gz
ports-7a2c36bffc2c68a2d5e1288106d00d4a5ed0efb2.zip
Notes
Diffstat (limited to 'shells/esh')
-rw-r--r--shells/esh/Makefile10
-rw-r--r--shells/esh/distinfo2
-rw-r--r--shells/esh/files/patch-aa26
-rw-r--r--shells/esh/files/patch-ab18
-rw-r--r--shells/esh/pkg-descr4
5 files changed, 22 insertions, 38 deletions
diff --git a/shells/esh/Makefile b/shells/esh/Makefile
index 394b3de02c87..cc965e8b2724 100644
--- a/shells/esh/Makefile
+++ b/shells/esh/Makefile
@@ -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"
diff --git a/shells/esh/distinfo b/shells/esh/distinfo
index 4faa924e1fe1..36acd0644023 100644
--- a/shells/esh/distinfo
+++ b/shells/esh/distinfo
@@ -1 +1 @@
-MD5 (esh-0.8.tar.gz) = b59022b88bae24420156d25869b8be54
+MD5 (esh-0.8.5.tar.gz) = ab8dc77db3eb7aa5b1097336a91cdd39
diff --git a/shells/esh/files/patch-aa b/shells/esh/files/patch-aa
index 55f71d4607d9..929c57246373 100644
--- a/shells/esh/files/patch-aa
+++ b/shells/esh/files/patch-aa
@@ -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.
+
diff --git a/shells/esh/files/patch-ab b/shells/esh/files/patch-ab
deleted file mode 100644
index 46e36903ba95..000000000000
--- a/shells/esh/files/patch-ab
+++ /dev/null
@@ -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);
- }
diff --git a/shells/esh/pkg-descr b/shells/esh/pkg-descr
index 8f0668181418..4494971ba44c 100644
--- a/shells/esh/pkg-descr
+++ b/shells/esh/pkg-descr
@@ -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/