1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-17 03:25:46 +00:00
freebsd-ports/devel/py-ply/Makefile
Marcus von Appen d671efbe4e Update to 3.0.1.
Approved by:	beech (mentor)
2009-03-02 20:47:58 +00:00

40 lines
867 B
Makefile

# ex:ts=8
# New ports collection makefile for: ply
# Date created: Jul 31, 2001
# Whom: ijliao
#
# $FreeBSD$
#
PORTNAME= ply
PORTVERSION= 3.1
CATEGORIES= devel python
MASTER_SITES= http://www.dabeaz.com/ply/
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= mva@FreeBSD.org
COMMENT= Python Lex-Yacc
USE_PYTHON= yes
USE_PYDISTUTILS=yes
PORTDOCS= ply.html internal.html README
pre-configure:
@${REINPLACE_CMD} -e 's|from setuptools import setup|from distutils.core import setup|' \
${WRKSRC}/setup.py
post-install:
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
@${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}
@${INSTALL_DATA} ${WRKSRC}/doc/ply.html ${DOCSDIR}
@${INSTALL_DATA} ${WRKSRC}/doc/internal.html ${DOCSDIR}
.endif
.if !defined(NOPORTEXAMPLES)
@${MKDIR} ${EXAMPLESDIR}
${CP} -R ${WRKSRC}/example/ ${EXAMPLESDIR}
.endif
.include <bsd.port.mk>