1020d956c7
depending on PREFIX used - e.g. /usr/local vs. /tmp Work around that by adding a patch to avoid installing docs via setup.py. We install docs via the port's Makefile instead. - Adjust pkg-plist accordingly (remove duplicate docs entries) - Bump PORTREVISION due to changed package PR: ports/79341 Submitted by: Radim Kolar <hsn@netmag.cz>
29 lines
680 B
Makefile
29 lines
680 B
Makefile
# New ports collection makefile for: pychecker
|
|
# Date created: 13 April 2001
|
|
# Whom: Maxim Sobolev <sobomax@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= pychecker
|
|
PORTVERSION= 0.8.14
|
|
PORTREVISION= 1
|
|
CATEGORIES= devel python
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= ${PORTNAME}
|
|
|
|
MAINTAINER= sergei@FreeBSD.org
|
|
COMMENT= Python source code checking tool to help hunting common bugs
|
|
|
|
USE_PYTHON= yes
|
|
USE_PYDISTUTILS= yes
|
|
|
|
DOCS= CHANGELOG COPYRIGHT KNOWN_BUGS MAINTAINERS README TODO VERSION
|
|
|
|
.if !defined(NOPORTDOCS)
|
|
post-install:
|
|
@${MKDIR} ${DOCSDIR}
|
|
cd ${WRKSRC} && ${INSTALL_DATA} ${DOCS} ${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|