91f605a2d4
Prompted by: fenner's portsurvey
35 lines
713 B
Makefile
35 lines
713 B
Makefile
# Ports collection makefile for: tpg
|
|
# Date created: Mar 15, 2002
|
|
# Whom: ijliao
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= tpg
|
|
PORTVERSION= 3.0.0
|
|
CATEGORIES= devel python
|
|
MASTER_SITES= http://christophe.delord.free.fr/soft/tpg/
|
|
DISTNAME= ${PORTNAME:U}-${PORTVERSION}
|
|
|
|
MAINTAINER= sergei@FreeBSD.org
|
|
COMMENT= Parser generator in Python
|
|
|
|
USE_PYTHON= 2.2+
|
|
USE_PYDISTUTILS= yes
|
|
|
|
NO_BUILD= yes
|
|
|
|
DOCS= ChangeLog README THANKS doc/*.html doc/tpg.css \
|
|
doc/*.png doc/tpg.pdf
|
|
EXAMPLES= examples/*
|
|
|
|
post-install:
|
|
@${MKDIR} ${EXAMPLESDIR}
|
|
cd ${WRKSRC} && ${INSTALL_DATA} ${EXAMPLES} ${EXAMPLESDIR}
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
cd ${WRKSRC} && ${INSTALL_DATA} ${DOCS} ${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|