1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-21 00:25:50 +00:00

Add new Ocaml port: lang/js_of_ocaml

The initial version submitted in the PR was augmented by later changes
seen in pkgsrc where the counterpart is maintained by the submitter.

==
Js_of_ocaml is a compiler of OCaml bytecode to Javascript. It makes it
possible to run Ocaml programs in a Web browser.

WWW: http://ocsigen.org/js_of_ocaml/
==

PR:		ports/176163
Submitted by:	Jaap Boender
Maintainer:	Jaap Boender
Stage support:	Taken from pkgsrc
This commit is contained in:
John Marino 2014-03-27 12:29:54 +00:00
parent 557659d9bb
commit f41e7b9979
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=349330
6 changed files with 65 additions and 0 deletions

View File

@ -130,6 +130,7 @@
SUBDIR += jakarta-commons-jelly
SUBDIR += jimtcl
SUBDIR += jruby
SUBDIR += js_of_ocaml
SUBDIR += jython
SUBDIR += kawa
SUBDIR += klone

31
lang/js_of_ocaml/Makefile Normal file
View File

@ -0,0 +1,31 @@
# Created by: Jaap Boender <jaapb@kerguelen.org>
# $FreeBSD$
PORTNAME= js_of_ocaml
PORTVERSION= 1.3.2
CATEGORIES= lang
MASTER_SITES= http://ocsigen.org/download/
MAINTAINER= jaapb@kerguelen.org
COMMENT= OCaml to JavaScript compiler
BUILD_DEPENDS= ocaml-lwt>=2.3.0:${PORTSDIR}/devel/ocaml-lwt \
${SA_DIR}/deriving-ocsigen/deriving.a:${PORTSDIR}/devel/ocaml-deriving-ocsigen
RUN_DEPENDS= ocaml-lwt>=2.3.0:${PORTSDIR}/devel/ocaml-lwt \
${SA_DIR}/deriving-ocsigen/deriving.a:${PORTSDIR}/devel/ocaml-deriving-ocsigen
SA_DIR= ${PREFIX}/${OCAML_SITELIBDIR}
USES= gmake
USE_OCAML= yes
USE_OCAML_FINDLIB= yes
USE_OCAML_LDCONFIG= yes
USE_OCAMLFIND_PLIST= yes
PLIST_FILES+= bin/js_of_ocaml
MAKE_ENV+= BINDIR=${STAGEDIR}${PREFIX}/bin \
DESTDIR=${STAGEDIR} \
OCAML_SITELIBDIR=${PREFIX}/lib/ocaml/site-lib
.include <bsd.port.mk>

View File

@ -0,0 +1,2 @@
SHA256 (js_of_ocaml-1.3.2.tar.gz) = 5996d2a9bc32121186e1964af557bb411eb5a27aa155d2c6a8a144ee5f3d0c36
SIZE (js_of_ocaml-1.3.2.tar.gz) = 1901593

View File

@ -0,0 +1,14 @@
$NetBSD: patch-Makefile,v 1.2 2012/12/14 14:40:24 jaapb Exp $
Install to DESTDIR
--- Makefile.orig 2012-12-07 19:39:02.000000000 +0000
+++ Makefile
@@ -31,7 +31,7 @@ include Makefile.filelist
VERSION := $(shell head -n 1 VERSION)
install:
- ocamlfind install -patch-version ${VERSION} $(LIBRARY) lib/META $(INTF) $(IMPL) $(OTHERS) $(DOC)
+ ocamlfind install -ldconf ignore -destdir ${DESTDIR}${OCAML_SITELIBDIR} -patch-version ${VERSION} $(LIBRARY) lib/META $(INTF) $(IMPL) $(OTHERS) $(DOC)
install -d -m 755 $(BINDIR)
install $(BIN) $(BINDIR)

View File

@ -0,0 +1,13 @@
$NetBSD: patch-Makefile.conf,v 1.1 2012/07/11 15:35:06 wiz Exp $
Have BINDIR be determined from package Makefile
--- Makefile.conf.orig 2011-11-30 14:25:06.000000000 +0000
+++ Makefile.conf
@@ -1,6 +1,6 @@
# Where binaries are installed:
-BINDIR := /usr/local/bin
+# BINDIR := /usr/local/bin
####

View File

@ -0,0 +1,4 @@
Js_of_ocaml is a compiler of OCaml bytecode to Javascript. It makes it
possible to run Ocaml programs in a Web browser.
WWW: http://ocsigen.org/js_of_ocaml/