diff options
author | beech <beech@FreeBSD.org> | 2008-07-04 07:32:21 +0800 |
---|---|---|
committer | beech <beech@FreeBSD.org> | 2008-07-04 07:32:21 +0800 |
commit | 6568e7fca1ad2317234a3a78d2e8116967e4d241 (patch) | |
tree | 18417fe88f49c06dccbc36f0dc91f9ebb8d9d7df | |
parent | ebd545b971e08e78581730ba9f1f763df13d3f2a (diff) | |
download | freebsd-ports-gnome-6568e7fca1ad2317234a3a78d2e8116967e4d241.tar.gz freebsd-ports-gnome-6568e7fca1ad2317234a3a78d2e8116967e4d241.tar.zst freebsd-ports-gnome-6568e7fca1ad2317234a3a78d2e8116967e4d241.zip |
- Add patch, fixes a bug where scripts triggered by
SNDM, SNDT, or RCVT kill the heyu monitor.
PR: ports/125118
Submitted by: Michael Stowe <mstowe@chicago.us.mensa.org> (maintainer)
-rw-r--r-- | misc/heyu2/Makefile | 1 | ||||
-rw-r--r-- | misc/heyu2/files/patch-x10state | 11 |
2 files changed, 12 insertions, 0 deletions
diff --git a/misc/heyu2/Makefile b/misc/heyu2/Makefile index df58e4b0cb32..189feb9f0a75 100644 --- a/misc/heyu2/Makefile +++ b/misc/heyu2/Makefile @@ -7,6 +7,7 @@ PORTNAME= heyu2 PORTVERSION= 2.3.2 +PORTREVISION= 1 CATEGORIES= misc MASTER_SITES= http://www.heyu.org/download/ DISTNAME= heyu-${PORTVERSION} diff --git a/misc/heyu2/files/patch-x10state b/misc/heyu2/files/patch-x10state new file mode 100644 index 000000000000..cbde1d1dc59d --- /dev/null +++ b/misc/heyu2/files/patch-x10state @@ -0,0 +1,11 @@ +--- x10state.c.orig 2008-06-30 08:49:55.000000000 -0500 ++++ x10state.c 2008-06-30 08:50:28.000000000 -0500 +@@ -6344,7 +6344,7 @@ + char *shell; + LAUNCHER *launcherp; + +- if ( configp->script_ctrl == DISABLE ) ++ if ( !i_am_state || configp->script_ctrl == DISABLE ) + return 0; + + launcherp = configp->launcherp; |