diff options
author | Alex Dupre <ale@FreeBSD.org> | 2014-04-07 10:35:14 +0000 |
---|---|---|
committer | Alex Dupre <ale@FreeBSD.org> | 2014-04-07 10:35:14 +0000 |
commit | 252f79cf69378e6a72ac54c36ce7f19236a6f6b3 (patch) | |
tree | de957d176752e9e3e0c47eea6857c9c7bdb84915 /databases/mongodb/Makefile | |
parent | 47c3cb306d7272fdbf12be8b582bc437fbe0e223 (diff) | |
download | ports-252f79cf69378e6a72ac54c36ce7f19236a6f6b3.tar.gz ports-252f79cf69378e6a72ac54c36ce7f19236a6f6b3.zip |
Update to 2.4.10 release.
Notes
Notes:
svn path=/head/; revision=350455
Diffstat (limited to 'databases/mongodb/Makefile')
-rw-r--r-- | databases/mongodb/Makefile | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/databases/mongodb/Makefile b/databases/mongodb/Makefile index ad111f35af88..7f86f9c1a08a 100644 --- a/databases/mongodb/Makefile +++ b/databases/mongodb/Makefile @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= mongodb -PORTVERSION= 2.4.9 -PORTREVISION= 1 +PORTVERSION= 2.4.10 CATEGORIES= databases net MASTER_SITES= http://downloads.mongodb.org/src/ DISTNAME= ${PORTNAME}-src-r${PORTVERSION} @@ -18,9 +17,9 @@ LICENSE_COMB= multi LIB_DEPENDS= libexecinfo.so:${PORTSDIR}/devel/libexecinfo \ libpcre.so:${PORTSDIR}/devel/pcre \ libsnappy.so:${PORTSDIR}/archivers/snappy -# boost 1.52 from ports make mongod segfaulting with many tests +# boost 1.52/1.55 from ports make mongod segfaulting with many tests # LIB_DEPENDS+= libboost_system.so:${PORTSDIR}/devel/boost-libs -# SCONS_ARGS+= --use-system-boost +# MAKE_ARGS+= --use-system-boost ONLY_FOR_ARCHS= i386 amd64 ONLY_FOR_ARCHS_REASON= "not yet ported to anything other than i386 and amd64" @@ -64,13 +63,12 @@ LIB_DEPENDS+= libsasl2.so:${PORTSDIR}/security/cyrus-sasl2 .if ${PORT_OPTIONS:MTEST} BUILD_DEPENDS= pymongo>=2.5:${PORTSDIR}/databases/pymongo -MAKE_TARGET= all -SMOKE_TESTS= smokeAll smokeCppUnittests +TEST_TARGET= smokeAll smokeCppUnittests . if ${PORT_OPTIONS:MSSL} -SMOKE_TESTS+= smokeSsl +TEST_TARGET+= smokeSsl . endif .else -MAKE_TARGET= core tools +ALL_TARGET= core tools .endif .if ${OSVERSION} >= 1000024 @@ -86,8 +84,8 @@ post-patch: .if ${PORT_OPTIONS:MTEST} test: build-depends build - @cd ${BUILD_WRKSRC} && \ - ${SCONS_BIN} ${SCONS_ENV} ${MAKE_ARGS} ${SMOKE_TESTS} + @cd ${BUILD_WRKSRC} && ${SETENV} ${MAKE_ENV} \ + ${MAKE_CMD} ${_MAKE_JOBS} ${MAKE_ARGS} ${TEST_TARGET} .endif .include <bsd.port.mk> |