9f9ec87676
- Change the MASTER_SITES to CHEESESHOP - Convert to USES=python - Change the pkg-descr url - Pet portlint - Maintainer's timeout PR: 193054 Submitted by: Bartek Rutkowski <robak@FreeBSD.org> Approved by: mentors (implicit)
27 lines
529 B
Makefile
27 lines
529 B
Makefile
# Created by: joris
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= pylibacl
|
|
PORTVERSION= 0.5.2
|
|
CATEGORIES= security python
|
|
MASTER_SITES= CHEESESHOP
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= joris.dedieu@gmail.com
|
|
COMMENT= Manipulate ACL with Python
|
|
|
|
LICENSE= LGPL21 LGPL3
|
|
LICENSE_COMB= dual
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
USES= python
|
|
USE_PYTHON= autoplist concurrent distutils
|
|
|
|
PORTDOCS= COPYING NEWS README
|
|
|
|
post-install:
|
|
${MKDIR} ${STAGEDIR}${DOCSDIR}/
|
|
cd ${WRKSRC}/ && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR}/
|
|
|
|
.include <bsd.port.mk>
|