Received: by mail.netbsd.org (Postfix, from userid 605) id 08B5F84EB8; Wed, 4 Aug 2021 21:09:53 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 433A284D5F for ; Wed, 4 Aug 2021 21:09:52 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id qyQd4rbiNGAq for ; Wed, 4 Aug 2021 21:09:51 +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 968DD84CEF for ; Wed, 4 Aug 2021 21:09:51 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 90241FA97; Wed, 4 Aug 2021 21:09:51 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1628111391144640" MIME-Version: 1.0 Date: Wed, 4 Aug 2021 21:09:51 +0000 From: "Sijmen J. Mulder" Subject: CVS commit: pkgsrc/math/sc-im To: pkgsrc-changes@NetBSD.org Reply-To: sjmulder@netbsd.org X-Mailer: log_accum Message-Id: <20210804210951.90241FA97@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1628111391144640 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: sjmulder Date: Wed Aug 4 21:09:51 UTC 2021 Modified Files: pkgsrc/math/sc-im: Makefile Log Message: math/sc-im: Fix bash shebang for scopen To generate a diff of this commit: cvs rdiff -u -r1.27 -r1.28 pkgsrc/math/sc-im/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1628111391144640 Content-Disposition: inline Content-Length: 862 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/math/sc-im/Makefile diff -u pkgsrc/math/sc-im/Makefile:1.27 pkgsrc/math/sc-im/Makefile:1.28 --- pkgsrc/math/sc-im/Makefile:1.27 Mon Jul 26 01:38:05 2021 +++ pkgsrc/math/sc-im/Makefile Wed Aug 4 21:09:51 2021 @@ -1,6 +1,7 @@ -# $NetBSD: Makefile,v 1.27 2021/07/26 01:38:05 sjmulder Exp $ +# $NetBSD: Makefile,v 1.28 2021/08/04 21:09:51 sjmulder Exp $ DISTNAME= sc-im-0.8.2 +PKGREVISION= 1 CATEGORIES= math MASTER_SITES= ${MASTER_SITE_GITHUB:=andmarti1424/} GITHUB_TAG= v${PKGVERSION_NOREV} @@ -16,7 +17,9 @@ INSTALL_DIRS= src .include "../../mk/bsd.prefs.mk" # pkg-config to avoid broken Makefile self-configuration -USE_TOOLS+= gmake pkg-config yacc +USE_TOOLS+= gmake pkg-config yacc bash:run + +REPLACE_BASH+= src/scopen # gnuplot is invoked through the shell, no need to check at compile time CFLAGS+= -DGNUPLOT --_----------=_1628111391144640--