freebsd-ports/databases/mongodb/Makefile
Bernhard Froehlich f71646c946 - Update to 1.6.3
PR:		ports/150897
Submitted by:	Mirko Zinn <mail at derzinn dot de> (maintainer)
Approved by:	beat (co-mentor, implicit)
2010-09-27 09:04:12 +00:00

57 lines
1.5 KiB
Makefile

# New ports collection makefile for: mongodb
# Date created: 3 November 2009
# Whom: Mirko Zinn <mail@derzinn.de>
#
# $FreeBSD$
#
PORTNAME= mongodb
PORTVERSION= 1.6.3
CATEGORIES= databases net
MASTER_SITES= http://downloads.mongodb.org/src/ \
http://derzinn.de/files/
DISTNAME= ${PORTNAME}-src-r${PORTVERSION}
MAINTAINER= mail@derzinn.de
COMMENT= A NOSQL distributed document-oriented database
LIB_DEPENDS= boost_system:${PORTSDIR}/devel/boost-libs \
js:${PORTSDIR}/lang/spidermonkey \
pcre:${PORTSDIR}/devel/pcre \
nspr4:${PORTSDIR}/devel/nspr \
execinfo.1:${PORTSDIR}/devel/libexecinfo
ONLY_FOR_ARCHS= i386 amd64
ONLY_FOR_ARCHS_REASON= "not yet ported to anything other than i386 and amd64"
USE_SCONS= yes
SCONS_TARGET= all
USE_RC_SUBR= mongod
MONGO_FILES= mongo mongod mongodump mongoexport mongofiles \
mongoimport mongorestore mongos mongosniff mongostat
.include <bsd.port.pre.mk>
.if ${OSVERSION} < 700042
BROKEN= Does not build
.endif
post-patch:
@${REINPLACE_CMD} -E -e 's|elif "freebsd7" == os.sys.platform|elif os.sys.platform.startswith("freebsd")|' \
${WRKSRC}/SConstruct
@${REINPLACE_CMD} -e 's#/usr/local#${PREFIX}#g' ${WRKSRC}/SConstruct
do-install:
.for i in ${MONGO_FILES}
${INSTALL_PROGRAM} ${WRKSRC}/${i} ${PREFIX}/bin
.endfor
${INSTALL_DATA} ${WRKSRC}/libmongoclient.a ${PREFIX}/lib
post-install:
@if [ ! -f ${PREFIX}/etc/mongodb.conf ]; then \
${TOUCH} ${PREFIX}/etc/mongodb.conf ; \
fi
PKG_PREFIX=${PREFIX} ${SH} ${PKGINSTALL} ${PKGNAME} PRE-INSTALL
.include <bsd.port.post.mk>