blob: 3f49c66d40535a916f2e65452fe9b142aab2ca46 (
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
# $FreeBSD$
PORTNAME= ansible
PORTVERSION= 1.3.2
CATEGORIES= sysutils python
MASTER_SITES= http://ansibleworks.com/releases/
MAINTAINER= lifanov@mail.lifanov.com
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}pycrypto>=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
USE_PYDISTUTILS= yes
USES= shebangfix
SHEBANG_FILES= ${WRKSRC}/library/*/*
SUB_FILES= pkg-message
PORTEXAMPLES= *
MAN1= ansible-doc.1 ansible-playbook.1 ansible-pull.1 ansible.1
NO_STAGE= yes
post-patch-script:
@${REINPLACE_CMD} -e "s|/etc/ansible|${ETCDIR}|" \
${WRKSRC}/docs/man/man1/ansible-playbook.1 \
${WRKSRC}/docs/man/man1/ansible.1 \
${WRKSRC}/examples/ansible.cfg \
${WRKSRC}/examples/hosts \
${WRKSRC}/lib/ansible/constants.py \
${WRKSRC}/lib/ansible/playbook/__init__.py \
${WRKSRC}/lib/ansible/runner/__init__.py
@${REINPLACE_CMD} -e "s|/usr/share/ansible|${DATADIR}|" \
${WRKSRC}/docs/man/man1/ansible-playbook.1 \
${WRKSRC}/docs/man/man1/ansible.1 \
${WRKSRC}/examples/ansible.cfg \
${WRKSRC}/lib/ansible/constants.py \
${WRKSRC}/lib/ansible/playbook/__init__.py \
${WRKSRC}/lib/ansible/runner/__init__.py
pre-install-script:
@(cd ${WRKSRC} && ${FIND} . -type f -name '*.bak' -exec ${RM} {} +)
.include <bsd.port.options.mk>
post-install:
@${MKDIR} ${MAN1PREFIX}/man/man1
${INSTALL_MAN} ${MAN1:S,^,${WRKSRC}/docs/man/man1/,} \
${MAN1PREFIX}/man/man1
.if ${PORT_OPTIONS:MEXAMPLES}
@${MKDIR} ${EXAMPLESDIR}
(cd ${WRKSRC}/examples/ && \
${COPYTREE_SHARE} \* ${EXAMPLESDIR})
@${CAT} ${PKGMESSAGE}
.endif
.include <bsd.port.mk>
|