# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4 # $Id$ PortSystem 1.0 PortGroup python 1.0 name ansible epoch 1 version 1.9.1 categories sysutils supported_archs noarch maintainers blair gmail.com:pedro.salgado homepage https://github.com/ansible/ansible description SSH-based configuration management and deployment system long_description \ Ansible is a radically simple model-driven configuration \ management, multi-node deployment, and remote task execution \ system. Ansible works over SSH and does not require any software \ or daemons to be installed on remote nodes. Extension modules can \ be written in any language and are transferred to managed machines \ automatically. license GPL-3+ platforms darwin master_sites http://releases.ansible.com/ansible \ http://pypi.python.org/packages/source/a/ansible checksums rmd160 fe490e5339290fb7adb98338ff66a74beaccfb92 \ sha256 a6f975d565723765a4d490ff40cede96833a745f38908def4950a0075f1973f5 python.default_version 27 depends_lib-append port:py${python.version}-httplib2 \ port:py${python.version}-jinja2 \ port:py${python.version}-paramiko \ port:py${python.version}-yaml patch { fs-traverse f ${worksrcpath} { if {[file isfile ${f}]} { reinplace "s#/etc/ansible#${prefix}/etc/ansible#g" ${f} reinplace "s#/usr/share/ansible#${prefix}/share/ansible#g" ${f} } } } post-destroot { # Documentation and examples. xinstall -m 644 -W ${worksrcpath} README.md COPYING \ ${destroot}${prefix}/share/doc/${name} xinstall -m 755 -d ${destroot}${prefix}/share/doc/examples xinstall -m 755 ${worksrcpath}/examples/ansible.cfg \ ${destroot}${prefix}/share/doc/${name}/examples xinstall -m 755 ${worksrcpath}/examples/hosts \ ${destroot}${prefix}/share/doc/${name}/examples # Man pages. eval xinstall -m 755 [glob ${worksrcpath}/docs/man/man1/*.1] \ ${destroot}${prefix}/share/man/man1 # Install sample config and hosts file. xinstall -m 755 -d ${destroot}${prefix}/etc/ansible xinstall -b -m 755 ${worksrcpath}/examples/ansible.cfg \ ${destroot}${prefix}/etc/ansible/ansible.cfg.default xinstall -b -m 755 ${worksrcpath}/examples/hosts \ ${destroot}${prefix}/etc/ansible/hosts.default } python.link_binaries_suffix