Received: by mail.netbsd.org (Postfix, from userid 605) id 9FD4D84E91; Thu, 17 Nov 2022 10:21:16 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id D0DDF84E8A for ; Thu, 17 Nov 2022 10:21:15 +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 Vdx74q8dBvj5 for ; Thu, 17 Nov 2022 10:21:15 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 25D1A84CD9 for ; Thu, 17 Nov 2022 10:21:15 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 1F771FA90; Thu, 17 Nov 2022 10:21:15 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1668680475246420" MIME-Version: 1.0 Date: Thu, 17 Nov 2022 10:21:15 +0000 From: "Jaap Boender" Subject: CVS commit: pkgsrc/lang/camlp5 To: pkgsrc-changes@NetBSD.org Reply-To: jaapb@netbsd.org X-Mailer: log_accum Message-Id: <20221117102115.1F771FA90@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1668680475246420 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: jaapb Date: Thu Nov 17 10:21:15 UTC 2022 Modified Files: pkgsrc/lang/camlp5: Makefile Log Message: Fixed interpreter problem with perl script in lang/camlp5 To generate a diff of this commit: cvs rdiff -u -r1.43 -r1.44 pkgsrc/lang/camlp5/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1668680475246420 Content-Disposition: inline Content-Length: 891 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.43 pkgsrc/lang/camlp5/Makefile:1.44 --- pkgsrc/lang/camlp5/Makefile:1.43 Fri Nov 11 10:33:00 2022 +++ pkgsrc/lang/camlp5/Makefile Thu Nov 17 10:21:14 2022 @@ -1,10 +1,11 @@ -# $NetBSD: Makefile,v 1.43 2022/11/11 10:33:00 jaapb Exp $ +# $NetBSD: Makefile,v 1.44 2022/11/17 10:21:14 jaapb Exp $ GITHUB_PROJECT= camlp5 DISTNAME= ${GITHUB_PROJECT}-8.00.03 CATEGORIES= lang MASTER_SITES= ${MASTER_SITE_GITHUB:=camlp5/} GITHUB_TAG= rel${PKGVERSION_NOREV} +PKGREVISION= 1 MAINTAINER= tonio@NetBSD.org HOMEPAGE= https://camlp5.github.io/ @@ -23,6 +24,7 @@ CONFIGURE_ARGS+= --mandir ${PREFIX}/${PK CONFIGURE_ARGS+= --libdir ${PREFIX}/lib/ocaml REPLACE_SH= tools/*.sh meta/*.sh ocaml_src/tools/*.sh compile/*.sh +REPLACE_PERL= etc/mkcamlp5.pl INSTALLATION_DIRS+= ${OCAML_SITELIBDIR}/camlp5 --_----------=_1668680475246420--