92d2a10612
- Add LICENSE_FILE - Don't install license with docs - Switch to options helpers - Update WWW Approved by: portmgr blanket
27 lines
538 B
Makefile
27 lines
538 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+
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
USES= python
|
|
USE_PYTHON= autoplist concurrent distutils
|
|
|
|
PORTDOCS= NEWS README
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
post-install-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}/
|
|
cd ${WRKSRC}/ && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR}/
|
|
|
|
.include <bsd.port.mk>
|