Received: by mail.netbsd.org (Postfix, from userid 605) id 2347684D4C; Wed, 12 Jun 2019 20:57:09 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 9F5C484D35 for ; Wed, 12 Jun 2019 20:57:08 +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 lATVNot7z21W for ; Wed, 12 Jun 2019 20:57:08 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 06D3A84D2C for ; Wed, 12 Jun 2019 20:57:08 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 00AD6FBF4; Wed, 12 Jun 2019 20:57:07 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1560373027125240" MIME-Version: 1.0 Date: Wed, 12 Jun 2019 20:57:07 +0000 From: "Sijmen J. Mulder" Subject: CVS commit: pkgsrc/math/bcal To: pkgsrc-changes@NetBSD.org Reply-To: sjmulder@netbsd.org X-Mailer: log_accum Message-Id: <20190612205708.00AD6FBF4@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1560373027125240 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: sjmulder Date: Wed Jun 12 20:57:07 UTC 2019 Modified Files: pkgsrc/math/bcal: Makefile Log Message: math/bcal: restrict to 64 bit platforms bcal is 64 bit only by design so use ONLY_FOR_PLATFORM to prevent build failures on unsupported platforms. To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 pkgsrc/math/bcal/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1560373027125240 Content-Disposition: inline Content-Length: 827 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/math/bcal/Makefile diff -u pkgsrc/math/bcal/Makefile:1.2 pkgsrc/math/bcal/Makefile:1.3 --- pkgsrc/math/bcal/Makefile:1.2 Mon May 6 09:17:12 2019 +++ pkgsrc/math/bcal/Makefile Wed Jun 12 20:57:07 2019 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2 2019/05/06 09:17:12 sjmulder Exp $ +# $NetBSD: Makefile,v 1.3 2019/06/12 20:57:07 sjmulder Exp $ DISTNAME= bcal-2.1 CATEGORIES= math @@ -10,10 +10,11 @@ HOMEPAGE= https://github.com/jarun/bcal/ COMMENT= Storage and general-purpose calculator LICENSE= gnu-gpl-v3 -USE_TOOLS+= gmake +# "Only 64-bit operating systems are supported." (README.md) +ONLY_FOR_PLATFORM= ${LP64PLATFORMS} +USE_TOOLS+= gmake DEPENDS+= bc-[0-9]*:../../math/bc - MAKE_FLAGS+= MANDIR=${DESTDIR}${PREFIX}/${PKGMANDIR}/man1 .include "../../mk/readline.buildlink3.mk" --_----------=_1560373027125240--