blob: e7a74ac87c5a5e33eceaddd1cb3417287c523e89 (
plain) (
blame)
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
|
# Created by: Mirko Zinn <mail@derzinn.de>
# $FreeBSD$
PORTNAME= mongoengine
PORTVERSION= 0.8.4
CATEGORIES= devel python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= mail@derzinn.de
COMMENT= Object-Document-Mapper for working with MongoDB
LICENSE= MIT
RUN_DEPENDS= pymongo>=2.5:${PORTSDIR}/databases/pymongo
USE_PYTHON= yes
USE_PYDISTUTILS= easy_install
PYDISTUTILS_NOEGGINFO= yes
post-patch:
@${REINPLACE_CMD} 's|classifiers=CLASSIFIERS,|classifiers=CLASSIFIERS,zip_safe=False,|' \
${WRKSRC}/setup.py
.include <bsd.port.mk>
|