diff options
author | gavan <gavan@pkgsrc.org> | 2018-09-14 11:04:20 +0000 |
---|---|---|
committer | gavan <gavan@pkgsrc.org> | 2018-09-14 11:04:20 +0000 |
commit | f57c939a9b078ba3c3c7e7001cf21dbfc29119d0 (patch) | |
tree | 64b7322d41ccbd307e6c70a8922b96bc2005a2f4 /databases | |
parent | f09d13d076104e08575ba7713b1477c8f9c75e0b (diff) | |
download | pkgsrc-f57c939a9b078ba3c3c7e7001cf21dbfc29119d0.tar.gz |
mongodb: Mark as unavailable on i386 platforms.
MongoDB since 3.4 has explicitly not supported 32-bit x86 platforms.
As the current package fails to build, let's acknowledge that up front.
Diffstat (limited to 'databases')
-rw-r--r-- | databases/mongodb/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/databases/mongodb/Makefile b/databases/mongodb/Makefile index f56b2e0bc62..b6843cad6bc 100644 --- a/databases/mongodb/Makefile +++ b/databases/mongodb/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.29 2018/08/16 18:54:38 adam Exp $ +# $NetBSD: Makefile,v 1.30 2018/09/14 11:04:20 gavan Exp $ DISTNAME= mongodb-src-r3.4.4 PKGNAME= ${DISTNAME:S/src-r//:S/-rc/rc/} @@ -11,6 +11,9 @@ HOMEPAGE= http://mongodb.org/ COMMENT= NoSQL distributed document-oriented database LICENSE= gnu-agpl-v3 # Client and tools licensed under apache-2.0 +# MongoDB 3.4 onwards explicitly does not support 32-bit x86 platforms +NOT_FOR_PLATFORM+= *-*-i386 + EXTRACT_USING= bsdtar NO_CONFIGURE= yes |