Received: by mail.netbsd.org (Postfix, from userid 605) id 538E384D59; Thu, 18 Mar 2021 21:17:01 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 8CBF184D56 for ; Thu, 18 Mar 2021 21:17:00 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id CF93N3avcjfY for ; Thu, 18 Mar 2021 21:17:00 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id CE81F84C86 for ; Thu, 18 Mar 2021 21:16:59 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id BB9E7FA95; Thu, 18 Mar 2021 21:16:59 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_16161022199930" MIME-Version: 1.0 Date: Thu, 18 Mar 2021 21:16:59 +0000 From: "David A. Holland" Subject: CVS commit: pkgsrc/lang/camlp5 To: pkgsrc-changes@NetBSD.org Reply-To: dholland@netbsd.org X-Mailer: log_accum Message-Id: <20210318211659.BB9E7FA95@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_16161022199930 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: dholland Date: Thu Mar 18 21:16:59 UTC 2021 Modified Files: pkgsrc/lang/camlp5: Makefile Log Message: Add hack to camlp5 to make it build with ocaml 4.11.2 as well as 4.11.1. To generate a diff of this commit: cvs rdiff -u -r1.38 -r1.39 pkgsrc/lang/camlp5/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_16161022199930 Content-Disposition: inline Content-Length: 730 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/lang/camlp5/Makefile diff -u pkgsrc/lang/camlp5/Makefile:1.38 pkgsrc/lang/camlp5/Makefile:1.39 --- pkgsrc/lang/camlp5/Makefile:1.38 Mon Mar 8 08:13:02 2021 +++ pkgsrc/lang/camlp5/Makefile Thu Mar 18 21:16:59 2021 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.38 2021/03/08 08:13:02 jaapb Exp $ +# $NetBSD: Makefile,v 1.39 2021/03/18 21:16:59 dholland Exp $ # GITHUB_PROJECT= camlp5 @@ -34,6 +34,10 @@ BUILD_TARGET= world.opt BUILD_TARGET= world .endif +post-extract: + cd ${WRKSRC}/ocaml_stuff && ln -s 4.11.1 4.11.2 + cd ${WRKSRC}/ocaml_src/lib/versdep && ln -s 4.11.1.ml 4.11.2.ml + post-install: cd ${WRKSRC}/etc && \ ${INSTALL_DATA} META ${DESTDIR}${PREFIX}/${OCAML_SITELIBDIR}/camlp5 --_----------=_16161022199930--