blob: fd32d4b41f72c4b2e4d2444462963d31d2480f69 (
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
|
# Created by: joris
# $FreeBSD$
PORTNAME= pylibacl
PORTVERSION= 0.5.0
PORTREVISION= 4
CATEGORIES= security python
MASTER_SITES= SF
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= joris.dedieu@gmail.com
COMMENT= Manipulate ACL with Python
LICENSE= LGPL21 LGPL3
LICENSE_COMB= dual
OPTIONS_DEFINE= DOCS
# Python3 ready
USE_PYTHON= yes
USE_PYDISTUTILS= yes
PYDISTUTILS_AUTOPLIST= yes
DOCSDIR= ${PREFIX}/share/doc/py-${PORTNAME}
PORTDOCS= COPYING IMPLEMENTATION NEWS PLATFORMS README
post-install:
${MKDIR} ${STAGEDIR}${DOCSDIR}/
cd ${WRKSRC}/ && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR}/
.include <bsd.port.mk>
|