blob: 597cd8f9dca908d82c53b2d7c538a84f0c1f5a9f (
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
|
# ex:ts=8
# New ports collection makefile for: py-period
# Date created: Mar 15, 2002
# Whom: ijliao
#
# $FreeBSD$
#
PORTNAME= period
PORTVERSION= 0.5
CATEGORIES= devel python
MASTER_SITES= http://www.biostat.wisc.edu/~annis/creations/
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= AlanE@FreeBSD.org
USE_PYTHON= yes
NO_BUILD= yes
do-install:
${INSTALL_SCRIPT} ${WRKSRC}/period.py ${PYTHON_SITELIBDIR}
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
.for ex in html txt
${INSTALL_DATA} ${WRKSRC}/period.${ex} ${DOCSDIR}
.endfor
.endif
.include <bsd.port.mk>
|