summaryrefslogtreecommitdiff
path: root/shells/osh
diff options
context:
space:
mode:
authorGeorge C A Reid <greid@FreeBSD.org>2002-07-16 15:20:34 +0000
committerGeorge C A Reid <greid@FreeBSD.org>2002-07-16 15:20:34 +0000
commitceec39b761c9a9380b45fd89843e2553cc338284 (patch)
tree049dbd9d5470415377ab64102d23e74bfb86c85c /shells/osh
parent- Update to version 1.2.5 (diff)
Update to 020214
PR: 37851 Submitted by: Jeff Palmer <scorpio@drkshdw.org>
Notes
Notes: svn path=/head/; revision=63087
Diffstat (limited to 'shells/osh')
-rw-r--r--shells/osh/Makefile2
-rw-r--r--shells/osh/distinfo2
-rw-r--r--shells/osh/files/patch-aa18
-rw-r--r--shells/osh/files/patch-ab28
4 files changed, 8 insertions, 42 deletions
diff --git a/shells/osh/Makefile b/shells/osh/Makefile
index 0ba79f9de191..2fcf3c5ebedc 100644
--- a/shells/osh/Makefile
+++ b/shells/osh/Makefile
@@ -6,7 +6,7 @@
#
PORTNAME= osh
-PORTVERSION= 001127
+PORTVERSION= 020214
CATEGORIES= shells
MASTER_SITES= http://omnibus.ruf.uni-freiburg.de/~gritter/archive/
diff --git a/shells/osh/distinfo b/shells/osh/distinfo
index a2a44bd65ed7..4b7bc38570bd 100644
--- a/shells/osh/distinfo
+++ b/shells/osh/distinfo
@@ -1 +1 @@
-MD5 (osh-001127.tar.gz) = 96cc2541d8bcdf5996243c14ea4d224a
+MD5 (osh-020214.tar.gz) = c9166413d2dc93f57c339debad081145
diff --git a/shells/osh/files/patch-aa b/shells/osh/files/patch-aa
index e3678c333e48..c378b9404f2c 100644
--- a/shells/osh/files/patch-aa
+++ b/shells/osh/files/patch-aa
@@ -1,9 +1,9 @@
---- makefile.orig Mon Nov 27 19:32:14 2000
-+++ makefile Fri Dec 29 15:31:35 2000
-@@ -7,11 +7,10 @@
- #CPPFLAGS =
- #LDFLAGS =
- #LIBS = -lefence
+--- makefile.orig Wed May 8 03:24:49 2002
++++ makefile Wed May 8 03:25:01 2002
+@@ -2,11 +2,10 @@
+
+ # CONFIGURATION
+
-PREFIX = /usr/local
BINDIR = $(PREFIX)/bin
MANDIR = $(PREFIX)/man
@@ -13,9 +13,3 @@
# CONFIGURATION ENDS
-@@ -41,4 +40,4 @@
- install:
- $(MAKE)
- $(INSTALL) -c -s $(EXE) $(BINDIR)
-- $(INSTALL) -c -m 644 $(MAN) $(MANSECT)
-+ $(INSTALL) -c -m 444 $(MAN) $(MANSECT)
diff --git a/shells/osh/files/patch-ab b/shells/osh/files/patch-ab
deleted file mode 100644
index ef856e14789f..000000000000
--- a/shells/osh/files/patch-ab
+++ /dev/null
@@ -1,28 +0,0 @@
---- osh.c.orig Fri Dec 29 15:38:16 2000
-+++ osh.c Fri Dec 29 15:38:32 2000
-@@ -494,9 +494,9 @@
- if (input != stdin)
- fclose(input);
- #endif
-- sigset(SIGINT, SIG_DFL);
-- sigset(SIGQUIT, SIG_DFL);
-- sigset(SIGTERM, SIG_DFL);
-+ signal(SIGINT, SIG_DFL);
-+ signal(SIGQUIT, SIG_DFL);
-+ signal(SIGTERM, SIG_DFL);
- if (flags & FL_ASYNC)
- setpgid(0, 0);
- /* try current directory first */
-@@ -779,9 +779,9 @@
- if (isatty(0)) {
- interactive = 1;
- setpgid(0, 0);
-- sigset(SIGINT, SIG_IGN);
-- sigset(SIGQUIT, SIG_IGN);
-- sigset(SIGTERM, SIG_IGN);
-+ signal(SIGINT, SIG_IGN);
-+ signal(SIGQUIT, SIG_IGN);
-+ signal(SIGTERM, SIG_IGN);
- }
- } else {
- fclose(stdin); /* the external goto command needs this */