Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 20 Mar 2016 16:47:39 +0000 (UTC)
From:      Olivier Duchateau <olivierd@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r411467 - in head/devel: . nsgenbind
Message-ID:  <201603201647.u2KGld39088926@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: olivierd
Date: Sun Mar 20 16:47:39 2016
New Revision: 411467
URL: https://svnweb.freebsd.org/changeset/ports/411467

Log:
  genjsbind is a tool to generate javascript to dom bindings from w3c webidl
  files, and a binding configuration file.
  
  WWW: http://www.netsurf-browser.org/

Added:
  head/devel/nsgenbind/
  head/devel/nsgenbind/Makefile   (contents, props changed)
  head/devel/nsgenbind/distinfo   (contents, props changed)
  head/devel/nsgenbind/pkg-descr   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Sun Mar 20 16:43:33 2016	(r411466)
+++ head/devel/Makefile	Sun Mar 20 16:47:39 2016	(r411467)
@@ -1544,6 +1544,7 @@
     SUBDIR += notify-sharp
     SUBDIR += noweb
     SUBDIR += npth
+    SUBDIR += nsgenbind
     SUBDIR += nspr
     SUBDIR += nuitka
     SUBDIR += nxt-python

Added: head/devel/nsgenbind/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/nsgenbind/Makefile	Sun Mar 20 16:47:39 2016	(r411467)
@@ -0,0 +1,30 @@
+# Created by: Olivier Duchateau
+# $FreeBSD$
+
+PORTNAME=	nsgenbind
+PORTVERSION=	0.3
+CATEGORIES=	devel
+MASTER_SITES=	http://download.netsurf-browser.org/libs/releases/
+DISTNAME=	${PORTNAME}-${PORTVERSION}-src
+
+MAINTAINER=	olivierd@FreeBSD.org
+COMMENT=	NetSurf Generator for JavaScript bindings
+
+LICENSE=	MIT
+
+BUILD_DEPENDS=	netsurf-buildsystem>=1.5:${PORTSDIR}/devel/netsurf-buildsystem \
+		${LOCALBASE}/bin/flex:${PORTSDIR}/textproc/flex
+
+USES=	bison gmake
+
+WRKSRC=	${WRKDIR}/${DISTNAME:S/-src//}
+
+MAKE_ENV+=	COMPONENT_TYPE="lib-shared" \
+		FLEX="${LOCALBASE}/bin/flex"
+
+PLIST_FILES=	bin/nsgenbind
+
+post-install:
+	${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/*
+
+.include <bsd.port.mk>

Added: head/devel/nsgenbind/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/nsgenbind/distinfo	Sun Mar 20 16:47:39 2016	(r411467)
@@ -0,0 +1,2 @@
+SHA256 (nsgenbind-0.3-src.tar.gz) = ef21a08461165014c499aa3d38f5909a88b4528f5db8492bf7bcbfe3e957ba9b
+SIZE (nsgenbind-0.3-src.tar.gz) = 97492

Added: head/devel/nsgenbind/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/nsgenbind/pkg-descr	Sun Mar 20 16:47:39 2016	(r411467)
@@ -0,0 +1,4 @@
+genjsbind is a tool to generate javascript to dom bindings from w3c webidl
+files, and a binding configuration file.
+
+WWW: http://www.netsurf-browser.org/



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201603201647.u2KGld39088926>