blob: 45b9560605e6fa356717d00abd2169455928ca12 (
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
|
# Created by: ghostonthewire <ghostonthewire at gmail dot com>
# $FreeBSD$
PORTNAME= coil
PORTVERSION= 0.3.20
CATEGORIES= devel python
MASTER_SITES= GOOGLE_CODE
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= ghostonthewire@gmail.com
COMMENT= Powerful configuration language for Python
LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/LICENSE.txt
BROKEN= Unfetchable (google code has gone away)
USES= python
USE_PYTHON= distutils
PORTDOCS= README.txt \
TODO.txt
OPTIONS_DEFINE= DOCS
post-install:
# docs
@${MKDIR} ${STAGEDIR}${DOCSDIR}
.for file in ${PORTDOCS}
${INSTALL_DATA} ${WRKSRC}/${file} ${STAGEDIR}${DOCSDIR}
.endfor
.include <bsd.port.mk>
|