summaryrefslogtreecommitdiff
path: root/lang/mosh
diff options
context:
space:
mode:
authorMartin Wilke <miwi@FreeBSD.org>2009-04-30 22:54:30 +0000
committerMartin Wilke <miwi@FreeBSD.org>2009-04-30 22:54:30 +0000
commit1049143a6207eb1e9ae78649c4ceefb94f953dae (patch)
treec81f9847ca3d9b81f799ce87ef79e1d4c763d362 /lang/mosh
parentFinds updates for FreeBSD pkgs by checking the ports index. (diff)
- Set ONLY_FOR_ARCHS= i386 (amd64/sparc64 core dump)
PR: 133076 Submitted by: Katsuji ISHIKAWA <katsuji.ishikawa@gmail.com> (maintainer)
Notes
Notes: svn path=/head/; revision=233012
Diffstat (limited to 'lang/mosh')
-rw-r--r--lang/mosh/Makefile10
-rw-r--r--lang/mosh/files/patch-TextualInputPort.cpp11
2 files changed, 3 insertions, 18 deletions
diff --git a/lang/mosh/Makefile b/lang/mosh/Makefile
index b4b4e3e4c937..58e8acea7d20 100644
--- a/lang/mosh/Makefile
+++ b/lang/mosh/Makefile
@@ -7,6 +7,7 @@
PORTNAME= mosh
PORTVERSION= 0.0.7
+PORTREVISION= 1
CATEGORIES= lang
MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE}
@@ -17,6 +18,7 @@ PROJECTHOST= mosh-scheme
GNU_CONFIGURE= yes
USE_GCC= 4.2+
+ONLY_FOR_ARCHS= i386
SCMS= all-tests.scm repl.scm tools/psyntax-r6rs/rev10_to_10/psyntax.scm
SS1= lib/srfi/%3A8.ss lib/srfi/%3A98.ss
@@ -41,10 +43,4 @@ do-install:
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin/
-.include <bsd.port.pre.mk>
-
-.if ${ARCH} == "sparc64"
-BROKEN= Does not compile on sparc64
-.endif
-
-.include <bsd.port.post.mk>
+.include <bsd.port.mk>
diff --git a/lang/mosh/files/patch-TextualInputPort.cpp b/lang/mosh/files/patch-TextualInputPort.cpp
index 6c0994eb127b..e69de29bb2d1 100644
--- a/lang/mosh/files/patch-TextualInputPort.cpp
+++ b/lang/mosh/files/patch-TextualInputPort.cpp
@@ -1,11 +0,0 @@
---- TextualInputPort.cpp.orig 2008-10-30 10:15:23.000000000 +0300
-+++ TextualInputPort.cpp 2009-03-02 22:01:49.000000000 +0300
-@@ -52,7 +52,7 @@
- TextualInputPort::TextualInputPort(BinaryInputPort* port, Transcoder* coder) : codec_(coder->codec()),
- port_(port),
- coder_(coder),
-- buffer_(NULL),
-+ buffer_((const ucs4char*)NULL),
- line_(1),
- error_(Object::Nil),
- scanner_(new Scanner)