blob: 82c2618c5e56c88d0c6c00ddc31d2bb6cd85eabc (
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
|
# New ports collection makefile for: py-configobj
# Date created: 2006-10-20
# Whom: Choe, Cheng-Dae
#
# $FreeBSD$
#
PORTNAME= configobj
PORTVERSION= 4.5.1
CATEGORIES= devel python
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= ${PORTNAME}
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= nivit@FreeBSD.org
COMMENT= Simple but powerful config file reader and writer
USE_ZIP= yes
USE_PYTHON= yes
USE_PYDISTUTILS= yes
# www/py-turbogears requires (and installs) a Python egg for ConfigObj
CONFLICTS= py*-TurboGears-[0-9]*
PORTDOCS= *
post-install:
.if !defined(NOPORTDOCS)
${MKDIR} ${DOCSDIR}
${CP} -r ${WRKSRC}/docs/* ${DOCSDIR}
.endif
.include <bsd.port.mk>
|