freebsd-ports/devel/py-durus/Makefile
Marcus von Appen 89e07f4a18 - Convert ports of devel/ to USES=python
Approved by:	portmgr (implicit)
2014-10-20 16:04:12 +00:00

33 lines
736 B
Makefile

# Created by: Dryice Liu <dryice@dryice.name>
# $FreeBSD$
PORTNAME= durus
PORTVERSION= 3.9
PORTREVISION= 1
CATEGORIES= devel python
MASTER_SITES= CHEESESHOP \
http://www.mems-exchange.org/software/durus/
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
DISTNAME= Durus-${PORTVERSION}
MAINTAINER= robak@FreeBSD.org
COMMENT= Persistent object storage system for Python
LICENSE= MIT
USES= python
USE_PYTHON= distutils autoplist
OPTIONS_DEFINE= DOCS
.include <bsd.port.options.mk>
post-install:
.if ${PORT_OPTIONS:MDOCS}
@ ${MKDIR} ${STAGEDIR}${DOCSDIR}
.for docfile in ACKS.txt CHANGES.txt INSTALL.txt LICENSE.txt README.txt doc/FAQ.txt
@ ${INSTALL_DATA} ${WRKSRC}/${docfile} ${STAGEDIR}${DOCSDIR}
.endfor
.endif
.include <bsd.port.mk>