blob: 611dcd9c592c3e20831635bb21d49555023aaf9b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# ex:ts=8
# Ports collection makefile for: spark
# Date created: Mar 15, 2002
# Whom: ijliao
#
# $FreeBSD$
#
PORTNAME= spark
PORTVERSION= 0.6.1
CATEGORIES= devel python
MASTER_SITES= http://pages.cpsc.ucalgary.ca/~aycock/spark/
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= ports@FreeBSD.org
PORTCOMMENT= Scanning, Parsing, and Rewriting Kit
USE_PYTHON= yes
NO_BUILD= yes
do-install:
${INSTALL_SCRIPT} ${WRKSRC}/spark.py ${PYTHON_SITELIBDIR}
.if !defined(PORTDOCS)
@${MKDIR} ${DOCSDIR}
.for file in doc.html doc.tex paper.ps.gz
${INSTALL_DATA} ${WRKSRC}/doc/${file} ${DOCSDIR}
.endfor
.endif
.include <bsd.port.mk>
|