diff options
author | rafan <rafan@FreeBSD.org> | 2007-07-19 18:07:30 +0800 |
---|---|---|
committer | rafan <rafan@FreeBSD.org> | 2007-07-19 18:07:30 +0800 |
commit | ca0320b6b18ff99c09310106bb26f539ef47b06c (patch) | |
tree | 75b622b78787ebf3bc336629460f648144724735 /editors/e3 | |
parent | 78d20dbbcaff1b3c1b85af874e21313c18466359 (diff) | |
download | freebsd-ports-gnome-ca0320b6b18ff99c09310106bb26f539ef47b06c.tar.gz freebsd-ports-gnome-ca0320b6b18ff99c09310106bb26f539ef47b06c.tar.zst freebsd-ports-gnome-ca0320b6b18ff99c09310106bb26f539ef47b06c.zip |
- When starting on -current, it failes due to bad syscall. Fix that.
I tried this patch on both up-to-date current and 6.2-stable, both work.
PR: ports/112793
Submitted by: rmgls at wanadoo.Fr
Approved by: Joseph Scott <joseph at randomnetworks.com> (maintainer)
Diffstat (limited to 'editors/e3')
-rw-r--r-- | editors/e3/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/editors/e3/Makefile b/editors/e3/Makefile index c337e2f0f8db..eb49d0ab5dd4 100644 --- a/editors/e3/Makefile +++ b/editors/e3/Makefile @@ -7,7 +7,7 @@ PORTNAME= e3 PORTVERSION= 2.7.0 -PORTEPOCH= 2 +PORTEPOCH= 3 CATEGORIES= editors MASTER_SITES= http://www.sax.de/~adlibit/ DISTNAME= ${PORTNAME}-${PORTVERSION:S/60/6/} @@ -24,4 +24,7 @@ ONLY_FOR_ARCHS= i386 MAN1= e3.1 PLIST_FILES= bin/e3 bin/e3em bin/e3ne bin/e3pi bin/e3vi bin/e3ws +post-patch: + @${REINPLACE_CMD} -e '/SYS_sigaction 46/s/46/342/' ${WRKSRC}/e3.h + .include <bsd.port.mk> |