mirror of
https://git.freebsd.org/ports.git
synced 2025-06-17 10:40:46 -04:00
Changes: http://www.boost.org/users/history/version_1_65_1.html PR: 218835 Approved by: maintainer timeout (1.65.1: 2 weeks; 1.65.0: 1 month) Tested by: jhibbits (on powerpc64, earlier version) Exp-run by: antoine Differential Revision: https://reviews.freebsd.org/D11582
37 lines
793 B
Makefile
37 lines
793 B
Makefile
# Created by: Simun Mikecin <numisemis@yahoo.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= mongo-cxx-driver
|
|
PORTVERSION= 1.1.2
|
|
DISTVERSIONPREFIX=legacy-
|
|
PORTREVISION= 5
|
|
CATEGORIES= devel
|
|
|
|
MAINTAINER= numisemis@yahoo.com
|
|
COMMENT= MongoDB Legacy C++ Driver
|
|
|
|
LICENSE= APACHE20
|
|
LICENSE_FILE= ${WRKSRC}/APACHE-2.0.txt
|
|
|
|
LIB_DEPENDS= libboost_system.so:devel/boost-libs
|
|
|
|
MAKE_JOBS_UNSAFE= yes
|
|
|
|
OPTIONS_DEFINE= SCRAM-SHA-1
|
|
OPTIONS_DEFAULT= SCRAM-SHA-1
|
|
|
|
SCRAM-SHA-1_LIB_DEPENDS= libsasl2.so:security/cyrus-sasl2
|
|
SCRAM-SHA-1_MAKE_ARGS= --use-sasl-client --ssl
|
|
SCRAM-SHA-1_DESC= SCRAM-SHA-1 authentication mechanism support.
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= mongodb
|
|
GH_PROJECT= mongo-cxx-driver
|
|
|
|
USES= scons
|
|
MAKE_ARGS= --prefix=${STAGEDIR}${PREFIX} \
|
|
--cc=${CC} \
|
|
--cxx=${CXX}
|
|
USE_LDCONFIG= yes
|
|
|
|
.include <bsd.port.mk>
|