From owner-svn-ports-all@FreeBSD.ORG Tue Apr 1 08:41:14 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6F4CD903; Tue, 1 Apr 2014 08:41:14 +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 4378E231; Tue, 1 Apr 2014 08:41:14 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s318fE4o073063; Tue, 1 Apr 2014 08:41:14 GMT (envelope-from makc@svn.freebsd.org) Received: (from makc@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s318fDiv073060; Tue, 1 Apr 2014 08:41:13 GMT (envelope-from makc@svn.freebsd.org) Message-Id: <201404010841.s318fDiv073060@svn.freebsd.org> From: Max Brazhnikov Date: Tue, 1 Apr 2014 08:41:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r349826 - in head/math/facile: . files 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.17 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: Tue, 01 Apr 2014 08:41:14 -0000 Author: makc Date: Tue Apr 1 08:41:13 2014 New Revision: 349826 URL: http://svnweb.freebsd.org/changeset/ports/349826 QAT: https://qat.redports.org/buildarchive/r349826/ Log: math/facile: - add patch to fix build with ocaml-4 - modernize Makefile (USES, staging) - bump PORTREVISION after ocaml update - assign maintainership to kde@ Added: head/math/facile/files/ head/math/facile/files/patch-ocaml4 (contents, props changed) Modified: head/math/facile/Makefile head/math/facile/pkg-descr Modified: head/math/facile/Makefile ============================================================================== --- head/math/facile/Makefile Tue Apr 1 08:28:26 2014 (r349825) +++ head/math/facile/Makefile Tue Apr 1 08:41:13 2014 (r349826) @@ -3,23 +3,26 @@ PORTNAME= facile PORTVERSION= 1.1 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= math MASTER_SITES= http://www.recherche.enac.fr/log/facile/distrib/ -MAINTAINER= ports@FreeBSD.org -COMMENT= A Functional Constraint Library +MAINTAINER= kde@FreeBSD.org +COMMENT= Functional Constraint Library LICENSE= LGPL21 LICENSE_FILE= ${WRKSRC}/LICENSE + +USES= gmake USE_OCAML= yes HAS_CONFIGURE= yes -USE_GMAKE= yes ALL_TARGET= compile -NO_STAGE= yes -post-patch: - ${REINPLACE_CMD} -e "s,make,${GMAKE},; \ - s,cp,${INSTALL_DATA}," ${WRKSRC}/Makefile +post-configure: + ${REINPLACE_CMD} -e "s,make,${MAKE_CMD},; \ + s,cp,${INSTALL_DATA},;\ + s,mkdir,${MKDIR}," ${WRKSRC}/Makefile + ${REINPLACE_CMD} -e "s,${LOCALBASE},${STAGEDIR}${PREFIX}," \ + ${WRKSRC}/config_Makefile .include Added: head/math/facile/files/patch-ocaml4 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/facile/files/patch-ocaml4 Tue Apr 1 08:41:13 2014 (r349826) @@ -0,0 +1,11 @@ +--- ./src/fcl_data.ml ++++ ./src/fcl_data.ml +@@ -16,7 +16,7 @@ end + + module Hashtbl = struct + type ('a, 'b) t = ('a, 'b) Hashtbl.t +- let create = Hashtbl.create ++ let create n = Hashtbl.create n + let get h = h + + let add h k d = Modified: head/math/facile/pkg-descr ============================================================================== --- head/math/facile/pkg-descr Tue Apr 1 08:28:26 2014 (r349825) +++ head/math/facile/pkg-descr Tue Apr 1 08:41:13 2014 (r349826) @@ -7,4 +7,4 @@ FaCiLe allows as well to build easily us making pervasive use of OCaml higher-order functionals to provide a simple and flexible interface for the user. -WWW: http://www.recherche.enac.fr/log/facile/ +WWW: http://www.recherche.enac.fr/log/facile/