summaryrefslogtreecommitdiff
path: root/math/bcal
diff options
context:
space:
mode:
authorsjmulder <sjmulder@pkgsrc.org>2019-06-12 20:57:07 +0000
committersjmulder <sjmulder@pkgsrc.org>2019-06-12 20:57:07 +0000
commit4400f43be0ee8d98aaf735f06f026f418e5ad620 (patch)
tree1198d21e2cd0b026594b15b92f32378691600760 /math/bcal
parent75191cf2702641b780a939e70d43eb59ffb7155d (diff)
downloadpkgsrc-4400f43be0ee8d98aaf735f06f026f418e5ad620.tar.gz
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.
Diffstat (limited to 'math/bcal')
-rw-r--r--math/bcal/Makefile7
1 files changed, 4 insertions, 3 deletions
diff --git a/math/bcal/Makefile b/math/bcal/Makefile
index 1416b6d7c08..06cda80c393 100644
--- a/math/bcal/Makefile
+++ b/math/bcal/Makefile
@@ -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"