blob: 4321c2771cfb20e0ae219cd340c99b252268e7fd (
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
|
# New ports collection makefile for: pyst
# Date created: 06 Sep 2011
# Whom: Mikhail T. <m.tsatsenko@gmail.com>
#
# $FreeBSD$
#
PORTNAME= pyst
PORTVERSION= 0.4.38
CATEGORIES= devel python
MASTER_SITES= SF/${PORTNAME}/pyst/${PORTVERSION}
MAINTAINER= m.tsatsenko@gmail.com
COMMENT= Python interface to allow Asterisk programming
LICENSE= LGPL21 PSFL
LICENSE_COMB= dual
USE_PYTHON= 2.5-2.7
USE_PYDISTUTILS= yes
PORTDOCS= README README.html ChangeLog
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MDOCS}
post-install:
@${MKDIR} ${DOCSDIR}
.for file in ${PORTDOCS}
@${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR}
.endfor
.endif
.include <bsd.port.mk>
|