From owner-svn-ports-all@FreeBSD.ORG Sun May 17 11:07:25 2015 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7A5EC9A1; Sun, 17 May 2015 11:07:25 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4DEA2121D; Sun, 17 May 2015 11:07:25 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t4HB7PZ4015383; Sun, 17 May 2015 11:07:25 GMT (envelope-from johans@FreeBSD.org) Received: (from johans@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t4HB7Ofr015377; Sun, 17 May 2015 11:07:24 GMT (envelope-from johans@FreeBSD.org) Message-Id: <201505171107.t4HB7Ofr015377@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: johans set sender to johans@FreeBSD.org using -f From: Johan van Selst Date: Sun, 17 May 2015 11:07:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r386598 - in head/devel: . ocaml-ipaddr X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 May 2015 11:07:25 -0000 Author: johans Date: Sun May 17 11:07:23 2015 New Revision: 386598 URL: https://svnweb.freebsd.org/changeset/ports/386598 Log: Add new port devel/ocaml-ipaddr A library for manipulation of IP (and MAC) address representations https://github.com/mirage/ocaml-ipaddr This module is required to update www/ocsigen Added: head/devel/ocaml-ipaddr/ head/devel/ocaml-ipaddr/Makefile (contents, props changed) head/devel/ocaml-ipaddr/distinfo (contents, props changed) head/devel/ocaml-ipaddr/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sun May 17 11:01:14 2015 (r386597) +++ head/devel/Makefile Sun May 17 11:07:23 2015 (r386598) @@ -1405,6 +1405,7 @@ SUBDIR += ocaml-equeue SUBDIR += ocaml-extlib SUBDIR += ocaml-findlib + SUBDIR += ocaml-ipaddr SUBDIR += ocaml-lacaml SUBDIR += ocaml-lwt SUBDIR += ocaml-magic Added: head/devel/ocaml-ipaddr/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/ocaml-ipaddr/Makefile Sun May 17 11:07:23 2015 (r386598) @@ -0,0 +1,31 @@ +# $FreeBSD$ + +PORTNAME= ipaddr +PORTVERSION= 2.6.1 +CATEGORIES= devel +PKGNAMEPREFIX= ocaml- + +MAINTAINER= johans@FreeBSD.org +COMMENT= OCaml library for manipulation of IP address representations + +BUILD_DEPENDS= ${LOCALBASE}/${OCAML_SITELIBDIR}/sexplib/sexplib.a:${PORTSDIR}/devel/ocaml-sexplib +RUN_DEPENDS= ${LOCALBASE}/${OCAML_SITELIBDIR}/sexplib/sexplib.a:${PORTSDIR}/devel/ocaml-sexplib + +USE_GITHUB= yes +GH_ACCOUNT= mirage +GH_PROJECT= ocaml-ipaddr + +USES= gmake +HAS_CONFIGURE= yes +MAKE_JOBS_UNSAFE= yes + +USE_OCAML= yes +USE_OCAML_FINDLIB= yes +USE_OCAML_CAMLP4= yes +USE_OCAMLFIND_PLIST= yes +USE_OCAML_LDCONFIG= yes + +do-configure: + cd ${WRKSRC}; ocaml setup.ml -configure ${CONFIGURE_ARGS} + +.include Added: head/devel/ocaml-ipaddr/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/ocaml-ipaddr/distinfo Sun May 17 11:07:23 2015 (r386598) @@ -0,0 +1,2 @@ +SHA256 (mirage-ocaml-ipaddr-2.6.1_GH0.tar.gz) = 7051013d8f58abff433187d70cd7ddd7a6b49a6fbe6cad1893f571f65b8ed3d0 +SIZE (mirage-ocaml-ipaddr-2.6.1_GH0.tar.gz) = 64458 Added: head/devel/ocaml-ipaddr/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/ocaml-ipaddr/pkg-descr Sun May 17 11:07:23 2015 (r386598) @@ -0,0 +1,2 @@ +ocaml-ipaddr +A library for manipulation of IP (and MAC) address representations.