blob: 7d6bd0a132af3f596dce2c105f7ce44da62c5961 (
plain)
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
|
# New ports collection makefile for: py-utils
# Date created: 16 March 2006
# Whom: Daniel Bretoi
#
# $FreeBSD$
#
PORTNAME= utils
PORTVERSION= 0.2.5
CATEGORIES= devel
MASTER_SITES= http://www.voidspace.org.uk/cgi-bin/voidspace/
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
DISTNAME= downman.py?file=pythonutils-${PORTVERSION}
MAINTAINER= daniel@netwalk.org
COMMENT= General utility modules that simplify common programming in Python
USE_PYTHON= 2.2+
USE_PYDISTUTILS=yes
WRKSRC= ${WRKDIR}/pythonutils-${PORTVERSION}
USE_ZIP= yes
post-install:
.if !defined(NOPORTDOCS)
${MKDIR} ${DOCSDIR}
${CP} -R ${WRKSRC}/docs/ ${DOCSDIR}
.endif
.include <bsd.port.mk>
|