mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-11 07:22:22 +00:00
e1bfdfbe56
Also various fixes related to said option. PR: 230864 Submitted by: mat exp-runs by: antoine
69 lines
2.0 KiB
Makefile
69 lines
2.0 KiB
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= mongodb34-tools
|
|
PORTVERSION= 3.4.9
|
|
DISTVERSIONPREFIX= r
|
|
CATEGORIES= databases net
|
|
|
|
MAINTAINER= numisemis@yahoo.com
|
|
COMMENT= Tools for MongoDB
|
|
|
|
LICENSE= APACHE20
|
|
|
|
BROKEN_SSL= openssl-devel libressl libressl-devel
|
|
BROKEN_SSL_REASON_openssl-devel= variable has incomplete type 'BIO_METHOD' (aka 'struct bio_method_st')
|
|
BROKEN_SSL_REASON_libressl= could not determine kind of name for C.EVP_sha
|
|
BROKEN_SSL_REASON_libressl-devel= ${BROKEN_SSL_REASON_libressl}
|
|
|
|
BUILD_DEPENDS= go>0:lang/go
|
|
|
|
USES= localbase
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= mongodb
|
|
GH_PROJECT= mongo-tools
|
|
|
|
OPTIONS_DEFINE= SSL SASL DOCS
|
|
OPTIONS_DEFAULT= SSL SASL
|
|
|
|
SASL_USE= my_tags=sasl
|
|
SASL_LIB_DEPENDS= libsasl2.so:security/cyrus-sasl2
|
|
|
|
SSL_USES= ssl
|
|
SSL_USE= my_tags=ssl
|
|
|
|
ONLY_FOR_ARCHS= amd64 i386
|
|
ONLY_FOR_ARCHS_REASON= "not yet ported to anything other than i386 and amd64"
|
|
|
|
# Go is not our friend. Without below, ignores user-supplied flags.
|
|
MAKE_CMD= ${LOCALBASE}/bin/go build
|
|
MAKE_ENV= GOPATH="${WRKSRC}/.gopath:${WRKSRC}/vendor" \
|
|
CGO_CFLAGS="${CFLAGS}" CGO_CPPFLAGS="${CPPFLAGS}" \
|
|
CGO_CXXFLAGS="${CXXFLAGS}" CGO_LDFLAGS="-L${LOCALBASE}/lib ${LDFLAGS}"
|
|
|
|
MY_TAGS= -tags "${USE_MY_TAGS}"
|
|
|
|
post-patch:
|
|
@cd ${WRKSRC} ; ${MKDIR} ${WRKSRC}/.gopath/src/github.com/${GH_ACCOUNT} ; \
|
|
${LN} -sf ${WRKSRC} ${WRKSRC}/.gopath/src/github.com/${GH_ACCOUNT}/${GH_PROJECT}
|
|
|
|
do-build:
|
|
.for x in bsondump mongostat mongofiles mongoexport mongoimport mongorestore mongodump mongotop mongooplog
|
|
${SETENV} ${MAKE_ENV} ${MAKE_CMD} \
|
|
-o ${WRKSRC}/bin/${x} ${MY_TAGS}\
|
|
-ldflags "-X github.com/${GH_ACCOUNT}/${GH_PROJECT}/common/options.Gitspec=${GH_TAGNAME}"\
|
|
${WRKSRC}/${x}/main/${x}.go
|
|
.endfor
|
|
|
|
do-install:
|
|
.for x in bsondump mongostat mongofiles mongoexport mongoimport mongorestore mongodump mongotop mongooplog
|
|
${INSTALL_PROGRAM} ${WRKSRC}/bin/${x} ${STAGEDIR}${PREFIX}/bin/
|
|
.endfor
|
|
|
|
${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
.for x in LICENSE.md README.md THIRD-PARTY-NOTICES
|
|
${INSTALL_MAN} ${WRKSRC}/${x} ${STAGEDIR}${DOCSDIR}
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|