diff options
author | Olivier Duchateau <olivierd@FreeBSD.org> | 2016-02-21 20:00:12 +0000 |
---|---|---|
committer | Olivier Duchateau <olivierd@FreeBSD.org> | 2016-02-21 20:00:12 +0000 |
commit | 5830cb0b3283a571eb3596382a62a76bde8028dd (patch) | |
tree | 0864a647db003a7ea4cd5df7835f936b0e450605 /lang/duktape | |
parent | 230579ee9554b012d528ada59c99dd74863eed13 (diff) |
Notes
Diffstat (limited to 'lang/duktape')
-rw-r--r-- | lang/duktape/Makefile | 3 | ||||
-rw-r--r-- | lang/duktape/distinfo | 4 | ||||
-rw-r--r-- | lang/duktape/files/patch-Makefile.cmdline | 6 |
3 files changed, 6 insertions, 7 deletions
diff --git a/lang/duktape/Makefile b/lang/duktape/Makefile index 76a8b47d7e11..274af2c443f5 100644 --- a/lang/duktape/Makefile +++ b/lang/duktape/Makefile @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= duktape -PORTVERSION= 1.2.3 -PORTREVISION= 1 +PORTVERSION= 1.4.0 CATEGORIES= lang devel MASTER_SITES= http://duktape.org/ diff --git a/lang/duktape/distinfo b/lang/duktape/distinfo index 939b18c6c4c0..81c868939b67 100644 --- a/lang/duktape/distinfo +++ b/lang/duktape/distinfo @@ -1,2 +1,2 @@ -SHA256 (duktape-1.2.3.tar.xz) = 3c065a0cc4e0264ba01e4c35bc9cb06ff20a695186e69cec9acb6e7c0948e033 -SIZE (duktape-1.2.3.tar.xz) = 514152 +SHA256 (duktape-1.4.0.tar.xz) = 6be060a61e2893856be662196ba4ee9529becf352c0678e93a6709e2418dbdb8 +SIZE (duktape-1.4.0.tar.xz) = 697624 diff --git a/lang/duktape/files/patch-Makefile.cmdline b/lang/duktape/files/patch-Makefile.cmdline index 269cc0d06fee..6a4d004985d0 100644 --- a/lang/duktape/files/patch-Makefile.cmdline +++ b/lang/duktape/files/patch-Makefile.cmdline @@ -1,4 +1,4 @@ ---- Makefile.cmdline.orig 2015-08-09 09:27:25 UTC +--- Makefile.cmdline.orig 2016-01-10 01:18:06 UTC +++ Makefile.cmdline @@ -8,16 +8,16 @@ DUKTAPE_SOURCES = src/duktape.c DUKTAPE_CMDLINE_SOURCES = \ @@ -6,10 +6,10 @@ -CC = gcc -CCOPTS = -Os -pedantic -std=c99 -Wall -fstrict-aliasing -fomit-frame-pointer --CCOPTS += -I./src +-CCOPTS += -I./src # duktape.h and duk_config.h must be in include path +CC ?= gcc +CCOPTS = ${CFLAGS} -pedantic -std=c99 -Wall -fstrict-aliasing -fomit-frame-pointer -+CCOPTS += -I./src ${CPPFLAGS} ++CCOPTS += -I./src ${CPPFLAGS} # duktape.h and duk_config.h must be in include path CCLIBS = -lm # If you have readline, you may want to enable these. On some platforms |