mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-15 03:14:23 +00:00
701aa3bcf8
Changes: http://www.boost.org/users/history/version_1_72_0.html PR: 241449 Exp-run by: antoine Differential Revision: https://reviews.freebsd.org/D22136
84 lines
2.1 KiB
Makefile
84 lines
2.1 KiB
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= mongodb
|
|
DISTVERSIONPREFIX= r
|
|
DISTVERSION= 3.6.14
|
|
PORTREVISION= 1
|
|
CATEGORIES= databases net
|
|
MASTER_SITES= https://fastdl.mongodb.org/src/ \
|
|
http://fastdl.mongodb.org/src/ \
|
|
http://download.mongodb.org/src/
|
|
PKGNAMESUFFIX= ${PORTVERSION:R:S/.//}
|
|
DISTNAME= mongodb-src-${DISTVERSIONPREFIX}${DISTVERSION}
|
|
|
|
MAINTAINER= dev@dudu.ro
|
|
COMMENT= Distributed document-oriented "NoSQL" database
|
|
|
|
# mongodb is AGPLv3, C++ driver is APACHE20
|
|
LICENSE= AGPLv3 APACHE20
|
|
LICENSE_COMB= multi
|
|
|
|
ONLY_FOR_ARCHS= aarch64 amd64
|
|
ONLY_FOR_ARCHS_REASON= "Only supported on amd64 and aarch64 (i386 deprecated in v3)"
|
|
|
|
BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}cheetah>=2.4.4:devel/py-cheetah@${PY_FLAVOR} \
|
|
${PY_TYPING} \
|
|
${PYTHON_PKGNAMEPREFIX}yaml>=3.11:devel/py-yaml@${PY_FLAVOR}
|
|
LIB_DEPENDS= libboost_system.so:devel/boost-libs \
|
|
libpcre.so:devel/pcre \
|
|
libsnappy.so:archivers/snappy
|
|
|
|
USES= compiler:c++14-lang cpe python:2.7,build scons shebangfix
|
|
USE_RC_SUBR= mongod
|
|
|
|
CONFLICTS_BUILD= mongo-cxx-driver
|
|
CONFLICTS_INSTALL= mongodb34 mongodb40
|
|
|
|
SHEBANG_FILES= src/mongo/installer/compass/install_compass.in
|
|
python_OLD_CMD= @python_interpreter@
|
|
MAKE_ARGS= --prefix=${STAGEDIR}${PREFIX} \
|
|
--use-system-pcre --use-system-snappy \
|
|
--use-system-boost --use-system-zlib \
|
|
--cxx-std=14 --libc++ \
|
|
--runtime-hardening=on \
|
|
--disable-warnings-as-errors \
|
|
VERBOSE=on
|
|
|
|
USERS= mongodb
|
|
GROUPS= mongodb
|
|
|
|
OPTIONS_DEFINE= SASL SSL
|
|
OPTIONS_DEFAULT= SASL SSL
|
|
|
|
SASL_LIB_DEPENDS= libsasl2.so:security/cyrus-sasl2
|
|
SASL_MAKE_ARGS= --use-sasl-client
|
|
|
|
SSL_USES= ssl
|
|
SSL_MAKE_ARGS= --ssl
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${OPSYS} == FreeBSD && ${OSVERSION} >= 1200057
|
|
SUB_LIST+= LEGACY_LIMITS="@comment " MODERN_LIMITS=""
|
|
.else
|
|
SUB_LIST+= LEGACY_LIMITS="" MODERN_LIMITS="@comment "
|
|
.endif
|
|
|
|
.if ${ARCH} == aarch64
|
|
EXTRA_PATCHES= ${FILESDIR}/aarch64
|
|
.endif
|
|
|
|
ALL_TARGET= core
|
|
|
|
PORTSCOUT= limitw:1,even
|
|
|
|
CPE_PRODUCT= mongodb
|
|
|
|
post-install:
|
|
.for f in mongo mongod mongoperf mongos
|
|
${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${f}
|
|
.endfor
|
|
${CP} ${WRKSRC}/rpm/mongod.conf ${STAGEDIR}${PREFIX}/etc/mongodb.conf.sample
|
|
|
|
.include <bsd.port.mk>
|