mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-02 01:20:54 +00:00
1b9cf59ac2
- Convert to optionsng framework
36 lines
750 B
Makefile
36 lines
750 B
Makefile
# New ports collection makefile for: pylint
|
|
# Date created: 28 May 2004
|
|
# Whom: Hye-Shik Chang
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= pylint
|
|
PORTVERSION= 0.25.2
|
|
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= ${PYTHON_SITELIBDIR}/logilab/astng/__init__.py:${PORTSDIR}/devel/py-astng
|
|
|
|
MAKE_ENV= NO_SETUPTOOLS=1
|
|
USE_PYTHON= yes
|
|
USE_PYDISTUTILS=yes
|
|
|
|
OPTIONS_DEFINE= GUI
|
|
OPTIONS_DEFAULTS=
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
post-extract:
|
|
${RM} -fr ${WRKSRC}/test
|
|
|
|
.if ${PORT_OPTIONS:MGUI}
|
|
RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/_tkinter.so:${PORTSDIR}/x11-toolkits/py-tkinter
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|