1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-08 02:15:08 +00:00
freebsd-ports/devel/pylint/Makefile
Marcelo Araujo 21a8e204a8 - Update to 0.13.2.
- Optionized tkinter support.
- Pass maintainership to submitter.

PR:		ports/116486
Submitted by:	Marcus von Appen <mva@sysfault.org>
Approved by:	stas (mentor)
2007-09-21 17:59:01 +00:00

38 lines
865 B
Makefile

# New ports collection makefile for: pylint
# Date created: 28 May 2004
# Whom: Hye-Shik Chang
#
# $FreeBSD$
#
PORTNAME= pylint
PORTVERSION= 0.13.2
CATEGORIES= devel python
MASTER_SITES= ftp://ftp.logilab.org/pub/pylint/ \
http://ftp.logilab.org/pub/pylint/
PKGNAMESUFFIX= ${PYTHON_PKGNAMESUFFIX}
MAINTAINER= mva@sysfault.org
COMMENT= Analyzes python source code looking for bugs and signs of poor quality
RUN_DEPENDS= ${PYTHONPREFIX_SITELIBDIR}/logilab/astng/__init__.py:${PORTSDIR}/devel/py-astng
USE_PYTHON= yes
USE_PYDISTUTILS= yes
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>