diff options
author | wg <wg@FreeBSD.org> | 2013-09-05 20:50:41 +0800 |
---|---|---|
committer | wg <wg@FreeBSD.org> | 2013-09-05 20:50:41 +0800 |
commit | 237a93d8e32b2c4cf9b5493d852939ec2a2624b6 (patch) | |
tree | 309aefdbd2f17ac870f5384f183d27a41687af36 /sysutils | |
parent | f371a4b5b015f276a3d108a7a4ecb008138417eb (diff) | |
download | freebsd-ports-gnome-237a93d8e32b2c4cf9b5493d852939ec2a2624b6.tar.gz freebsd-ports-gnome-237a93d8e32b2c4cf9b5493d852939ec2a2624b6.tar.zst freebsd-ports-gnome-237a93d8e32b2c4cf9b5493d852939ec2a2624b6.zip |
sysutils/ansible: add FIREBALL option
- Add FIREBALL option for the to use "fireball" mode with ansible [1]
- Add EXAMPLES to options
PR: ports/181815 [1]
Submitted by: Nikolai Lifanov <lifanov mail.lifanov.com> (maintainer)
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/ansible/Makefile | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/sysutils/ansible/Makefile b/sysutils/ansible/Makefile index cd178806579a..2f73dacb2889 100644 --- a/sysutils/ansible/Makefile +++ b/sysutils/ansible/Makefile @@ -10,10 +10,17 @@ COMMENT= Simple ssh-based configuration management and orchestration system LICENSE= GPLv3 +OPTIONS_DEFINE= EXAMPLES FIREBALL + +FIREBALL_DESC= Enable fireball mode +FIREBALL_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}asn1>=0:${PORTSDIR}/devel/py-asn1 \ + ${PYTHON_PKGNAMEPREFIX}pyzmq>=0:${PORTSDIR}/devel/py-pyzmq \ + ${PYTHON_PKGNAMEPREFIX}pypycrypto>=0:${PORTSDIR}/security/py-pycrypto \ + ${PYTHON_PKGNAMEPREFIX}keyczar>=0:${PORTSDIR}/security/py-keyczar + BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}yaml>=0:${PORTSDIR}/devel/py-yaml \ ${PYTHON_PKGNAMEPREFIX}paramiko>=0:${PORTSDIR}/security/py-paramiko \ ${PYTHON_PKGNAMEPREFIX}Jinja2>=0:${PORTSDIR}/devel/py-Jinja2 - RUN_DEPENDS:= ${BUILD_DEPENDS} USE_PYTHON= -2.7 |