29 lines
654 B
Makefile
29 lines
654 B
Makefile
# $OpenBSD: Makefile,v 1.5 2011/09/16 09:24:55 espie Exp $
|
|
|
|
COMMENT = Mox is a mock object framework for Python
|
|
|
|
MODPY_EGG_VERSION =0.5.0
|
|
DISTNAME = mox-${MODPY_EGG_VERSION}
|
|
PKGNAME = py-${DISTNAME}
|
|
REVISION = 3
|
|
CATEGORIES = devel
|
|
|
|
HOMEPAGE = http://code.google.com/p/pymox/
|
|
MASTER_SITES = http://pymox.googlecode.com/files/
|
|
|
|
# Apache 2.0
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
PERMIT_PACKAGE_FTP = Yes
|
|
PERMIT_DISTFILES_CDROM =Yes
|
|
PERMIT_DISTFILES_FTP = Yes
|
|
|
|
MODULES = lang/python
|
|
|
|
post-configure:
|
|
@perl -pi -e 's,/usr/bin/python2.4,${MODPY_BIN},' ${WRKSRC}/mox.py ${WRKSRC}/stubout.py
|
|
|
|
do-regress:
|
|
cd ${WRKSRC} && ${MODPY_BIN} mox_test.py
|
|
|
|
.include <bsd.port.mk>
|