mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-28 01:06:17 +00:00
29 lines
632 B
Makefile
29 lines
632 B
Makefile
# Created by: Daniel Bretoi
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= utils
|
|
PORTVERSION= 0.4.0
|
|
CATEGORIES= devel python
|
|
MASTER_SITES= http://www.voidspace.org.uk/downloads/
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
DISTNAME= pythonutils-${PORTVERSION}
|
|
|
|
MAINTAINER= daniel@netwalk.org
|
|
COMMENT= General utility modules that simplify common programming in Python
|
|
|
|
USES= zip
|
|
USE_PYTHON= yes
|
|
USE_PYDISTUTILS= yes
|
|
PYDISTUTILS_AUTOPLIST= yes
|
|
|
|
DOCSDIR= ${PREFIX}/share/doc/py-${PORTNAME}
|
|
PORTDOCS= *
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
post-install:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
(cd ${WRKSRC}/docs/ && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR})
|
|
|
|
.include <bsd.port.mk>
|