aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorpav <pav@FreeBSD.org>2006-01-11 02:45:31 +0800
committerpav <pav@FreeBSD.org>2006-01-11 02:45:31 +0800
commit282c6beb10860af6385ab1d9dc8550823f6d677d (patch)
treeb15d696cd68c6aeaba9d6bb992f791091c561569
parent4d8478f2a6dcc6da31fce143efffeb66111c2c60 (diff)
downloadfreebsd-ports-gnome-282c6beb10860af6385ab1d9dc8550823f6d677d.tar.gz
freebsd-ports-gnome-282c6beb10860af6385ab1d9dc8550823f6d677d.tar.zst
freebsd-ports-gnome-282c6beb10860af6385ab1d9dc8550823f6d677d.zip
- Fix runtime
PR: ports/91540 Submitted by: Sam Sirlin <swsirlin@earthlink.net> Approved by: maintainer
-rw-r--r--shells/es/Makefile2
-rw-r--r--shells/es/files/patch-mksignal27
2 files changed, 13 insertions, 16 deletions
diff --git a/shells/es/Makefile b/shells/es/Makefile
index 2ca1e3a0ef2b..9e37bddaf8af 100644
--- a/shells/es/Makefile
+++ b/shells/es/Makefile
@@ -7,7 +7,7 @@
PORTNAME= es
PORTVERSION= 0.9.b1
-PORTREVISION= 3
+PORTREVISION= 4
CATEGORIES= shells
MASTER_SITES= ftp://ftp.sys.toronto.edu/pub/es/
DISTNAME= es-0.9-beta1
diff --git a/shells/es/files/patch-mksignal b/shells/es/files/patch-mksignal
index 17a4051c678b..c2ebcff3bd87 100644
--- a/shells/es/files/patch-mksignal
+++ b/shells/es/files/patch-mksignal
@@ -1,15 +1,12 @@
-*** mksignal.orig Wed Dec 3 20:59:12 2003
---- mksignal Wed Dec 3 21:00:50 2003
-***************
-*** 106,111 ****
---- 106,115 ----
- ignore["SIGRTMIN"] = 1
- ignore["SIGSETS"] = 1
- ignore["SIGSTKSZ"] = 1
-+
-+ # FreeBSD 5 added a signal beyond NSIG; es makes too many
-+ # assumptions to make this worth fixing.
-+ ignore["SIGTHR"] = 1
-
- # upper to lowercase translation table: can someone give me an easier
- # way to do this that works in ancient versions of awk?
+--- mksignal.orig Fri Apr 11 22:54:34 1997
++++ mksignal Tue Jan 10 19:34:36 2006
+@@ -141,7 +141,9 @@
+ lcname = lcname c
+ }
+ print "#ifdef", signal
++ print "#if ", signal, " < NSIG"
+ printf "\t{ %s,\t\"%s\",\t\"%s\" },\n", signal, lcname, mesg[signal]
++ print "#endif"
+ print "#endif"
+ }
+ }