diff options
author | Rong-En Fan <rafan@FreeBSD.org> | 2007-07-19 10:07:30 +0000 |
---|---|---|
committer | Rong-En Fan <rafan@FreeBSD.org> | 2007-07-19 10:07:30 +0000 |
commit | 213a8b21120b80eae6c9f840e08e397aaf187898 (patch) | |
tree | ba0e5bf9a5d4f85add6602d08aa238004eea0a78 /editors/e3 | |
parent | 7063477d5bb5c6a9c6e7b3d663d5e78ebafab912 (diff) |
- 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)
Notes
Notes:
svn path=/head/; revision=195884
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> |