pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/math/bcal



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.

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"



Home | Main Index | Thread Index | Old Index