blob: 855b96f8ac1e6a325c74e6200f27e97aeba67954 (
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
32
33
34
35
36
37
38
|
# ex:ts=8
# Ports collection makefile for: parrot
# Date created: Jul 25, 2002
# Whom: ijliao
#
# $FreeBSD$
#
PORTNAME= parrot
PORTVERSION= 0.2.6
CATEGORIES= devel
MASTER_SITES= http://www.comuno.freeserve.co.uk/oss/parrot/
EXTRACT_SUFX= .tgz
MAINTAINER= ports@FreeBSD.org
PORTCOMMENT= The Parrot GUI Builder
USE_PYTHON= yes
NO_BUILD= yes
FILE= HtmlBackend.py PaxoBackend.py PytkBackend.py backend.py \
generic.py inrep.py makbacl.py parrot.py pparser.py test.py \
tokpos.py util.py
DOC= INTRO README SPEC
do-install:
.for f in ${FILE}
${INSTALL_DATA} ${WRKSRC}/$f ${PYTHON_SITELIBDIR}
.endfor
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
.for f in ${DOC}
${INSTALL_DATA} ${WRKSRC}/$f ${DOCSDIR}
.endfor
.endif
.include <bsd.port.mk>
|