mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-21 08:42:23 +00:00
7691be020c
Approved by: miwi (mentor)
37 lines
838 B
Makefile
37 lines
838 B
Makefile
# New ports collection makefile for: pylint
|
|
# Date created: 28 May 2004
|
|
# Whom: Hye-Shik Chang
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= pylint
|
|
PORTVERSION= 0.19.0
|
|
CATEGORIES= devel python
|
|
MASTER_SITES= LOGILAB
|
|
PKGNAMESUFFIX= ${PYTHON_PKGNAMESUFFIX}
|
|
|
|
MAINTAINER= mva@FreeBSD.org
|
|
COMMENT= Analyzes python source code looking for bugs and signs of poor quality
|
|
|
|
RUN_DEPENDS= ${PYTHONPREFIX_SITELIBDIR}/logilab_astng-0.19.3-py2.6.egg/logilab/astng/__init__.py:${PORTSDIR}/devel/py-astng
|
|
|
|
USE_PYTHON= yes
|
|
USE_PYDISTUTILS=easy_install
|
|
|
|
OPTIONS= GUI "Include Tkinter support for pylint-gui" Off
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${PYTHON_REL} < 250
|
|
PLIST_SUB+= NOPY25=""
|
|
.else
|
|
PLIST_SUB+= NOPY25="@comment "
|
|
.endif
|
|
|
|
.if defined(WITH_GUI)
|
|
RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/_tkinter.so:${PORTSDIR}/x11-toolkits/py-tkinter
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|