mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-22 04:17:44 +00:00
e95f7f2c6f
PR: ports/105626 Submitted by: Dryice Liu <dryice@dryice.name> (Maintainer)
36 lines
862 B
Makefile
36 lines
862 B
Makefile
# New ports collection makefile for: py-durus
|
|
# Date created: 13 Nov 2006
|
|
# Whom: Dryice Liu <dryice@dryice.name>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= durus
|
|
PORTVERSION= 3.6
|
|
CATEGORIES= devel python
|
|
MASTER_SITES= http://www.mems-exchange.org/software/durus/ \
|
|
http://dryice.name/computer/FreeBSD/distfiles/
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
DISTNAME= Durus-${PORTVERSION}
|
|
|
|
MAINTAINER= dryice@dryice.name
|
|
COMMENT= A persistent object storage system for Python
|
|
|
|
USE_PYTHON= 2.4+
|
|
USE_PYDISTUTILS= yes
|
|
MAN1= durus.1
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
post-install:
|
|
@ ${INSTALL_MAN} ${WRKSRC}/doc/durus.1 ${MANPREFIX}/man/man1
|
|
|
|
.if !defined(NOPORTDOCS)
|
|
@ ${MKDIR} ${DOCSDIR}
|
|
.for docfile in ACKS.txt CHANGES.txt history.py INSTALL.txt LICENSE.txt README.txt doc/FAQ.txt
|
|
@ ${INSTALL_DATA} ${WRKSRC}/${docfile} ${DOCSDIR}
|
|
.endfor
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|