54b46cb8b9
Relatorio is a templating library which provides a way to easily output several kinds of files (odt, ods, png, svg, ...). Support for more filetypes can be easily added by creating plugins for them. Relatorio also provides a report repository allowing you to link python objects and report together, find reports by mimetype/name/python This is a required dependency for the tryton framework which I'm working on porting. ok jasper@
34 lines
675 B
Makefile
34 lines
675 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2011/06/09 12:55:55 ajacoutot Exp $
|
|
|
|
COMMENT= templating library able to output odt and pdf files
|
|
|
|
MODPY_EGG_VERSION= 0.5.5
|
|
DISTNAME= relatorio-${MODPY_EGG_VERSION}
|
|
PKGNAME= py-${DISTNAME}
|
|
|
|
CATEGORIES= print textproc
|
|
|
|
HOMEPAGE= http://relatorio.openhex.org/
|
|
|
|
# GPLv3
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
PERMIT_PACKAGE_FTP = Yes
|
|
PERMIT_DISTFILES_CDROM =Yes
|
|
PERMIT_DISTFILES_FTP = Yes
|
|
|
|
MASTER_SITES= ${MASTER_SITE_PYPI:=r/relatorio/}
|
|
|
|
MODULES= lang/python
|
|
|
|
MODPY_SETUPTOOLS= Yes
|
|
|
|
RUN_DEPENDS= www/py-genshi \
|
|
graphics/pycha \
|
|
textproc/py-yaml \
|
|
textproc/py-lxml
|
|
|
|
REGRESS_DEPENDS= ${RUN_DEPENDS} \
|
|
devel/py-nose
|
|
|
|
.include <bsd.port.mk>
|