a2b327fd3a
The aim of this module is to provide a common base representation of python source code for projects such as pychecker, pyreverse, pylint. From Andreas Bihlmaier <andreas.bihlmaier@gmx.de> With help and one okey from bernd@ and steven@
30 lines
700 B
Makefile
30 lines
700 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2007/05/04 17:32:33 alek Exp $
|
|
|
|
COMMENT= "Python Abstract Syntax Tree New Generation"
|
|
|
|
DISTNAME= logilab-astng-0.17.0
|
|
PKGNAME= py-${DISTNAME}
|
|
CATEGORIES= devel
|
|
|
|
HOMEPAGE= http://www.logilab.org/projects/astng/
|
|
|
|
MAINTAINER= Andreas Bihlmaier <andreas.bihlmaier@gmx.de>
|
|
|
|
# GPL
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= ftp://ftp.logilab.fr/pub/astng/
|
|
|
|
MODULES= lang/python
|
|
RUN_DEPENDS= :py-logilab-common-*:devel/py-logilab-common
|
|
REGRESS_DEPENDS= ${RUN_DEPENDS} \
|
|
:pylint-*:devel/pylint
|
|
|
|
do-regress: install
|
|
cd ${WRKSRC}/test && ${MODPY_BIN} ./regrtest.py
|
|
|
|
.include <bsd.port.mk>
|