blob: 917626c635c4cce8eb79610eab1e62301b916c60 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
# Created by: "Waitman Gobble" <uzimac@da3m0n8t3r.com>
# $FreeBSD$
PORTNAME= mongo-c-driver
PORTVERSION= 1.3.4
CATEGORIES= devel
MAINTAINER= ports@bsdserwis.com
COMMENT= C Driver for MongoDB
LICENSE= APACHE20
BUILD_DEPENDS= ${LOCALBASE}/lib/libbson-1.0.so:${PORTSDIR}/devel/libbson
LIB_DEPENDS+= libsasl2.so:${PORTSDIR}/security/cyrus-sasl2
USE_GITHUB= yes
GH_ACCOUNT= mongodb
USES= autoreconf gmake libtool pkgconfig
GNU_CONFIGURE= yes
USE_LDCONFIG= yes
LDFLAGS+= -pthread
MAKE_ARGS= pkgconfigdir="${PREFIX}/libdata/pkgconfig" V=1
post-stage:
${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libmongoc-priv.so.0.0.0
${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libmongoc-1.0.so.0.0.0
.include <bsd.port.mk>
|