1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-22 04:17:44 +00:00
freebsd-ports/devel/py-ply/Makefile
Martin Wilke 3980c6189b - Update to 2.5
- Respect NOPORTEXAMPLES

PR:		124120
Submitted by:	Marcus von Appen <mva@sysfault.org> (maintainer)
2008-05-30 19:37:54 +00:00

33 lines
640 B
Makefile

# ex:ts=8
# New ports collection makefile for: ply
# Date created: Jul 31, 2001
# Whom: ijliao
#
# $FreeBSD$
#
PORTNAME= ply
PORTVERSION= 2.5
CATEGORIES= devel python
MASTER_SITES= http://www.dabeaz.com/ply/
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= mva@sysfault.org
COMMENT= Python Lex-Yacc
USE_PYTHON= yes
USE_PYDISTUTILS=yes
post-install:
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}
${INSTALL_DATA} ${WRKSRC}/doc/ply.html ${DOCSDIR}
.endif
.if !defined(NOPORTEXAMPLES)
@${MKDIR} ${EXAMPLESDIR}
${CP} -R ${WRKSRC}/example/ ${EXAMPLESDIR}
.endif
.include <bsd.port.mk>