diff options
author | daichi <daichi@FreeBSD.org> | 2013-09-30 22:22:30 +0800 |
---|---|---|
committer | daichi <daichi@FreeBSD.org> | 2013-09-30 22:22:30 +0800 |
commit | aa4ef6c510f36d21f8c282c869111efaa2a058ef (patch) | |
tree | 9570f787fbb50051005f7194785895003b07e04d | |
parent | fac0f10533193f254a2762f9528aadf8fea0550f (diff) | |
download | freebsd-ports-gnome-aa4ef6c510f36d21f8c282c869111efaa2a058ef.tar.gz freebsd-ports-gnome-aa4ef6c510f36d21f8c282c869111efaa2a058ef.tar.zst freebsd-ports-gnome-aa4ef6c510f36d21f8c282c869111efaa2a058ef.zip |
update to 2.0.0
Submitted by: maintainer
-rw-r--r-- | lang/neko/Makefile | 3 | ||||
-rw-r--r-- | lang/neko/distinfo | 4 | ||||
-rw-r--r-- | lang/neko/files/patch-libs_std_sys.c | 22 |
3 files changed, 3 insertions, 26 deletions
diff --git a/lang/neko/Makefile b/lang/neko/Makefile index 7e6a5849dc17..ced3da5b1671 100644 --- a/lang/neko/Makefile +++ b/lang/neko/Makefile @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= neko -PORTVERSION= 1.8.2 -PORTREVISION= 1 +PORTVERSION= 2.0.0 CATEGORIES= lang MASTER_SITES= http://nekovm.org/_media/ diff --git a/lang/neko/distinfo b/lang/neko/distinfo index dc9f2decbcdd..89f1d04bf953 100644 --- a/lang/neko/distinfo +++ b/lang/neko/distinfo @@ -1,2 +1,2 @@ -SHA256 (neko-1.8.2.tar.gz) = 3cfcc73a665559df97126b172510ccff934325d6703d76c74fc8cc66f8112725 -SIZE (neko-1.8.2.tar.gz) = 410930 +SHA256 (neko-2.0.0.tar.gz) = 47a4714df7a603fc64995fc353f09205e52da4df954b6c6969d7d1b9a00a95d1 +SIZE (neko-2.0.0.tar.gz) = 425539 diff --git a/lang/neko/files/patch-libs_std_sys.c b/lang/neko/files/patch-libs_std_sys.c deleted file mode 100644 index 01d541309c4c..000000000000 --- a/lang/neko/files/patch-libs_std_sys.c +++ /dev/null @@ -1,22 +0,0 @@ ---- libs/std/sys.c.orig 2009-06-19 00:08:19.000000000 +0900 -+++ libs/std/sys.c 2009-06-19 00:11:42.000000000 +0900 -@@ -35,7 +35,9 @@ - # include <termios.h> - # include <sys/time.h> - # include <sys/times.h> -+#ifndef __FreeBSD__ - # include <xlocale.h> -+#endif - #endif - - #ifdef NEKO_MAC -@@ -123,6 +125,9 @@ - <doc>Set the locale for LC_TIME, returns true on success</doc> - **/ - static value set_time_locale( value l ) { -+#ifdef __FreeBSD__ -+#undef NEKO_POSIX -+#endif - #ifdef NEKO_POSIX - locale_t lc, old; - val_check(l,string); |